3 instantiations of HRESULT
System.Private.Windows.Core (3)
_generated\120\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(unchecked((int)value));
Windows\Win32\Foundation\HRESULT.cs (1)
50: new HRESULT(((int)error & 0x0000FFFF) | unchecked((int)0x80070000));
22770 references to HRESULT
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)
_generated\18\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);
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.SHGetStockIconInfo.cs (1)
67public static extern unsafe HRESULT SHGetStockIconInfo(SHSTOCKICONID siid, SHGSI_FLAGS uFlags, SHSTOCKICONINFO* psii);
System.Private.Windows.Core (2855)
_generated\120\Windows.Win32.HRESULT.g.cs (335)
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) => unchecked((uint)value.Value); 54 public static explicit operator HRESULT(uint value) => new HRESULT(unchecked((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) 94 internal static readonly winmdroot.Foundation.HRESULT CLIPBRD_E_BAD_DATA = (winmdroot.Foundation.HRESULT)(-2147221037); 96 internal static readonly winmdroot.Foundation.HRESULT CLIPBRD_E_CANT_OPEN = (winmdroot.Foundation.HRESULT)(-2147221040); 98 internal static readonly winmdroot.Foundation.HRESULT DATA_S_SAMEFORMATETC = (winmdroot.Foundation.HRESULT)(262448); 100 internal static readonly winmdroot.Foundation.HRESULT DISP_E_ARRAYISLOCKED = (winmdroot.Foundation.HRESULT)(-2147352563); 102 internal static readonly winmdroot.Foundation.HRESULT DISP_E_BADCALLEE = (winmdroot.Foundation.HRESULT)(-2147352560); 104 internal static readonly winmdroot.Foundation.HRESULT DISP_E_BADINDEX = (winmdroot.Foundation.HRESULT)(-2147352565); 106 internal static readonly winmdroot.Foundation.HRESULT DISP_E_BADPARAMCOUNT = (winmdroot.Foundation.HRESULT)(-2147352562); 108 internal static readonly winmdroot.Foundation.HRESULT DISP_E_BADVARTYPE = (winmdroot.Foundation.HRESULT)(-2147352568); 110 internal static readonly winmdroot.Foundation.HRESULT DISP_E_BUFFERTOOSMALL = (winmdroot.Foundation.HRESULT)(-2147352557); 112 internal static readonly winmdroot.Foundation.HRESULT DISP_E_DIVBYZERO = (winmdroot.Foundation.HRESULT)(-2147352558); 114 internal static readonly winmdroot.Foundation.HRESULT DISP_E_EXCEPTION = (winmdroot.Foundation.HRESULT)(-2147352567); 116 internal static readonly winmdroot.Foundation.HRESULT DISP_E_MEMBERNOTFOUND = (winmdroot.Foundation.HRESULT)(-2147352573); 118 internal static readonly winmdroot.Foundation.HRESULT DISP_E_NONAMEDARGS = (winmdroot.Foundation.HRESULT)(-2147352569); 120 internal static readonly winmdroot.Foundation.HRESULT DISP_E_NOTACOLLECTION = (winmdroot.Foundation.HRESULT)(-2147352559); 122 internal static readonly winmdroot.Foundation.HRESULT DISP_E_OVERFLOW = (winmdroot.Foundation.HRESULT)(-2147352566); 124 internal static readonly winmdroot.Foundation.HRESULT DISP_E_PARAMNOTFOUND = (winmdroot.Foundation.HRESULT)(-2147352572); 126 internal static readonly winmdroot.Foundation.HRESULT DISP_E_PARAMNOTOPTIONAL = (winmdroot.Foundation.HRESULT)(-2147352561); 128 internal static readonly winmdroot.Foundation.HRESULT DISP_E_TYPEMISMATCH = (winmdroot.Foundation.HRESULT)(-2147352571); 130 internal static readonly winmdroot.Foundation.HRESULT DISP_E_UNKNOWNINTERFACE = (winmdroot.Foundation.HRESULT)(-2147352575); 132 internal static readonly winmdroot.Foundation.HRESULT DISP_E_UNKNOWNLCID = (winmdroot.Foundation.HRESULT)(-2147352564); 134 internal static readonly winmdroot.Foundation.HRESULT DISP_E_UNKNOWNNAME = (winmdroot.Foundation.HRESULT)(-2147352570); 136 internal static readonly winmdroot.Foundation.HRESULT DRAGDROP_E_ALREADYREGISTERED = (winmdroot.Foundation.HRESULT)(-2147221247); 138 internal static readonly winmdroot.Foundation.HRESULT DRAGDROP_E_NOTREGISTERED = (winmdroot.Foundation.HRESULT)(-2147221248); 140 internal static readonly winmdroot.Foundation.HRESULT DRAGDROP_S_CANCEL = (winmdroot.Foundation.HRESULT)(262401); 142 internal static readonly winmdroot.Foundation.HRESULT DRAGDROP_S_DROP = (winmdroot.Foundation.HRESULT)(262400); 144 internal static readonly winmdroot.Foundation.HRESULT DRAGDROP_S_USEDEFAULTCURSORS = (winmdroot.Foundation.HRESULT)(262402); 146 internal static readonly winmdroot.Foundation.HRESULT DV_E_FORMATETC = (winmdroot.Foundation.HRESULT)(-2147221404); 148 internal static readonly winmdroot.Foundation.HRESULT DV_E_DVTARGETDEVICE = (winmdroot.Foundation.HRESULT)(-2147221403); 150 internal static readonly winmdroot.Foundation.HRESULT DV_E_STGMEDIUM = (winmdroot.Foundation.HRESULT)(-2147221402); 152 internal static readonly winmdroot.Foundation.HRESULT DV_E_STATDATA = (winmdroot.Foundation.HRESULT)(-2147221401); 154 internal static readonly winmdroot.Foundation.HRESULT DV_E_LINDEX = (winmdroot.Foundation.HRESULT)(-2147221400); 156 internal static readonly winmdroot.Foundation.HRESULT DV_E_TYMED = (winmdroot.Foundation.HRESULT)(-2147221399); 158 internal static readonly winmdroot.Foundation.HRESULT DV_E_CLIPFORMAT = (winmdroot.Foundation.HRESULT)(-2147221398); 160 internal static readonly winmdroot.Foundation.HRESULT DV_E_DVASPECT = (winmdroot.Foundation.HRESULT)(-2147221397); 162 internal static readonly winmdroot.Foundation.HRESULT DV_E_DVTARGETDEVICE_SIZE = (winmdroot.Foundation.HRESULT)(-2147221396); 164 internal static readonly winmdroot.Foundation.HRESULT DV_E_NOIVIEWOBJECT = (winmdroot.Foundation.HRESULT)(-2147221395); 166 internal static readonly winmdroot.Foundation.HRESULT E_ABORT = (winmdroot.Foundation.HRESULT)(-2147467260); 168 internal static readonly winmdroot.Foundation.HRESULT E_ACCESSDENIED = (winmdroot.Foundation.HRESULT)(-2147024891); 174 internal static readonly winmdroot.Foundation.HRESULT E_FAIL = (winmdroot.Foundation.HRESULT)(-2147467259); 176 internal static readonly winmdroot.Foundation.HRESULT E_HANDLE = (winmdroot.Foundation.HRESULT)(-2147024890); 179 internal static readonly winmdroot.Foundation.HRESULT E_INVALIDARG = (winmdroot.Foundation.HRESULT)(-2147024809); 181 internal static readonly winmdroot.Foundation.HRESULT E_NOINTERFACE = (winmdroot.Foundation.HRESULT)(-2147467262); 183 internal static readonly winmdroot.Foundation.HRESULT E_NOTIMPL = (winmdroot.Foundation.HRESULT)(-2147467263); 185 internal static readonly winmdroot.Foundation.HRESULT E_OUTOFMEMORY = (winmdroot.Foundation.HRESULT)(-2147024882); 187 internal static readonly winmdroot.Foundation.HRESULT E_PENDING = (winmdroot.Foundation.HRESULT)(-2147483638); 189 internal static readonly winmdroot.Foundation.HRESULT E_POINTER = (winmdroot.Foundation.HRESULT)(-2147467261); 191 internal static readonly winmdroot.Foundation.HRESULT E_UNEXPECTED = (winmdroot.Foundation.HRESULT)(-2147418113); 193 internal static readonly winmdroot.Foundation.HRESULT INPLACE_E_NOTOOLSPACE = (winmdroot.Foundation.HRESULT)(-2147221087); 195 internal static readonly winmdroot.Foundation.HRESULT NS_E_WMP_CANNOT_FIND_FILE = (winmdroot.Foundation.HRESULT)(-1072885353); 197 internal static readonly winmdroot.Foundation.HRESULT NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT = (winmdroot.Foundation.HRESULT)(-1072885350); 199 internal static readonly winmdroot.Foundation.HRESULT NS_E_WMP_INVALID_ASX = (winmdroot.Foundation.HRESULT)(-1072885347); 201 internal static readonly winmdroot.Foundation.HRESULT NS_E_WMP_LOGON_FAILURE = (winmdroot.Foundation.HRESULT)(-1072885354); 203 internal static readonly winmdroot.Foundation.HRESULT NS_E_WMP_UNSUPPORTED_FORMAT = (winmdroot.Foundation.HRESULT)(-1072885351); 205 internal static readonly winmdroot.Foundation.HRESULT NS_E_WMP_URLDOWNLOADFAILED = (winmdroot.Foundation.HRESULT)(-1072885782); 207 internal static readonly winmdroot.Foundation.HRESULT OLE_E_ADVISENOTSUPPORTED = (winmdroot.Foundation.HRESULT)(-2147221501); 209 internal static readonly winmdroot.Foundation.HRESULT OLE_E_INVALIDRECT = (winmdroot.Foundation.HRESULT)(-2147221491); 211 internal static readonly winmdroot.Foundation.HRESULT OLE_E_NOCONNECTION = (winmdroot.Foundation.HRESULT)(-2147221500); 213 internal static readonly winmdroot.Foundation.HRESULT OLE_E_PROMPTSAVECANCELLED = (winmdroot.Foundation.HRESULT)(-2147221492); 215 internal static readonly winmdroot.Foundation.HRESULT OLECMDERR_E_DISABLED = (winmdroot.Foundation.HRESULT)(-2147221247); 217 internal static readonly winmdroot.Foundation.HRESULT OLECMDERR_E_UNKNOWNGROUP = (winmdroot.Foundation.HRESULT)(-2147221244); 219 internal static readonly winmdroot.Foundation.HRESULT REGDB_E_CLASSNOTREG = (winmdroot.Foundation.HRESULT)(-2147221164); 221 internal static readonly winmdroot.Foundation.HRESULT RPC_E_CHANGED_MODE = (winmdroot.Foundation.HRESULT)(-2147417850); 223 internal static readonly winmdroot.Foundation.HRESULT RPC_E_DISCONNECTED = (winmdroot.Foundation.HRESULT)(-2147417848); 225 internal static readonly winmdroot.Foundation.HRESULT RPC_E_SERVERFAULT = (winmdroot.Foundation.HRESULT)(-2147417851); 227 internal static readonly winmdroot.Foundation.HRESULT RPC_E_SYS_CALL_FAILED = (winmdroot.Foundation.HRESULT)(-2147417856); 229 internal static readonly winmdroot.Foundation.HRESULT S_FALSE = (winmdroot.Foundation.HRESULT)(1); 232 internal static readonly winmdroot.Foundation.HRESULT S_OK = (winmdroot.Foundation.HRESULT)(0); 234 internal static readonly winmdroot.Foundation.HRESULT STG_E_INVALIDFUNCTION = (winmdroot.Foundation.HRESULT)(-2147287039); 236 internal static readonly winmdroot.Foundation.HRESULT STG_E_FILENOTFOUND = (winmdroot.Foundation.HRESULT)(-2147287038); 238 internal static readonly winmdroot.Foundation.HRESULT STG_E_PATHNOTFOUND = (winmdroot.Foundation.HRESULT)(-2147287037); 240 internal static readonly winmdroot.Foundation.HRESULT STG_E_TOOMANYOPENFILES = (winmdroot.Foundation.HRESULT)(-2147287036); 242 internal static readonly winmdroot.Foundation.HRESULT STG_E_ACCESSDENIED = (winmdroot.Foundation.HRESULT)(-2147287035); 244 internal static readonly winmdroot.Foundation.HRESULT STG_E_INVALIDHANDLE = (winmdroot.Foundation.HRESULT)(-2147287034); 246 internal static readonly winmdroot.Foundation.HRESULT STG_E_INSUFFICIENTMEMORY = (winmdroot.Foundation.HRESULT)(-2147287032); 248 internal static readonly winmdroot.Foundation.HRESULT STG_E_INVALIDPOINTER = (winmdroot.Foundation.HRESULT)(-2147287031); 250 internal static readonly winmdroot.Foundation.HRESULT STG_E_NOMOREFILES = (winmdroot.Foundation.HRESULT)(-2147287022); 252 internal static readonly winmdroot.Foundation.HRESULT STG_E_DISKISWRITEPROTECTED = (winmdroot.Foundation.HRESULT)(-2147287021); 254 internal static readonly winmdroot.Foundation.HRESULT STG_E_SEEKERROR = (winmdroot.Foundation.HRESULT)(-2147287015); 256 internal static readonly winmdroot.Foundation.HRESULT STG_E_WRITEFAULT = (winmdroot.Foundation.HRESULT)(-2147287011); 258 internal static readonly winmdroot.Foundation.HRESULT STG_E_READFAULT = (winmdroot.Foundation.HRESULT)(-2147287010); 260 internal static readonly winmdroot.Foundation.HRESULT STG_E_SHAREVIOLATION = (winmdroot.Foundation.HRESULT)(-2147287008); 262 internal static readonly winmdroot.Foundation.HRESULT STG_E_LOCKVIOLATION = (winmdroot.Foundation.HRESULT)(-2147287007); 264 internal static readonly winmdroot.Foundation.HRESULT STG_E_FILEALREADYEXISTS = (winmdroot.Foundation.HRESULT)(-2147286960); 266 internal static readonly winmdroot.Foundation.HRESULT STG_E_INVALIDPARAMETER = (winmdroot.Foundation.HRESULT)(-2147286953); 268 internal static readonly winmdroot.Foundation.HRESULT STG_E_MEDIUMFULL = (winmdroot.Foundation.HRESULT)(-2147286928); 270 internal static readonly winmdroot.Foundation.HRESULT STG_E_PROPSETMISMATCHED = (winmdroot.Foundation.HRESULT)(-2147286800); 272 internal static readonly winmdroot.Foundation.HRESULT STG_E_ABNORMALAPIEXIT = (winmdroot.Foundation.HRESULT)(-2147286790); 274 internal static readonly winmdroot.Foundation.HRESULT STG_E_INVALIDHEADER = (winmdroot.Foundation.HRESULT)(-2147286789); 276 internal static readonly winmdroot.Foundation.HRESULT STG_E_INVALIDNAME = (winmdroot.Foundation.HRESULT)(-2147286788); 278 internal static readonly winmdroot.Foundation.HRESULT STG_E_UNKNOWN = (winmdroot.Foundation.HRESULT)(-2147286787); 280 internal static readonly winmdroot.Foundation.HRESULT STG_E_UNIMPLEMENTEDFUNCTION = (winmdroot.Foundation.HRESULT)(-2147286786); 282 internal static readonly winmdroot.Foundation.HRESULT STG_E_INVALIDFLAG = (winmdroot.Foundation.HRESULT)(-2147286785); 284 internal static readonly winmdroot.Foundation.HRESULT STG_E_INUSE = (winmdroot.Foundation.HRESULT)(-2147286784); 286 internal static readonly winmdroot.Foundation.HRESULT STG_E_NOTCURRENT = (winmdroot.Foundation.HRESULT)(-2147286783); 288 internal static readonly winmdroot.Foundation.HRESULT STG_E_REVERTED = (winmdroot.Foundation.HRESULT)(-2147286782); 290 internal static readonly winmdroot.Foundation.HRESULT STG_E_CANTSAVE = (winmdroot.Foundation.HRESULT)(-2147286781); 292 internal static readonly winmdroot.Foundation.HRESULT STG_E_OLDFORMAT = (winmdroot.Foundation.HRESULT)(-2147286780); 294 internal static readonly winmdroot.Foundation.HRESULT STG_E_OLDDLL = (winmdroot.Foundation.HRESULT)(-2147286779); 296 internal static readonly winmdroot.Foundation.HRESULT STG_E_SHAREREQUIRED = (winmdroot.Foundation.HRESULT)(-2147286778); 298 internal static readonly winmdroot.Foundation.HRESULT STG_E_NOTFILEBASEDSTORAGE = (winmdroot.Foundation.HRESULT)(-2147286777); 300 internal static readonly winmdroot.Foundation.HRESULT STG_E_EXTANTMARSHALLINGS = (winmdroot.Foundation.HRESULT)(-2147286776); 302 internal static readonly winmdroot.Foundation.HRESULT STG_E_DOCFILECORRUPT = (winmdroot.Foundation.HRESULT)(-2147286775); 304 internal static readonly winmdroot.Foundation.HRESULT STG_E_BADBASEADDRESS = (winmdroot.Foundation.HRESULT)(-2147286768); 306 internal static readonly winmdroot.Foundation.HRESULT STG_E_DOCFILETOOLARGE = (winmdroot.Foundation.HRESULT)(-2147286767); 308 internal static readonly winmdroot.Foundation.HRESULT STG_E_NOTSIMPLEFORMAT = (winmdroot.Foundation.HRESULT)(-2147286766); 310 internal static readonly winmdroot.Foundation.HRESULT STG_E_INCOMPLETE = (winmdroot.Foundation.HRESULT)(-2147286527); 312 internal static readonly winmdroot.Foundation.HRESULT STG_E_TERMINATED = (winmdroot.Foundation.HRESULT)(-2147286526); 314 internal static readonly winmdroot.Foundation.HRESULT STG_E_FIRMWARE_SLOT_INVALID = (winmdroot.Foundation.HRESULT)(-2147286520); 316 internal static readonly winmdroot.Foundation.HRESULT STG_E_FIRMWARE_IMAGE_INVALID = (winmdroot.Foundation.HRESULT)(-2147286519); 318 internal static readonly winmdroot.Foundation.HRESULT STG_E_DEVICE_UNRESPONSIVE = (winmdroot.Foundation.HRESULT)(-2147286518); 320 internal static readonly winmdroot.Foundation.HRESULT STG_E_STATUS_COPY_PROTECTION_FAILURE = (winmdroot.Foundation.HRESULT)(-2147286267); 322 internal static readonly winmdroot.Foundation.HRESULT STG_E_CSS_AUTHENTICATION_FAILURE = (winmdroot.Foundation.HRESULT)(-2147286266); 324 internal static readonly winmdroot.Foundation.HRESULT STG_E_CSS_KEY_NOT_PRESENT = (winmdroot.Foundation.HRESULT)(-2147286265); 326 internal static readonly winmdroot.Foundation.HRESULT STG_E_CSS_KEY_NOT_ESTABLISHED = (winmdroot.Foundation.HRESULT)(-2147286264); 328 internal static readonly winmdroot.Foundation.HRESULT STG_E_CSS_SCRAMBLED_SECTOR = (winmdroot.Foundation.HRESULT)(-2147286263); 330 internal static readonly winmdroot.Foundation.HRESULT STG_E_CSS_REGION_MISMATCH = (winmdroot.Foundation.HRESULT)(-2147286262); 332 internal static readonly winmdroot.Foundation.HRESULT STG_E_RESETS_EXHAUSTED = (winmdroot.Foundation.HRESULT)(-2147286261); 334 internal static readonly winmdroot.Foundation.HRESULT TYPE_E_BADMODULEKIND = (winmdroot.Foundation.HRESULT)(-2147317571); 336 internal static readonly winmdroot.Foundation.HRESULT VIEW_E_DRAW = (winmdroot.Foundation.HRESULT)(-2147221184); 338 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_WRONGSTATE = (winmdroot.Foundation.HRESULT)(-2003292412); 340 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_VALUEOUTOFRANGE = (winmdroot.Foundation.HRESULT)(-2003292411); 342 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_UNKNOWNIMAGEFORMAT = (winmdroot.Foundation.HRESULT)(-2003292409); 344 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_UNSUPPORTEDVERSION = (winmdroot.Foundation.HRESULT)(-2003292405); 346 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_NOTINITIALIZED = (winmdroot.Foundation.HRESULT)(-2003292404); 348 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_ALREADYLOCKED = (winmdroot.Foundation.HRESULT)(-2003292403); 350 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_PROPERTYNOTFOUND = (winmdroot.Foundation.HRESULT)(-2003292352); 352 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_PROPERTYNOTSUPPORTED = (winmdroot.Foundation.HRESULT)(-2003292351); 354 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_PROPERTYSIZE = (winmdroot.Foundation.HRESULT)(-2003292350); 356 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_CODECPRESENT = (winmdroot.Foundation.HRESULT)(-2003292349); 358 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_CODECNOTHUMBNAIL = (winmdroot.Foundation.HRESULT)(-2003292348); 360 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_PALETTEUNAVAILABLE = (winmdroot.Foundation.HRESULT)(-2003292347); 362 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_CODECTOOMANYSCANLINES = (winmdroot.Foundation.HRESULT)(-2003292346); 364 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_INTERNALERROR = (winmdroot.Foundation.HRESULT)(-2003292344); 366 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_SOURCERECTDOESNOTMATCHDIMENSIONS = (winmdroot.Foundation.HRESULT)(-2003292343); 368 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_COMPONENTNOTFOUND = (winmdroot.Foundation.HRESULT)(-2003292336); 370 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_IMAGESIZEOUTOFRANGE = (winmdroot.Foundation.HRESULT)(-2003292335); 372 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_TOOMUCHMETADATA = (winmdroot.Foundation.HRESULT)(-2003292334); 374 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_BADIMAGE = (winmdroot.Foundation.HRESULT)(-2003292320); 376 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_BADHEADER = (winmdroot.Foundation.HRESULT)(-2003292319); 378 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_FRAMEMISSING = (winmdroot.Foundation.HRESULT)(-2003292318); 380 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_BADMETADATAHEADER = (winmdroot.Foundation.HRESULT)(-2003292317); 382 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_BADSTREAMDATA = (winmdroot.Foundation.HRESULT)(-2003292304); 384 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_STREAMWRITE = (winmdroot.Foundation.HRESULT)(-2003292303); 386 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_STREAMREAD = (winmdroot.Foundation.HRESULT)(-2003292302); 388 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_STREAMNOTAVAILABLE = (winmdroot.Foundation.HRESULT)(-2003292301); 390 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_UNSUPPORTEDPIXELFORMAT = (winmdroot.Foundation.HRESULT)(-2003292288); 392 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_UNSUPPORTEDOPERATION = (winmdroot.Foundation.HRESULT)(-2003292287); 394 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_INVALIDREGISTRATION = (winmdroot.Foundation.HRESULT)(-2003292278); 396 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_COMPONENTINITIALIZEFAILURE = (winmdroot.Foundation.HRESULT)(-2003292277); 398 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_INSUFFICIENTBUFFER = (winmdroot.Foundation.HRESULT)(-2003292276); 400 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_DUPLICATEMETADATAPRESENT = (winmdroot.Foundation.HRESULT)(-2003292275); 402 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_PROPERTYUNEXPECTEDTYPE = (winmdroot.Foundation.HRESULT)(-2003292274); 404 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_UNEXPECTEDSIZE = (winmdroot.Foundation.HRESULT)(-2003292273); 406 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_INVALIDQUERYREQUEST = (winmdroot.Foundation.HRESULT)(-2003292272); 408 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_UNEXPECTEDMETADATATYPE = (winmdroot.Foundation.HRESULT)(-2003292271); 410 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_REQUESTONLYVALIDATMETADATAROOT = (winmdroot.Foundation.HRESULT)(-2003292270); 412 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_INVALIDQUERYCHARACTER = (winmdroot.Foundation.HRESULT)(-2003292269); 414 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_WIN32ERROR = (winmdroot.Foundation.HRESULT)(-2003292268); 416 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_INVALIDPROGRESSIVELEVEL = (winmdroot.Foundation.HRESULT)(-2003292267); 418 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_INVALIDJPEGSCANINDEX = (winmdroot.Foundation.HRESULT)(-2003292266); 420 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_UNSUPPORTEDTONEMAPPING = (winmdroot.Foundation.HRESULT)(-2003292265);
_generated\123\Windows.Win32.IAdviseSink.g.cs (12)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IAdviseSink*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IAdviseSink*)Unsafe.AsPointer(ref this), riid, ppvObject); 77 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 137 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 163 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 188 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 209 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 215 var hr = this.QueryInterface(&guid, &pv); 232 internal delegate *unmanaged [Stdcall]<IAdviseSink*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1;
_generated\124\Windows.Win32.IBindCtx.g.cs (81)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IBindCtx*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IBindCtx*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT RegisterObjectBound(IBindCtx* pThis, winmdroot.System.Com.IUnknown* punk) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 public unsafe winmdroot.Foundation.HRESULT RegisterObjectBound(winmdroot.System.Com.IUnknown* punk) 87 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IBindCtx*)Unsafe.AsPointer(ref this), punk); 93 private static winmdroot.Foundation.HRESULT RevokeObjectBound(IBindCtx* pThis, winmdroot.System.Com.IUnknown* punk) 97 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 106 return (winmdroot.Foundation.HRESULT)ex.HResult; 117 public unsafe winmdroot.Foundation.HRESULT RevokeObjectBound(winmdroot.System.Com.IUnknown* punk) 119 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IBindCtx*)Unsafe.AsPointer(ref this), punk); 125 private static winmdroot.Foundation.HRESULT ReleaseBoundObjects(IBindCtx* pThis) 129 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 138 return (winmdroot.Foundation.HRESULT)ex.HResult; 148 public winmdroot.Foundation.HRESULT ReleaseBoundObjects() 150 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IBindCtx*)Unsafe.AsPointer(ref this)); 155 internal unsafe winmdroot.Foundation.HRESULT SetBindOptions(in winmdroot.System.Com.BIND_OPTS pbindopts) 159 winmdroot.Foundation.HRESULT __result = this.SetBindOptions(pbindoptsLocal); 167 private static winmdroot.Foundation.HRESULT SetBindOptions(IBindCtx* pThis, winmdroot.System.Com.BIND_OPTS* pbindopts) 171 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 public unsafe winmdroot.Foundation.HRESULT SetBindOptions(winmdroot.System.Com.BIND_OPTS* pbindopts) 195 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.BIND_OPTS* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IBindCtx*)Unsafe.AsPointer(ref this), pbindopts); 200 internal unsafe winmdroot.Foundation.HRESULT GetBindOptions(ref winmdroot.System.Com.BIND_OPTS pbindopts) 204 winmdroot.Foundation.HRESULT __result = this.GetBindOptions(pbindoptsLocal); 212 private static winmdroot.Foundation.HRESULT GetBindOptions(IBindCtx* pThis, winmdroot.System.Com.BIND_OPTS* pbindopts) 216 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 225 return (winmdroot.Foundation.HRESULT)ex.HResult; 236 public unsafe winmdroot.Foundation.HRESULT GetBindOptions(winmdroot.System.Com.BIND_OPTS* pbindopts) 238 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.BIND_OPTS* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IBindCtx*)Unsafe.AsPointer(ref this), pbindopts); 244 private static winmdroot.Foundation.HRESULT GetRunningObjectTable(IBindCtx* pThis, winmdroot.System.Com.IRunningObjectTable** pprot) 248 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 257 return (winmdroot.Foundation.HRESULT)ex.HResult; 268 public unsafe winmdroot.Foundation.HRESULT GetRunningObjectTable(winmdroot.System.Com.IRunningObjectTable** pprot) 270 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IRunningObjectTable** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IBindCtx*)Unsafe.AsPointer(ref this), pprot); 276 private static winmdroot.Foundation.HRESULT RegisterObjectParam(IBindCtx* pThis, winmdroot.Foundation.PWSTR pszKey, winmdroot.System.Com.IUnknown* punk) 280 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 289 return (winmdroot.Foundation.HRESULT)ex.HResult; 305 public unsafe winmdroot.Foundation.HRESULT RegisterObjectParam(winmdroot.Foundation.PWSTR pszKey, winmdroot.System.Com.IUnknown* punk) 307 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IBindCtx*)Unsafe.AsPointer(ref this), pszKey, punk); 313 private static winmdroot.Foundation.HRESULT GetObjectParam(IBindCtx* pThis, winmdroot.Foundation.PWSTR pszKey, winmdroot.System.Com.IUnknown** ppunk) 317 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 326 return (winmdroot.Foundation.HRESULT)ex.HResult; 338 public unsafe winmdroot.Foundation.HRESULT GetObjectParam(winmdroot.Foundation.PWSTR pszKey, winmdroot.System.Com.IUnknown** ppunk) 340 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IBindCtx*)Unsafe.AsPointer(ref this), pszKey, ppunk); 346 private static winmdroot.Foundation.HRESULT EnumObjectParam(IBindCtx* pThis, winmdroot.System.Com.IEnumString** ppenum) 350 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 359 return (winmdroot.Foundation.HRESULT)ex.HResult; 370 public unsafe winmdroot.Foundation.HRESULT EnumObjectParam(winmdroot.System.Com.IEnumString** ppenum) 372 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IEnumString** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IBindCtx*)Unsafe.AsPointer(ref this), ppenum); 378 private static winmdroot.Foundation.HRESULT RevokeObjectParam(IBindCtx* pThis, winmdroot.Foundation.PWSTR pszKey) 382 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 391 return (winmdroot.Foundation.HRESULT)ex.HResult; 405 public winmdroot.Foundation.HRESULT RevokeObjectParam(winmdroot.Foundation.PWSTR pszKey) 407 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IBindCtx*)Unsafe.AsPointer(ref this), pszKey); 410 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 416 var hr = this.QueryInterface(&guid, &pv); 433 internal delegate *unmanaged [Stdcall]<IBindCtx*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 439 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT> RegisterObjectBound_4; 441 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT> RevokeObjectBound_5; 443 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.HRESULT> ReleaseBoundObjects_6; 445 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.BIND_OPTS* ,winmdroot.Foundation.HRESULT> SetBindOptions_7; 447 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.BIND_OPTS* ,winmdroot.Foundation.HRESULT> GetBindOptions_8; 449 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IRunningObjectTable** ,winmdroot.Foundation.HRESULT> GetRunningObjectTable_9; 451 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT> RegisterObjectParam_10; 453 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> GetObjectParam_11; 455 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IEnumString** ,winmdroot.Foundation.HRESULT> EnumObjectParam_12; 457 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.Foundation.HRESULT> RevokeObjectParam_13; 493 unsafe winmdroot.Foundation.HRESULT RegisterObjectBound(winmdroot.System.Com.IUnknown* punk); 496 unsafe winmdroot.Foundation.HRESULT RevokeObjectBound(winmdroot.System.Com.IUnknown* punk); 499winmdroot.Foundation.HRESULT ReleaseBoundObjects(); 502 unsafe winmdroot.Foundation.HRESULT SetBindOptions(winmdroot.System.Com.BIND_OPTS* pbindopts); 505 unsafe winmdroot.Foundation.HRESULT GetBindOptions(winmdroot.System.Com.BIND_OPTS* pbindopts); 508 unsafe winmdroot.Foundation.HRESULT GetRunningObjectTable(winmdroot.System.Com.IRunningObjectTable** pprot); 511 unsafe winmdroot.Foundation.HRESULT RegisterObjectParam(winmdroot.Foundation.PWSTR pszKey, winmdroot.System.Com.IUnknown* punk); 514 unsafe winmdroot.Foundation.HRESULT GetObjectParam(winmdroot.Foundation.PWSTR pszKey, winmdroot.System.Com.IUnknown** ppunk); 517 unsafe winmdroot.Foundation.HRESULT EnumObjectParam(winmdroot.System.Com.IEnumString** ppenum); 520winmdroot.Foundation.HRESULT RevokeObjectParam(winmdroot.Foundation.PWSTR pszKey);
_generated\127\Windows.Win32.IDataObject.g.cs (82)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IDataObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDataObject*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT GetData(in winmdroot.System.Com.FORMATETC pformatetcIn, out winmdroot.System.Com.STGMEDIUM pmedium) 65 winmdroot.Foundation.HRESULT __result = this.GetData(pformatetcInLocal, pmediumLocal); 74 private static winmdroot.Foundation.HRESULT GetData(IDataObject* pThis, winmdroot.System.Com.FORMATETC* pformatetcIn, winmdroot.System.Com.STGMEDIUM* pmedium) 78 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 87 return (winmdroot.Foundation.HRESULT)ex.HResult; 102 public unsafe winmdroot.Foundation.HRESULT GetData(winmdroot.System.Com.FORMATETC* pformatetcIn, winmdroot.System.Com.STGMEDIUM* pmedium) 104 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); 109 internal unsafe winmdroot.Foundation.HRESULT GetDataHere(in winmdroot.System.Com.FORMATETC pformatetc, ref winmdroot.System.Com.STGMEDIUM pmedium) 115 winmdroot.Foundation.HRESULT __result = this.GetDataHere(pformatetcLocal, pmediumLocal); 124 private static winmdroot.Foundation.HRESULT GetDataHere(IDataObject* pThis, winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pmedium) 128 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 137 return (winmdroot.Foundation.HRESULT)ex.HResult; 152 public unsafe winmdroot.Foundation.HRESULT GetDataHere(winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pmedium) 154 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); 159 internal unsafe winmdroot.Foundation.HRESULT QueryGetData(in winmdroot.System.Com.FORMATETC pformatetc) 163 winmdroot.Foundation.HRESULT __result = this.QueryGetData(pformatetcLocal); 171 private static winmdroot.Foundation.HRESULT QueryGetData(IDataObject* pThis, winmdroot.System.Com.FORMATETC* pformatetc) 175 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 195 public unsafe winmdroot.Foundation.HRESULT QueryGetData(winmdroot.System.Com.FORMATETC* pformatetc) 197 return ((delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IDataObject*)Unsafe.AsPointer(ref this), pformatetc); 202 internal unsafe winmdroot.Foundation.HRESULT GetCanonicalFormatEtc(in winmdroot.System.Com.FORMATETC pformatectIn, out winmdroot.System.Com.FORMATETC pformatetcOut) 208 winmdroot.Foundation.HRESULT __result = this.GetCanonicalFormatEtc(pformatectInLocal, pformatetcOutLocal); 217 private static winmdroot.Foundation.HRESULT GetCanonicalFormatEtc(IDataObject* pThis, winmdroot.System.Com.FORMATETC* pformatectIn, winmdroot.System.Com.FORMATETC* pformatetcOut) 221 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 230 return (winmdroot.Foundation.HRESULT)ex.HResult; 245 public unsafe winmdroot.Foundation.HRESULT GetCanonicalFormatEtc(winmdroot.System.Com.FORMATETC* pformatectIn, winmdroot.System.Com.FORMATETC* pformatetcOut) 247 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); 252 internal unsafe winmdroot.Foundation.HRESULT SetData(in winmdroot.System.Com.FORMATETC pformatetc, in winmdroot.System.Com.STGMEDIUM pmedium, winmdroot.Foundation.BOOL fRelease) 258 winmdroot.Foundation.HRESULT __result = this.SetData(pformatetcLocal, pmediumLocal, fRelease); 267 private static winmdroot.Foundation.HRESULT SetData(IDataObject* pThis, winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pmedium, winmdroot.Foundation.BOOL fRelease) 271 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 280 return (winmdroot.Foundation.HRESULT)ex.HResult; 296 public unsafe winmdroot.Foundation.HRESULT SetData(winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pmedium, winmdroot.Foundation.BOOL fRelease) 298 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); 304 private static winmdroot.Foundation.HRESULT EnumFormatEtc(IDataObject* pThis, uint dwDirection, winmdroot.System.Com.IEnumFORMATETC** ppenumFormatEtc) 308 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 317 return (winmdroot.Foundation.HRESULT)ex.HResult; 336 public unsafe winmdroot.Foundation.HRESULT EnumFormatEtc(uint dwDirection, winmdroot.System.Com.IEnumFORMATETC** ppenumFormatEtc) 338 return ((delegate *unmanaged [Stdcall]<IDataObject*,uint ,winmdroot.System.Com.IEnumFORMATETC** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IDataObject*)Unsafe.AsPointer(ref this), dwDirection, ppenumFormatEtc); 343 internal unsafe winmdroot.Foundation.HRESULT DAdvise(in winmdroot.System.Com.FORMATETC pformatetc, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink, out uint pdwConnection) 349 winmdroot.Foundation.HRESULT __result = this.DAdvise(pformatetcLocal, advf, pAdvSink, pdwConnectionLocal); 358 private static winmdroot.Foundation.HRESULT DAdvise(IDataObject* pThis, winmdroot.System.Com.FORMATETC* pformatetc, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink, uint* pdwConnection) 362 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 371 return (winmdroot.Foundation.HRESULT)ex.HResult; 394 public unsafe winmdroot.Foundation.HRESULT DAdvise(winmdroot.System.Com.FORMATETC* pformatetc, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink, uint* pdwConnection) 396 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); 402 private static winmdroot.Foundation.HRESULT DUnadvise(IDataObject* pThis, uint dwConnection) 406 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 415 return (winmdroot.Foundation.HRESULT)ex.HResult; 429 public winmdroot.Foundation.HRESULT DUnadvise(uint dwConnection) 431 return ((delegate *unmanaged [Stdcall]<IDataObject*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IDataObject*)Unsafe.AsPointer(ref this), dwConnection); 437 private static winmdroot.Foundation.HRESULT EnumDAdvise(IDataObject* pThis, winmdroot.System.Com.IEnumSTATDATA** ppenumAdvise) 441 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 450 return (winmdroot.Foundation.HRESULT)ex.HResult; 464 public unsafe winmdroot.Foundation.HRESULT EnumDAdvise(winmdroot.System.Com.IEnumSTATDATA** ppenumAdvise) 466 return ((delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IDataObject*)Unsafe.AsPointer(ref this), ppenumAdvise); 469 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 475 var hr = this.QueryInterface(&guid, &pv); 492 internal delegate *unmanaged [Stdcall]<IDataObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 498 internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.HRESULT> GetData_4; 500 internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.HRESULT> GetDataHere_5; 502 internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.Foundation.HRESULT> QueryGetData_6; 504 internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.FORMATETC* ,winmdroot.Foundation.HRESULT> GetCanonicalFormatEtc_7; 506 internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> SetData_8; 508 internal delegate *unmanaged [Stdcall]<IDataObject*,uint ,winmdroot.System.Com.IEnumFORMATETC** ,winmdroot.Foundation.HRESULT> EnumFormatEtc_9; 510 internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,uint ,winmdroot.System.Com.IAdviseSink* ,uint* ,winmdroot.Foundation.HRESULT> DAdvise_10; 512 internal delegate *unmanaged [Stdcall]<IDataObject*,uint ,winmdroot.Foundation.HRESULT> DUnadvise_11; 514 internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.HRESULT> EnumDAdvise_12; 549 unsafe winmdroot.Foundation.HRESULT GetData(winmdroot.System.Com.FORMATETC* pformatetcIn, winmdroot.System.Com.STGMEDIUM* pmedium); 552 unsafe winmdroot.Foundation.HRESULT GetDataHere(winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pmedium); 555 unsafe winmdroot.Foundation.HRESULT QueryGetData(winmdroot.System.Com.FORMATETC* pformatetc); 558 unsafe winmdroot.Foundation.HRESULT GetCanonicalFormatEtc(winmdroot.System.Com.FORMATETC* pformatectIn, winmdroot.System.Com.FORMATETC* pformatetcOut); 561 unsafe winmdroot.Foundation.HRESULT SetData(winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pmedium, winmdroot.Foundation.BOOL fRelease); 564 unsafe winmdroot.Foundation.HRESULT EnumFormatEtc(uint dwDirection, winmdroot.System.Com.IEnumFORMATETC** ppenumFormatEtc); 567 unsafe winmdroot.Foundation.HRESULT DAdvise(winmdroot.System.Com.FORMATETC* pformatetc, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink, uint* pdwConnection); 570winmdroot.Foundation.HRESULT DUnadvise(uint dwConnection); 573 unsafe winmdroot.Foundation.HRESULT EnumDAdvise(winmdroot.System.Com.IEnumSTATDATA** ppenumAdvise);
_generated\128\Windows.Win32.IDataObjectAsyncCapability.g.cs (51)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT SetAsyncMode(IDataObjectAsyncCapability* pThis, winmdroot.Foundation.BOOL fDoOpAsync) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 public winmdroot.Foundation.HRESULT SetAsyncMode(winmdroot.Foundation.BOOL fDoOpAsync) 91 return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), fDoOpAsync); 96 internal unsafe winmdroot.Foundation.HRESULT GetAsyncMode(out winmdroot.Foundation.BOOL pfIsOpAsync) 100 winmdroot.Foundation.HRESULT __result = this.GetAsyncMode(pfIsOpAsyncLocal); 108 private static winmdroot.Foundation.HRESULT GetAsyncMode(IDataObjectAsyncCapability* pThis, winmdroot.Foundation.BOOL* pfIsOpAsync) 112 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 121 return (winmdroot.Foundation.HRESULT)ex.HResult; 134 public unsafe winmdroot.Foundation.HRESULT GetAsyncMode(winmdroot.Foundation.BOOL* pfIsOpAsync) 136 return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), pfIsOpAsync); 142 private static winmdroot.Foundation.HRESULT StartOperation(IDataObjectAsyncCapability* pThis, [Optional] winmdroot.System.Com.IBindCtx* pbcReserved) 146 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 155 return (winmdroot.Foundation.HRESULT)ex.HResult; 168 public unsafe winmdroot.Foundation.HRESULT StartOperation([Optional] winmdroot.System.Com.IBindCtx* pbcReserved) 170 return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.System.Com.IBindCtx* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), pbcReserved); 175 internal unsafe winmdroot.Foundation.HRESULT InOperation(out winmdroot.Foundation.BOOL pfInAsyncOp) 179 winmdroot.Foundation.HRESULT __result = this.InOperation(pfInAsyncOpLocal); 187 private static winmdroot.Foundation.HRESULT InOperation(IDataObjectAsyncCapability* pThis, winmdroot.Foundation.BOOL* pfInAsyncOp) 191 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 200 return (winmdroot.Foundation.HRESULT)ex.HResult; 213 public unsafe winmdroot.Foundation.HRESULT InOperation(winmdroot.Foundation.BOOL* pfInAsyncOp) 215 return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), pfInAsyncOp); 221 private static winmdroot.Foundation.HRESULT EndOperation(IDataObjectAsyncCapability* pThis, winmdroot.Foundation.HRESULT hResult, winmdroot.System.Com.IBindCtx* pbcReserved, uint dwEffects) 225 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 234 return (winmdroot.Foundation.HRESULT)ex.HResult; 258 public unsafe winmdroot.Foundation.HRESULT EndOperation(winmdroot.Foundation.HRESULT hResult, winmdroot.System.Com.IBindCtx* pbcReserved, uint dwEffects) 260 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); 263 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 269 var hr = this.QueryInterface(&guid, &pv); 286 internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 292 internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> SetAsyncMode_4; 294 internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> GetAsyncMode_5; 296 internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.System.Com.IBindCtx* ,winmdroot.Foundation.HRESULT> StartOperation_6; 298 internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> InOperation_7; 300 internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.HRESULT ,winmdroot.System.Com.IBindCtx* ,uint ,winmdroot.Foundation.HRESULT> EndOperation_8; 331winmdroot.Foundation.HRESULT SetAsyncMode(winmdroot.Foundation.BOOL fDoOpAsync); 334 unsafe winmdroot.Foundation.HRESULT GetAsyncMode(winmdroot.Foundation.BOOL* pfIsOpAsync); 337 unsafe winmdroot.Foundation.HRESULT StartOperation([Optional] winmdroot.System.Com.IBindCtx* pbcReserved); 340 unsafe winmdroot.Foundation.HRESULT InOperation(winmdroot.Foundation.BOOL* pfInAsyncOp); 343 unsafe winmdroot.Foundation.HRESULT EndOperation(winmdroot.Foundation.HRESULT hResult, winmdroot.System.Com.IBindCtx* pbcReserved, uint dwEffects);
_generated\129\Windows.Win32.IDispatch.g.cs (27)
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]<IDispatch*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDispatch*)Unsafe.AsPointer(ref this), riid, ppvObject); 57 internal unsafe winmdroot.Foundation.HRESULT GetTypeInfoCount(out uint pctinfo) 61 winmdroot.Foundation.HRESULT __result = this.GetTypeInfoCount(pctinfoLocal); 73 public unsafe winmdroot.Foundation.HRESULT GetTypeInfoCount(uint* pctinfo) 75 return ((delegate *unmanaged [Stdcall]<IDispatch*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IDispatch*)Unsafe.AsPointer(ref this), pctinfo); 89 public unsafe winmdroot.Foundation.HRESULT GetTypeInfo(uint iTInfo, uint lcid, winmdroot.System.Com.ITypeInfo** ppTInfo) 91 return ((delegate *unmanaged [Stdcall]<IDispatch*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDispatch*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo); 95 internal unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(in global::System.Guid riid, ReadOnlySpan<winmdroot.Foundation.PWSTR> rgszNames, uint lcid, Span<int> rgDispId) 104 winmdroot.Foundation.HRESULT __result = this.GetIDsOfNames(riidLocal, rgszNamesLocal, (uint )(rgDispId.IsEmpty ? rgszNames.Length : rgDispId.Length), lcid, rgDispIdLocal); 125 public unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(global::System.Guid* riid, winmdroot.Foundation.PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId) 127 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); 132 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, out winmdroot.System.Variant.VARIANT pVarResult, out winmdroot.System.Com.EXCEPINFO pExcepInfo, out uint puArgErr) 144 winmdroot.Foundation.HRESULT __result = this.Invoke(dispIdMember, riidLocal, lcid, wFlags, pDispParamsLocal, pVarResultLocal, pExcepInfoLocal, puArgErrLocal); 154 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) 160 winmdroot.Foundation.HRESULT __result = this.Invoke(dispIdMember, riidLocal, lcid, wFlags, pDispParamsLocal, default(winmdroot.System.Variant.VARIANT* ), default(winmdroot.System.Com.EXCEPINFO* ), default(uint* )); 192 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) 194 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); 197 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 203 var hr = this.QueryInterface(&guid, &pv); 220 internal delegate *unmanaged [Stdcall]<IDispatch*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 226 internal delegate *unmanaged [Stdcall]<IDispatch*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 228 internal delegate *unmanaged [Stdcall]<IDispatch*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 230 internal delegate *unmanaged [Stdcall]<IDispatch*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 232 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;
_generated\130\Windows.Win32.IDispatchEx.g.cs (95)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDispatchEx*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 internal unsafe winmdroot.Foundation.HRESULT GetTypeInfoCount(out uint pctinfo) 62 winmdroot.Foundation.HRESULT __result = this.GetTypeInfoCount(pctinfoLocal); 67 public unsafe winmdroot.Foundation.HRESULT GetTypeInfoCount(uint* pctinfo) 69 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IDispatchEx*)Unsafe.AsPointer(ref this), pctinfo); 72 public unsafe winmdroot.Foundation.HRESULT GetTypeInfo(uint iTInfo, uint lcid, winmdroot.System.Com.ITypeInfo** ppTInfo) 74 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDispatchEx*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo); 78 internal unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(in global::System.Guid riid, ReadOnlySpan<winmdroot.Foundation.PWSTR> rgszNames, uint lcid, Span<int> rgDispId) 87 winmdroot.Foundation.HRESULT __result = this.GetIDsOfNames(riidLocal, rgszNamesLocal, (uint )(rgDispId.IsEmpty ? rgszNames.Length : rgDispId.Length), lcid, rgDispIdLocal); 94 public unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(global::System.Guid* riid, winmdroot.Foundation.PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId) 96 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); 101 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, out winmdroot.System.Variant.VARIANT pVarResult, out winmdroot.System.Com.EXCEPINFO pExcepInfo, out uint puArgErr) 113 winmdroot.Foundation.HRESULT __result = this.Invoke(dispIdMember, riidLocal, lcid, wFlags, pDispParamsLocal, pVarResultLocal, pExcepInfoLocal, puArgErrLocal); 123 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) 129 winmdroot.Foundation.HRESULT __result = this.Invoke(dispIdMember, riidLocal, lcid, wFlags, pDispParamsLocal, default(winmdroot.System.Variant.VARIANT* ), default(winmdroot.System.Com.EXCEPINFO* ), default(uint* )); 135 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) 137 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); 142 internal unsafe winmdroot.Foundation.HRESULT GetDispID(winmdroot.Foundation.BSTR bstrName, uint grfdex, out int pid) 146 winmdroot.Foundation.HRESULT __result = this.GetDispID(bstrName, grfdex, pidLocal); 154 private static winmdroot.Foundation.HRESULT GetDispID(IDispatchEx* pThis, winmdroot.Foundation.BSTR bstrName, uint grfdex, int* pid) 158 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 167 return (winmdroot.Foundation.HRESULT)ex.HResult; 171 public unsafe winmdroot.Foundation.HRESULT GetDispID(winmdroot.Foundation.BSTR bstrName, uint grfdex, int* pid) 173 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.Foundation.BSTR ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IDispatchEx*)Unsafe.AsPointer(ref this), bstrName, grfdex, pid); 178 internal unsafe winmdroot.Foundation.HRESULT InvokeEx(int id, uint lcid, ushort wFlags, in winmdroot.System.Com.DISPPARAMS pdp, out winmdroot.System.Variant.VARIANT pvarRes, out winmdroot.System.Com.EXCEPINFO pei, [Optional] winmdroot.System.Com.IServiceProvider* pspCaller) 186 winmdroot.Foundation.HRESULT __result = this.InvokeEx(id, lcid, wFlags, pdpLocal, pvarResLocal, peiLocal, pspCaller); 194 internal unsafe winmdroot.Foundation.HRESULT InvokeEx(int id, uint lcid, ushort wFlags, in winmdroot.System.Com.DISPPARAMS pdp, [Optional] winmdroot.System.Com.IServiceProvider* pspCaller) 198 winmdroot.Foundation.HRESULT __result = this.InvokeEx(id, lcid, wFlags, pdpLocal, default(winmdroot.System.Variant.VARIANT* ), default(winmdroot.System.Com.EXCEPINFO* ), pspCaller); 206 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) 210 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 219 return (winmdroot.Foundation.HRESULT)ex.HResult; 223 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) 225 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); 231 private static winmdroot.Foundation.HRESULT DeleteMemberByName(IDispatchEx* pThis, winmdroot.Foundation.BSTR bstrName, uint grfdex) 235 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 244 return (winmdroot.Foundation.HRESULT)ex.HResult; 248 public winmdroot.Foundation.HRESULT DeleteMemberByName(winmdroot.Foundation.BSTR bstrName, uint grfdex) 250 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.Foundation.BSTR ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IDispatchEx*)Unsafe.AsPointer(ref this), bstrName, grfdex); 256 private static winmdroot.Foundation.HRESULT DeleteMemberByDispID(IDispatchEx* pThis, int id) 260 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 269 return (winmdroot.Foundation.HRESULT)ex.HResult; 273 public winmdroot.Foundation.HRESULT DeleteMemberByDispID(int id) 275 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IDispatchEx*)Unsafe.AsPointer(ref this), id); 280 internal unsafe winmdroot.Foundation.HRESULT GetMemberProperties(int id, uint grfdexFetch, out winmdroot.System.Ole.FDEX_PROP_FLAGS pgrfdex) 284 winmdroot.Foundation.HRESULT __result = this.GetMemberProperties(id, grfdexFetch, pgrfdexLocal); 292 private static winmdroot.Foundation.HRESULT GetMemberProperties(IDispatchEx* pThis, int id, uint grfdexFetch, winmdroot.System.Ole.FDEX_PROP_FLAGS* pgrfdex) 296 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 305 return (winmdroot.Foundation.HRESULT)ex.HResult; 309 public unsafe winmdroot.Foundation.HRESULT GetMemberProperties(int id, uint grfdexFetch, winmdroot.System.Ole.FDEX_PROP_FLAGS* pgrfdex) 311 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); 316 internal unsafe winmdroot.Foundation.HRESULT GetMemberName(int id, out winmdroot.Foundation.BSTR pbstrName) 320 winmdroot.Foundation.HRESULT __result = this.GetMemberName(id, pbstrNameLocal); 328 private static winmdroot.Foundation.HRESULT GetMemberName(IDispatchEx* pThis, int id, winmdroot.Foundation.BSTR* pbstrName) 332 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 341 return (winmdroot.Foundation.HRESULT)ex.HResult; 345 public unsafe winmdroot.Foundation.HRESULT GetMemberName(int id, winmdroot.Foundation.BSTR* pbstrName) 347 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IDispatchEx*)Unsafe.AsPointer(ref this), id, pbstrName); 352 internal unsafe winmdroot.Foundation.HRESULT GetNextDispID(uint grfdex, int id, out int pid) 356 winmdroot.Foundation.HRESULT __result = this.GetNextDispID(grfdex, id, pidLocal); 364 private static winmdroot.Foundation.HRESULT GetNextDispID(IDispatchEx* pThis, uint grfdex, int id, int* pid) 368 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 377 return (winmdroot.Foundation.HRESULT)ex.HResult; 381 public unsafe winmdroot.Foundation.HRESULT GetNextDispID(uint grfdex, int id, int* pid) 383 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,uint ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IDispatchEx*)Unsafe.AsPointer(ref this), grfdex, id, pid); 389 private static winmdroot.Foundation.HRESULT GetNameSpaceParent(IDispatchEx* pThis, winmdroot.System.Com.IUnknown** ppunk) 393 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 402 return (winmdroot.Foundation.HRESULT)ex.HResult; 406 public unsafe winmdroot.Foundation.HRESULT GetNameSpaceParent(winmdroot.System.Com.IUnknown** ppunk) 408 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IDispatchEx*)Unsafe.AsPointer(ref this), ppunk); 411 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 417 var hr = this.QueryInterface(&guid, &pv); 434 internal delegate *unmanaged [Stdcall]<IDispatchEx*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 440 internal delegate *unmanaged [Stdcall]<IDispatchEx*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 442 internal delegate *unmanaged [Stdcall]<IDispatchEx*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 444 internal delegate *unmanaged [Stdcall]<IDispatchEx*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 446 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; 448 internal delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.Foundation.BSTR ,uint ,int* ,winmdroot.Foundation.HRESULT> GetDispID_8; 450 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; 452 internal delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.Foundation.BSTR ,uint ,winmdroot.Foundation.HRESULT> DeleteMemberByName_10; 454 internal delegate *unmanaged [Stdcall]<IDispatchEx*,int ,winmdroot.Foundation.HRESULT> DeleteMemberByDispID_11; 456 internal delegate *unmanaged [Stdcall]<IDispatchEx*,int ,uint ,winmdroot.System.Ole.FDEX_PROP_FLAGS* ,winmdroot.Foundation.HRESULT> GetMemberProperties_12; 458 internal delegate *unmanaged [Stdcall]<IDispatchEx*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetMemberName_13; 460 internal delegate *unmanaged [Stdcall]<IDispatchEx*,uint ,int ,int* ,winmdroot.Foundation.HRESULT> GetNextDispID_14; 462 internal delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> GetNameSpaceParent_15; 495 unsafe winmdroot.Foundation.HRESULT GetDispID(winmdroot.Foundation.BSTR bstrName, uint grfdex, int* pid); 498 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); 501winmdroot.Foundation.HRESULT DeleteMemberByName(winmdroot.Foundation.BSTR bstrName, uint grfdex); 504winmdroot.Foundation.HRESULT DeleteMemberByDispID(int id); 507 unsafe winmdroot.Foundation.HRESULT GetMemberProperties(int id, uint grfdexFetch, winmdroot.System.Ole.FDEX_PROP_FLAGS* pgrfdex); 510 unsafe winmdroot.Foundation.HRESULT GetMemberName(int id, winmdroot.Foundation.BSTR* pbstrName); 513 unsafe winmdroot.Foundation.HRESULT GetNextDispID(uint grfdex, int id, int* pid); 516 unsafe winmdroot.Foundation.HRESULT GetNameSpaceParent(winmdroot.System.Com.IUnknown** ppunk);
_generated\133\Windows.Win32.IDragSourceHelper.g.cs (25)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IDragSourceHelper*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDragSourceHelper*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT InitializeFromBitmap(in winmdroot.UI.Shell.SHDRAGIMAGE pshdi, winmdroot.System.Com.IDataObject* pDataObject) 63 winmdroot.Foundation.HRESULT __result = this.InitializeFromBitmap(pshdiLocal, pDataObject); 71 private static winmdroot.Foundation.HRESULT InitializeFromBitmap(IDragSourceHelper* pThis, winmdroot.UI.Shell.SHDRAGIMAGE* pshdi, winmdroot.System.Com.IDataObject* pDataObject) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 101 public unsafe winmdroot.Foundation.HRESULT InitializeFromBitmap(winmdroot.UI.Shell.SHDRAGIMAGE* pshdi, winmdroot.System.Com.IDataObject* pDataObject) 103 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); 108 internal unsafe winmdroot.Foundation.HRESULT InitializeFromWindow([Optional] winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point? ppt, winmdroot.System.Com.IDataObject* pDataObject) 111 winmdroot.Foundation.HRESULT __result = this.InitializeFromWindow(hwnd, ppt.HasValue ? &pptLocal : null, pDataObject); 118 private static winmdroot.Foundation.HRESULT InitializeFromWindow(IDragSourceHelper* pThis, [Optional] winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point* ppt, winmdroot.System.Com.IDataObject* pDataObject) 122 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 131 return (winmdroot.Foundation.HRESULT)ex.HResult; 152 public unsafe winmdroot.Foundation.HRESULT InitializeFromWindow([Optional] winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point* ppt, winmdroot.System.Com.IDataObject* pDataObject) 154 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); 157 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 163 var hr = this.QueryInterface(&guid, &pv); 180 internal delegate *unmanaged [Stdcall]<IDragSourceHelper*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 186 internal delegate *unmanaged [Stdcall]<IDragSourceHelper*,winmdroot.UI.Shell.SHDRAGIMAGE* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.HRESULT> InitializeFromBitmap_4; 188 internal delegate *unmanaged [Stdcall]<IDragSourceHelper*,winmdroot.Foundation.HWND ,global::System.Drawing.Point* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.HRESULT> InitializeFromWindow_5; 216 unsafe winmdroot.Foundation.HRESULT InitializeFromBitmap(winmdroot.UI.Shell.SHDRAGIMAGE* pshdi, winmdroot.System.Com.IDataObject* pDataObject); 219 unsafe winmdroot.Foundation.HRESULT InitializeFromWindow([Optional] winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point* ppt, winmdroot.System.Com.IDataObject* pDataObject);
_generated\134\Windows.Win32.IDragSourceHelper2.g.cs (32)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IDragSourceHelper2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDragSourceHelper2*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT InitializeFromBitmap(in winmdroot.UI.Shell.SHDRAGIMAGE pshdi, winmdroot.System.Com.IDataObject* pDataObject) 63 winmdroot.Foundation.HRESULT __result = this.InitializeFromBitmap(pshdiLocal, pDataObject); 71 private static winmdroot.Foundation.HRESULT InitializeFromBitmap(IDragSourceHelper2* pThis, winmdroot.UI.Shell.SHDRAGIMAGE* pshdi, winmdroot.System.Com.IDataObject* pDataObject) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 88 public unsafe winmdroot.Foundation.HRESULT InitializeFromBitmap(winmdroot.UI.Shell.SHDRAGIMAGE* pshdi, winmdroot.System.Com.IDataObject* pDataObject) 90 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); 95 internal unsafe winmdroot.Foundation.HRESULT InitializeFromWindow([Optional] winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point? ppt, winmdroot.System.Com.IDataObject* pDataObject) 98 winmdroot.Foundation.HRESULT __result = this.InitializeFromWindow(hwnd, ppt.HasValue ? &pptLocal : null, pDataObject); 105 private static winmdroot.Foundation.HRESULT InitializeFromWindow(IDragSourceHelper2* pThis, [Optional] winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point* ppt, winmdroot.System.Com.IDataObject* pDataObject) 109 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 118 return (winmdroot.Foundation.HRESULT)ex.HResult; 122 public unsafe winmdroot.Foundation.HRESULT InitializeFromWindow([Optional] winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point* ppt, winmdroot.System.Com.IDataObject* pDataObject) 124 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); 130 private static winmdroot.Foundation.HRESULT SetFlags(IDragSourceHelper2* pThis, uint dwFlags) 134 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 143 return (winmdroot.Foundation.HRESULT)ex.HResult; 158 public winmdroot.Foundation.HRESULT SetFlags(uint dwFlags) 160 return ((delegate *unmanaged [Stdcall]<IDragSourceHelper2*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IDragSourceHelper2*)Unsafe.AsPointer(ref this), dwFlags); 163 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 169 var hr = this.QueryInterface(&guid, &pv); 186 internal delegate *unmanaged [Stdcall]<IDragSourceHelper2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 192 internal delegate *unmanaged [Stdcall]<IDragSourceHelper2*,winmdroot.UI.Shell.SHDRAGIMAGE* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.HRESULT> InitializeFromBitmap_4; 194 internal delegate *unmanaged [Stdcall]<IDragSourceHelper2*,winmdroot.Foundation.HWND ,global::System.Drawing.Point* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.HRESULT> InitializeFromWindow_5; 196 internal delegate *unmanaged [Stdcall]<IDragSourceHelper2*,uint ,winmdroot.Foundation.HRESULT> SetFlags_6; 225 unsafe new winmdroot.Foundation.HRESULT InitializeFromBitmap(winmdroot.UI.Shell.SHDRAGIMAGE* pshdi, winmdroot.System.Com.IDataObject* pDataObject); 228 unsafe new winmdroot.Foundation.HRESULT InitializeFromWindow([Optional] winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point* ppt, winmdroot.System.Com.IDataObject* pDataObject); 231winmdroot.Foundation.HRESULT SetFlags(uint dwFlags);
_generated\135\Windows.Win32.IDropSource.g.cs (21)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IDropSource*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDropSource*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT QueryContinueDrag(IDropSource* pThis, winmdroot.Foundation.BOOL fEscapePressed, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 public winmdroot.Foundation.HRESULT QueryContinueDrag(winmdroot.Foundation.BOOL fEscapePressed, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState) 87 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); 93 private static winmdroot.Foundation.HRESULT GiveFeedback(IDropSource* pThis, winmdroot.System.Ole.DROPEFFECT dwEffect) 97 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 106 return (winmdroot.Foundation.HRESULT)ex.HResult; 121 public winmdroot.Foundation.HRESULT GiveFeedback(winmdroot.System.Ole.DROPEFFECT dwEffect) 123 return ((delegate *unmanaged [Stdcall]<IDropSource*,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDropSource*)Unsafe.AsPointer(ref this), dwEffect); 126 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 132 var hr = this.QueryInterface(&guid, &pv); 149 internal delegate *unmanaged [Stdcall]<IDropSource*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 155 internal delegate *unmanaged [Stdcall]<IDropSource*,winmdroot.Foundation.BOOL ,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.HRESULT> QueryContinueDrag_4; 157 internal delegate *unmanaged [Stdcall]<IDropSource*,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.HRESULT> GiveFeedback_5; 185winmdroot.Foundation.HRESULT QueryContinueDrag(winmdroot.Foundation.BOOL fEscapePressed, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState); 188winmdroot.Foundation.HRESULT GiveFeedback(winmdroot.System.Ole.DROPEFFECT dwEffect);
_generated\136\Windows.Win32.IDropSourceNotify.g.cs (21)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IDropSourceNotify*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDropSourceNotify*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT DragEnterTarget(IDropSourceNotify* pThis, winmdroot.Foundation.HWND hwndTarget) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 83 public winmdroot.Foundation.HRESULT DragEnterTarget(winmdroot.Foundation.HWND hwndTarget) 85 return ((delegate *unmanaged [Stdcall]<IDropSourceNotify*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IDropSourceNotify*)Unsafe.AsPointer(ref this), hwndTarget); 91 private static winmdroot.Foundation.HRESULT DragLeaveTarget(IDropSourceNotify* pThis) 95 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 104 return (winmdroot.Foundation.HRESULT)ex.HResult; 113 public winmdroot.Foundation.HRESULT DragLeaveTarget() 115 return ((delegate *unmanaged [Stdcall]<IDropSourceNotify*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDropSourceNotify*)Unsafe.AsPointer(ref this)); 118 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 124 var hr = this.QueryInterface(&guid, &pv); 141 internal delegate *unmanaged [Stdcall]<IDropSourceNotify*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 147 internal delegate *unmanaged [Stdcall]<IDropSourceNotify*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT> DragEnterTarget_4; 149 internal delegate *unmanaged [Stdcall]<IDropSourceNotify*,winmdroot.Foundation.HRESULT> DragLeaveTarget_5; 177winmdroot.Foundation.HRESULT DragEnterTarget(winmdroot.Foundation.HWND hwndTarget); 180winmdroot.Foundation.HRESULT DragLeaveTarget();
_generated\137\Windows.Win32.IDropTarget.g.cs (41)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IDropTarget*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDropTarget*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 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) 63 winmdroot.Foundation.HRESULT __result = this.DragEnter(pDataObj, grfKeyState, pt, pdwEffectLocal); 71 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) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 102 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) 104 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); 109 internal unsafe winmdroot.Foundation.HRESULT DragOver(winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, ref winmdroot.System.Ole.DROPEFFECT pdwEffect) 113 winmdroot.Foundation.HRESULT __result = this.DragOver(grfKeyState, pt, pdwEffectLocal); 121 private static winmdroot.Foundation.HRESULT DragOver(IDropTarget* pThis, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect) 125 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 134 return (winmdroot.Foundation.HRESULT)ex.HResult; 151 public unsafe winmdroot.Foundation.HRESULT DragOver(winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect) 153 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); 159 private static winmdroot.Foundation.HRESULT DragLeave(IDropTarget* pThis) 163 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 172 return (winmdroot.Foundation.HRESULT)ex.HResult; 186 public winmdroot.Foundation.HRESULT DragLeave() 188 return ((delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IDropTarget*)Unsafe.AsPointer(ref this)); 193 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) 197 winmdroot.Foundation.HRESULT __result = this.Drop(pDataObj, grfKeyState, pt, pdwEffectLocal); 205 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) 209 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 218 return (winmdroot.Foundation.HRESULT)ex.HResult; 236 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) 238 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); 241 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 247 var hr = this.QueryInterface(&guid, &pv); 264 internal delegate *unmanaged [Stdcall]<IDropTarget*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 270 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; 272 internal delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.POINTL ,winmdroot.System.Ole.DROPEFFECT* ,winmdroot.Foundation.HRESULT> DragOver_5; 274 internal delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.Foundation.HRESULT> DragLeave_6; 276 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; 306 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); 309 unsafe winmdroot.Foundation.HRESULT DragOver(winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect); 312winmdroot.Foundation.HRESULT DragLeave(); 315 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);
_generated\138\Windows.Win32.IDropTargetHelper.g.cs (48)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IDropTargetHelper*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDropTargetHelper*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 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) 63 winmdroot.Foundation.HRESULT __result = this.DragEnter(hwndTarget, pDataObject, pptLocal, dwEffect); 71 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) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 109 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) 111 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); 117 private static winmdroot.Foundation.HRESULT DragLeave(IDropTargetHelper* pThis) 121 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 130 return (winmdroot.Foundation.HRESULT)ex.HResult; 139 public winmdroot.Foundation.HRESULT DragLeave() 141 return ((delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDropTargetHelper*)Unsafe.AsPointer(ref this)); 146 internal unsafe winmdroot.Foundation.HRESULT DragOver(in global::System.Drawing.Point ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 150 winmdroot.Foundation.HRESULT __result = this.DragOver(pptLocal, dwEffect); 158 private static winmdroot.Foundation.HRESULT DragOver(IDropTargetHelper* pThis, global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 162 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 171 return (winmdroot.Foundation.HRESULT)ex.HResult; 188 public unsafe winmdroot.Foundation.HRESULT DragOver(global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 190 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); 195 internal unsafe winmdroot.Foundation.HRESULT Drop(winmdroot.System.Com.IDataObject* pDataObject, in global::System.Drawing.Point ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 199 winmdroot.Foundation.HRESULT __result = this.Drop(pDataObject, pptLocal, dwEffect); 207 private static winmdroot.Foundation.HRESULT Drop(IDropTargetHelper* pThis, winmdroot.System.Com.IDataObject* pDataObject, global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 211 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 220 return (winmdroot.Foundation.HRESULT)ex.HResult; 241 public unsafe winmdroot.Foundation.HRESULT Drop(winmdroot.System.Com.IDataObject* pDataObject, global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 243 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); 249 private static winmdroot.Foundation.HRESULT Show(IDropTargetHelper* pThis, winmdroot.Foundation.BOOL fShow) 253 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 262 return (winmdroot.Foundation.HRESULT)ex.HResult; 275 public winmdroot.Foundation.HRESULT Show(winmdroot.Foundation.BOOL fShow) 277 return ((delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IDropTargetHelper*)Unsafe.AsPointer(ref this), fShow); 280 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 286 var hr = this.QueryInterface(&guid, &pv); 303 internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 309 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; 311 internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.Foundation.HRESULT> DragLeave_5; 313 internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,global::System.Drawing.Point* ,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.HRESULT> DragOver_6; 315 internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.System.Com.IDataObject* ,global::System.Drawing.Point* ,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.HRESULT> Drop_7; 317 internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Show_8; 348 unsafe winmdroot.Foundation.HRESULT DragEnter(winmdroot.Foundation.HWND hwndTarget, winmdroot.System.Com.IDataObject* pDataObject, global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect); 351winmdroot.Foundation.HRESULT DragLeave(); 354 unsafe winmdroot.Foundation.HRESULT DragOver(global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect); 357 unsafe winmdroot.Foundation.HRESULT Drop(winmdroot.System.Com.IDataObject* pDataObject, global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect); 360winmdroot.Foundation.HRESULT Show(winmdroot.Foundation.BOOL fShow);
_generated\139\Windows.Win32.IEnumFORMATETC.g.cs (39)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IEnumFORMATETC*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumFORMATETC*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.System.Com.FORMATETC> rgelt, out uint pceltFetched) 64 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgelt.Length, rgeltLocal, pceltFetchedLocal); 71 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.System.Com.FORMATETC> rgelt) 75 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgelt.Length, rgeltLocal, default(uint* )); 83 private static winmdroot.Foundation.HRESULT Next(IEnumFORMATETC* pThis, uint celt, winmdroot.System.Com.FORMATETC* rgelt, [Optional] uint* pceltFetched) 87 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 96 return (winmdroot.Foundation.HRESULT)ex.HResult; 111 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.FORMATETC* rgelt, [Optional] uint* pceltFetched) 113 return ((delegate *unmanaged [Stdcall]<IEnumFORMATETC*,uint ,winmdroot.System.Com.FORMATETC* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumFORMATETC*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched); 119 private static winmdroot.Foundation.HRESULT Skip(IEnumFORMATETC* pThis, uint celt) 123 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 132 return (winmdroot.Foundation.HRESULT)ex.HResult; 142 public winmdroot.Foundation.HRESULT Skip(uint celt) 144 return ((delegate *unmanaged [Stdcall]<IEnumFORMATETC*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumFORMATETC*)Unsafe.AsPointer(ref this), celt); 150 private static winmdroot.Foundation.HRESULT Reset(IEnumFORMATETC* pThis) 154 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 public winmdroot.Foundation.HRESULT Reset() 172 return ((delegate *unmanaged [Stdcall]<IEnumFORMATETC*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumFORMATETC*)Unsafe.AsPointer(ref this)); 178 private static winmdroot.Foundation.HRESULT Clone(IEnumFORMATETC* pThis, winmdroot.System.Com.IEnumFORMATETC** ppenum) 182 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 191 return (winmdroot.Foundation.HRESULT)ex.HResult; 204 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumFORMATETC** ppenum) 206 return ((delegate *unmanaged [Stdcall]<IEnumFORMATETC*,winmdroot.System.Com.IEnumFORMATETC** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumFORMATETC*)Unsafe.AsPointer(ref this), ppenum); 209 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 215 var hr = this.QueryInterface(&guid, &pv); 232 internal delegate *unmanaged [Stdcall]<IEnumFORMATETC*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 238 internal delegate *unmanaged [Stdcall]<IEnumFORMATETC*,uint ,winmdroot.System.Com.FORMATETC* ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 240 internal delegate *unmanaged [Stdcall]<IEnumFORMATETC*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 242 internal delegate *unmanaged [Stdcall]<IEnumFORMATETC*,winmdroot.Foundation.HRESULT> Reset_6; 244 internal delegate *unmanaged [Stdcall]<IEnumFORMATETC*,winmdroot.System.Com.IEnumFORMATETC** ,winmdroot.Foundation.HRESULT> Clone_7; 274 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.FORMATETC* rgelt, [Optional] uint* pceltFetched); 277winmdroot.Foundation.HRESULT Skip(uint celt); 280winmdroot.Foundation.HRESULT Reset(); 283 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumFORMATETC** ppenum);
_generated\140\Windows.Win32.IEnumMoniker.g.cs (39)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IEnumMoniker*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumMoniker*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.IMoniker** rgelt, out uint pceltFetched) 63 winmdroot.Foundation.HRESULT __result = this.Next(celt, rgelt, pceltFetchedLocal); 69 internal unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.IMoniker** rgelt) 71 winmdroot.Foundation.HRESULT __result = this.Next(celt, rgelt, default(uint* )); 78 private static winmdroot.Foundation.HRESULT Next(IEnumMoniker* pThis, uint celt, winmdroot.System.Com.IMoniker** rgelt, [Optional] uint* pceltFetched) 82 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 91 return (winmdroot.Foundation.HRESULT)ex.HResult; 106 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.IMoniker** rgelt, [Optional] uint* pceltFetched) 108 return ((delegate *unmanaged [Stdcall]<IEnumMoniker*,uint ,winmdroot.System.Com.IMoniker** ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumMoniker*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched); 114 private static winmdroot.Foundation.HRESULT Skip(IEnumMoniker* pThis, uint celt) 118 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 public winmdroot.Foundation.HRESULT Skip(uint celt) 139 return ((delegate *unmanaged [Stdcall]<IEnumMoniker*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumMoniker*)Unsafe.AsPointer(ref this), celt); 145 private static winmdroot.Foundation.HRESULT Reset(IEnumMoniker* pThis) 149 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 158 return (winmdroot.Foundation.HRESULT)ex.HResult; 165 public winmdroot.Foundation.HRESULT Reset() 167 return ((delegate *unmanaged [Stdcall]<IEnumMoniker*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumMoniker*)Unsafe.AsPointer(ref this)); 173 private static winmdroot.Foundation.HRESULT Clone(IEnumMoniker* pThis, winmdroot.System.Com.IEnumMoniker** ppenum) 177 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 186 return (winmdroot.Foundation.HRESULT)ex.HResult; 199 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumMoniker** ppenum) 201 return ((delegate *unmanaged [Stdcall]<IEnumMoniker*,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumMoniker*)Unsafe.AsPointer(ref this), ppenum); 204 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 210 var hr = this.QueryInterface(&guid, &pv); 227 internal delegate *unmanaged [Stdcall]<IEnumMoniker*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 233 internal delegate *unmanaged [Stdcall]<IEnumMoniker*,uint ,winmdroot.System.Com.IMoniker** ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 235 internal delegate *unmanaged [Stdcall]<IEnumMoniker*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 237 internal delegate *unmanaged [Stdcall]<IEnumMoniker*,winmdroot.Foundation.HRESULT> Reset_6; 239 internal delegate *unmanaged [Stdcall]<IEnumMoniker*,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.HRESULT> Clone_7; 269 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.IMoniker** rgelt, [Optional] uint* pceltFetched); 272winmdroot.Foundation.HRESULT Skip(uint celt); 275winmdroot.Foundation.HRESULT Reset(); 278 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumMoniker** ppenum);
_generated\141\Windows.Win32.IEnumSTATDATA.g.cs (39)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IEnumSTATDATA*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumSTATDATA*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.System.Com.STATDATA> rgelt, out uint pceltFetched) 64 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgelt.Length, rgeltLocal, pceltFetchedLocal); 71 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.System.Com.STATDATA> rgelt) 75 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgelt.Length, rgeltLocal, default(uint* )); 83 private static winmdroot.Foundation.HRESULT Next(IEnumSTATDATA* pThis, uint celt, winmdroot.System.Com.STATDATA* rgelt, [Optional] uint* pceltFetched) 87 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 96 return (winmdroot.Foundation.HRESULT)ex.HResult; 111 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.STATDATA* rgelt, [Optional] uint* pceltFetched) 113 return ((delegate *unmanaged [Stdcall]<IEnumSTATDATA*,uint ,winmdroot.System.Com.STATDATA* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumSTATDATA*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched); 119 private static winmdroot.Foundation.HRESULT Skip(IEnumSTATDATA* pThis, uint celt) 123 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 132 return (winmdroot.Foundation.HRESULT)ex.HResult; 142 public winmdroot.Foundation.HRESULT Skip(uint celt) 144 return ((delegate *unmanaged [Stdcall]<IEnumSTATDATA*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumSTATDATA*)Unsafe.AsPointer(ref this), celt); 150 private static winmdroot.Foundation.HRESULT Reset(IEnumSTATDATA* pThis) 154 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 public winmdroot.Foundation.HRESULT Reset() 172 return ((delegate *unmanaged [Stdcall]<IEnumSTATDATA*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumSTATDATA*)Unsafe.AsPointer(ref this)); 178 private static winmdroot.Foundation.HRESULT Clone(IEnumSTATDATA* pThis, winmdroot.System.Com.IEnumSTATDATA** ppenum) 182 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 191 return (winmdroot.Foundation.HRESULT)ex.HResult; 204 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumSTATDATA** ppenum) 206 return ((delegate *unmanaged [Stdcall]<IEnumSTATDATA*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumSTATDATA*)Unsafe.AsPointer(ref this), ppenum); 209 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 215 var hr = this.QueryInterface(&guid, &pv); 232 internal delegate *unmanaged [Stdcall]<IEnumSTATDATA*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 238 internal delegate *unmanaged [Stdcall]<IEnumSTATDATA*,uint ,winmdroot.System.Com.STATDATA* ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 240 internal delegate *unmanaged [Stdcall]<IEnumSTATDATA*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 242 internal delegate *unmanaged [Stdcall]<IEnumSTATDATA*,winmdroot.Foundation.HRESULT> Reset_6; 244 internal delegate *unmanaged [Stdcall]<IEnumSTATDATA*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.HRESULT> Clone_7; 274 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.STATDATA* rgelt, [Optional] uint* pceltFetched); 277winmdroot.Foundation.HRESULT Skip(uint celt); 280winmdroot.Foundation.HRESULT Reset(); 283 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumSTATDATA** ppenum);
_generated\142\Windows.Win32.IEnumSTATSTG.g.cs (39)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IEnumSTATSTG*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumSTATSTG*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.System.Com.STATSTG> rgelt, out uint pceltFetched) 64 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgelt.Length, rgeltLocal, pceltFetchedLocal); 71 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.System.Com.STATSTG> rgelt) 75 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgelt.Length, rgeltLocal, default(uint* )); 83 private static winmdroot.Foundation.HRESULT Next(IEnumSTATSTG* pThis, uint celt, winmdroot.System.Com.STATSTG* rgelt, [Optional] uint* pceltFetched) 87 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 96 return (winmdroot.Foundation.HRESULT)ex.HResult; 111 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.STATSTG* rgelt, [Optional] uint* pceltFetched) 113 return ((delegate *unmanaged [Stdcall]<IEnumSTATSTG*,uint ,winmdroot.System.Com.STATSTG* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumSTATSTG*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched); 119 private static winmdroot.Foundation.HRESULT Skip(IEnumSTATSTG* pThis, uint celt) 123 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 132 return (winmdroot.Foundation.HRESULT)ex.HResult; 144 public winmdroot.Foundation.HRESULT Skip(uint celt) 146 return ((delegate *unmanaged [Stdcall]<IEnumSTATSTG*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumSTATSTG*)Unsafe.AsPointer(ref this), celt); 152 private static winmdroot.Foundation.HRESULT Reset(IEnumSTATSTG* pThis) 156 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 165 return (winmdroot.Foundation.HRESULT)ex.HResult; 177 public winmdroot.Foundation.HRESULT Reset() 179 return ((delegate *unmanaged [Stdcall]<IEnumSTATSTG*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumSTATSTG*)Unsafe.AsPointer(ref this)); 185 private static winmdroot.Foundation.HRESULT Clone(IEnumSTATSTG* pThis, winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum) 189 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 198 return (winmdroot.Foundation.HRESULT)ex.HResult; 214 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum) 216 return ((delegate *unmanaged [Stdcall]<IEnumSTATSTG*,winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumSTATSTG*)Unsafe.AsPointer(ref this), ppenum); 219 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 225 var hr = this.QueryInterface(&guid, &pv); 242 internal delegate *unmanaged [Stdcall]<IEnumSTATSTG*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 248 internal delegate *unmanaged [Stdcall]<IEnumSTATSTG*,uint ,winmdroot.System.Com.STATSTG* ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 250 internal delegate *unmanaged [Stdcall]<IEnumSTATSTG*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 252 internal delegate *unmanaged [Stdcall]<IEnumSTATSTG*,winmdroot.Foundation.HRESULT> Reset_6; 254 internal delegate *unmanaged [Stdcall]<IEnumSTATSTG*,winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ,winmdroot.Foundation.HRESULT> Clone_7; 284 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.STATSTG* rgelt, [Optional] uint* pceltFetched); 287winmdroot.Foundation.HRESULT Skip(uint celt); 290winmdroot.Foundation.HRESULT Reset(); 293 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum);
_generated\143\Windows.Win32.IEnumString.g.cs (39)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IEnumString*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumString*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.Foundation.PWSTR> rgelt, out uint pceltFetched) 64 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgelt.Length, rgeltLocal, pceltFetchedLocal); 71 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.Foundation.PWSTR> rgelt) 75 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgelt.Length, rgeltLocal, default(uint* )); 83 private static winmdroot.Foundation.HRESULT Next(IEnumString* pThis, uint celt, winmdroot.Foundation.PWSTR* rgelt, [Optional] uint* pceltFetched) 87 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 96 return (winmdroot.Foundation.HRESULT)ex.HResult; 111 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.Foundation.PWSTR* rgelt, [Optional] uint* pceltFetched) 113 return ((delegate *unmanaged [Stdcall]<IEnumString*,uint ,winmdroot.Foundation.PWSTR* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumString*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched); 119 private static winmdroot.Foundation.HRESULT Skip(IEnumString* pThis, uint celt) 123 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 132 return (winmdroot.Foundation.HRESULT)ex.HResult; 142 public winmdroot.Foundation.HRESULT Skip(uint celt) 144 return ((delegate *unmanaged [Stdcall]<IEnumString*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumString*)Unsafe.AsPointer(ref this), celt); 150 private static winmdroot.Foundation.HRESULT Reset(IEnumString* pThis) 154 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 public winmdroot.Foundation.HRESULT Reset() 172 return ((delegate *unmanaged [Stdcall]<IEnumString*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumString*)Unsafe.AsPointer(ref this)); 178 private static winmdroot.Foundation.HRESULT Clone(IEnumString* pThis, winmdroot.System.Com.IEnumString** ppenum) 182 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 191 return (winmdroot.Foundation.HRESULT)ex.HResult; 201 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumString** ppenum) 203 return ((delegate *unmanaged [Stdcall]<IEnumString*,winmdroot.System.Com.IEnumString** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumString*)Unsafe.AsPointer(ref this), ppenum); 206 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 212 var hr = this.QueryInterface(&guid, &pv); 229 internal delegate *unmanaged [Stdcall]<IEnumString*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 235 internal delegate *unmanaged [Stdcall]<IEnumString*,uint ,winmdroot.Foundation.PWSTR* ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 237 internal delegate *unmanaged [Stdcall]<IEnumString*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 239 internal delegate *unmanaged [Stdcall]<IEnumString*,winmdroot.Foundation.HRESULT> Reset_6; 241 internal delegate *unmanaged [Stdcall]<IEnumString*,winmdroot.System.Com.IEnumString** ,winmdroot.Foundation.HRESULT> Clone_7; 271 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.Foundation.PWSTR* rgelt, [Optional] uint* pceltFetched); 274winmdroot.Foundation.HRESULT Skip(uint celt); 277winmdroot.Foundation.HRESULT Reset(); 280 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumString** ppenum);
_generated\144\Windows.Win32.IEnumUnknown.g.cs (39)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IEnumUnknown*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumUnknown*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.IUnknown** rgelt, out uint pceltFetched) 63 winmdroot.Foundation.HRESULT __result = this.Next(celt, rgelt, pceltFetchedLocal); 69 internal unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.IUnknown** rgelt) 71 winmdroot.Foundation.HRESULT __result = this.Next(celt, rgelt, default(uint* )); 78 private static winmdroot.Foundation.HRESULT Next(IEnumUnknown* pThis, uint celt, winmdroot.System.Com.IUnknown** rgelt, [Optional] uint* pceltFetched) 82 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 91 return (winmdroot.Foundation.HRESULT)ex.HResult; 106 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.IUnknown** rgelt, [Optional] uint* pceltFetched) 108 return ((delegate *unmanaged [Stdcall]<IEnumUnknown*,uint ,winmdroot.System.Com.IUnknown** ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumUnknown*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched); 114 private static winmdroot.Foundation.HRESULT Skip(IEnumUnknown* pThis, uint celt) 118 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 public winmdroot.Foundation.HRESULT Skip(uint celt) 139 return ((delegate *unmanaged [Stdcall]<IEnumUnknown*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumUnknown*)Unsafe.AsPointer(ref this), celt); 145 private static winmdroot.Foundation.HRESULT Reset(IEnumUnknown* pThis) 149 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 158 return (winmdroot.Foundation.HRESULT)ex.HResult; 165 public winmdroot.Foundation.HRESULT Reset() 167 return ((delegate *unmanaged [Stdcall]<IEnumUnknown*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumUnknown*)Unsafe.AsPointer(ref this)); 173 private static winmdroot.Foundation.HRESULT Clone(IEnumUnknown* pThis, winmdroot.System.Com.IEnumUnknown** ppenum) 177 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 186 return (winmdroot.Foundation.HRESULT)ex.HResult; 196 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumUnknown** ppenum) 198 return ((delegate *unmanaged [Stdcall]<IEnumUnknown*,winmdroot.System.Com.IEnumUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumUnknown*)Unsafe.AsPointer(ref this), ppenum); 201 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 207 var hr = this.QueryInterface(&guid, &pv); 224 internal delegate *unmanaged [Stdcall]<IEnumUnknown*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 230 internal delegate *unmanaged [Stdcall]<IEnumUnknown*,uint ,winmdroot.System.Com.IUnknown** ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 232 internal delegate *unmanaged [Stdcall]<IEnumUnknown*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 234 internal delegate *unmanaged [Stdcall]<IEnumUnknown*,winmdroot.Foundation.HRESULT> Reset_6; 236 internal delegate *unmanaged [Stdcall]<IEnumUnknown*,winmdroot.System.Com.IEnumUnknown** ,winmdroot.Foundation.HRESULT> Clone_7; 266 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.IUnknown** rgelt, [Optional] uint* pceltFetched); 269winmdroot.Foundation.HRESULT Skip(uint celt); 272winmdroot.Foundation.HRESULT Reset(); 275 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumUnknown** ppenum);
_generated\145\Windows.Win32.IGlobalInterfaceTable.g.cs (32)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IGlobalInterfaceTable*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT RegisterInterfaceInGlobal(winmdroot.System.Com.IUnknown* pUnk, in global::System.Guid riid, out uint pdwCookie) 65 winmdroot.Foundation.HRESULT __result = this.RegisterInterfaceInGlobal(pUnk, riidLocal, pdwCookieLocal); 74 private static winmdroot.Foundation.HRESULT RegisterInterfaceInGlobal(IGlobalInterfaceTable* pThis, winmdroot.System.Com.IUnknown* pUnk, global::System.Guid* riid, uint* pdwCookie) 78 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 87 return (winmdroot.Foundation.HRESULT)ex.HResult; 103 public unsafe winmdroot.Foundation.HRESULT RegisterInterfaceInGlobal(winmdroot.System.Com.IUnknown* pUnk, global::System.Guid* riid, uint* pdwCookie) 105 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); 111 private static winmdroot.Foundation.HRESULT RevokeInterfaceFromGlobal(IGlobalInterfaceTable* pThis, uint dwCookie) 115 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return (winmdroot.Foundation.HRESULT)ex.HResult; 135 public winmdroot.Foundation.HRESULT RevokeInterfaceFromGlobal(uint dwCookie) 137 return ((delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IGlobalInterfaceTable*)Unsafe.AsPointer(ref this), dwCookie); 142 internal unsafe winmdroot.Foundation.HRESULT GetInterfaceFromGlobal(uint dwCookie, in global::System.Guid riid, out void* ppv) 148 winmdroot.Foundation.HRESULT __result = this.GetInterfaceFromGlobal(dwCookie, riidLocal, ppvLocal); 157 private static winmdroot.Foundation.HRESULT GetInterfaceFromGlobal(IGlobalInterfaceTable* pThis, uint dwCookie, global::System.Guid* riid, void** ppv) 161 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 170 return (winmdroot.Foundation.HRESULT)ex.HResult; 186 public unsafe winmdroot.Foundation.HRESULT GetInterfaceFromGlobal(uint dwCookie, global::System.Guid* riid, void** ppv) 188 return ((delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,uint ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IGlobalInterfaceTable*)Unsafe.AsPointer(ref this), dwCookie, riid, ppv); 191 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 197 var hr = this.QueryInterface(&guid, &pv); 214 internal delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 220 internal delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,uint* ,winmdroot.Foundation.HRESULT> RegisterInterfaceInGlobal_4; 222 internal delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,uint ,winmdroot.Foundation.HRESULT> RevokeInterfaceFromGlobal_5; 224 internal delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,uint ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> GetInterfaceFromGlobal_6; 253 unsafe winmdroot.Foundation.HRESULT RegisterInterfaceInGlobal(winmdroot.System.Com.IUnknown* pUnk, global::System.Guid* riid, uint* pdwCookie); 256winmdroot.Foundation.HRESULT RevokeInterfaceFromGlobal(uint dwCookie); 259 unsafe winmdroot.Foundation.HRESULT GetInterfaceFromGlobal(uint dwCookie, global::System.Guid* riid, void** ppv);
_generated\148\Windows.Win32.IMoniker.g.cs (165)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IMoniker*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IMoniker*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT GetClassID(out global::System.Guid pClassID) 63 winmdroot.Foundation.HRESULT __result = this.GetClassID(pClassIDLocal); 71 private static winmdroot.Foundation.HRESULT GetClassID(IMoniker* pThis, global::System.Guid* pClassID) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 88 public unsafe winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID) 90 return ((delegate *unmanaged [Stdcall]<IMoniker*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IMoniker*)Unsafe.AsPointer(ref this), pClassID); 96 private static winmdroot.Foundation.HRESULT IsDirty(IMoniker* pThis) 100 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 109 return (winmdroot.Foundation.HRESULT)ex.HResult; 113 public winmdroot.Foundation.HRESULT IsDirty() 115 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IMoniker*)Unsafe.AsPointer(ref this)); 121 private static winmdroot.Foundation.HRESULT Load(IMoniker* pThis, winmdroot.System.Com.IStream* pStm) 125 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 134 return (winmdroot.Foundation.HRESULT)ex.HResult; 138 public unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.IStream* pStm) 140 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IMoniker*)Unsafe.AsPointer(ref this), pStm); 146 private static winmdroot.Foundation.HRESULT Save(IMoniker* pThis, winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty) 150 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 159 return (winmdroot.Foundation.HRESULT)ex.HResult; 163 public unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty) 165 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IMoniker*)Unsafe.AsPointer(ref this), pStm, fClearDirty); 170 internal unsafe winmdroot.Foundation.HRESULT GetSizeMax(out ulong pcbSize) 174 winmdroot.Foundation.HRESULT __result = this.GetSizeMax(pcbSizeLocal); 182 private static winmdroot.Foundation.HRESULT GetSizeMax(IMoniker* pThis, ulong* pcbSize) 186 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 195 return (winmdroot.Foundation.HRESULT)ex.HResult; 199 public unsafe winmdroot.Foundation.HRESULT GetSizeMax(ulong* pcbSize) 201 return ((delegate *unmanaged [Stdcall]<IMoniker*,ulong* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IMoniker*)Unsafe.AsPointer(ref this), pcbSize); 206 internal unsafe winmdroot.Foundation.HRESULT BindToObject(winmdroot.System.Com.IBindCtx* pbc, [Optional] winmdroot.System.Com.IMoniker* pmkToLeft, in global::System.Guid riidResult, out void* ppvResult) 212 winmdroot.Foundation.HRESULT __result = this.BindToObject(pbc, pmkToLeft, riidResultLocal, ppvResultLocal); 221 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) 225 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 234 return (winmdroot.Foundation.HRESULT)ex.HResult; 252 public unsafe winmdroot.Foundation.HRESULT BindToObject(winmdroot.System.Com.IBindCtx* pbc, [Optional] winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Guid* riidResult, void** ppvResult) 254 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); 259 internal unsafe winmdroot.Foundation.HRESULT BindToStorage(winmdroot.System.Com.IBindCtx* pbc, [Optional] winmdroot.System.Com.IMoniker* pmkToLeft, in global::System.Guid riid, out void* ppvObj) 265 winmdroot.Foundation.HRESULT __result = this.BindToStorage(pbc, pmkToLeft, riidLocal, ppvObjLocal); 274 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) 278 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 287 return (winmdroot.Foundation.HRESULT)ex.HResult; 305 public unsafe winmdroot.Foundation.HRESULT BindToStorage(winmdroot.System.Com.IBindCtx* pbc, [Optional] winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Guid* riid, void** ppvObj) 307 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); 313 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) 317 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 326 return (winmdroot.Foundation.HRESULT)ex.HResult; 347 public unsafe winmdroot.Foundation.HRESULT Reduce(winmdroot.System.Com.IBindCtx* pbc, uint dwReduceHowFar, winmdroot.System.Com.IMoniker** ppmkToLeft, winmdroot.System.Com.IMoniker** ppmkReduced) 349 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); 355 private static winmdroot.Foundation.HRESULT ComposeWith(IMoniker* pThis, winmdroot.System.Com.IMoniker* pmkRight, winmdroot.Foundation.BOOL fOnlyIfNotGeneric, winmdroot.System.Com.IMoniker** ppmkComposite) 359 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 368 return (winmdroot.Foundation.HRESULT)ex.HResult; 385 public unsafe winmdroot.Foundation.HRESULT ComposeWith(winmdroot.System.Com.IMoniker* pmkRight, winmdroot.Foundation.BOOL fOnlyIfNotGeneric, winmdroot.System.Com.IMoniker** ppmkComposite) 387 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); 393 private static winmdroot.Foundation.HRESULT Enum(IMoniker* pThis, winmdroot.Foundation.BOOL fForward, winmdroot.System.Com.IEnumMoniker** ppenumMoniker) 397 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 406 return (winmdroot.Foundation.HRESULT)ex.HResult; 419 public unsafe winmdroot.Foundation.HRESULT Enum(winmdroot.Foundation.BOOL fForward, winmdroot.System.Com.IEnumMoniker** ppenumMoniker) 421 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.Foundation.BOOL ,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IMoniker*)Unsafe.AsPointer(ref this), fForward, ppenumMoniker); 427 private static winmdroot.Foundation.HRESULT IsEqual(IMoniker* pThis, winmdroot.System.Com.IMoniker* pmkOtherMoniker) 431 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 440 return (winmdroot.Foundation.HRESULT)ex.HResult; 452 public unsafe winmdroot.Foundation.HRESULT IsEqual(winmdroot.System.Com.IMoniker* pmkOtherMoniker) 454 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IMoniker*)Unsafe.AsPointer(ref this), pmkOtherMoniker); 459 internal unsafe winmdroot.Foundation.HRESULT Hash(out uint pdwHash) 463 winmdroot.Foundation.HRESULT __result = this.Hash(pdwHashLocal); 471 private static winmdroot.Foundation.HRESULT Hash(IMoniker* pThis, uint* pdwHash) 475 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 484 return (winmdroot.Foundation.HRESULT)ex.HResult; 496 public unsafe winmdroot.Foundation.HRESULT Hash(uint* pdwHash) 498 return ((delegate *unmanaged [Stdcall]<IMoniker*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IMoniker*)Unsafe.AsPointer(ref this), pdwHash); 504 private static winmdroot.Foundation.HRESULT IsRunning(IMoniker* pThis, winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.System.Com.IMoniker* pmkNewlyRunning) 508 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 517 return (winmdroot.Foundation.HRESULT)ex.HResult; 534 public unsafe winmdroot.Foundation.HRESULT IsRunning(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.System.Com.IMoniker* pmkNewlyRunning) 536 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); 541 internal unsafe winmdroot.Foundation.HRESULT GetTimeOfLastChange(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, out global::System.Runtime.InteropServices.ComTypes.FILETIME pFileTime) 545 winmdroot.Foundation.HRESULT __result = this.GetTimeOfLastChange(pbc, pmkToLeft, pFileTimeLocal); 553 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) 557 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 566 return (winmdroot.Foundation.HRESULT)ex.HResult; 585 public unsafe winmdroot.Foundation.HRESULT GetTimeOfLastChange(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Runtime.InteropServices.ComTypes.FILETIME* pFileTime) 587 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); 593 private static winmdroot.Foundation.HRESULT Inverse(IMoniker* pThis, winmdroot.System.Com.IMoniker** ppmk) 597 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 606 return (winmdroot.Foundation.HRESULT)ex.HResult; 622 public unsafe winmdroot.Foundation.HRESULT Inverse(winmdroot.System.Com.IMoniker** ppmk) 624 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IMoniker*)Unsafe.AsPointer(ref this), ppmk); 630 private static winmdroot.Foundation.HRESULT CommonPrefixWith(IMoniker* pThis, winmdroot.System.Com.IMoniker* pmkOther, winmdroot.System.Com.IMoniker** ppmkPrefix) 634 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 643 return (winmdroot.Foundation.HRESULT)ex.HResult; 662 public unsafe winmdroot.Foundation.HRESULT CommonPrefixWith(winmdroot.System.Com.IMoniker* pmkOther, winmdroot.System.Com.IMoniker** ppmkPrefix) 664 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); 670 private static winmdroot.Foundation.HRESULT RelativePathTo(IMoniker* pThis, winmdroot.System.Com.IMoniker* pmkOther, winmdroot.System.Com.IMoniker** ppmkRelPath) 674 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 683 return (winmdroot.Foundation.HRESULT)ex.HResult; 699 public unsafe winmdroot.Foundation.HRESULT RelativePathTo(winmdroot.System.Com.IMoniker* pmkOther, winmdroot.System.Com.IMoniker** ppmkRelPath) 701 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); 706 internal unsafe winmdroot.Foundation.HRESULT GetDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, out winmdroot.Foundation.PWSTR ppszDisplayName) 710 winmdroot.Foundation.HRESULT __result = this.GetDisplayName(pbc, pmkToLeft, ppszDisplayNameLocal); 718 private static winmdroot.Foundation.HRESULT GetDisplayName(IMoniker* pThis, winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR* ppszDisplayName) 722 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 731 return (winmdroot.Foundation.HRESULT)ex.HResult; 748 public unsafe winmdroot.Foundation.HRESULT GetDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR* ppszDisplayName) 750 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); 755 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) 759 winmdroot.Foundation.HRESULT __result = this.ParseDisplayName(pbc, pmkToLeft, pszDisplayName, pchEatenLocal, ppmkOut); 767 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) 771 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 780 return (winmdroot.Foundation.HRESULT)ex.HResult; 799 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) 801 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); 806 internal unsafe winmdroot.Foundation.HRESULT IsSystemMoniker(out uint pdwMksys) 810 winmdroot.Foundation.HRESULT __result = this.IsSystemMoniker(pdwMksysLocal); 818 private static winmdroot.Foundation.HRESULT IsSystemMoniker(IMoniker* pThis, uint* pdwMksys) 822 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 831 return (winmdroot.Foundation.HRESULT)ex.HResult; 843 public unsafe winmdroot.Foundation.HRESULT IsSystemMoniker(uint* pdwMksys) 845 return ((delegate *unmanaged [Stdcall]<IMoniker*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IMoniker*)Unsafe.AsPointer(ref this), pdwMksys); 848 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 854 var hr = this.QueryInterface(&guid, &pv); 871 internal delegate *unmanaged [Stdcall]<IMoniker*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 877 internal delegate *unmanaged [Stdcall]<IMoniker*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetClassID_4; 879 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.Foundation.HRESULT> IsDirty_5; 881 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.HRESULT> Load_6; 883 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Save_7; 885 internal delegate *unmanaged [Stdcall]<IMoniker*,ulong* ,winmdroot.Foundation.HRESULT> GetSizeMax_8; 887 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> BindToObject_9; 889 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> BindToStorage_10; 891 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,uint ,winmdroot.System.Com.IMoniker** ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> Reduce_11; 893 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.BOOL ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> ComposeWith_12; 895 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.Foundation.BOOL ,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.HRESULT> Enum_13; 897 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT> IsEqual_14; 899 internal delegate *unmanaged [Stdcall]<IMoniker*,uint* ,winmdroot.Foundation.HRESULT> Hash_15; 901 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT> IsRunning_16; 903 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.HRESULT> GetTimeOfLastChange_17; 905 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> Inverse_18; 907 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> CommonPrefixWith_19; 909 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> RelativePathTo_20; 911 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT> GetDisplayName_21; 913 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; 915 internal delegate *unmanaged [Stdcall]<IMoniker*,uint* ,winmdroot.Foundation.HRESULT> IsSystemMoniker_23; 961 unsafe new winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID); 964 new winmdroot.Foundation.HRESULT IsDirty(); 967 unsafe new winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.IStream* pStm); 970 unsafe new winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty); 973 unsafe new winmdroot.Foundation.HRESULT GetSizeMax(ulong* pcbSize); 976 unsafe winmdroot.Foundation.HRESULT BindToObject(winmdroot.System.Com.IBindCtx* pbc, [Optional] winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Guid* riidResult, void** ppvResult); 979 unsafe winmdroot.Foundation.HRESULT BindToStorage(winmdroot.System.Com.IBindCtx* pbc, [Optional] winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Guid* riid, void** ppvObj); 982 unsafe winmdroot.Foundation.HRESULT Reduce(winmdroot.System.Com.IBindCtx* pbc, uint dwReduceHowFar, winmdroot.System.Com.IMoniker** ppmkToLeft, winmdroot.System.Com.IMoniker** ppmkReduced); 985 unsafe winmdroot.Foundation.HRESULT ComposeWith(winmdroot.System.Com.IMoniker* pmkRight, winmdroot.Foundation.BOOL fOnlyIfNotGeneric, winmdroot.System.Com.IMoniker** ppmkComposite); 988 unsafe winmdroot.Foundation.HRESULT Enum(winmdroot.Foundation.BOOL fForward, winmdroot.System.Com.IEnumMoniker** ppenumMoniker); 991 unsafe winmdroot.Foundation.HRESULT IsEqual(winmdroot.System.Com.IMoniker* pmkOtherMoniker); 994 unsafe winmdroot.Foundation.HRESULT Hash(uint* pdwHash); 997 unsafe winmdroot.Foundation.HRESULT IsRunning(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.System.Com.IMoniker* pmkNewlyRunning); 1000 unsafe winmdroot.Foundation.HRESULT GetTimeOfLastChange(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Runtime.InteropServices.ComTypes.FILETIME* pFileTime); 1003 unsafe winmdroot.Foundation.HRESULT Inverse(winmdroot.System.Com.IMoniker** ppmk); 1006 unsafe winmdroot.Foundation.HRESULT CommonPrefixWith(winmdroot.System.Com.IMoniker* pmkOther, winmdroot.System.Com.IMoniker** ppmkPrefix); 1009 unsafe winmdroot.Foundation.HRESULT RelativePathTo(winmdroot.System.Com.IMoniker* pmkOther, winmdroot.System.Com.IMoniker** ppmkRelPath); 1012 unsafe winmdroot.Foundation.HRESULT GetDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR* ppszDisplayName); 1015 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); 1018 unsafe winmdroot.Foundation.HRESULT IsSystemMoniker(uint* pdwMksys);
_generated\152\Windows.Win32.IPersist.g.cs (16)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IPersist*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPersist*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT GetClassID(out global::System.Guid pClassID) 63 winmdroot.Foundation.HRESULT __result = this.GetClassID(pClassIDLocal); 71 private static winmdroot.Foundation.HRESULT GetClassID(IPersist* pThis, global::System.Guid* pClassID) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 public unsafe winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID) 98 return ((delegate *unmanaged [Stdcall]<IPersist*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPersist*)Unsafe.AsPointer(ref this), pClassID); 101 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 107 var hr = this.QueryInterface(&guid, &pv); 124 internal delegate *unmanaged [Stdcall]<IPersist*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 130 internal delegate *unmanaged [Stdcall]<IPersist*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetClassID_4; 157 unsafe winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID);
_generated\153\Windows.Win32.IPersistStream.g.cs (46)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IPersistStream*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPersistStream*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT GetClassID(out global::System.Guid pClassID) 63 winmdroot.Foundation.HRESULT __result = this.GetClassID(pClassIDLocal); 71 private static winmdroot.Foundation.HRESULT GetClassID(IPersistStream* pThis, global::System.Guid* pClassID) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 88 public unsafe winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID) 90 return ((delegate *unmanaged [Stdcall]<IPersistStream*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPersistStream*)Unsafe.AsPointer(ref this), pClassID); 96 private static winmdroot.Foundation.HRESULT IsDirty(IPersistStream* pThis) 100 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 109 return (winmdroot.Foundation.HRESULT)ex.HResult; 119 public winmdroot.Foundation.HRESULT IsDirty() 121 return ((delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPersistStream*)Unsafe.AsPointer(ref this)); 127 private static winmdroot.Foundation.HRESULT Load(IPersistStream* pThis, winmdroot.System.Com.IStream* pStm) 131 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 140 return (winmdroot.Foundation.HRESULT)ex.HResult; 155 public unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.IStream* pStm) 157 return ((delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IPersistStream*)Unsafe.AsPointer(ref this), pStm); 163 private static winmdroot.Foundation.HRESULT Save(IPersistStream* pThis, winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty) 167 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 176 return (winmdroot.Foundation.HRESULT)ex.HResult; 192 public unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty) 194 return ((delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IPersistStream*)Unsafe.AsPointer(ref this), pStm, fClearDirty); 199 internal unsafe winmdroot.Foundation.HRESULT GetSizeMax(out ulong pcbSize) 203 winmdroot.Foundation.HRESULT __result = this.GetSizeMax(pcbSizeLocal); 211 private static winmdroot.Foundation.HRESULT GetSizeMax(IPersistStream* pThis, ulong* pcbSize) 215 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 224 return (winmdroot.Foundation.HRESULT)ex.HResult; 235 public unsafe winmdroot.Foundation.HRESULT GetSizeMax(ulong* pcbSize) 237 return ((delegate *unmanaged [Stdcall]<IPersistStream*,ulong* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IPersistStream*)Unsafe.AsPointer(ref this), pcbSize); 240 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 246 var hr = this.QueryInterface(&guid, &pv); 263 internal delegate *unmanaged [Stdcall]<IPersistStream*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 269 internal delegate *unmanaged [Stdcall]<IPersistStream*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetClassID_4; 271 internal delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.Foundation.HRESULT> IsDirty_5; 273 internal delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.HRESULT> Load_6; 275 internal delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Save_7; 277 internal delegate *unmanaged [Stdcall]<IPersistStream*,ulong* ,winmdroot.Foundation.HRESULT> GetSizeMax_8; 308 unsafe new winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID); 311winmdroot.Foundation.HRESULT IsDirty(); 314 unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.IStream* pStm); 317 unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty); 320 unsafe winmdroot.Foundation.HRESULT GetSizeMax(ulong* pcbSize);
_generated\154\Windows.Win32.IPicture.g.cs (127)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IPicture*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPicture*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT get_Handle(out winmdroot.System.Ole.OLE_HANDLE pHandle) 63 winmdroot.Foundation.HRESULT __result = this.get_Handle(pHandleLocal); 71 private static winmdroot.Foundation.HRESULT get_Handle(IPicture* pThis, winmdroot.System.Ole.OLE_HANDLE* pHandle) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 98 public unsafe winmdroot.Foundation.HRESULT get_Handle(winmdroot.System.Ole.OLE_HANDLE* pHandle) 100 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPicture*)Unsafe.AsPointer(ref this), pHandle); 105 internal unsafe winmdroot.Foundation.HRESULT get_hPal(out winmdroot.System.Ole.OLE_HANDLE phPal) 109 winmdroot.Foundation.HRESULT __result = this.get_hPal(phPalLocal); 117 private static winmdroot.Foundation.HRESULT get_hPal(IPicture* pThis, winmdroot.System.Ole.OLE_HANDLE* phPal) 121 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 130 return (winmdroot.Foundation.HRESULT)ex.HResult; 144 public unsafe winmdroot.Foundation.HRESULT get_hPal(winmdroot.System.Ole.OLE_HANDLE* phPal) 146 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPicture*)Unsafe.AsPointer(ref this), phPal); 151 internal unsafe winmdroot.Foundation.HRESULT get_Type(out winmdroot.System.Ole.PICTYPE pType) 155 winmdroot.Foundation.HRESULT __result = this.get_Type(pTypeLocal); 163 private static winmdroot.Foundation.HRESULT get_Type(IPicture* pThis, winmdroot.System.Ole.PICTYPE* pType) 167 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 176 return (winmdroot.Foundation.HRESULT)ex.HResult; 189 public unsafe winmdroot.Foundation.HRESULT get_Type(winmdroot.System.Ole.PICTYPE* pType) 191 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.PICTYPE* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IPicture*)Unsafe.AsPointer(ref this), pType); 196 internal unsafe winmdroot.Foundation.HRESULT get_Width(out int pWidth) 200 winmdroot.Foundation.HRESULT __result = this.get_Width(pWidthLocal); 208 private static winmdroot.Foundation.HRESULT get_Width(IPicture* pThis, int* pWidth) 212 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 221 return (winmdroot.Foundation.HRESULT)ex.HResult; 234 public unsafe winmdroot.Foundation.HRESULT get_Width(int* pWidth) 236 return ((delegate *unmanaged [Stdcall]<IPicture*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IPicture*)Unsafe.AsPointer(ref this), pWidth); 241 internal unsafe winmdroot.Foundation.HRESULT get_Height(out int pHeight) 245 winmdroot.Foundation.HRESULT __result = this.get_Height(pHeightLocal); 253 private static winmdroot.Foundation.HRESULT get_Height(IPicture* pThis, int* pHeight) 257 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 266 return (winmdroot.Foundation.HRESULT)ex.HResult; 279 public unsafe winmdroot.Foundation.HRESULT get_Height(int* pHeight) 281 return ((delegate *unmanaged [Stdcall]<IPicture*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IPicture*)Unsafe.AsPointer(ref this), pHeight); 286 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) 290 winmdroot.Foundation.HRESULT __result = this.Render(hDC, x, y, cx, cy, xSrc, ySrc, cxSrc, cySrc, pRcWBoundsLocal); 298 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) 302 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 311 return (winmdroot.Foundation.HRESULT)ex.HResult; 333 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) 335 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); 341 private static winmdroot.Foundation.HRESULT set_hPal(IPicture* pThis, winmdroot.System.Ole.OLE_HANDLE hPal) 345 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 354 return (winmdroot.Foundation.HRESULT)ex.HResult; 365 public winmdroot.Foundation.HRESULT set_hPal(winmdroot.System.Ole.OLE_HANDLE hPal) 367 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IPicture*)Unsafe.AsPointer(ref this), hPal); 372 internal unsafe winmdroot.Foundation.HRESULT get_CurDC(out winmdroot.Graphics.Gdi.HDC phDC) 376 winmdroot.Foundation.HRESULT __result = this.get_CurDC(phDCLocal); 384 private static winmdroot.Foundation.HRESULT get_CurDC(IPicture* pThis, winmdroot.Graphics.Gdi.HDC* phDC) 388 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 397 return (winmdroot.Foundation.HRESULT)ex.HResult; 411 public unsafe winmdroot.Foundation.HRESULT get_CurDC(winmdroot.Graphics.Gdi.HDC* phDC) 413 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Graphics.Gdi.HDC* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IPicture*)Unsafe.AsPointer(ref this), phDC); 418 internal unsafe winmdroot.Foundation.HRESULT SelectPicture(winmdroot.Graphics.Gdi.HDC hDCIn, out winmdroot.Graphics.Gdi.HDC phDCOut, out winmdroot.System.Ole.OLE_HANDLE phBmpOut) 424 winmdroot.Foundation.HRESULT __result = this.SelectPicture(hDCIn, phDCOutLocal, phBmpOutLocal); 433 private static winmdroot.Foundation.HRESULT SelectPicture(IPicture* pThis, winmdroot.Graphics.Gdi.HDC hDCIn, winmdroot.Graphics.Gdi.HDC* phDCOut, winmdroot.System.Ole.OLE_HANDLE* phBmpOut) 437 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 446 return (winmdroot.Foundation.HRESULT)ex.HResult; 458 public unsafe winmdroot.Foundation.HRESULT SelectPicture(winmdroot.Graphics.Gdi.HDC hDCIn, winmdroot.Graphics.Gdi.HDC* phDCOut, winmdroot.System.Ole.OLE_HANDLE* phBmpOut) 460 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); 465 internal unsafe winmdroot.Foundation.HRESULT get_KeepOriginalFormat(out winmdroot.Foundation.BOOL pKeep) 469 winmdroot.Foundation.HRESULT __result = this.get_KeepOriginalFormat(pKeepLocal); 477 private static winmdroot.Foundation.HRESULT get_KeepOriginalFormat(IPicture* pThis, winmdroot.Foundation.BOOL* pKeep) 481 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 490 return (winmdroot.Foundation.HRESULT)ex.HResult; 503 public unsafe winmdroot.Foundation.HRESULT get_KeepOriginalFormat(winmdroot.Foundation.BOOL* pKeep) 505 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IPicture*)Unsafe.AsPointer(ref this), pKeep); 511 private static winmdroot.Foundation.HRESULT put_KeepOriginalFormat(IPicture* pThis, winmdroot.Foundation.BOOL keep) 515 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 524 return (winmdroot.Foundation.HRESULT)ex.HResult; 534 public winmdroot.Foundation.HRESULT put_KeepOriginalFormat(winmdroot.Foundation.BOOL keep) 536 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IPicture*)Unsafe.AsPointer(ref this), keep); 542 private static winmdroot.Foundation.HRESULT PictureChanged(IPicture* pThis) 546 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 555 return (winmdroot.Foundation.HRESULT)ex.HResult; 564 public winmdroot.Foundation.HRESULT PictureChanged() 566 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IPicture*)Unsafe.AsPointer(ref this)); 571 internal unsafe winmdroot.Foundation.HRESULT SaveAsFile(winmdroot.System.Com.IStream* pStream, winmdroot.Foundation.BOOL fSaveMemCopy, out int pCbSize) 575 winmdroot.Foundation.HRESULT __result = this.SaveAsFile(pStream, fSaveMemCopy, pCbSizeLocal); 583 private static winmdroot.Foundation.HRESULT SaveAsFile(IPicture* pThis, winmdroot.System.Com.IStream* pStream, winmdroot.Foundation.BOOL fSaveMemCopy, int* pCbSize) 587 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 596 return (winmdroot.Foundation.HRESULT)ex.HResult; 608 public unsafe winmdroot.Foundation.HRESULT SaveAsFile(winmdroot.System.Com.IStream* pStream, winmdroot.Foundation.BOOL fSaveMemCopy, int* pCbSize) 610 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); 615 internal unsafe winmdroot.Foundation.HRESULT get_Attributes(out uint pDwAttr) 619 winmdroot.Foundation.HRESULT __result = this.get_Attributes(pDwAttrLocal); 627 private static winmdroot.Foundation.HRESULT get_Attributes(IPicture* pThis, uint* pDwAttr) 631 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 640 return (winmdroot.Foundation.HRESULT)ex.HResult; 656 public unsafe winmdroot.Foundation.HRESULT get_Attributes(uint* pDwAttr) 658 return ((delegate *unmanaged [Stdcall]<IPicture*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IPicture*)Unsafe.AsPointer(ref this), pDwAttr); 661 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 667 var hr = this.QueryInterface(&guid, &pv); 684 internal delegate *unmanaged [Stdcall]<IPicture*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 690 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.HRESULT> get_Handle_4; 692 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.HRESULT> get_hPal_5; 694 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.PICTYPE* ,winmdroot.Foundation.HRESULT> get_Type_6; 696 internal delegate *unmanaged [Stdcall]<IPicture*,int* ,winmdroot.Foundation.HRESULT> get_Width_7; 698 internal delegate *unmanaged [Stdcall]<IPicture*,int* ,winmdroot.Foundation.HRESULT> get_Height_8; 700 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; 702 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE ,winmdroot.Foundation.HRESULT> set_hPal_10; 704 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Graphics.Gdi.HDC* ,winmdroot.Foundation.HRESULT> get_CurDC_11; 706 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Graphics.Gdi.HDC ,winmdroot.Graphics.Gdi.HDC* ,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.HRESULT> SelectPicture_12; 708 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_KeepOriginalFormat_13; 710 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> put_KeepOriginalFormat_14; 712 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.HRESULT> PictureChanged_15; 714 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,int* ,winmdroot.Foundation.HRESULT> SaveAsFile_16; 716 internal delegate *unmanaged [Stdcall]<IPicture*,uint* ,winmdroot.Foundation.HRESULT> get_Attributes_17; 756 unsafe winmdroot.Foundation.HRESULT get_Handle(winmdroot.System.Ole.OLE_HANDLE* pHandle); 759 unsafe winmdroot.Foundation.HRESULT get_hPal(winmdroot.System.Ole.OLE_HANDLE* phPal); 762 unsafe winmdroot.Foundation.HRESULT get_Type(winmdroot.System.Ole.PICTYPE* pType); 765 unsafe winmdroot.Foundation.HRESULT get_Width(int* pWidth); 768 unsafe winmdroot.Foundation.HRESULT get_Height(int* pHeight); 771 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); 774winmdroot.Foundation.HRESULT set_hPal(winmdroot.System.Ole.OLE_HANDLE hPal); 777 unsafe winmdroot.Foundation.HRESULT get_CurDC(winmdroot.Graphics.Gdi.HDC* phDC); 780 unsafe winmdroot.Foundation.HRESULT SelectPicture(winmdroot.Graphics.Gdi.HDC hDCIn, winmdroot.Graphics.Gdi.HDC* phDCOut, winmdroot.System.Ole.OLE_HANDLE* phBmpOut); 783 unsafe winmdroot.Foundation.HRESULT get_KeepOriginalFormat(winmdroot.Foundation.BOOL* pKeep); 786winmdroot.Foundation.HRESULT put_KeepOriginalFormat(winmdroot.Foundation.BOOL keep); 789winmdroot.Foundation.HRESULT PictureChanged(); 792 unsafe winmdroot.Foundation.HRESULT SaveAsFile(winmdroot.System.Com.IStream* pStream, winmdroot.Foundation.BOOL fSaveMemCopy, int* pCbSize); 795 unsafe winmdroot.Foundation.HRESULT get_Attributes(uint* pDwAttr);
_generated\155\Windows.Win32.IPictureDisp.g.cs (27)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IPictureDisp*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPictureDisp*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT GetTypeInfoCount(out uint pctinfo) 63 winmdroot.Foundation.HRESULT __result = this.GetTypeInfoCount(pctinfoLocal); 68 public unsafe winmdroot.Foundation.HRESULT GetTypeInfoCount(uint* pctinfo) 70 return ((delegate *unmanaged [Stdcall]<IPictureDisp*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPictureDisp*)Unsafe.AsPointer(ref this), pctinfo); 73 public unsafe winmdroot.Foundation.HRESULT GetTypeInfo(uint iTInfo, uint lcid, winmdroot.System.Com.ITypeInfo** ppTInfo) 75 return ((delegate *unmanaged [Stdcall]<IPictureDisp*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPictureDisp*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo); 79 internal unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(in global::System.Guid riid, ReadOnlySpan<winmdroot.Foundation.PWSTR> rgszNames, uint lcid, Span<int> rgDispId) 88 winmdroot.Foundation.HRESULT __result = this.GetIDsOfNames(riidLocal, rgszNamesLocal, (uint )(rgDispId.IsEmpty ? rgszNames.Length : rgDispId.Length), lcid, rgDispIdLocal); 95 public unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(global::System.Guid* riid, winmdroot.Foundation.PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId) 97 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); 102 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, out winmdroot.System.Variant.VARIANT pVarResult, out winmdroot.System.Com.EXCEPINFO pExcepInfo, out uint puArgErr) 114 winmdroot.Foundation.HRESULT __result = this.Invoke(dispIdMember, riidLocal, lcid, wFlags, pDispParamsLocal, pVarResultLocal, pExcepInfoLocal, puArgErrLocal); 124 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) 130 winmdroot.Foundation.HRESULT __result = this.Invoke(dispIdMember, riidLocal, lcid, wFlags, pDispParamsLocal, default(winmdroot.System.Variant.VARIANT* ), default(winmdroot.System.Com.EXCEPINFO* ), default(uint* )); 136 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) 138 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); 141 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 147 var hr = this.QueryInterface(&guid, &pv); 164 internal delegate *unmanaged [Stdcall]<IPictureDisp*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 170 internal delegate *unmanaged [Stdcall]<IPictureDisp*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 172 internal delegate *unmanaged [Stdcall]<IPictureDisp*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 174 internal delegate *unmanaged [Stdcall]<IPictureDisp*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 176 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;
_generated\156\Windows.Win32.IRecordInfo.g.cs (125)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRecordInfo*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 private static winmdroot.Foundation.HRESULT RecordInit(IRecordInfo* pThis, void* pvNew) 63 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 72 return (winmdroot.Foundation.HRESULT)ex.HResult; 86 public unsafe winmdroot.Foundation.HRESULT RecordInit(void* pvNew) 88 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IRecordInfo*)Unsafe.AsPointer(ref this), pvNew); 94 private static winmdroot.Foundation.HRESULT RecordClear(IRecordInfo* pThis, void* pvExisting) 98 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 return (winmdroot.Foundation.HRESULT)ex.HResult; 118 public unsafe winmdroot.Foundation.HRESULT RecordClear(void* pvExisting) 120 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IRecordInfo*)Unsafe.AsPointer(ref this), pvExisting); 126 private static winmdroot.Foundation.HRESULT RecordCopy(IRecordInfo* pThis, void* pvExisting, void* pvNew) 130 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 139 return (winmdroot.Foundation.HRESULT)ex.HResult; 151 public unsafe winmdroot.Foundation.HRESULT RecordCopy(void* pvExisting, void* pvNew) 153 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,void* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IRecordInfo*)Unsafe.AsPointer(ref this), pvExisting, pvNew); 158 internal unsafe winmdroot.Foundation.HRESULT GetGuid(out global::System.Guid pguid) 162 winmdroot.Foundation.HRESULT __result = this.GetGuid(pguidLocal); 170 private static winmdroot.Foundation.HRESULT GetGuid(IRecordInfo* pThis, global::System.Guid* pguid) 174 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 183 return (winmdroot.Foundation.HRESULT)ex.HResult; 196 public unsafe winmdroot.Foundation.HRESULT GetGuid(global::System.Guid* pguid) 198 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IRecordInfo*)Unsafe.AsPointer(ref this), pguid); 203 internal unsafe winmdroot.Foundation.HRESULT GetName(out winmdroot.Foundation.BSTR pbstrName) 207 winmdroot.Foundation.HRESULT __result = this.GetName(pbstrNameLocal); 215 private static winmdroot.Foundation.HRESULT GetName(IRecordInfo* pThis, winmdroot.Foundation.BSTR* pbstrName) 219 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 228 return (winmdroot.Foundation.HRESULT)ex.HResult; 239 public unsafe winmdroot.Foundation.HRESULT GetName(winmdroot.Foundation.BSTR* pbstrName) 241 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IRecordInfo*)Unsafe.AsPointer(ref this), pbstrName); 246 internal unsafe winmdroot.Foundation.HRESULT GetSize(out uint pcbSize) 250 winmdroot.Foundation.HRESULT __result = this.GetSize(pcbSizeLocal); 258 private static winmdroot.Foundation.HRESULT GetSize(IRecordInfo* pThis, uint* pcbSize) 262 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 271 return (winmdroot.Foundation.HRESULT)ex.HResult; 284 public unsafe winmdroot.Foundation.HRESULT GetSize(uint* pcbSize) 286 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IRecordInfo*)Unsafe.AsPointer(ref this), pcbSize); 292 private static winmdroot.Foundation.HRESULT GetTypeInfo(IRecordInfo* pThis, winmdroot.System.Com.ITypeInfo** ppTypeInfo) 296 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 305 return (winmdroot.Foundation.HRESULT)ex.HResult; 316 public unsafe winmdroot.Foundation.HRESULT GetTypeInfo(winmdroot.System.Com.ITypeInfo** ppTypeInfo) 318 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IRecordInfo*)Unsafe.AsPointer(ref this), ppTypeInfo); 323 internal unsafe winmdroot.Foundation.HRESULT GetField(void* pvData, string szFieldName, out winmdroot.System.Variant.VARIANT pvarField) 329 winmdroot.Foundation.HRESULT __result = this.GetField(pvData, szFieldNameLocal, pvarFieldLocal); 338 private static winmdroot.Foundation.HRESULT GetField(IRecordInfo* pThis, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField) 342 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 351 return (winmdroot.Foundation.HRESULT)ex.HResult; 367 public unsafe winmdroot.Foundation.HRESULT GetField(void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField) 369 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); 374 internal unsafe winmdroot.Foundation.HRESULT GetFieldNoCopy(void* pvData, string szFieldName, out winmdroot.System.Variant.VARIANT pvarField, out void* ppvDataCArray) 382 winmdroot.Foundation.HRESULT __result = this.GetFieldNoCopy(pvData, szFieldNameLocal, pvarFieldLocal, ppvDataCArrayLocal); 392 private static winmdroot.Foundation.HRESULT GetFieldNoCopy(IRecordInfo* pThis, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField, void** ppvDataCArray) 396 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 405 return (winmdroot.Foundation.HRESULT)ex.HResult; 422 public unsafe winmdroot.Foundation.HRESULT GetFieldNoCopy(void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField, void** ppvDataCArray) 424 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); 429 internal unsafe winmdroot.Foundation.HRESULT PutField(uint wFlags, void* pvData, string szFieldName, in winmdroot.System.Variant.VARIANT pvarField) 435 winmdroot.Foundation.HRESULT __result = this.PutField(wFlags, pvData, szFieldNameLocal, pvarFieldLocal); 444 private static winmdroot.Foundation.HRESULT PutField(IRecordInfo* pThis, uint wFlags, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField) 448 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 457 return (winmdroot.Foundation.HRESULT)ex.HResult; 476 public unsafe winmdroot.Foundation.HRESULT PutField(uint wFlags, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField) 478 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); 483 internal unsafe winmdroot.Foundation.HRESULT PutFieldNoCopy(uint wFlags, void* pvData, string szFieldName, in winmdroot.System.Variant.VARIANT pvarField) 489 winmdroot.Foundation.HRESULT __result = this.PutFieldNoCopy(wFlags, pvData, szFieldNameLocal, pvarFieldLocal); 498 private static winmdroot.Foundation.HRESULT PutFieldNoCopy(IRecordInfo* pThis, uint wFlags, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField) 502 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 511 return (winmdroot.Foundation.HRESULT)ex.HResult; 527 public unsafe winmdroot.Foundation.HRESULT PutFieldNoCopy(uint wFlags, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField) 529 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); 534 internal unsafe winmdroot.Foundation.HRESULT GetFieldNames(ref uint pcNames, Span<winmdroot.Foundation.BSTR> rgBstrNames) 540 winmdroot.Foundation.HRESULT __result = this.GetFieldNames(pcNamesLocal, rgBstrNamesLocal); 549 private static winmdroot.Foundation.HRESULT GetFieldNames(IRecordInfo* pThis, uint* pcNames, winmdroot.Foundation.BSTR* rgBstrNames) 553 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 562 return (winmdroot.Foundation.HRESULT)ex.HResult; 580 public unsafe winmdroot.Foundation.HRESULT GetFieldNames(uint* pcNames, winmdroot.Foundation.BSTR* rgBstrNames) 582 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IRecordInfo*)Unsafe.AsPointer(ref this), pcNames, rgBstrNames); 592 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 624 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 648 internal unsafe winmdroot.Foundation.HRESULT RecordCreateCopy(void* pvSource, out void* ppvDest) 652 winmdroot.Foundation.HRESULT __result = this.RecordCreateCopy(pvSource, ppvDestLocal); 660 private static winmdroot.Foundation.HRESULT RecordCreateCopy(IRecordInfo* pThis, void* pvSource, void** ppvDest) 664 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 673 return (winmdroot.Foundation.HRESULT)ex.HResult; 685 public unsafe winmdroot.Foundation.HRESULT RecordCreateCopy(void* pvSource, void** ppvDest) 687 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IRecordInfo*)Unsafe.AsPointer(ref this), pvSource, ppvDest); 693 private static winmdroot.Foundation.HRESULT RecordDestroy(IRecordInfo* pThis, void* pvRecord) 697 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 706 return (winmdroot.Foundation.HRESULT)ex.HResult; 720 public unsafe winmdroot.Foundation.HRESULT RecordDestroy(void* pvRecord) 722 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IRecordInfo*)Unsafe.AsPointer(ref this), pvRecord); 725 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 731 var hr = this.QueryInterface(&guid, &pv); 748 internal delegate *unmanaged [Stdcall]<IRecordInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 754 internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.HRESULT> RecordInit_4; 756 internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.HRESULT> RecordClear_5; 758 internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,void* ,winmdroot.Foundation.HRESULT> RecordCopy_6; 760 internal delegate *unmanaged [Stdcall]<IRecordInfo*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetGuid_7; 762 internal delegate *unmanaged [Stdcall]<IRecordInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetName_8; 764 internal delegate *unmanaged [Stdcall]<IRecordInfo*,uint* ,winmdroot.Foundation.HRESULT> GetSize_9; 766 internal delegate *unmanaged [Stdcall]<IRecordInfo*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_10; 768 internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetField_11; 770 internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,void** ,winmdroot.Foundation.HRESULT> GetFieldNoCopy_12; 772 internal delegate *unmanaged [Stdcall]<IRecordInfo*,uint ,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> PutField_13; 774 internal delegate *unmanaged [Stdcall]<IRecordInfo*,uint ,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> PutFieldNoCopy_14; 776 internal delegate *unmanaged [Stdcall]<IRecordInfo*,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetFieldNames_15; 782 internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,void** ,winmdroot.Foundation.HRESULT> RecordCreateCopy_18; 784 internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.HRESULT> RecordDestroy_19; 825 unsafe winmdroot.Foundation.HRESULT RecordInit(void* pvNew); 828 unsafe winmdroot.Foundation.HRESULT RecordClear(void* pvExisting); 831 unsafe winmdroot.Foundation.HRESULT RecordCopy(void* pvExisting, void* pvNew); 834 unsafe winmdroot.Foundation.HRESULT GetGuid(global::System.Guid* pguid); 837 unsafe winmdroot.Foundation.HRESULT GetName(winmdroot.Foundation.BSTR* pbstrName); 840 unsafe winmdroot.Foundation.HRESULT GetSize(uint* pcbSize); 843 unsafe winmdroot.Foundation.HRESULT GetTypeInfo(winmdroot.System.Com.ITypeInfo** ppTypeInfo); 846 unsafe winmdroot.Foundation.HRESULT GetField(void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField); 849 unsafe winmdroot.Foundation.HRESULT GetFieldNoCopy(void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField, void** ppvDataCArray); 852 unsafe winmdroot.Foundation.HRESULT PutField(uint wFlags, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField); 855 unsafe winmdroot.Foundation.HRESULT PutFieldNoCopy(uint wFlags, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField); 858 unsafe winmdroot.Foundation.HRESULT GetFieldNames(uint* pcNames, winmdroot.Foundation.BSTR* rgBstrNames); 867 unsafe winmdroot.Foundation.HRESULT RecordCreateCopy(void* pvSource, void** ppvDest); 870 unsafe winmdroot.Foundation.HRESULT RecordDestroy(void* pvRecord);
_generated\157\Windows.Win32.IRunningObjectTable.g.cs (62)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRunningObjectTable*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 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) 63 winmdroot.Foundation.HRESULT __result = this.Register(grfFlags, punkObject, pmkObjectName, pdwRegisterLocal); 71 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) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 107 public unsafe winmdroot.Foundation.HRESULT Register(winmdroot.System.Com.ROT_FLAGS grfFlags, winmdroot.System.Com.IUnknown* punkObject, winmdroot.System.Com.IMoniker* pmkObjectName, uint* pdwRegister) 109 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); 115 private static winmdroot.Foundation.HRESULT Revoke(IRunningObjectTable* pThis, uint dwRegister) 119 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 140 public winmdroot.Foundation.HRESULT Revoke(uint dwRegister) 142 return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IRunningObjectTable*)Unsafe.AsPointer(ref this), dwRegister); 148 private static winmdroot.Foundation.HRESULT IsRunning(IRunningObjectTable* pThis, winmdroot.System.Com.IMoniker* pmkObjectName) 152 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 161 return (winmdroot.Foundation.HRESULT)ex.HResult; 172 public unsafe winmdroot.Foundation.HRESULT IsRunning(winmdroot.System.Com.IMoniker* pmkObjectName) 174 return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IRunningObjectTable*)Unsafe.AsPointer(ref this), pmkObjectName); 180 private static winmdroot.Foundation.HRESULT GetObject(IRunningObjectTable* pThis, winmdroot.System.Com.IMoniker* pmkObjectName, winmdroot.System.Com.IUnknown** ppunkObject) 184 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 193 return (winmdroot.Foundation.HRESULT)ex.HResult; 208 public unsafe winmdroot.Foundation.HRESULT GetObject(winmdroot.System.Com.IMoniker* pmkObjectName, winmdroot.System.Com.IUnknown** ppunkObject) 210 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); 215 internal unsafe winmdroot.Foundation.HRESULT NoteChangeTime(uint dwRegister, in global::System.Runtime.InteropServices.ComTypes.FILETIME pfiletime) 219 winmdroot.Foundation.HRESULT __result = this.NoteChangeTime(dwRegister, pfiletimeLocal); 227 private static winmdroot.Foundation.HRESULT NoteChangeTime(IRunningObjectTable* pThis, uint dwRegister, global::System.Runtime.InteropServices.ComTypes.FILETIME* pfiletime) 231 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 240 return (winmdroot.Foundation.HRESULT)ex.HResult; 254 public unsafe winmdroot.Foundation.HRESULT NoteChangeTime(uint dwRegister, global::System.Runtime.InteropServices.ComTypes.FILETIME* pfiletime) 256 return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,uint ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IRunningObjectTable*)Unsafe.AsPointer(ref this), dwRegister, pfiletime); 261 internal unsafe winmdroot.Foundation.HRESULT GetTimeOfLastChange(winmdroot.System.Com.IMoniker* pmkObjectName, out global::System.Runtime.InteropServices.ComTypes.FILETIME pfiletime) 265 winmdroot.Foundation.HRESULT __result = this.GetTimeOfLastChange(pmkObjectName, pfiletimeLocal); 273 private static winmdroot.Foundation.HRESULT GetTimeOfLastChange(IRunningObjectTable* pThis, winmdroot.System.Com.IMoniker* pmkObjectName, global::System.Runtime.InteropServices.ComTypes.FILETIME* pfiletime) 277 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 286 return (winmdroot.Foundation.HRESULT)ex.HResult; 301 public unsafe winmdroot.Foundation.HRESULT GetTimeOfLastChange(winmdroot.System.Com.IMoniker* pmkObjectName, global::System.Runtime.InteropServices.ComTypes.FILETIME* pfiletime) 303 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); 309 private static winmdroot.Foundation.HRESULT EnumRunning(IRunningObjectTable* pThis, winmdroot.System.Com.IEnumMoniker** ppenumMoniker) 313 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 322 return (winmdroot.Foundation.HRESULT)ex.HResult; 333 public unsafe winmdroot.Foundation.HRESULT EnumRunning(winmdroot.System.Com.IEnumMoniker** ppenumMoniker) 335 return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IRunningObjectTable*)Unsafe.AsPointer(ref this), ppenumMoniker); 338 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 344 var hr = this.QueryInterface(&guid, &pv); 361 internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 367 internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.ROT_FLAGS ,winmdroot.System.Com.IUnknown* ,winmdroot.System.Com.IMoniker* ,uint* ,winmdroot.Foundation.HRESULT> Register_4; 369 internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,uint ,winmdroot.Foundation.HRESULT> Revoke_5; 371 internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT> IsRunning_6; 373 internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> GetObject_7; 375 internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,uint ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.HRESULT> NoteChangeTime_8; 377 internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IMoniker* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.HRESULT> GetTimeOfLastChange_9; 379 internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.HRESULT> EnumRunning_10; 412 unsafe winmdroot.Foundation.HRESULT Register(winmdroot.System.Com.ROT_FLAGS grfFlags, winmdroot.System.Com.IUnknown* punkObject, winmdroot.System.Com.IMoniker* pmkObjectName, uint* pdwRegister); 415winmdroot.Foundation.HRESULT Revoke(uint dwRegister); 418 unsafe winmdroot.Foundation.HRESULT IsRunning(winmdroot.System.Com.IMoniker* pmkObjectName); 421 unsafe winmdroot.Foundation.HRESULT GetObject(winmdroot.System.Com.IMoniker* pmkObjectName, winmdroot.System.Com.IUnknown** ppunkObject); 424 unsafe winmdroot.Foundation.HRESULT NoteChangeTime(uint dwRegister, global::System.Runtime.InteropServices.ComTypes.FILETIME* pfiletime); 427 unsafe winmdroot.Foundation.HRESULT GetTimeOfLastChange(winmdroot.System.Com.IMoniker* pmkObjectName, global::System.Runtime.InteropServices.ComTypes.FILETIME* pfiletime); 430 unsafe winmdroot.Foundation.HRESULT EnumRunning(winmdroot.System.Com.IEnumMoniker** ppenumMoniker);
_generated\158\Windows.Win32.ISequentialStream.g.cs (29)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ISequentialStream*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ISequentialStream*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 internal unsafe winmdroot.Foundation.HRESULT Read(Span<byte> pv, out uint pcbRead) 64 winmdroot.Foundation.HRESULT __result = this.Read((void* )pvLocal, (uint )pv.Length, pcbReadLocal); 71 internal unsafe winmdroot.Foundation.HRESULT Read(Span<byte> pv) 75 winmdroot.Foundation.HRESULT __result = this.Read((void* )pvLocal, (uint )pv.Length, default(uint* )); 83 private static winmdroot.Foundation.HRESULT Read(ISequentialStream* pThis, void* pv, uint cb, [Optional] uint* pcbRead) 87 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 96 return (winmdroot.Foundation.HRESULT)ex.HResult; 114 public unsafe winmdroot.Foundation.HRESULT Read(void* pv, uint cb, [Optional] uint* pcbRead) 116 return ((delegate *unmanaged [Stdcall]<ISequentialStream*,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ISequentialStream*)Unsafe.AsPointer(ref this), pv, cb, pcbRead); 120 internal unsafe winmdroot.Foundation.HRESULT Write(ReadOnlySpan<byte> pv, out uint pcbWritten) 126 winmdroot.Foundation.HRESULT __result = this.Write((void* )pvLocal, (uint )pv.Length, pcbWrittenLocal); 133 internal unsafe winmdroot.Foundation.HRESULT Write(ReadOnlySpan<byte> pv) 137 winmdroot.Foundation.HRESULT __result = this.Write((void* )pvLocal, (uint )pv.Length, default(uint* )); 145 private static winmdroot.Foundation.HRESULT Write(ISequentialStream* pThis, void* pv, uint cb, [Optional] uint* pcbWritten) 149 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 158 return (winmdroot.Foundation.HRESULT)ex.HResult; 173 public unsafe winmdroot.Foundation.HRESULT Write(void* pv, uint cb, [Optional] uint* pcbWritten) 175 return ((delegate *unmanaged [Stdcall]<ISequentialStream*,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ISequentialStream*)Unsafe.AsPointer(ref this), pv, cb, pcbWritten); 178 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 184 var hr = this.QueryInterface(&guid, &pv); 201 internal delegate *unmanaged [Stdcall]<ISequentialStream*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 207 internal delegate *unmanaged [Stdcall]<ISequentialStream*,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT> Read_4; 209 internal delegate *unmanaged [Stdcall]<ISequentialStream*,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT> Write_5; 237 unsafe winmdroot.Foundation.HRESULT Read(void* pv, uint cb, [Optional] uint* pcbRead); 240 unsafe winmdroot.Foundation.HRESULT Write(void* pv, uint cb, [Optional] uint* pcbWritten);
_generated\159\Windows.Win32.IServiceProvider.g.cs (16)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IServiceProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IServiceProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 internal unsafe winmdroot.Foundation.HRESULT QueryService(in global::System.Guid guidService, in global::System.Guid riid, out void* ppvObject) 66 winmdroot.Foundation.HRESULT __result = this.QueryService(guidServiceLocal, riidLocal, ppvObjectLocal); 76 private static winmdroot.Foundation.HRESULT QueryService(IServiceProvider* pThis, global::System.Guid* guidService, global::System.Guid* riid, void** ppvObject) 80 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 89 return (winmdroot.Foundation.HRESULT)ex.HResult; 99 public unsafe winmdroot.Foundation.HRESULT QueryService(global::System.Guid* guidService, global::System.Guid* riid, void** ppvObject) 101 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); 104 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 110 var hr = this.QueryInterface(&guid, &pv); 127 internal delegate *unmanaged [Stdcall]<IServiceProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 133 internal delegate *unmanaged [Stdcall]<IServiceProvider*,global::System.Guid* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryService_4; 159 unsafe winmdroot.Foundation.HRESULT QueryService(global::System.Guid* guidService, global::System.Guid* riid, void** ppvObject);
_generated\160\Windows.Win32.IStorage.g.cs (136)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IStorage*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IStorage*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT CreateStream(string pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.IStream** ppstm) 63 winmdroot.Foundation.HRESULT __result = this.CreateStream(pwcsNameLocal, grfMode, reserved1, reserved2, ppstm); 71 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) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 105 public unsafe winmdroot.Foundation.HRESULT CreateStream(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.IStream** ppstm) 107 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); 111 internal unsafe winmdroot.Foundation.HRESULT OpenStream(string pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved2, winmdroot.System.Com.IStream** ppstm) 115 winmdroot.Foundation.HRESULT __result = this.OpenStream(pwcsNameLocal, default, grfMode, reserved2, ppstm); 123 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) 127 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 136 return (winmdroot.Foundation.HRESULT)ex.HResult; 153 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) 155 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); 160 internal unsafe winmdroot.Foundation.HRESULT CreateStorage(string pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.StructuredStorage.IStorage** ppstg) 164 winmdroot.Foundation.HRESULT __result = this.CreateStorage(pwcsNameLocal, grfMode, reserved1, reserved2, ppstg); 172 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) 176 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 185 return (winmdroot.Foundation.HRESULT)ex.HResult; 206 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) 208 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); 213 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) 219 winmdroot.Foundation.HRESULT __result = this.OpenStorage(pwcsNameLocal, pstgPriority, grfMode, snbExcludeLocal, reserved, ppstg); 228 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) 232 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 241 return (winmdroot.Foundation.HRESULT)ex.HResult; 262 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) 264 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); 268 internal unsafe winmdroot.Foundation.HRESULT CopyTo([Optional] ReadOnlySpan<global::System.Guid> rgiidExclude, in ushort* snbExclude, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest) 274 winmdroot.Foundation.HRESULT __result = this.CopyTo((uint )rgiidExclude.Length, rgiidExcludeLocal, snbExcludeLocal, pstgDest); 283 private static winmdroot.Foundation.HRESULT CopyTo(IStorage* pThis, uint ciidExclude, [Optional] global::System.Guid* rgiidExclude, [Optional] ushort** snbExclude, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest) 287 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 296 return (winmdroot.Foundation.HRESULT)ex.HResult; 323 public unsafe winmdroot.Foundation.HRESULT CopyTo(uint ciidExclude, [Optional] global::System.Guid* rgiidExclude, [Optional] ushort** snbExclude, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest) 325 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); 330 internal unsafe winmdroot.Foundation.HRESULT MoveElementTo(string pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest, string pwcsNewName, uint grfFlags) 336 winmdroot.Foundation.HRESULT __result = this.MoveElementTo(pwcsNameLocal, pstgDest, pwcsNewNameLocal, grfFlags); 345 private static winmdroot.Foundation.HRESULT MoveElementTo(IStorage* pThis, winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest, winmdroot.Foundation.PCWSTR pwcsNewName, uint grfFlags) 349 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 358 return (winmdroot.Foundation.HRESULT)ex.HResult; 377 public unsafe winmdroot.Foundation.HRESULT MoveElementTo(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest, winmdroot.Foundation.PCWSTR pwcsNewName, uint grfFlags) 379 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); 385 private static winmdroot.Foundation.HRESULT Commit(IStorage* pThis, uint grfCommitFlags) 389 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 398 return (winmdroot.Foundation.HRESULT)ex.HResult; 415 public winmdroot.Foundation.HRESULT Commit(uint grfCommitFlags) 417 return ((delegate *unmanaged [Stdcall]<IStorage*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IStorage*)Unsafe.AsPointer(ref this), grfCommitFlags); 423 private static winmdroot.Foundation.HRESULT Revert(IStorage* pThis) 427 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 436 return (winmdroot.Foundation.HRESULT)ex.HResult; 448 public winmdroot.Foundation.HRESULT Revert() 450 return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IStorage*)Unsafe.AsPointer(ref this)); 454 internal unsafe winmdroot.Foundation.HRESULT EnumElements(winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum) 456 winmdroot.Foundation.HRESULT __result = this.EnumElements(default, default, default, ppenum); 463 private static winmdroot.Foundation.HRESULT EnumElements(IStorage* pThis, [Optional] uint reserved1, [Optional] void* reserved2, [Optional] uint reserved3, winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum) 467 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 476 return (winmdroot.Foundation.HRESULT)ex.HResult; 495 public unsafe winmdroot.Foundation.HRESULT EnumElements([Optional] uint reserved1, [Optional] void* reserved2, [Optional] uint reserved3, winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum) 497 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); 502 internal unsafe winmdroot.Foundation.HRESULT DestroyElement(string pwcsName) 506 winmdroot.Foundation.HRESULT __result = this.DestroyElement(pwcsNameLocal); 514 private static winmdroot.Foundation.HRESULT DestroyElement(IStorage* pThis, winmdroot.Foundation.PCWSTR pwcsName) 518 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 527 return (winmdroot.Foundation.HRESULT)ex.HResult; 540 public winmdroot.Foundation.HRESULT DestroyElement(winmdroot.Foundation.PCWSTR pwcsName) 542 return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IStorage*)Unsafe.AsPointer(ref this), pwcsName); 547 internal unsafe winmdroot.Foundation.HRESULT RenameElement(string pwcsOldName, string pwcsNewName) 553 winmdroot.Foundation.HRESULT __result = this.RenameElement(pwcsOldNameLocal, pwcsNewNameLocal); 562 private static winmdroot.Foundation.HRESULT RenameElement(IStorage* pThis, winmdroot.Foundation.PCWSTR pwcsOldName, winmdroot.Foundation.PCWSTR pwcsNewName) 566 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 575 return (winmdroot.Foundation.HRESULT)ex.HResult; 595 public winmdroot.Foundation.HRESULT RenameElement(winmdroot.Foundation.PCWSTR pwcsOldName, winmdroot.Foundation.PCWSTR pwcsNewName) 597 return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IStorage*)Unsafe.AsPointer(ref this), pwcsOldName, pwcsNewName); 602 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) 612 winmdroot.Foundation.HRESULT __result = this.SetElementTimes(pwcsNameLocal, pctimeLocal, patimeLocal, pmtimeLocal); 623 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) 627 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 636 return (winmdroot.Foundation.HRESULT)ex.HResult; 652 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) 654 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); 659 internal unsafe winmdroot.Foundation.HRESULT SetClass(in global::System.Guid clsid) 663 winmdroot.Foundation.HRESULT __result = this.SetClass(clsidLocal); 671 private static winmdroot.Foundation.HRESULT SetClass(IStorage* pThis, global::System.Guid* clsid) 675 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 684 return (winmdroot.Foundation.HRESULT)ex.HResult; 697 public unsafe winmdroot.Foundation.HRESULT SetClass(global::System.Guid* clsid) 699 return ((delegate *unmanaged [Stdcall]<IStorage*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IStorage*)Unsafe.AsPointer(ref this), clsid); 705 private static winmdroot.Foundation.HRESULT SetStateBits(IStorage* pThis, uint grfStateBits, uint grfMask) 709 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 718 return (winmdroot.Foundation.HRESULT)ex.HResult; 729 public winmdroot.Foundation.HRESULT SetStateBits(uint grfStateBits, uint grfMask) 731 return ((delegate *unmanaged [Stdcall]<IStorage*,uint ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IStorage*)Unsafe.AsPointer(ref this), grfStateBits, grfMask); 736 internal unsafe winmdroot.Foundation.HRESULT Stat(out winmdroot.System.Com.STATSTG pstatstg, uint grfStatFlag) 740 winmdroot.Foundation.HRESULT __result = this.Stat(pstatstgLocal, grfStatFlag); 748 private static winmdroot.Foundation.HRESULT Stat(IStorage* pThis, winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag) 752 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 761 return (winmdroot.Foundation.HRESULT)ex.HResult; 781 public unsafe winmdroot.Foundation.HRESULT Stat(winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag) 783 return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.System.Com.STATSTG* ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IStorage*)Unsafe.AsPointer(ref this), pstatstg, grfStatFlag); 786 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 792 var hr = this.QueryInterface(&guid, &pv); 809 internal delegate *unmanaged [Stdcall]<IStorage*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 815 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.STGM ,uint ,uint ,winmdroot.System.Com.IStream** ,winmdroot.Foundation.HRESULT> CreateStream_4; 817 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,void* ,winmdroot.System.Com.STGM ,uint ,winmdroot.System.Com.IStream** ,winmdroot.Foundation.HRESULT> OpenStream_5; 819 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.STGM ,uint ,uint ,winmdroot.System.Com.StructuredStorage.IStorage** ,winmdroot.Foundation.HRESULT> CreateStorage_6; 821 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; 823 internal delegate *unmanaged [Stdcall]<IStorage*,uint ,global::System.Guid* ,ushort** ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT> CopyTo_8; 825 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.PCWSTR ,uint ,winmdroot.Foundation.HRESULT> MoveElementTo_9; 827 internal delegate *unmanaged [Stdcall]<IStorage*,uint ,winmdroot.Foundation.HRESULT> Commit_10; 829 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.HRESULT> Revert_11; 831 internal delegate *unmanaged [Stdcall]<IStorage*,uint ,void* ,uint ,winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ,winmdroot.Foundation.HRESULT> EnumElements_12; 833 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> DestroyElement_13; 835 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> RenameElement_14; 837 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; 839 internal delegate *unmanaged [Stdcall]<IStorage*,global::System.Guid* ,winmdroot.Foundation.HRESULT> SetClass_16; 841 internal delegate *unmanaged [Stdcall]<IStorage*,uint ,uint ,winmdroot.Foundation.HRESULT> SetStateBits_17; 843 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.System.Com.STATSTG* ,uint ,winmdroot.Foundation.HRESULT> Stat_18; 884 unsafe winmdroot.Foundation.HRESULT CreateStream(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.IStream** ppstm); 887 unsafe winmdroot.Foundation.HRESULT OpenStream(winmdroot.Foundation.PCWSTR pwcsName, [Optional] void* reserved1, winmdroot.System.Com.STGM grfMode, uint reserved2, winmdroot.System.Com.IStream** ppstm); 890 unsafe winmdroot.Foundation.HRESULT CreateStorage(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.StructuredStorage.IStorage** ppstg); 893 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); 896 unsafe winmdroot.Foundation.HRESULT CopyTo(uint ciidExclude, [Optional] global::System.Guid* rgiidExclude, [Optional] ushort** snbExclude, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest); 899 unsafe winmdroot.Foundation.HRESULT MoveElementTo(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest, winmdroot.Foundation.PCWSTR pwcsNewName, uint grfFlags); 902winmdroot.Foundation.HRESULT Commit(uint grfCommitFlags); 905winmdroot.Foundation.HRESULT Revert(); 908 unsafe winmdroot.Foundation.HRESULT EnumElements([Optional] uint reserved1, [Optional] void* reserved2, [Optional] uint reserved3, winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum); 911winmdroot.Foundation.HRESULT DestroyElement(winmdroot.Foundation.PCWSTR pwcsName); 914winmdroot.Foundation.HRESULT RenameElement(winmdroot.Foundation.PCWSTR pwcsOldName, winmdroot.Foundation.PCWSTR pwcsNewName); 917 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); 920 unsafe winmdroot.Foundation.HRESULT SetClass(global::System.Guid* clsid); 923winmdroot.Foundation.HRESULT SetStateBits(uint grfStateBits, uint grfMask); 926 unsafe winmdroot.Foundation.HRESULT Stat(winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag);
_generated\161\Windows.Win32.IStream.g.cs (102)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IStream*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IStream*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 internal unsafe winmdroot.Foundation.HRESULT Read(Span<byte> pv, out uint pcbRead) 64 winmdroot.Foundation.HRESULT __result = this.Read((void* )pvLocal, (uint )pv.Length, pcbReadLocal); 71 internal unsafe winmdroot.Foundation.HRESULT Read(Span<byte> pv) 75 winmdroot.Foundation.HRESULT __result = this.Read((void* )pvLocal, (uint )pv.Length, default(uint* )); 83 private static winmdroot.Foundation.HRESULT Read(IStream* pThis, void* pv, uint cb, [Optional] uint* pcbRead) 87 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 96 return (winmdroot.Foundation.HRESULT)ex.HResult; 100 public unsafe winmdroot.Foundation.HRESULT Read(void* pv, uint cb, [Optional] uint* pcbRead) 102 return ((delegate *unmanaged [Stdcall]<IStream*,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IStream*)Unsafe.AsPointer(ref this), pv, cb, pcbRead); 106 internal unsafe winmdroot.Foundation.HRESULT Write(ReadOnlySpan<byte> pv, out uint pcbWritten) 112 winmdroot.Foundation.HRESULT __result = this.Write((void* )pvLocal, (uint )pv.Length, pcbWrittenLocal); 119 internal unsafe winmdroot.Foundation.HRESULT Write(ReadOnlySpan<byte> pv) 123 winmdroot.Foundation.HRESULT __result = this.Write((void* )pvLocal, (uint )pv.Length, default(uint* )); 131 private static winmdroot.Foundation.HRESULT Write(IStream* pThis, void* pv, uint cb, [Optional] uint* pcbWritten) 135 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 144 return (winmdroot.Foundation.HRESULT)ex.HResult; 148 public unsafe winmdroot.Foundation.HRESULT Write(void* pv, uint cb, [Optional] uint* pcbWritten) 150 return ((delegate *unmanaged [Stdcall]<IStream*,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IStream*)Unsafe.AsPointer(ref this), pv, cb, pcbWritten); 155 internal unsafe winmdroot.Foundation.HRESULT Seek(long dlibMove, global::System.IO.SeekOrigin dwOrigin, out ulong plibNewPosition) 159 winmdroot.Foundation.HRESULT __result = this.Seek(dlibMove, dwOrigin, plibNewPositionLocal); 165 internal unsafe winmdroot.Foundation.HRESULT Seek(long dlibMove, global::System.IO.SeekOrigin dwOrigin) 167 winmdroot.Foundation.HRESULT __result = this.Seek(dlibMove, dwOrigin, default(ulong* )); 174 private static winmdroot.Foundation.HRESULT Seek(IStream* pThis, long dlibMove, global::System.IO.SeekOrigin dwOrigin, [Optional] ulong* plibNewPosition) 178 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 187 return (winmdroot.Foundation.HRESULT)ex.HResult; 205 public unsafe winmdroot.Foundation.HRESULT Seek(long dlibMove, global::System.IO.SeekOrigin dwOrigin, [Optional] ulong* plibNewPosition) 207 return ((delegate *unmanaged [Stdcall]<IStream*,long ,global::System.IO.SeekOrigin ,ulong* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IStream*)Unsafe.AsPointer(ref this), dlibMove, dwOrigin, plibNewPosition); 213 private static winmdroot.Foundation.HRESULT SetSize(IStream* pThis, ulong libNewSize) 217 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 226 return (winmdroot.Foundation.HRESULT)ex.HResult; 239 public winmdroot.Foundation.HRESULT SetSize(ulong libNewSize) 241 return ((delegate *unmanaged [Stdcall]<IStream*,ulong ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IStream*)Unsafe.AsPointer(ref this), libNewSize); 246 internal unsafe winmdroot.Foundation.HRESULT CopyTo(winmdroot.System.Com.IStream* pstm, ulong cb, out ulong pcbRead, out ulong pcbWritten) 252 winmdroot.Foundation.HRESULT __result = this.CopyTo(pstm, cb, pcbReadLocal, pcbWrittenLocal); 259 internal unsafe winmdroot.Foundation.HRESULT CopyTo(winmdroot.System.Com.IStream* pstm, ulong cb) 261 winmdroot.Foundation.HRESULT __result = this.CopyTo(pstm, cb, default(ulong* ), default(ulong* )); 268 private static winmdroot.Foundation.HRESULT CopyTo(IStream* pThis, winmdroot.System.Com.IStream* pstm, ulong cb, [Optional] ulong* pcbRead, [Optional] ulong* pcbWritten) 272 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 281 return (winmdroot.Foundation.HRESULT)ex.HResult; 297 public unsafe winmdroot.Foundation.HRESULT CopyTo(winmdroot.System.Com.IStream* pstm, ulong cb, [Optional] ulong* pcbRead, [Optional] ulong* pcbWritten) 299 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); 305 private static winmdroot.Foundation.HRESULT Commit(IStream* pThis, uint grfCommitFlags) 309 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 318 return (winmdroot.Foundation.HRESULT)ex.HResult; 334 public winmdroot.Foundation.HRESULT Commit(uint grfCommitFlags) 336 return ((delegate *unmanaged [Stdcall]<IStream*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IStream*)Unsafe.AsPointer(ref this), grfCommitFlags); 342 private static winmdroot.Foundation.HRESULT Revert(IStream* pThis) 346 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 355 return (winmdroot.Foundation.HRESULT)ex.HResult; 364 public winmdroot.Foundation.HRESULT Revert() 366 return ((delegate *unmanaged [Stdcall]<IStream*,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IStream*)Unsafe.AsPointer(ref this)); 372 private static winmdroot.Foundation.HRESULT LockRegion(IStream* pThis, ulong libOffset, ulong cb, uint dwLockType) 376 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 385 return (winmdroot.Foundation.HRESULT)ex.HResult; 400 public winmdroot.Foundation.HRESULT LockRegion(ulong libOffset, ulong cb, uint dwLockType) 402 return ((delegate *unmanaged [Stdcall]<IStream*,ulong ,ulong ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IStream*)Unsafe.AsPointer(ref this), libOffset, cb, dwLockType); 408 private static winmdroot.Foundation.HRESULT UnlockRegion(IStream* pThis, ulong libOffset, ulong cb, uint dwLockType) 412 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 421 return (winmdroot.Foundation.HRESULT)ex.HResult; 436 public winmdroot.Foundation.HRESULT UnlockRegion(ulong libOffset, ulong cb, uint dwLockType) 438 return ((delegate *unmanaged [Stdcall]<IStream*,ulong ,ulong ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IStream*)Unsafe.AsPointer(ref this), libOffset, cb, dwLockType); 443 internal unsafe winmdroot.Foundation.HRESULT Stat(out winmdroot.System.Com.STATSTG pstatstg, uint grfStatFlag) 447 winmdroot.Foundation.HRESULT __result = this.Stat(pstatstgLocal, grfStatFlag); 455 private static winmdroot.Foundation.HRESULT Stat(IStream* pThis, winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag) 459 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 468 return (winmdroot.Foundation.HRESULT)ex.HResult; 488 public unsafe winmdroot.Foundation.HRESULT Stat(winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag) 490 return ((delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.STATSTG* ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IStream*)Unsafe.AsPointer(ref this), pstatstg, grfStatFlag); 496 private static winmdroot.Foundation.HRESULT Clone(IStream* pThis, winmdroot.System.Com.IStream** ppstm) 500 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 509 return (winmdroot.Foundation.HRESULT)ex.HResult; 525 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IStream** ppstm) 527 return ((delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.IStream** ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IStream*)Unsafe.AsPointer(ref this), ppstm); 530 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 536 var hr = this.QueryInterface(&guid, &pv); 553 internal delegate *unmanaged [Stdcall]<IStream*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 559 internal delegate *unmanaged [Stdcall]<IStream*,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT> Read_4; 561 internal delegate *unmanaged [Stdcall]<IStream*,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT> Write_5; 563 internal delegate *unmanaged [Stdcall]<IStream*,long ,global::System.IO.SeekOrigin ,ulong* ,winmdroot.Foundation.HRESULT> Seek_6; 565 internal delegate *unmanaged [Stdcall]<IStream*,ulong ,winmdroot.Foundation.HRESULT> SetSize_7; 567 internal delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.IStream* ,ulong ,ulong* ,ulong* ,winmdroot.Foundation.HRESULT> CopyTo_8; 569 internal delegate *unmanaged [Stdcall]<IStream*,uint ,winmdroot.Foundation.HRESULT> Commit_9; 571 internal delegate *unmanaged [Stdcall]<IStream*,winmdroot.Foundation.HRESULT> Revert_10; 573 internal delegate *unmanaged [Stdcall]<IStream*,ulong ,ulong ,uint ,winmdroot.Foundation.HRESULT> LockRegion_11; 575 internal delegate *unmanaged [Stdcall]<IStream*,ulong ,ulong ,uint ,winmdroot.Foundation.HRESULT> UnlockRegion_12; 577 internal delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.STATSTG* ,uint ,winmdroot.Foundation.HRESULT> Stat_13; 579 internal delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.IStream** ,winmdroot.Foundation.HRESULT> Clone_14; 616 unsafe new winmdroot.Foundation.HRESULT Read(void* pv, uint cb, [Optional] uint* pcbRead); 619 unsafe new winmdroot.Foundation.HRESULT Write(void* pv, uint cb, [Optional] uint* pcbWritten); 622 unsafe winmdroot.Foundation.HRESULT Seek(long dlibMove, global::System.IO.SeekOrigin dwOrigin, [Optional] ulong* plibNewPosition); 625winmdroot.Foundation.HRESULT SetSize(ulong libNewSize); 628 unsafe winmdroot.Foundation.HRESULT CopyTo(winmdroot.System.Com.IStream* pstm, ulong cb, [Optional] ulong* pcbRead, [Optional] ulong* pcbWritten); 631winmdroot.Foundation.HRESULT Commit(uint grfCommitFlags); 634winmdroot.Foundation.HRESULT Revert(); 637winmdroot.Foundation.HRESULT LockRegion(ulong libOffset, ulong cb, uint dwLockType); 640winmdroot.Foundation.HRESULT UnlockRegion(ulong libOffset, ulong cb, uint dwLockType); 643 unsafe winmdroot.Foundation.HRESULT Stat(winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag); 646 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IStream** ppstm);
_generated\162\Windows.Win32.ITypeComp.g.cs (23)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<ITypeComp*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITypeComp*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 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) 64 winmdroot.Foundation.HRESULT __result = this.Bind(szName, lHashVal, wFlags, ppTInfo, pDescKindLocal, pBindPtrLocal); 73 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) 77 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 86 return (winmdroot.Foundation.HRESULT)ex.HResult; 110 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) 112 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); 118 private static winmdroot.Foundation.HRESULT BindType(ITypeComp* pThis, winmdroot.Foundation.PWSTR szName, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, winmdroot.System.Com.ITypeComp** ppTComp) 122 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 131 return (winmdroot.Foundation.HRESULT)ex.HResult; 145 public unsafe winmdroot.Foundation.HRESULT BindType(winmdroot.Foundation.PWSTR szName, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, winmdroot.System.Com.ITypeComp** ppTComp) 147 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); 150 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 156 var hr = this.QueryInterface(&guid, &pv); 173 internal delegate *unmanaged [Stdcall]<ITypeComp*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 179 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; 181 internal delegate *unmanaged [Stdcall]<ITypeComp*,winmdroot.Foundation.PWSTR ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.HRESULT> BindType_5; 208 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); 211 unsafe winmdroot.Foundation.HRESULT BindType(winmdroot.Foundation.PWSTR szName, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, winmdroot.System.Com.ITypeComp** ppTComp);
_generated\163\Windows.Win32.ITypeInfo.g.cs (154)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITypeInfo*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 internal unsafe winmdroot.Foundation.HRESULT GetTypeAttr(out winmdroot.System.Com.TYPEATTR* ppTypeAttr) 62 winmdroot.Foundation.HRESULT __result = this.GetTypeAttr(ppTypeAttrLocal); 70 private static winmdroot.Foundation.HRESULT GetTypeAttr(ITypeInfo* pThis, winmdroot.System.Com.TYPEATTR** ppTypeAttr) 74 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 94 public unsafe winmdroot.Foundation.HRESULT GetTypeAttr(winmdroot.System.Com.TYPEATTR** ppTypeAttr) 96 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.TYPEATTR** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITypeInfo*)Unsafe.AsPointer(ref this), ppTypeAttr); 102 private static winmdroot.Foundation.HRESULT GetTypeComp(ITypeInfo* pThis, winmdroot.System.Com.ITypeComp** ppTComp) 106 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 115 return (winmdroot.Foundation.HRESULT)ex.HResult; 126 public unsafe winmdroot.Foundation.HRESULT GetTypeComp(winmdroot.System.Com.ITypeComp** ppTComp) 128 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITypeInfo*)Unsafe.AsPointer(ref this), ppTComp); 133 internal unsafe winmdroot.Foundation.HRESULT GetFuncDesc(uint index, out winmdroot.System.Com.FUNCDESC* ppFuncDesc) 137 winmdroot.Foundation.HRESULT __result = this.GetFuncDesc(index, ppFuncDescLocal); 145 private static winmdroot.Foundation.HRESULT GetFuncDesc(ITypeInfo* pThis, uint index, winmdroot.System.Com.FUNCDESC** ppFuncDesc) 149 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 158 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 public unsafe winmdroot.Foundation.HRESULT GetFuncDesc(uint index, winmdroot.System.Com.FUNCDESC** ppFuncDesc) 172 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.FUNCDESC** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ITypeInfo*)Unsafe.AsPointer(ref this), index, ppFuncDesc); 177 internal unsafe winmdroot.Foundation.HRESULT GetVarDesc(uint index, out winmdroot.System.Com.VARDESC* ppVarDesc) 181 winmdroot.Foundation.HRESULT __result = this.GetVarDesc(index, ppVarDescLocal); 189 private static winmdroot.Foundation.HRESULT GetVarDesc(ITypeInfo* pThis, uint index, winmdroot.System.Com.VARDESC** ppVarDesc) 193 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 202 return (winmdroot.Foundation.HRESULT)ex.HResult; 214 public unsafe winmdroot.Foundation.HRESULT GetVarDesc(uint index, winmdroot.System.Com.VARDESC** ppVarDesc) 216 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.VARDESC** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ITypeInfo*)Unsafe.AsPointer(ref this), index, ppVarDesc); 220 internal unsafe winmdroot.Foundation.HRESULT GetNames(int memid, Span<winmdroot.Foundation.BSTR> rgBstrNames, out uint pcNames) 226 winmdroot.Foundation.HRESULT __result = this.GetNames(memid, rgBstrNamesLocal, (uint )rgBstrNames.Length, pcNamesLocal); 235 private static winmdroot.Foundation.HRESULT GetNames(ITypeInfo* pThis, int memid, winmdroot.Foundation.BSTR* rgBstrNames, uint cMaxNames, uint* pcNames) 239 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 248 return (winmdroot.Foundation.HRESULT)ex.HResult; 268 public unsafe winmdroot.Foundation.HRESULT GetNames(int memid, winmdroot.Foundation.BSTR* rgBstrNames, uint cMaxNames, uint* pcNames) 270 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, rgBstrNames, cMaxNames, pcNames); 275 internal unsafe winmdroot.Foundation.HRESULT GetRefTypeOfImplType(uint index, out uint pRefType) 279 winmdroot.Foundation.HRESULT __result = this.GetRefTypeOfImplType(index, pRefTypeLocal); 287 private static winmdroot.Foundation.HRESULT GetRefTypeOfImplType(ITypeInfo* pThis, uint index, uint* pRefType) 291 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 300 return (winmdroot.Foundation.HRESULT)ex.HResult; 312 public unsafe winmdroot.Foundation.HRESULT GetRefTypeOfImplType(uint index, uint* pRefType) 314 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITypeInfo*)Unsafe.AsPointer(ref this), index, pRefType); 319 internal unsafe winmdroot.Foundation.HRESULT GetImplTypeFlags(uint index, out winmdroot.System.Com.IMPLTYPEFLAGS pImplTypeFlags) 323 winmdroot.Foundation.HRESULT __result = this.GetImplTypeFlags(index, pImplTypeFlagsLocal); 331 private static winmdroot.Foundation.HRESULT GetImplTypeFlags(ITypeInfo* pThis, uint index, winmdroot.System.Com.IMPLTYPEFLAGS* pImplTypeFlags) 335 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 344 return (winmdroot.Foundation.HRESULT)ex.HResult; 356 public unsafe winmdroot.Foundation.HRESULT GetImplTypeFlags(uint index, winmdroot.System.Com.IMPLTYPEFLAGS* pImplTypeFlags) 358 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.IMPLTYPEFLAGS* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITypeInfo*)Unsafe.AsPointer(ref this), index, pImplTypeFlags); 362 internal unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(ReadOnlySpan<winmdroot.Foundation.PWSTR> rgszNames, Span<int> pMemId) 369 winmdroot.Foundation.HRESULT __result = this.GetIDsOfNames(rgszNamesLocal, (uint )(pMemId.IsEmpty ? rgszNames.Length : pMemId.Length), pMemIdLocal); 378 private static winmdroot.Foundation.HRESULT GetIDsOfNames(ITypeInfo* pThis, winmdroot.Foundation.PWSTR* rgszNames, uint cNames, int* pMemId) 382 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 391 return (winmdroot.Foundation.HRESULT)ex.HResult; 408 public unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(winmdroot.Foundation.PWSTR* rgszNames, uint cNames, int* pMemId) 410 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.Foundation.PWSTR* ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITypeInfo*)Unsafe.AsPointer(ref this), rgszNames, cNames, pMemId); 415 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) 425 winmdroot.Foundation.HRESULT __result = this.Invoke(pvInstance, memid, wFlags, pDispParamsLocal, pVarResultLocal, pExcepInfoLocal, puArgErrLocal); 436 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) 440 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 449 return (winmdroot.Foundation.HRESULT)ex.HResult; 476 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) 478 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); 483 internal unsafe winmdroot.Foundation.HRESULT GetDocumentation(int memid, out winmdroot.Foundation.BSTR pBstrName, out winmdroot.Foundation.BSTR pBstrDocString, out uint pdwHelpContext, out winmdroot.Foundation.BSTR pBstrHelpFile) 493 winmdroot.Foundation.HRESULT __result = this.GetDocumentation(memid, pBstrNameLocal, pBstrDocStringLocal, pdwHelpContextLocal, pBstrHelpFileLocal); 502 internal unsafe winmdroot.Foundation.HRESULT GetDocumentation(int memid, out uint pdwHelpContext) 506 winmdroot.Foundation.HRESULT __result = this.GetDocumentation(memid, default(winmdroot.Foundation.BSTR* ), default(winmdroot.Foundation.BSTR* ), pdwHelpContextLocal, default(winmdroot.Foundation.BSTR* )); 514 private static winmdroot.Foundation.HRESULT GetDocumentation(ITypeInfo* pThis, int memid, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile) 518 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 527 return (winmdroot.Foundation.HRESULT)ex.HResult; 547 public unsafe winmdroot.Foundation.HRESULT GetDocumentation(int memid, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile) 549 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, pBstrName, pBstrDocString, pdwHelpContext, pBstrHelpFile); 554 internal unsafe winmdroot.Foundation.HRESULT GetDllEntry(int memid, winmdroot.System.Com.INVOKEKIND invKind, out winmdroot.Foundation.BSTR pBstrDllName, out winmdroot.Foundation.BSTR pBstrName, out ushort pwOrdinal) 562 winmdroot.Foundation.HRESULT __result = this.GetDllEntry(memid, invKind, pBstrDllNameLocal, pBstrNameLocal, pwOrdinalLocal); 570 internal unsafe winmdroot.Foundation.HRESULT GetDllEntry(int memid, winmdroot.System.Com.INVOKEKIND invKind, out ushort pwOrdinal) 574 winmdroot.Foundation.HRESULT __result = this.GetDllEntry(memid, invKind, default(winmdroot.Foundation.BSTR* ), default(winmdroot.Foundation.BSTR* ), pwOrdinalLocal); 582 private static winmdroot.Foundation.HRESULT GetDllEntry(ITypeInfo* pThis, int memid, winmdroot.System.Com.INVOKEKIND invKind, [Optional] winmdroot.Foundation.BSTR* pBstrDllName, [Optional] winmdroot.Foundation.BSTR* pBstrName, ushort* pwOrdinal) 586 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 595 return (winmdroot.Foundation.HRESULT)ex.HResult; 615 public unsafe winmdroot.Foundation.HRESULT GetDllEntry(int memid, winmdroot.System.Com.INVOKEKIND invKind, [Optional] winmdroot.Foundation.BSTR* pBstrDllName, [Optional] winmdroot.Foundation.BSTR* pBstrName, ushort* pwOrdinal) 617 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,ushort* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, invKind, pBstrDllName, pBstrName, pwOrdinal); 623 private static winmdroot.Foundation.HRESULT GetRefTypeInfo(ITypeInfo* pThis, uint hRefType, winmdroot.System.Com.ITypeInfo** ppTInfo) 627 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 636 return (winmdroot.Foundation.HRESULT)ex.HResult; 648 public unsafe winmdroot.Foundation.HRESULT GetRefTypeInfo(uint hRefType, winmdroot.System.Com.ITypeInfo** ppTInfo) 650 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((ITypeInfo*)Unsafe.AsPointer(ref this), hRefType, ppTInfo); 655 internal unsafe winmdroot.Foundation.HRESULT AddressOfMember(int memid, winmdroot.System.Com.INVOKEKIND invKind, out void* ppv) 659 winmdroot.Foundation.HRESULT __result = this.AddressOfMember(memid, invKind, ppvLocal); 667 private static winmdroot.Foundation.HRESULT AddressOfMember(ITypeInfo* pThis, int memid, winmdroot.System.Com.INVOKEKIND invKind, void** ppv) 671 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 680 return (winmdroot.Foundation.HRESULT)ex.HResult; 696 public unsafe winmdroot.Foundation.HRESULT AddressOfMember(int memid, winmdroot.System.Com.INVOKEKIND invKind, void** ppv) 698 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, invKind, ppv); 703 internal unsafe winmdroot.Foundation.HRESULT CreateInstance(winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, out void* ppvObj) 709 winmdroot.Foundation.HRESULT __result = this.CreateInstance(pUnkOuter, riidLocal, ppvObjLocal); 718 private static winmdroot.Foundation.HRESULT CreateInstance(ITypeInfo* pThis, winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObj) 722 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 731 return (winmdroot.Foundation.HRESULT)ex.HResult; 744 public unsafe winmdroot.Foundation.HRESULT CreateInstance(winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObj) 746 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); 751 internal unsafe winmdroot.Foundation.HRESULT GetMops(int memid, out winmdroot.Foundation.BSTR pBstrMops) 755 winmdroot.Foundation.HRESULT __result = this.GetMops(memid, pBstrMopsLocal); 763 private static winmdroot.Foundation.HRESULT GetMops(ITypeInfo* pThis, int memid, winmdroot.Foundation.BSTR* pBstrMops) 767 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 776 return (winmdroot.Foundation.HRESULT)ex.HResult; 792 public unsafe winmdroot.Foundation.HRESULT GetMops(int memid, winmdroot.Foundation.BSTR* pBstrMops) 794 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, pBstrMops); 799 internal unsafe winmdroot.Foundation.HRESULT GetContainingTypeLib(winmdroot.System.Com.ITypeLib** ppTLib, out uint pIndex) 803 winmdroot.Foundation.HRESULT __result = this.GetContainingTypeLib(ppTLib, pIndexLocal); 811 private static winmdroot.Foundation.HRESULT GetContainingTypeLib(ITypeInfo* pThis, winmdroot.System.Com.ITypeLib** ppTLib, uint* pIndex) 815 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 824 return (winmdroot.Foundation.HRESULT)ex.HResult; 838 public unsafe winmdroot.Foundation.HRESULT GetContainingTypeLib(winmdroot.System.Com.ITypeLib** ppTLib, uint* pIndex) 840 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.ITypeLib** ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((ITypeInfo*)Unsafe.AsPointer(ref this), ppTLib, pIndex); 860 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 898 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 936 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 957 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 963 var hr = this.QueryInterface(&guid, &pv); 980 internal delegate *unmanaged [Stdcall]<ITypeInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 986 internal delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.TYPEATTR** ,winmdroot.Foundation.HRESULT> GetTypeAttr_4; 988 internal delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.HRESULT> GetTypeComp_5; 990 internal delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.FUNCDESC** ,winmdroot.Foundation.HRESULT> GetFuncDesc_6; 992 internal delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.VARDESC** ,winmdroot.Foundation.HRESULT> GetVarDesc_7; 994 internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,uint ,uint* ,winmdroot.Foundation.HRESULT> GetNames_8; 996 internal delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,uint* ,winmdroot.Foundation.HRESULT> GetRefTypeOfImplType_9; 998 internal delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.IMPLTYPEFLAGS* ,winmdroot.Foundation.HRESULT> GetImplTypeFlags_10; 1000 internal delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.Foundation.PWSTR* ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_11; 1002 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; 1004 internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDocumentation_13; 1006 internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,ushort* ,winmdroot.Foundation.HRESULT> GetDllEntry_14; 1008 internal delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetRefTypeInfo_15; 1010 internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,void** ,winmdroot.Foundation.HRESULT> AddressOfMember_16; 1012 internal delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> CreateInstance_17; 1014 internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetMops_18; 1016 internal delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.ITypeLib** ,uint* ,winmdroot.Foundation.HRESULT> GetContainingTypeLib_19; 1066 unsafe winmdroot.Foundation.HRESULT GetTypeAttr(winmdroot.System.Com.TYPEATTR** ppTypeAttr); 1069 unsafe winmdroot.Foundation.HRESULT GetTypeComp(winmdroot.System.Com.ITypeComp** ppTComp); 1072 unsafe winmdroot.Foundation.HRESULT GetFuncDesc(uint index, winmdroot.System.Com.FUNCDESC** ppFuncDesc); 1075 unsafe winmdroot.Foundation.HRESULT GetVarDesc(uint index, winmdroot.System.Com.VARDESC** ppVarDesc); 1078 unsafe winmdroot.Foundation.HRESULT GetNames(int memid, winmdroot.Foundation.BSTR* rgBstrNames, uint cMaxNames, uint* pcNames); 1081 unsafe winmdroot.Foundation.HRESULT GetRefTypeOfImplType(uint index, uint* pRefType); 1084 unsafe winmdroot.Foundation.HRESULT GetImplTypeFlags(uint index, winmdroot.System.Com.IMPLTYPEFLAGS* pImplTypeFlags); 1087 unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(winmdroot.Foundation.PWSTR* rgszNames, uint cNames, int* pMemId); 1090 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); 1093 unsafe winmdroot.Foundation.HRESULT GetDocumentation(int memid, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile); 1096 unsafe winmdroot.Foundation.HRESULT GetDllEntry(int memid, winmdroot.System.Com.INVOKEKIND invKind, [Optional] winmdroot.Foundation.BSTR* pBstrDllName, [Optional] winmdroot.Foundation.BSTR* pBstrName, ushort* pwOrdinal); 1099 unsafe winmdroot.Foundation.HRESULT GetRefTypeInfo(uint hRefType, winmdroot.System.Com.ITypeInfo** ppTInfo); 1102 unsafe winmdroot.Foundation.HRESULT AddressOfMember(int memid, winmdroot.System.Com.INVOKEKIND invKind, void** ppv); 1105 unsafe winmdroot.Foundation.HRESULT CreateInstance(winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObj); 1108 unsafe winmdroot.Foundation.HRESULT GetMops(int memid, winmdroot.Foundation.BSTR* pBstrMops); 1111 unsafe winmdroot.Foundation.HRESULT GetContainingTypeLib(winmdroot.System.Com.ITypeLib** ppTLib, uint* pIndex);
_generated\164\Windows.Win32.ITypeLib.g.cs (79)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<ITypeLib*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITypeLib*)Unsafe.AsPointer(ref this), riid, ppvObject); 63 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 87 private static winmdroot.Foundation.HRESULT GetTypeInfo(ITypeLib* pThis, uint index, winmdroot.System.Com.ITypeInfo** ppTInfo) 91 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 100 return (winmdroot.Foundation.HRESULT)ex.HResult; 112 public unsafe winmdroot.Foundation.HRESULT GetTypeInfo(uint index, winmdroot.System.Com.ITypeInfo** ppTInfo) 114 return ((delegate *unmanaged [Stdcall]<ITypeLib*,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITypeLib*)Unsafe.AsPointer(ref this), index, ppTInfo); 119 internal unsafe winmdroot.Foundation.HRESULT GetTypeInfoType(uint index, out winmdroot.System.Com.TYPEKIND pTKind) 123 winmdroot.Foundation.HRESULT __result = this.GetTypeInfoType(index, pTKindLocal); 131 private static winmdroot.Foundation.HRESULT GetTypeInfoType(ITypeLib* pThis, uint index, winmdroot.System.Com.TYPEKIND* pTKind) 135 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 144 return (winmdroot.Foundation.HRESULT)ex.HResult; 158 public unsafe winmdroot.Foundation.HRESULT GetTypeInfoType(uint index, winmdroot.System.Com.TYPEKIND* pTKind) 160 return ((delegate *unmanaged [Stdcall]<ITypeLib*,uint ,winmdroot.System.Com.TYPEKIND* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ITypeLib*)Unsafe.AsPointer(ref this), index, pTKind); 165 internal unsafe winmdroot.Foundation.HRESULT GetTypeInfoOfGuid(in global::System.Guid guid, winmdroot.System.Com.ITypeInfo** ppTinfo) 169 winmdroot.Foundation.HRESULT __result = this.GetTypeInfoOfGuid(guidLocal, ppTinfo); 177 private static winmdroot.Foundation.HRESULT GetTypeInfoOfGuid(ITypeLib* pThis, global::System.Guid* guid, winmdroot.System.Com.ITypeInfo** ppTinfo) 181 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 190 return (winmdroot.Foundation.HRESULT)ex.HResult; 204 public unsafe winmdroot.Foundation.HRESULT GetTypeInfoOfGuid(global::System.Guid* guid, winmdroot.System.Com.ITypeInfo** ppTinfo) 206 return ((delegate *unmanaged [Stdcall]<ITypeLib*,global::System.Guid* ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ITypeLib*)Unsafe.AsPointer(ref this), guid, ppTinfo); 211 internal unsafe winmdroot.Foundation.HRESULT GetLibAttr(out winmdroot.System.Com.TLIBATTR* ppTLibAttr) 215 winmdroot.Foundation.HRESULT __result = this.GetLibAttr(ppTLibAttrLocal); 223 private static winmdroot.Foundation.HRESULT GetLibAttr(ITypeLib* pThis, winmdroot.System.Com.TLIBATTR** ppTLibAttr) 227 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 236 return (winmdroot.Foundation.HRESULT)ex.HResult; 247 public unsafe winmdroot.Foundation.HRESULT GetLibAttr(winmdroot.System.Com.TLIBATTR** ppTLibAttr) 249 return ((delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.System.Com.TLIBATTR** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITypeLib*)Unsafe.AsPointer(ref this), ppTLibAttr); 255 private static winmdroot.Foundation.HRESULT GetTypeComp(ITypeLib* pThis, winmdroot.System.Com.ITypeComp** ppTComp) 259 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 268 return (winmdroot.Foundation.HRESULT)ex.HResult; 283 public unsafe winmdroot.Foundation.HRESULT GetTypeComp(winmdroot.System.Com.ITypeComp** ppTComp) 285 return ((delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITypeLib*)Unsafe.AsPointer(ref this), ppTComp); 290 internal unsafe winmdroot.Foundation.HRESULT GetDocumentation(int index, out winmdroot.Foundation.BSTR pBstrName, out winmdroot.Foundation.BSTR pBstrDocString, out uint pdwHelpContext, out winmdroot.Foundation.BSTR pBstrHelpFile) 300 winmdroot.Foundation.HRESULT __result = this.GetDocumentation(index, pBstrNameLocal, pBstrDocStringLocal, pdwHelpContextLocal, pBstrHelpFileLocal); 309 internal unsafe winmdroot.Foundation.HRESULT GetDocumentation(int index, out uint pdwHelpContext) 313 winmdroot.Foundation.HRESULT __result = this.GetDocumentation(index, default(winmdroot.Foundation.BSTR* ), default(winmdroot.Foundation.BSTR* ), pdwHelpContextLocal, default(winmdroot.Foundation.BSTR* )); 321 private static winmdroot.Foundation.HRESULT GetDocumentation(ITypeLib* pThis, int index, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile) 325 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 334 return (winmdroot.Foundation.HRESULT)ex.HResult; 349 public unsafe winmdroot.Foundation.HRESULT GetDocumentation(int index, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile) 351 return ((delegate *unmanaged [Stdcall]<ITypeLib*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITypeLib*)Unsafe.AsPointer(ref this), index, pBstrName, pBstrDocString, pdwHelpContext, pBstrHelpFile); 356 internal unsafe winmdroot.Foundation.HRESULT IsName(ref Span<char>szNameBuf, uint lHashVal, out winmdroot.Foundation.BOOL pfName) 364 winmdroot.Foundation.HRESULT __result = this.IsName(wstrszNameBuf, lHashVal, pfNameLocal); 374 private static winmdroot.Foundation.HRESULT IsName(ITypeLib* pThis, winmdroot.Foundation.PWSTR szNameBuf, uint lHashVal, winmdroot.Foundation.BOOL* pfName) 378 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 387 return (winmdroot.Foundation.HRESULT)ex.HResult; 402 public unsafe winmdroot.Foundation.HRESULT IsName(winmdroot.Foundation.PWSTR szNameBuf, uint lHashVal, winmdroot.Foundation.BOOL* pfName) 404 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); 409 internal unsafe winmdroot.Foundation.HRESULT FindName(ref Span<char>szNameBuf, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, Span<int> rgMemId, ref ushort pcFound) 419 winmdroot.Foundation.HRESULT __result = this.FindName(wstrszNameBuf, lHashVal, ppTInfo, rgMemIdLocal, pcFoundLocal); 430 private static winmdroot.Foundation.HRESULT FindName(ITypeLib* pThis, winmdroot.Foundation.PWSTR szNameBuf, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, int* rgMemId, ushort* pcFound) 434 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 443 return (winmdroot.Foundation.HRESULT)ex.HResult; 461 public unsafe winmdroot.Foundation.HRESULT FindName(winmdroot.Foundation.PWSTR szNameBuf, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, int* rgMemId, ushort* pcFound) 463 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); 483 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 504 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 510 var hr = this.QueryInterface(&guid, &pv); 527 internal delegate *unmanaged [Stdcall]<ITypeLib*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 535 internal delegate *unmanaged [Stdcall]<ITypeLib*,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 537 internal delegate *unmanaged [Stdcall]<ITypeLib*,uint ,winmdroot.System.Com.TYPEKIND* ,winmdroot.Foundation.HRESULT> GetTypeInfoType_6; 539 internal delegate *unmanaged [Stdcall]<ITypeLib*,global::System.Guid* ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfoOfGuid_7; 541 internal delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.System.Com.TLIBATTR** ,winmdroot.Foundation.HRESULT> GetLibAttr_8; 543 internal delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.HRESULT> GetTypeComp_9; 545 internal delegate *unmanaged [Stdcall]<ITypeLib*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDocumentation_10; 547 internal delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.Foundation.PWSTR ,uint ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> IsName_11; 549 internal delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.Foundation.PWSTR ,uint ,winmdroot.System.Com.ITypeInfo** ,int* ,ushort* ,winmdroot.Foundation.HRESULT> FindName_12; 589 unsafe winmdroot.Foundation.HRESULT GetTypeInfo(uint index, winmdroot.System.Com.ITypeInfo** ppTInfo); 592 unsafe winmdroot.Foundation.HRESULT GetTypeInfoType(uint index, winmdroot.System.Com.TYPEKIND* pTKind); 595 unsafe winmdroot.Foundation.HRESULT GetTypeInfoOfGuid(global::System.Guid* guid, winmdroot.System.Com.ITypeInfo** ppTinfo); 598 unsafe winmdroot.Foundation.HRESULT GetLibAttr(winmdroot.System.Com.TLIBATTR** ppTLibAttr); 601 unsafe winmdroot.Foundation.HRESULT GetTypeComp(winmdroot.System.Com.ITypeComp** ppTComp); 604 unsafe winmdroot.Foundation.HRESULT GetDocumentation(int index, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile); 607 unsafe winmdroot.Foundation.HRESULT IsName(winmdroot.Foundation.PWSTR szNameBuf, uint lHashVal, winmdroot.Foundation.BOOL* pfName); 610 unsafe winmdroot.Foundation.HRESULT FindName(winmdroot.Foundation.PWSTR szNameBuf, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, int* rgMemId, ushort* pcFound);
_generated\165\Windows.Win32.IUnknown.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); 54 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 56 return ((delegate *unmanaged [Stdcall]<IUnknown*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUnknown*)Unsafe.AsPointer(ref this), riid, ppvObject); 81 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 87 var hr = this.QueryInterface(&guid, &pv); 104 internal delegate *unmanaged [Stdcall]<IUnknown*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1;
_generated\198\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); 39 internal static unsafe winmdroot.Foundation.HRESULT CoCreateInstance(in global::System.Guid rclsid, [Optional] winmdroot.System.Com.IUnknown* pUnkOuter, winmdroot.System.Com.CLSCTX dwClsContext, in global::System.Guid riid, out void* ppv) 47 winmdroot.Foundation.HRESULT __result = PInvokeCore.CoCreateInstance(rclsidLocal, pUnkOuter, dwClsContext, riidLocal, ppvLocal); 72 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); 77 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) 81 winmdroot.Foundation.HRESULT __result = PInvokeCore.DoDragDrop(pDataObj, pDropSource, dwOKEffects, pdwEffectLocal); 103 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); 126 internal static extern winmdroot.Foundation.HRESULT OleFlushClipboard(); 142 internal static extern unsafe winmdroot.Foundation.HRESULT OleGetClipboard(winmdroot.System.Com.IDataObject** ppDataObj); 146 internal static unsafe winmdroot.Foundation.HRESULT OleInitialize() 148 winmdroot.Foundation.HRESULT __result = PInvokeCore.OleInitialize(default); 166 internal static extern unsafe winmdroot.Foundation.HRESULT OleInitialize(void* pvReserved); 181 internal static extern unsafe winmdroot.Foundation.HRESULT OleSetClipboard(winmdroot.System.Com.IDataObject* pDataObj); 195 internal static unsafe winmdroot.Foundation.HRESULT PropVariantClear(ref winmdroot.System.Com.StructuredStorage.PROPVARIANT pvar) 199 winmdroot.Foundation.HRESULT __result = PInvokeCore.PropVariantClear(pvarLocal); 216 internal static extern unsafe winmdroot.Foundation.HRESULT PropVariantClear(winmdroot.System.Com.StructuredStorage.PROPVARIANT* pvar); 231 internal static extern unsafe winmdroot.Foundation.HRESULT RegisterDragDrop(winmdroot.Foundation.HWND hwnd, winmdroot.System.Ole.IDropTarget* pDropTarget); 266 internal static extern winmdroot.Foundation.HRESULT RevokeDragDrop(winmdroot.Foundation.HWND hwnd);
_generated\199\Windows.Win32.PInvokeCore.OLEAUT32.dll.g.cs (19)
36 internal static unsafe winmdroot.Foundation.HRESULT LoadRegTypeLib(in global::System.Guid rguid, ushort wVerMajor, ushort wVerMinor, uint lcid, winmdroot.System.Com.ITypeLib** pptlib) 40 winmdroot.Foundation.HRESULT __result = PInvokeCore.LoadRegTypeLib(rguidLocal, wVerMajor, wVerMinor, lcid, pptlib); 63 internal static extern unsafe winmdroot.Foundation.HRESULT LoadRegTypeLib(global::System.Guid* rguid, ushort wVerMajor, ushort wVerMinor, uint lcid, winmdroot.System.Com.ITypeLib** pptlib); 68 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) 76 winmdroot.Foundation.HRESULT __result = PInvokeCore.OleCreatePictureIndirect(lpPictDescLocal, riidLocal, fOwn, lplpvObjLocal); 95 internal static extern unsafe winmdroot.Foundation.HRESULT OleCreatePictureIndirect(winmdroot.System.Ole.PICTDESC* lpPictDesc, global::System.Guid* riid, winmdroot.Foundation.BOOL fOwn, void** lplpvObj); 148 internal static extern unsafe winmdroot.Foundation.HRESULT SafeArrayDestroy(winmdroot.System.Com.SAFEARRAY* psa); 152 internal static unsafe winmdroot.Foundation.HRESULT SafeArrayGetElement(winmdroot.System.Com.SAFEARRAY* psa, in int rgIndices, void* pv) 156 winmdroot.Foundation.HRESULT __result = PInvokeCore.SafeArrayGetElement(psa, rgIndicesLocal, pv); 171 internal static extern unsafe winmdroot.Foundation.HRESULT SafeArrayGetElement(winmdroot.System.Com.SAFEARRAY* psa, int* rgIndices, void* pv); 184 internal static extern unsafe winmdroot.Foundation.HRESULT SafeArrayGetRecordInfo(winmdroot.System.Com.SAFEARRAY* psa, winmdroot.System.Ole.IRecordInfo** prinfo); 188 internal static unsafe winmdroot.Foundation.HRESULT SafeArrayGetVartype(winmdroot.System.Com.SAFEARRAY* psa, out winmdroot.System.Variant.VARENUM pvt) 192 winmdroot.Foundation.HRESULT __result = PInvokeCore.SafeArrayGetVartype(psa, pvtLocal); 209 internal static extern unsafe winmdroot.Foundation.HRESULT SafeArrayGetVartype(winmdroot.System.Com.SAFEARRAY* psa, winmdroot.System.Variant.VARENUM* pvt); 222 internal static extern unsafe winmdroot.Foundation.HRESULT SafeArrayLock(winmdroot.System.Com.SAFEARRAY* psa); 226 internal static unsafe winmdroot.Foundation.HRESULT SafeArrayPutElement(winmdroot.System.Com.SAFEARRAY* psa, in int rgIndices, void* pv) 230 winmdroot.Foundation.HRESULT __result = PInvokeCore.SafeArrayPutElement(psa, rgIndicesLocal, pv); 248 internal static extern unsafe winmdroot.Foundation.HRESULT SafeArrayPutElement(winmdroot.System.Com.SAFEARRAY* psa, int* rgIndices, void* pv); 258 internal static extern unsafe winmdroot.Foundation.HRESULT SafeArrayUnlock(winmdroot.System.Com.SAFEARRAY* psa);
_generated\230\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);
_generated\231\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);
_generated\232\Windows.Win32.System_Com_IEnumFORMATETC_Extensions.g.cs (4)
25 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumFORMATETC.Interface @this, Span<winmdroot.System.Com.FORMATETC> rgelt, out uint pceltFetched) 31 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgelt.Length, rgeltLocal, pceltFetchedLocal); 38 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumFORMATETC.Interface @this, Span<winmdroot.System.Com.FORMATETC> rgelt) 42 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgelt.Length, rgeltLocal, default(uint* ));
_generated\233\Windows.Win32.System_Com_IEnumMoniker_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumMoniker.Interface @this, uint celt, winmdroot.System.Com.IMoniker** rgelt, out uint pceltFetched) 28 winmdroot.Foundation.HRESULT __result = @this.Next(celt, rgelt, pceltFetchedLocal); 35 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumMoniker.Interface @this, uint celt, winmdroot.System.Com.IMoniker** rgelt) 37 winmdroot.Foundation.HRESULT __result = @this.Next(celt, rgelt, default(uint* ));
_generated\234\Windows.Win32.System_Com_IEnumSTATDATA_Extensions.g.cs (4)
25 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumSTATDATA.Interface @this, Span<winmdroot.System.Com.STATDATA> rgelt, out uint pceltFetched) 31 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgelt.Length, rgeltLocal, pceltFetchedLocal); 38 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumSTATDATA.Interface @this, Span<winmdroot.System.Com.STATDATA> rgelt) 42 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgelt.Length, rgeltLocal, default(uint* ));
_generated\235\Windows.Win32.System_Com_IEnumString_Extensions.g.cs (4)
25 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumString.Interface @this, Span<winmdroot.Foundation.PWSTR> rgelt, out uint pceltFetched) 31 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgelt.Length, rgeltLocal, pceltFetchedLocal); 38 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumString.Interface @this, Span<winmdroot.Foundation.PWSTR> rgelt) 42 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgelt.Length, rgeltLocal, default(uint* ));
_generated\236\Windows.Win32.System_Com_IEnumUnknown_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumUnknown.Interface @this, uint celt, winmdroot.System.Com.IUnknown** rgelt, out uint pceltFetched) 28 winmdroot.Foundation.HRESULT __result = @this.Next(celt, rgelt, pceltFetchedLocal); 35 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumUnknown.Interface @this, uint celt, winmdroot.System.Com.IUnknown** rgelt) 37 winmdroot.Foundation.HRESULT __result = @this.Next(celt, rgelt, default(uint* ));
_generated\237\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);
_generated\238\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, [Optional] 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, [Optional] 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);
_generated\239\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);
_generated\240\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);
_generated\241\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);
_generated\242\Windows.Win32.System_Com_ISequentialStream_Extensions.g.cs (8)
25 internal static unsafe winmdroot.Foundation.HRESULT Read(this winmdroot.System.Com.ISequentialStream.Interface @this, Span<byte> pv, out uint pcbRead) 31 winmdroot.Foundation.HRESULT __result = @this.Read((void* )pvLocal, (uint )pv.Length, pcbReadLocal); 38 internal static unsafe winmdroot.Foundation.HRESULT Read(this winmdroot.System.Com.ISequentialStream.Interface @this, Span<byte> pv) 42 winmdroot.Foundation.HRESULT __result = @this.Read((void* )pvLocal, (uint )pv.Length, default(uint* )); 49 internal static unsafe winmdroot.Foundation.HRESULT Write(this winmdroot.System.Com.ISequentialStream.Interface @this, ReadOnlySpan<byte> pv, out uint pcbWritten) 55 winmdroot.Foundation.HRESULT __result = @this.Write((void* )pvLocal, (uint )pv.Length, pcbWrittenLocal); 62 internal static unsafe winmdroot.Foundation.HRESULT Write(this winmdroot.System.Com.ISequentialStream.Interface @this, ReadOnlySpan<byte> pv) 66 winmdroot.Foundation.HRESULT __result = @this.Write((void* )pvLocal, (uint )pv.Length, default(uint* ));
_generated\243\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);
_generated\244\Windows.Win32.System_Com_IStream_Extensions.g.cs (18)
25 internal static unsafe winmdroot.Foundation.HRESULT Read(this winmdroot.System.Com.IStream.Interface @this, Span<byte> pv, out uint pcbRead) 31 winmdroot.Foundation.HRESULT __result = @this.Read((void* )pvLocal, (uint )pv.Length, pcbReadLocal); 38 internal static unsafe winmdroot.Foundation.HRESULT Read(this winmdroot.System.Com.IStream.Interface @this, Span<byte> pv) 42 winmdroot.Foundation.HRESULT __result = @this.Read((void* )pvLocal, (uint )pv.Length, default(uint* )); 49 internal static unsafe winmdroot.Foundation.HRESULT Write(this winmdroot.System.Com.IStream.Interface @this, ReadOnlySpan<byte> pv, out uint pcbWritten) 55 winmdroot.Foundation.HRESULT __result = @this.Write((void* )pvLocal, (uint )pv.Length, pcbWrittenLocal); 62 internal static unsafe winmdroot.Foundation.HRESULT Write(this winmdroot.System.Com.IStream.Interface @this, ReadOnlySpan<byte> pv) 66 winmdroot.Foundation.HRESULT __result = @this.Write((void* )pvLocal, (uint )pv.Length, default(uint* )); 72 internal static unsafe winmdroot.Foundation.HRESULT Seek(this winmdroot.System.Com.IStream.Interface @this, long dlibMove, global::System.IO.SeekOrigin dwOrigin, out ulong plibNewPosition) 76 winmdroot.Foundation.HRESULT __result = @this.Seek(dlibMove, dwOrigin, plibNewPositionLocal); 83 internal static unsafe winmdroot.Foundation.HRESULT Seek(this winmdroot.System.Com.IStream.Interface @this, long dlibMove, global::System.IO.SeekOrigin dwOrigin) 85 winmdroot.Foundation.HRESULT __result = @this.Seek(dlibMove, dwOrigin, default(ulong* )); 90 internal static unsafe winmdroot.Foundation.HRESULT CopyTo(this winmdroot.System.Com.IStream.Interface @this, winmdroot.System.Com.IStream* pstm, ulong cb, out ulong pcbRead, out ulong pcbWritten) 96 winmdroot.Foundation.HRESULT __result = @this.CopyTo(pstm, cb, pcbReadLocal, pcbWrittenLocal); 103 internal static unsafe winmdroot.Foundation.HRESULT CopyTo(this winmdroot.System.Com.IStream.Interface @this, winmdroot.System.Com.IStream* pstm, ulong cb) 105 winmdroot.Foundation.HRESULT __result = @this.CopyTo(pstm, cb, default(ulong* ), default(ulong* )); 110 internal static unsafe winmdroot.Foundation.HRESULT Stat(this winmdroot.System.Com.IStream.Interface @this, out winmdroot.System.Com.STATSTG pstatstg, uint grfStatFlag) 114 winmdroot.Foundation.HRESULT __result = @this.Stat(pstatstgLocal, grfStatFlag);
_generated\245\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);
_generated\246\Windows.Win32.System_Com_ITypeInfo_Extensions.g.cs (32)
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); 55 internal static unsafe winmdroot.Foundation.HRESULT GetNames(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, Span<winmdroot.Foundation.BSTR> rgBstrNames, out uint pcNames) 61 winmdroot.Foundation.HRESULT __result = @this.GetNames(memid, rgBstrNamesLocal, (uint )rgBstrNames.Length, pcNamesLocal); 68 internal static unsafe winmdroot.Foundation.HRESULT GetRefTypeOfImplType(this winmdroot.System.Com.ITypeInfo.Interface @this, uint index, out uint pRefType) 72 winmdroot.Foundation.HRESULT __result = @this.GetRefTypeOfImplType(index, pRefTypeLocal); 78 internal static unsafe winmdroot.Foundation.HRESULT GetImplTypeFlags(this winmdroot.System.Com.ITypeInfo.Interface @this, uint index, out winmdroot.System.Com.IMPLTYPEFLAGS pImplTypeFlags) 82 winmdroot.Foundation.HRESULT __result = @this.GetImplTypeFlags(index, pImplTypeFlagsLocal); 89 internal static unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(this winmdroot.System.Com.ITypeInfo.Interface @this, ReadOnlySpan<winmdroot.Foundation.PWSTR> rgszNames, Span<int> pMemId) 96 winmdroot.Foundation.HRESULT __result = @this.GetIDsOfNames(rgszNamesLocal, (uint )(pMemId.IsEmpty ? rgszNames.Length : pMemId.Length), pMemIdLocal); 103 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) 113 winmdroot.Foundation.HRESULT __result = @this.Invoke(pvInstance, memid, wFlags, pDispParamsLocal, pVarResultLocal, pExcepInfoLocal, puArgErrLocal); 122 internal static unsafe winmdroot.Foundation.HRESULT GetDocumentation(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, out winmdroot.Foundation.BSTR pBstrName, out winmdroot.Foundation.BSTR pBstrDocString, out uint pdwHelpContext, out winmdroot.Foundation.BSTR pBstrHelpFile) 132 winmdroot.Foundation.HRESULT __result = @this.GetDocumentation(memid, pBstrNameLocal, pBstrDocStringLocal, pdwHelpContextLocal, pBstrHelpFileLocal); 141 internal static unsafe winmdroot.Foundation.HRESULT GetDocumentation(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, out uint pdwHelpContext) 145 winmdroot.Foundation.HRESULT __result = @this.GetDocumentation(memid, default(winmdroot.Foundation.BSTR* ), default(winmdroot.Foundation.BSTR* ), pdwHelpContextLocal, default(winmdroot.Foundation.BSTR* )); 151 internal static unsafe winmdroot.Foundation.HRESULT GetDllEntry(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, winmdroot.System.Com.INVOKEKIND invKind, out winmdroot.Foundation.BSTR pBstrDllName, out winmdroot.Foundation.BSTR pBstrName, out ushort pwOrdinal) 159 winmdroot.Foundation.HRESULT __result = @this.GetDllEntry(memid, invKind, pBstrDllNameLocal, pBstrNameLocal, pwOrdinalLocal); 167 internal static unsafe winmdroot.Foundation.HRESULT GetDllEntry(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, winmdroot.System.Com.INVOKEKIND invKind, out ushort pwOrdinal) 171 winmdroot.Foundation.HRESULT __result = @this.GetDllEntry(memid, invKind, default(winmdroot.Foundation.BSTR* ), default(winmdroot.Foundation.BSTR* ), pwOrdinalLocal); 177 internal static unsafe winmdroot.Foundation.HRESULT AddressOfMember(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, winmdroot.System.Com.INVOKEKIND invKind, out void* ppv) 181 winmdroot.Foundation.HRESULT __result = @this.AddressOfMember(memid, invKind, ppvLocal); 187 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) 193 winmdroot.Foundation.HRESULT __result = @this.CreateInstance(pUnkOuter, riidLocal, ppvObjLocal); 200 internal static unsafe winmdroot.Foundation.HRESULT GetMops(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, out winmdroot.Foundation.BSTR pBstrMops) 204 winmdroot.Foundation.HRESULT __result = @this.GetMops(memid, pBstrMopsLocal); 210 internal static unsafe winmdroot.Foundation.HRESULT GetContainingTypeLib(this winmdroot.System.Com.ITypeInfo.Interface @this, winmdroot.System.Com.ITypeLib** ppTLib, out uint pIndex) 214 winmdroot.Foundation.HRESULT __result = @this.GetContainingTypeLib(ppTLib, pIndexLocal);
_generated\247\Windows.Win32.System_Com_ITypeLib_Extensions.g.cs (14)
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, out winmdroot.Foundation.BSTR pBstrName, out winmdroot.Foundation.BSTR pBstrDocString, out uint pdwHelpContext, out winmdroot.Foundation.BSTR pBstrHelpFile) 64 winmdroot.Foundation.HRESULT __result = @this.GetDocumentation(index, pBstrNameLocal, pBstrDocStringLocal, pdwHelpContextLocal, pBstrHelpFileLocal); 73 internal static unsafe winmdroot.Foundation.HRESULT GetDocumentation(this winmdroot.System.Com.ITypeLib.Interface @this, int index, out uint pdwHelpContext) 77 winmdroot.Foundation.HRESULT __result = @this.GetDocumentation(index, default(winmdroot.Foundation.BSTR* ), default(winmdroot.Foundation.BSTR* ), pdwHelpContextLocal, default(winmdroot.Foundation.BSTR* )); 83 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) 91 winmdroot.Foundation.HRESULT __result = @this.IsName(wstrszNameBuf, lHashVal, pfNameLocal); 99 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, Span<int> rgMemId, ref ushort pcFound) 109 winmdroot.Foundation.HRESULT __result = @this.FindName(wstrszNameBuf, lHashVal, ppTInfo, rgMemIdLocal, pcFoundLocal);
_generated\248\Windows.Win32.System_Com_StructuredStorage_IEnumSTATSTG_Extensions.g.cs (4)
25 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.StructuredStorage.IEnumSTATSTG.Interface @this, Span<winmdroot.System.Com.STATSTG> rgelt, out uint pceltFetched) 31 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgelt.Length, rgeltLocal, pceltFetchedLocal); 38 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.StructuredStorage.IEnumSTATSTG.Interface @this, Span<winmdroot.System.Com.STATSTG> rgelt) 42 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgelt.Length, rgeltLocal, default(uint* ));
_generated\249\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); 35 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) 39 winmdroot.Foundation.HRESULT __result = @this.OpenStream(pwcsNameLocal, default, grfMode, reserved2, ppstm); 45 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) 49 winmdroot.Foundation.HRESULT __result = @this.CreateStorage(pwcsNameLocal, grfMode, reserved1, reserved2, ppstg); 55 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) 61 winmdroot.Foundation.HRESULT __result = @this.OpenStorage(pwcsNameLocal, pstgPriority, grfMode, snbExcludeLocal, reserved, ppstg); 69 internal static unsafe winmdroot.Foundation.HRESULT CopyTo(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, [Optional] ReadOnlySpan<global::System.Guid> rgiidExclude, in ushort* snbExclude, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest) 75 winmdroot.Foundation.HRESULT __result = @this.CopyTo((uint )rgiidExclude.Length, rgiidExcludeLocal, snbExcludeLocal, pstgDest); 82 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) 88 winmdroot.Foundation.HRESULT __result = @this.MoveElementTo(pwcsNameLocal, pstgDest, pwcsNewNameLocal, grfFlags); 95 internal static unsafe winmdroot.Foundation.HRESULT EnumElements(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum) 97 winmdroot.Foundation.HRESULT __result = @this.EnumElements(default, default, default, ppenum); 102 internal static unsafe winmdroot.Foundation.HRESULT DestroyElement(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsName) 106 winmdroot.Foundation.HRESULT __result = @this.DestroyElement(pwcsNameLocal); 112 internal static unsafe winmdroot.Foundation.HRESULT RenameElement(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsOldName, string pwcsNewName) 118 winmdroot.Foundation.HRESULT __result = @this.RenameElement(pwcsOldNameLocal, pwcsNewNameLocal); 125 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) 135 winmdroot.Foundation.HRESULT __result = @this.SetElementTimes(pwcsNameLocal, pctimeLocal, patimeLocal, pmtimeLocal); 144 internal static unsafe winmdroot.Foundation.HRESULT SetClass(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, in global::System.Guid clsid) 148 winmdroot.Foundation.HRESULT __result = @this.SetClass(clsidLocal); 154 internal static unsafe winmdroot.Foundation.HRESULT Stat(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, out winmdroot.System.Com.STATSTG pstatstg, uint grfStatFlag) 158 winmdroot.Foundation.HRESULT __result = @this.Stat(pstatstgLocal, grfStatFlag);
_generated\251\Windows.Win32.System_Ole_IDispatchEx_Extensions.g.cs (12)
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, out winmdroot.System.Variant.VARIANT pvarRes, out winmdroot.System.Com.EXCEPINFO pei, [Optional] winmdroot.System.Com.IServiceProvider* pspCaller) 42 winmdroot.Foundation.HRESULT __result = @this.InvokeEx(id, lcid, wFlags, pdpLocal, pvarResLocal, peiLocal, pspCaller); 50 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, [Optional] winmdroot.System.Com.IServiceProvider* pspCaller) 54 winmdroot.Foundation.HRESULT __result = @this.InvokeEx(id, lcid, wFlags, pdpLocal, default(winmdroot.System.Variant.VARIANT* ), default(winmdroot.System.Com.EXCEPINFO* ), pspCaller); 60 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) 64 winmdroot.Foundation.HRESULT __result = @this.GetMemberProperties(id, grfdexFetch, pgrfdexLocal); 70 internal static unsafe winmdroot.Foundation.HRESULT GetMemberName(this winmdroot.System.Ole.IDispatchEx.Interface @this, int id, out winmdroot.Foundation.BSTR pbstrName) 74 winmdroot.Foundation.HRESULT __result = @this.GetMemberName(id, pbstrNameLocal); 80 internal static unsafe winmdroot.Foundation.HRESULT GetNextDispID(this winmdroot.System.Ole.IDispatchEx.Interface @this, uint grfdex, int id, out int pid) 84 winmdroot.Foundation.HRESULT __result = @this.GetNextDispID(grfdex, id, pidLocal);
_generated\252\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);
_generated\253\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);
_generated\254\Windows.Win32.System_Ole_IRecordInfo_Extensions.g.cs (18)
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 GetName(this winmdroot.System.Ole.IRecordInfo.Interface @this, out winmdroot.Foundation.BSTR pbstrName) 38 winmdroot.Foundation.HRESULT __result = @this.GetName(pbstrNameLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetSize(this winmdroot.System.Ole.IRecordInfo.Interface @this, out uint pcbSize) 48 winmdroot.Foundation.HRESULT __result = @this.GetSize(pcbSizeLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetField(this winmdroot.System.Ole.IRecordInfo.Interface @this, void* pvData, string szFieldName, out winmdroot.System.Variant.VARIANT pvarField) 60 winmdroot.Foundation.HRESULT __result = @this.GetField(pvData, szFieldNameLocal, pvarFieldLocal); 67 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) 75 winmdroot.Foundation.HRESULT __result = @this.GetFieldNoCopy(pvData, szFieldNameLocal, pvarFieldLocal, ppvDataCArrayLocal); 83 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) 89 winmdroot.Foundation.HRESULT __result = @this.PutField(wFlags, pvData, szFieldNameLocal, pvarFieldLocal); 96 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) 102 winmdroot.Foundation.HRESULT __result = @this.PutFieldNoCopy(wFlags, pvData, szFieldNameLocal, pvarFieldLocal); 109 internal static unsafe winmdroot.Foundation.HRESULT GetFieldNames(this winmdroot.System.Ole.IRecordInfo.Interface @this, ref uint pcNames, Span<winmdroot.Foundation.BSTR> rgBstrNames) 115 winmdroot.Foundation.HRESULT __result = @this.GetFieldNames(pcNamesLocal, rgBstrNamesLocal); 122 internal static unsafe winmdroot.Foundation.HRESULT RecordCreateCopy(this winmdroot.System.Ole.IRecordInfo.Interface @this, void* pvSource, out void* ppvDest) 126 winmdroot.Foundation.HRESULT __result = @this.RecordCreateCopy(pvSource, ppvDestLocal);
_generated\264\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);
_generated\265\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, [Optional] winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point? ppt, winmdroot.System.Com.IDataObject* pDataObject) 37 winmdroot.Foundation.HRESULT __result = @this.InitializeFromWindow(hwnd, ppt.HasValue ? &pptLocal : null, pDataObject);
_generated\266\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, [Optional] winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point? ppt, winmdroot.System.Com.IDataObject* pDataObject) 37 winmdroot.Foundation.HRESULT __result = @this.InitializeFromWindow(hwnd, ppt.HasValue ? &pptLocal : null, pDataObject);
_generated\267\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);
_generated\42\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)
_generated\69\Windows.Win32.EXCEPINFO.g.cs (1)
52 internal unsafe delegate *unmanaged[Stdcall]<global::Windows.Win32.System.Com.EXCEPINFO*,global::Windows.Win32.Foundation.HRESULT> pfnDeferredFillIn;
System\IO\StreamExtensions.cs (7)
26/// <returns><see cref="HRESULT.S_OK"/> if successful.</returns> 27internal static unsafe HRESULT SaveStreamToHGLOBAL(this Stream stream, ref HGLOBAL hglobal) 36return HRESULT.E_OUTOFMEMORY; 45return HRESULT.S_OK; 51return HRESULT.E_OUTOFMEMORY; 57return HRESULT.E_OUTOFMEMORY; 71return HRESULT.S_OK;
System\Private\Windows\Ole\ClipboardCore.cs (16)
36/// <returns>An <see cref="HRESULT"/> indicating the success or failure of the operation.</returns> 37internal static HRESULT Clear( 47HRESULT result; 70/// <returns>An <see cref="HRESULT"/> indicating the success or failure of the operation.</returns> 71internal static HRESULT Flush( 81HRESULT result; 108/// <returns>An <see cref="HRESULT"/> indicating the success or failure of the operation.</returns> 109internal static HRESULT SetData( 126HRESULT result; 168/// <returns>An <see cref="HRESULT"/> indicating the success or failure of the operation.</returns> 170internal static HRESULT TryGetData( 186HRESULT result; 217using ComScope<IComCallableWrapper> realDataObject = proxyDataObject.TryQuery<IComCallableWrapper>(out HRESULT wrapperResult); 247HRESULT result = TryGetData( 263internal static HRESULT GetDataObject<TDataObject, TIDataObject>( 272HRESULT result = TryGetData(
System\Private\Windows\Ole\Composition.cs (9)
215public HRESULT DAdvise(FORMATETC* pformatetc, uint advf, IAdviseSink* pAdvSink, uint* pdwConnection) => _nativeDataObject.DAdvise(pformatetc, advf, pAdvSink, pdwConnection); 216public HRESULT DUnadvise(uint dwConnection) => _nativeDataObject.DUnadvise(dwConnection); 217public HRESULT EnumDAdvise(IEnumSTATDATA** ppenumAdvise) => _nativeDataObject.EnumDAdvise(ppenumAdvise); 218public HRESULT EnumFormatEtc(uint dwDirection, IEnumFORMATETC** ppenumFormatEtc) => _nativeDataObject.EnumFormatEtc(dwDirection, ppenumFormatEtc); 219public HRESULT GetCanonicalFormatEtc(FORMATETC* pformatectIn, FORMATETC* pformatetcOut) => _nativeDataObject.GetCanonicalFormatEtc(pformatectIn, pformatetcOut); 220public HRESULT GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium) => _nativeDataObject.GetData(pformatetcIn, pmedium); 221public HRESULT GetDataHere(FORMATETC* pformatetc, STGMEDIUM* pmedium) => _nativeDataObject.GetDataHere(pformatetc, pmedium); 222public HRESULT QueryGetData(FORMATETC* pformatetc) => _nativeDataObject.QueryGetData(pformatetc); 223public HRESULT SetData(FORMATETC* pformatetc, STGMEDIUM* pmedium, BOOL fRelease) => _nativeDataObject.SetData(pformatetc, pmedium, fRelease);
System\Private\Windows\Ole\Composition.ManagedToNativeAdapter.cs (56)
41public HRESULT GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium) 45return HRESULT.DV_E_FORMATETC; 50return HRESULT.E_POINTER; 59return HRESULT.S_OK; 65return HRESULT.S_OK; 73return HRESULT.DV_E_TYMED; 87return HRESULT.E_OUTOFMEMORY; 90HRESULT result = GetDataHere(pformatetcIn, pmedium); 100public HRESULT GetDataHere(FORMATETC* pformatetc, STGMEDIUM* pmedium) 104return HRESULT.DV_E_FORMATETC; 109return HRESULT.E_POINTER; 114return HRESULT.DV_E_TYMED; 121return HRESULT.DV_E_FORMATETC; 126return HRESULT.E_UNEXPECTED; 133HRESULT result = SaveDataToHGLOBAL(data, format, ref *pmedium); 134if (result != HRESULT.E_UNEXPECTED) 162public HRESULT QueryGetData(FORMATETC* pformatetc) 166return HRESULT.DV_E_FORMATETC; 171return HRESULT.DV_E_DVASPECT; 176return HRESULT.DV_E_TYMED; 181return HRESULT.S_FALSE; 186return HRESULT.DV_E_FORMATETC; 189return HRESULT.S_OK; 192public HRESULT GetCanonicalFormatEtc(FORMATETC* pformatectIn, FORMATETC* pformatetcOut) 196return HRESULT.E_POINTER; 200return (HRESULT)DATA_S_SAMEFORMATETC; 203public HRESULT SetData(FORMATETC* pformatetc, STGMEDIUM* pmedium, BOOL fRelease) 207return HRESULT.DV_E_FORMATETC; 212return HRESULT.E_POINTER; 228return HRESULT.S_OK; 231return HRESULT.E_NOTIMPL; 234public HRESULT EnumFormatEtc(uint dwDirection, IEnumFORMATETC** ppenumFormatEtc) 238return HRESULT.E_POINTER; 247return HRESULT.S_OK; 250return HRESULT.E_NOTIMPL; 253public HRESULT DAdvise(FORMATETC* pformatetc, uint advf, IAdviseSink* pAdvSink, uint* pdwConnection) 257return HRESULT.E_POINTER; 261return HRESULT.E_NOTIMPL; 264public HRESULT DUnadvise(uint dwConnection) => HRESULT.E_NOTIMPL; 266public HRESULT EnumDAdvise(IEnumSTATDATA** ppenumAdvise) 270return HRESULT.E_POINTER; 274return HRESULT.OLE_E_ADVISENOTSUPPORTED; 278private HRESULT SaveDataToHGLOBAL(object data, string format, ref STGMEDIUM medium) 300_ => HRESULT.E_UNEXPECTED 303static HRESULT SaveObjectToHGLOBAL(ref HGLOBAL hglobal, object data, string format) 315static HRESULT SaveFileListToHGLOBAL(HGLOBAL hglobal, string[] files) 319return HRESULT.S_OK; 324return HRESULT.E_INVALIDARG; 373return HRESULT.S_OK; 376static HRESULT SaveDbcsToHGLOBAL(HGLOBAL hglobal, string value) 391return HRESULT.S_OK; 394static HRESULT SaveUtf16ToHGLOBAL(HGLOBAL hglobal, string value) 410return HRESULT.S_OK; 413static HRESULT SaveUtf8ToHGLOBAL(HGLOBAL hglobal, string value) 430return HRESULT.S_OK;
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (18)
45public HRESULT DAdvise(Com.FORMATETC* pformatetc, uint advf, Com.IAdviseSink* pAdvSink, uint* pdwConnection) 51public HRESULT DUnadvise(uint dwConnection) 57public HRESULT EnumDAdvise(Com.IEnumSTATDATA** ppenumAdvise) 63public HRESULT EnumFormatEtc(uint dwDirection, Com.IEnumFORMATETC** ppenumFormatEtc) 69public HRESULT GetData(Com.FORMATETC* pformatetcIn, Com.STGMEDIUM* pmedium) 75public HRESULT GetDataHere(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium) 81public HRESULT QueryGetData(Com.FORMATETC* pformatetc) 87public HRESULT GetCanonicalFormatEtc(Com.FORMATETC* pformatectIn, Com.FORMATETC* pformatetcOut) 93public HRESULT SetData(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium, BOOL fRelease) 155throw new ExternalException(SR.ExternalException, (int)HRESULT.E_OUTOFMEMORY); 417HRESULT hr = dataObject->GetData(formatetc, out Com.STGMEDIUM medium); 423Debug.WriteLineIf(hr == HRESULT.CLIPBRD_E_BAD_DATA, "CLIPBRD_E_BAD_DATA returned when trying to get clipboard data."); 424Debug.WriteLineIf(hr == HRESULT.DV_E_TYMED, "DV_E_TYMED returned when trying to get clipboard data."); 426Debug.WriteLineIf(hr == HRESULT.E_UNEXPECTED, "E_UNEXPECTED returned when trying to get clipboard data."); 427Debug.WriteLineIf(hr == HRESULT.COR_E_SERIALIZATION, 692while (enumFORMATETC.Value->Next(1, &formatEtc) == HRESULT.S_OK) 773HRESULT hr = nativeDataObject.Value->QueryGetData(formatEtc); 776return hr == HRESULT.S_OK;
System\Private\Windows\Ole\Composition.NativeToRuntimeAdapter.cs (4)
48HRESULT result = nativeDataObject.Value->EnumDAdvise(nativeStatData); 59throw new ExternalException(SR.ExternalException, (int)HRESULT.E_NOTIMPL); 68HRESULT result = nativeDataObject.Value->GetCanonicalFormatEtc(Unsafe.As<FORMATETC, Com.FORMATETC>(ref formatIn), out Com.FORMATETC nativeFormat); 104HRESULT result = nativeDataObject.Value->SetData(&nativeFormat, &nativeMedium, release);
System\Private\Windows\Ole\Composition.RuntimeToNativeAdapter.cs (31)
38HRESULT Com.IDataObject.Interface.DAdvise(Com.FORMATETC* pformatetc, uint advf, Com.IAdviseSink* pAdvSink, uint* pdwConnection) 41return (HRESULT)DAdvise(ref *(FORMATETC*)pformatetc, (ADVF)advf, adviseSink, out *(int*)pdwConnection); 44HRESULT Com.IDataObject.Interface.DUnadvise(uint dwConnection) 52return (HRESULT)e.HResult; 55return HRESULT.S_OK; 58HRESULT Com.IDataObject.Interface.EnumDAdvise(Com.IEnumSTATDATA** ppenumAdvise) 62return HRESULT.E_POINTER; 67HRESULT hr = (HRESULT)EnumDAdvise(out var enumAdvice); 74return hr.Succeeded ? hr : HRESULT.E_NOINTERFACE; 77HRESULT Com.IDataObject.Interface.EnumFormatEtc(uint dwDirection, Com.IEnumFORMATETC** ppenumFormatEtc) 81return HRESULT.E_POINTER; 85*ppenumFormatEtc = ComHelpers.TryGetComPointer<Com.IEnumFORMATETC>(comTypeFormatEtc, out HRESULT hr); 86return hr.Succeeded ? HRESULT.S_OK : HRESULT.E_NOINTERFACE; 89HRESULT Com.IDataObject.Interface.GetCanonicalFormatEtc(Com.FORMATETC* pformatectIn, Com.FORMATETC* pformatetcOut) => 90(HRESULT)GetCanonicalFormatEtc(ref *(FORMATETC*)pformatectIn, out *(FORMATETC*)pformatetcOut); 92HRESULT Com.IDataObject.Interface.GetData(Com.FORMATETC* pformatetcIn, Com.STGMEDIUM* pmedium) 96return HRESULT.E_POINTER; 103return HRESULT.S_OK; 107return (HRESULT)e.HResult; 111HRESULT Com.IDataObject.Interface.GetDataHere(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium) 115return HRESULT.E_POINTER; 125return (HRESULT)e.HResult; 129return HRESULT.S_OK; 132HRESULT Com.IDataObject.Interface.QueryGetData(Com.FORMATETC* pformatetc) => (HRESULT)QueryGetData(ref *(FORMATETC*)pformatetc); 134HRESULT Com.IDataObject.Interface.SetData(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium, BOOL fRelease) 138return HRESULT.E_POINTER; 148return (HRESULT)e.HResult; 151return HRESULT.S_OK;
System\Private\Windows\Ole\DragDropHelper.cs (1)
459HRESULT hr = PInvokeCore.CoCreateInstance(
System\Private\Windows\Ole\FormatEnumerator.cs (15)
65return (int)HRESULT.S_FALSE; 81return (int)HRESULT.S_OK; 88return (int)HRESULT.S_FALSE; 92return (int)HRESULT.S_OK; 98return (int)HRESULT.S_OK; 106HRESULT IEnumFORMATETC.Interface.Next(uint celt, FORMATETC* rgelt, uint* pceltFetched) 110return HRESULT.E_POINTER; 129return (HRESULT)result; 132HRESULT IEnumFORMATETC.Interface.Skip(uint celt) => (HRESULT)Skip((int)celt); 134HRESULT IEnumFORMATETC.Interface.Reset() => (HRESULT)Reset(); 136HRESULT IEnumFORMATETC.Interface.Clone(IEnumFORMATETC** ppenum) 140return HRESULT.E_POINTER; 145return HRESULT.S_OK;
System\Private\Windows\Ole\IOleServices.cs (4)
36HRESULT GetDataHere(string format, object data, FORMATETC* pformatetc, STGMEDIUM* pmedium); 103HRESULT OleGetClipboard(IDataObject** dataObject); 109HRESULT OleSetClipboard(IDataObject* dataObject); 115HRESULT OleFlushClipboard();
Windows\Win32\Foundation\GlobalBuffer.cs (5)
21Status = HRESULT.E_INVALIDARG; 32Status = HRESULT.E_OUTOFMEMORY; 39Status = HRESULT.E_OUTOFMEMORY; 45public 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)
24return new ExternalException(SR.GdiplusGenericError, (int)HRESULT.E_FAIL); 35return new ExternalException(SR.GdiplusInvalidOperation, (int)HRESULT.E_UNEXPECTED); 43return new ExternalException(SR.GdiplusGenericError, (int)HRESULT.E_FAIL); 47return new ExternalException(SR.GdiplusAborted, (int)HRESULT.E_ABORT); 53return new ExternalException(SR.GdiplusAccessDenied, (int)HRESULT.E_ACCESSDENIED); 74return new ExternalException(SR.GdiplusUnsupportedGdiplusVersion, (int)HRESULT.E_FAIL); 77return new ExternalException(SR.GdiplusNotInitialized, (int)HRESULT.E_FAIL); 80return new ExternalException($"{SR.GdiplusUnknown} [{status}]", (int)HRESULT.E_UNEXPECTED);
Windows\Win32\PInvokeCore.PrintDlgEx.cs (1)
11internal 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; 119result = HRESULT.E_NOINTERFACE; 126result = HRESULT.S_OK; 188HRESULT hr = unknown->QueryInterface(IID.Get<ComUnknown>(), (void**)&unknown); 356HRESULT hr = PInvokeCore.LoadRegTypeLib(typeLibrary, majorVersion, minorVersion, 0, typelib);
Windows\Win32\System\Com\ComManagedStream.cs (30)
49HRESULT IStream.Interface.Clone(IStream** ppstm) 53return HRESULT.E_POINTER; 60return HRESULT.S_OK; 63HRESULT IStream.Interface.Commit(uint grfCommitFlags) 69return HRESULT.S_OK; 72HRESULT IStream.Interface.CopyTo(IStream* pstm, ulong cb, ulong* pcbRead, ulong* pcbWritten) 76return HRESULT.STG_E_INVALIDPOINTER; 112return HRESULT.S_OK; 115HRESULT ISequentialStream.Interface.Read(void* pv, uint cb, uint* pcbRead) 119return HRESULT.STG_E_INVALIDPOINTER; 130return HRESULT.S_OK; 133HRESULT IStream.Interface.Read(void* pv, uint cb, uint* pcbRead) 136HRESULT IStream.Interface.Seek(long dlibMove, SeekOrigin dwOrigin, ulong* plibNewPosition) 182return HRESULT.S_OK; 185return HRESULT.S_OK; 188HRESULT IStream.Interface.SetSize(ulong libNewSize) 191return HRESULT.S_OK; 194HRESULT IStream.Interface.Stat(STATSTG* pstatstg, uint grfStatFlag) 198return HRESULT.STG_E_INVALIDPOINTER; 220return HRESULT.S_OK; 224HRESULT IStream.Interface.LockRegion(ulong libOffset, ulong cb, uint dwLockType) => HRESULT.STG_E_INVALIDFUNCTION; 227HRESULT IStream.Interface.Revert() => HRESULT.S_OK; 230HRESULT IStream.Interface.UnlockRegion(ulong libOffset, ulong cb, uint dwLockType) => HRESULT.STG_E_INVALIDFUNCTION; 232HRESULT ISequentialStream.Interface.Write(void* pv, uint cb, uint* pcbWritten) 236return HRESULT.STG_E_INVALIDPOINTER; 247return HRESULT.S_OK; 250HRESULT 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 : ((ComUnknown*)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)
39HRESULT hr = s_globalInterfaceTable->RegisterInterfaceInGlobal( 51public static ComScope<TInterface> GetInterface<TInterface>(uint cookie, out HRESULT result) 63public static HRESULT RevokeInterface(uint cookie) 65HRESULT hr = s_globalInterfaceTable->RevokeInterfaceFromGlobal(cookie);
Windows\Win32\System\Com\GlobalInterfaceTable.UnknownStrategy.cs (1)
30return cookie != 0 ? (int)HRESULT.S_OK : (int)RevokeInterface(_cookie);
Windows\Win32\System\Com\IComCallableWrapper.cs (4)
29public unsafe HRESULT QueryInterface(in Guid riid, out void* ppvObject) 38public unsafe HRESULT QueryInterface(Guid* riid, void** ppvObject) 41return ((delegate* unmanaged[Stdcall]<IComCallableWrapper*, Guid*, void**, HRESULT>)_vtbl[0])(pThis, riid, ppvObject); 59internal 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)
20private static HRESULT GetTypeInfoCount(IDispatch* @this, uint* pctinfo) 24private static HRESULT GetTypeInfo(IDispatch* @this, uint iTInfo, uint lcid, ITypeInfo** ppTInfo) 28private static HRESULT GetIDsOfNames(IDispatch* @this, Guid* riid, PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId) 32private static HRESULT Invoke( 52HRESULT GetTypeInfoCount( 56HRESULT GetTypeInfo( 62HRESULT GetIDsOfNames( 70HRESULT 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)
44private static unsafe HRESULT QueryInterface(IUnknown* @this, Guid* iid, void* ppObject) 48return HRESULT.E_POINTER; 58return HRESULT.E_NOINTERFACE; 62return 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)
19unknown->QueryInterface_1 = (delegate* unmanaged[Stdcall]<IUnknown*, Guid*, void**, HRESULT>)fpQueryInterface; 55/// Handles exceptions and converts to <see cref="HRESULT"/>. 58internal static HRESULT UnwrapAndInvoke<TThis, TInterface>(TThis* @this, Func<TInterface, HRESULT> func) 65return @object is null ? HRESULT.COR_E_OBJECTDISPOSED : func(@object); 94/// <inheritdoc cref="UnwrapAndInvoke{TThis, TInterface}(TThis*, Func{TInterface, HRESULT})"/> 95internal static HRESULT UnwrapAndInvoke<TThis, TInterface>(TThis* @this, Action<TInterface> action) 104return HRESULT.COR_E_OBJECTDISPOSED; 108return HRESULT.S_OK;
Windows\Win32\System\Variant\VARIANT.cs (3)
282HRESULT hr = PInvokeCore.SafeArrayLock(psa); 283Debug.Assert(hr == HRESULT.S_OK); 441Debug.Assert(hr == HRESULT.S_OK);
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); 1054private static HRESULT SetupLogPixels(bool force) 1061return HRESULT.E_FAIL; 1068return HRESULT.S_OK; 1124HRESULT hr = oleObject.Value->SetExtent(DVASPECT.DVASPECT_CONTENT, (SIZE*)&size); 1125if (hr != HRESULT.S_OK) 1464private HRESULT InPlaceDeactivate() 1689: TryGetComScope<IOleInPlaceActiveObject>(out HRESULT hr); 1702if (hr == HRESULT.S_OK) 1706else if (hr == HRESULT.S_FALSE) 2027HRESULT hr = HRESULT.E_FAIL; 2064return hr != HRESULT.S_FALSE; 2148using var pClientSite = ComHelpers.TryGetComScope<IOleClientSite>(_oleSite, out HRESULT hr); 2180private HRESULT UiDeactivate() 2219HRESULT hr = PInvoke.CoGetClassObject( 2228if (hr == HRESULT.E_NOINTERFACE) 2257HRESULT hr = PInvokeCore.CoCreateInstance( 2274HRESULT hr = PInvoke.CoGetClassObject( 2340using var categorizeProperties = ComHelpers.TryGetComScope<ICategorizeProperties>(_instance, out HRESULT hr); 2742using var persistStreamInit = ComHelpers.TryGetComScope<IPersistStreamInit>(_instance, out HRESULT hr); 2791using (var persistStreamInit = ComHelpers.TryGetComScope<IPersistStreamInit>(_instance, out HRESULT hr)) 2922using var pages = ComHelpers.TryGetComScope<ISpecifyPropertyPages>(_instance, out HRESULT hr); 2933using var pages = ComHelpers.TryGetComScope<ISpecifyPropertyPages>(_instance, out HRESULT hr); 2956using ComScope<IUnknown> unknown = ComHelpers.TryGetComScope<IUnknown>(_instance, out HRESULT hr); 3009using var pages = ComHelpers.TryGetComScope<ISpecifyPropertyPages>(_instance, out HRESULT hr); 3348HRESULT hr = iqa.QuickActivate(&qaContainer, &qaControl); 3519private ComScope<T> TryGetComScope<T>(out HRESULT hr) where T : unmanaged, IComIID 3554using var iPicture = ComHelpers.TryGetComScope<IPictureDisp>(picture, out HRESULT hr); 3578using var pictureDisp = ComHelpers.TryGetComScope<IPictureDisp>(picture, out HRESULT hr); 3682HRESULT 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)
9573HRESULT hr = PInvokeCore.RegisterDragDrop(this, new DropTarget(this)); 9574if (hr != HRESULT.S_OK && hr != HRESULT.DRAGDROP_E_ALREADYREGISTERED) 9582HRESULT hr = PInvokeCore.RevokeDragDrop(this); 9583if (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)
2350HRESULT IPropertyNotifySink.Interface.OnChanged(int dispID) 2382return HRESULT.S_OK; 2846HRESULT IPropertyNotifySink.Interface.OnRequestEdit(int dispID) 2849return 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); 835HRESULT hr = PInvokeCore.CoCreateInstance( 891HRESULT hr = _axOleObject.GetMiscStatus(DVASPECT.DVASPECT_CONTENT, out OLEMISC bits); 997HRESULT hr = AXInPlaceObject!.UIDeactivate(); 1081HRESULT hr = _axOleObject!.SetExtent(DVASPECT.DVASPECT_CONTENT, (SIZE*)&sz); 1082if (hr != HRESULT.S_OK) 1169HRESULT 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)
321HRESULT Com.IDataObject.Interface.DAdvise(Com.FORMATETC* pformatetc, uint advf, Com.IAdviseSink* pAdvSink, uint* pdwConnection) => 324HRESULT Com.IDataObject.Interface.DUnadvise(uint dwConnection) => 327HRESULT Com.IDataObject.Interface.EnumDAdvise(Com.IEnumSTATDATA** ppenumAdvise) => 330HRESULT Com.IDataObject.Interface.EnumFormatEtc(uint dwDirection, Com.IEnumFORMATETC** ppenumFormatEtc) => 333HRESULT Com.IDataObject.Interface.GetData(Com.FORMATETC* pformatetcIn, Com.STGMEDIUM* pmedium) => 336HRESULT Com.IDataObject.Interface.GetDataHere(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium) => 339HRESULT Com.IDataObject.Interface.QueryGetData(Com.FORMATETC* pformatetc) => 342HRESULT Com.IDataObject.Interface.GetCanonicalFormatEtc(Com.FORMATETC* pformatectIn, Com.FORMATETC* pformatetcOut) => 345HRESULT 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; 180HRESULT OleIDropTarget.Interface.Drop(Com.IDataObject* pDataObj, MODIFIERKEYS_FLAGS grfKeyState, POINTL pt, DROPEFFECT* pdwEffect) 184return HRESULT.E_INVALIDARG; 198HRESULT result = HRESULT.S_OK; 247result = asyncCapability->EndOperation(HRESULT.E_UNEXPECTED, null, (uint)DROPEFFECT.DROPEFFECT_NONE); 255private HRESULT HandleOnDragDrop(DragEventArgs e, IDataObjectAsyncCapability* asyncCapability, DROPEFFECT* pdwEffect) 274HRESULT result = asyncCapability->EndOperation(HRESULT.S_OK, null, (uint)effect); 282return HRESULT.S_OK; 299HRESULT result = asyncCapability->EndOperation(HRESULT.S_OK, null, (uint)effect); 304return 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.Primitives (18429)
_generated\106\Windows.Win32.IAccessible.g.cs (192)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IAccessible*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IAccessible*)Unsafe.AsPointer(ref this), riid, ppvObject); 76 ((delegate *unmanaged [Stdcall]<IAccessible*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IAccessible*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 81 ((delegate *unmanaged [Stdcall]<IAccessible*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IAccessible*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 102 ((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(); 141 ((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(); 147 private static winmdroot.Foundation.HRESULT get_accParent(IAccessible* pThis, winmdroot.System.Com.IDispatch** ppdispParent) 151 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 160 return (winmdroot.Foundation.HRESULT)ex.HResult; 176 public unsafe winmdroot.Foundation.HRESULT get_accParent(winmdroot.System.Com.IDispatch** ppdispParent) 178 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IAccessible*)Unsafe.AsPointer(ref this), ppdispParent); 183 internal unsafe winmdroot.Foundation.HRESULT get_accChildCount(out int pcountChildren) 187 winmdroot.Foundation.HRESULT __result = this.get_accChildCount(pcountChildrenLocal); 195 private static winmdroot.Foundation.HRESULT get_accChildCount(IAccessible* pThis, int* pcountChildren) 199 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 208 return (winmdroot.Foundation.HRESULT)ex.HResult; 224 public unsafe winmdroot.Foundation.HRESULT get_accChildCount(int* pcountChildren) 226 return ((delegate *unmanaged [Stdcall]<IAccessible*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IAccessible*)Unsafe.AsPointer(ref this), pcountChildren); 232 private static winmdroot.Foundation.HRESULT get_accChild(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Com.IDispatch** ppdispChild) 236 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 245 return (winmdroot.Foundation.HRESULT)ex.HResult; 269 public unsafe winmdroot.Foundation.HRESULT get_accChild(winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Com.IDispatch** ppdispChild) 271 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); 276 internal unsafe winmdroot.Foundation.HRESULT get_accName(winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszName) 280 winmdroot.Foundation.HRESULT __result = this.get_accName(varChild, pszNameLocal); 288 private static winmdroot.Foundation.HRESULT get_accName(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszName) 292 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 301 return (winmdroot.Foundation.HRESULT)ex.HResult; 325 public unsafe winmdroot.Foundation.HRESULT get_accName(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszName) 327 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszName); 332 internal unsafe winmdroot.Foundation.HRESULT get_accValue(winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszValue) 336 winmdroot.Foundation.HRESULT __result = this.get_accValue(varChild, pszValueLocal); 344 private static winmdroot.Foundation.HRESULT get_accValue(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszValue) 348 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 357 return (winmdroot.Foundation.HRESULT)ex.HResult; 378 public unsafe winmdroot.Foundation.HRESULT get_accValue(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszValue) 380 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszValue); 385 internal unsafe winmdroot.Foundation.HRESULT get_accDescription(winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszDescription) 389 winmdroot.Foundation.HRESULT __result = this.get_accDescription(varChild, pszDescriptionLocal); 397 private static winmdroot.Foundation.HRESULT get_accDescription(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDescription) 401 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 410 return (winmdroot.Foundation.HRESULT)ex.HResult; 434 public unsafe winmdroot.Foundation.HRESULT get_accDescription(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDescription) 436 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszDescription); 441 internal unsafe winmdroot.Foundation.HRESULT get_accRole(winmdroot.System.Variant.VARIANT varChild, out winmdroot.System.Variant.VARIANT pvarRole) 445 winmdroot.Foundation.HRESULT __result = this.get_accRole(varChild, pvarRoleLocal); 453 private static winmdroot.Foundation.HRESULT get_accRole(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Variant.VARIANT* pvarRole) 457 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 466 return (winmdroot.Foundation.HRESULT)ex.HResult; 490 public unsafe winmdroot.Foundation.HRESULT get_accRole(winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Variant.VARIANT* pvarRole) 492 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); 497 internal unsafe winmdroot.Foundation.HRESULT get_accState(winmdroot.System.Variant.VARIANT varChild, out winmdroot.System.Variant.VARIANT pvarState) 501 winmdroot.Foundation.HRESULT __result = this.get_accState(varChild, pvarStateLocal); 509 private static winmdroot.Foundation.HRESULT get_accState(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Variant.VARIANT* pvarState) 513 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 522 return (winmdroot.Foundation.HRESULT)ex.HResult; 546 public unsafe winmdroot.Foundation.HRESULT get_accState(winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Variant.VARIANT* pvarState) 548 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); 553 internal unsafe winmdroot.Foundation.HRESULT get_accHelp(winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszHelp) 557 winmdroot.Foundation.HRESULT __result = this.get_accHelp(varChild, pszHelpLocal); 565 private static winmdroot.Foundation.HRESULT get_accHelp(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszHelp) 569 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 578 return (winmdroot.Foundation.HRESULT)ex.HResult; 601 public unsafe winmdroot.Foundation.HRESULT get_accHelp(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszHelp) 603 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszHelp); 608 internal unsafe winmdroot.Foundation.HRESULT get_accHelpTopic(out winmdroot.Foundation.BSTR pszHelpFile, winmdroot.System.Variant.VARIANT varChild, out int pidTopic) 614 winmdroot.Foundation.HRESULT __result = this.get_accHelpTopic(pszHelpFileLocal, varChild, pidTopicLocal); 623 private static winmdroot.Foundation.HRESULT get_accHelpTopic(IAccessible* pThis, winmdroot.Foundation.BSTR* pszHelpFile, winmdroot.System.Variant.VARIANT varChild, int* pidTopic) 627 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 636 return (winmdroot.Foundation.HRESULT)ex.HResult; 661 public unsafe winmdroot.Foundation.HRESULT get_accHelpTopic(winmdroot.Foundation.BSTR* pszHelpFile, winmdroot.System.Variant.VARIANT varChild, int* pidTopic) 663 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.Foundation.BSTR* ,winmdroot.System.Variant.VARIANT ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IAccessible*)Unsafe.AsPointer(ref this), pszHelpFile, varChild, pidTopic); 668 internal unsafe winmdroot.Foundation.HRESULT get_accKeyboardShortcut(winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszKeyboardShortcut) 672 winmdroot.Foundation.HRESULT __result = this.get_accKeyboardShortcut(varChild, pszKeyboardShortcutLocal); 680 private static winmdroot.Foundation.HRESULT get_accKeyboardShortcut(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszKeyboardShortcut) 684 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 693 return (winmdroot.Foundation.HRESULT)ex.HResult; 718 public unsafe winmdroot.Foundation.HRESULT get_accKeyboardShortcut(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszKeyboardShortcut) 720 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszKeyboardShortcut); 725 internal unsafe winmdroot.Foundation.HRESULT get_accFocus(out winmdroot.System.Variant.VARIANT pvarChild) 729 winmdroot.Foundation.HRESULT __result = this.get_accFocus(pvarChildLocal); 737 private static winmdroot.Foundation.HRESULT get_accFocus(IAccessible* pThis, winmdroot.System.Variant.VARIANT* pvarChild) 741 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 750 return (winmdroot.Foundation.HRESULT)ex.HResult; 770 public unsafe winmdroot.Foundation.HRESULT get_accFocus(winmdroot.System.Variant.VARIANT* pvarChild) 772 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IAccessible*)Unsafe.AsPointer(ref this), pvarChild); 777 internal unsafe winmdroot.Foundation.HRESULT get_accSelection(out winmdroot.System.Variant.VARIANT pvarChildren) 781 winmdroot.Foundation.HRESULT __result = this.get_accSelection(pvarChildrenLocal); 789 private static winmdroot.Foundation.HRESULT get_accSelection(IAccessible* pThis, winmdroot.System.Variant.VARIANT* pvarChildren) 793 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 802 return (winmdroot.Foundation.HRESULT)ex.HResult; 823 public unsafe winmdroot.Foundation.HRESULT get_accSelection(winmdroot.System.Variant.VARIANT* pvarChildren) 825 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IAccessible*)Unsafe.AsPointer(ref this), pvarChildren); 830 internal unsafe winmdroot.Foundation.HRESULT get_accDefaultAction(winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszDefaultAction) 834 winmdroot.Foundation.HRESULT __result = this.get_accDefaultAction(varChild, pszDefaultActionLocal); 842 private static winmdroot.Foundation.HRESULT get_accDefaultAction(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDefaultAction) 846 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 855 return (winmdroot.Foundation.HRESULT)ex.HResult; 879 public unsafe winmdroot.Foundation.HRESULT get_accDefaultAction(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDefaultAction) 881 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszDefaultAction); 887 private static winmdroot.Foundation.HRESULT accSelect(IAccessible* pThis, int flagsSelect, winmdroot.System.Variant.VARIANT varChild) 891 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 900 return (winmdroot.Foundation.HRESULT)ex.HResult; 924 public winmdroot.Foundation.HRESULT accSelect(int flagsSelect, winmdroot.System.Variant.VARIANT varChild) 926 return ((delegate *unmanaged [Stdcall]<IAccessible*,int ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IAccessible*)Unsafe.AsPointer(ref this), flagsSelect, varChild); 931 internal unsafe winmdroot.Foundation.HRESULT accLocation(out int pxLeft, out int pyTop, out int pcxWidth, out int pcyHeight, winmdroot.System.Variant.VARIANT varChild) 941 winmdroot.Foundation.HRESULT __result = this.accLocation(pxLeftLocal, pyTopLocal, pcxWidthLocal, pcyHeightLocal, varChild); 952 private static winmdroot.Foundation.HRESULT accLocation(IAccessible* pThis, int* pxLeft, int* pyTop, int* pcxWidth, int* pcyHeight, winmdroot.System.Variant.VARIANT varChild) 956 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 965 return (winmdroot.Foundation.HRESULT)ex.HResult; 1001 public unsafe winmdroot.Foundation.HRESULT accLocation(int* pxLeft, int* pyTop, int* pcxWidth, int* pcyHeight, winmdroot.System.Variant.VARIANT varChild) 1003 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); 1008 internal unsafe winmdroot.Foundation.HRESULT accNavigate(int navDir, winmdroot.System.Variant.VARIANT varStart, out winmdroot.System.Variant.VARIANT pvarEndUpAt) 1012 winmdroot.Foundation.HRESULT __result = this.accNavigate(navDir, varStart, pvarEndUpAtLocal); 1020 private static winmdroot.Foundation.HRESULT accNavigate(IAccessible* pThis, int navDir, winmdroot.System.Variant.VARIANT varStart, winmdroot.System.Variant.VARIANT* pvarEndUpAt) 1024 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1033 return (winmdroot.Foundation.HRESULT)ex.HResult; 1060 public unsafe winmdroot.Foundation.HRESULT accNavigate(int navDir, winmdroot.System.Variant.VARIANT varStart, winmdroot.System.Variant.VARIANT* pvarEndUpAt) 1062 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); 1067 internal unsafe winmdroot.Foundation.HRESULT accHitTest(int xLeft, int yTop, out winmdroot.System.Variant.VARIANT pvarChild) 1071 winmdroot.Foundation.HRESULT __result = this.accHitTest(xLeft, yTop, pvarChildLocal); 1079 private static winmdroot.Foundation.HRESULT accHitTest(IAccessible* pThis, int xLeft, int yTop, winmdroot.System.Variant.VARIANT* pvarChild) 1083 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1092 return (winmdroot.Foundation.HRESULT)ex.HResult; 1120 public unsafe winmdroot.Foundation.HRESULT accHitTest(int xLeft, int yTop, winmdroot.System.Variant.VARIANT* pvarChild) 1122 return ((delegate *unmanaged [Stdcall]<IAccessible*,int ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IAccessible*)Unsafe.AsPointer(ref this), xLeft, yTop, pvarChild); 1128 private static winmdroot.Foundation.HRESULT accDoDefaultAction(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild) 1132 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1141 return (winmdroot.Foundation.HRESULT)ex.HResult; 1161 public winmdroot.Foundation.HRESULT accDoDefaultAction(winmdroot.System.Variant.VARIANT varChild) 1163 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IAccessible*)Unsafe.AsPointer(ref this), varChild); 1169 private static winmdroot.Foundation.HRESULT put_accName(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szName) 1173 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1182 return (winmdroot.Foundation.HRESULT)ex.HResult; 1193 public winmdroot.Foundation.HRESULT put_accName(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szName) 1195 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IAccessible*)Unsafe.AsPointer(ref this), varChild, szName); 1201 private static winmdroot.Foundation.HRESULT put_accValue(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szValue) 1205 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1214 return (winmdroot.Foundation.HRESULT)ex.HResult; 1232 public winmdroot.Foundation.HRESULT put_accValue(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szValue) 1234 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IAccessible*)Unsafe.AsPointer(ref this), varChild, szValue); 1237 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 1243 var hr = this.QueryInterface(&guid, &pv); 1260 internal delegate *unmanaged [Stdcall]<IAccessible*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 1266 internal delegate *unmanaged [Stdcall]<IAccessible*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 1268 internal delegate *unmanaged [Stdcall]<IAccessible*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 1270 internal delegate *unmanaged [Stdcall]<IAccessible*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 1272 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; 1274 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_accParent_8; 1276 internal delegate *unmanaged [Stdcall]<IAccessible*,int* ,winmdroot.Foundation.HRESULT> get_accChildCount_9; 1278 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_accChild_10; 1280 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accName_11; 1282 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accValue_12; 1284 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accDescription_13; 1286 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_accRole_14; 1288 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_accState_15; 1290 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accHelp_16; 1292 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.Foundation.BSTR* ,winmdroot.System.Variant.VARIANT ,int* ,winmdroot.Foundation.HRESULT> get_accHelpTopic_17; 1294 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accKeyboardShortcut_18; 1296 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_accFocus_19; 1298 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_accSelection_20; 1300 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accDefaultAction_21; 1302 internal delegate *unmanaged [Stdcall]<IAccessible*,int ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> accSelect_22; 1304 internal delegate *unmanaged [Stdcall]<IAccessible*,int* ,int* ,int* ,int* ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> accLocation_23; 1306 internal delegate *unmanaged [Stdcall]<IAccessible*,int ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> accNavigate_24; 1308 internal delegate *unmanaged [Stdcall]<IAccessible*,int ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> accHitTest_25; 1310 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> accDoDefaultAction_26; 1312 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_accName_27; 1314 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_accValue_28; 1361 unsafe winmdroot.Foundation.HRESULT get_accParent(winmdroot.System.Com.IDispatch** ppdispParent); 1364 unsafe winmdroot.Foundation.HRESULT get_accChildCount(int* pcountChildren); 1367 unsafe winmdroot.Foundation.HRESULT get_accChild(winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Com.IDispatch** ppdispChild); 1370 unsafe winmdroot.Foundation.HRESULT get_accName(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszName); 1373 unsafe winmdroot.Foundation.HRESULT get_accValue(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszValue); 1376 unsafe winmdroot.Foundation.HRESULT get_accDescription(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDescription); 1379 unsafe winmdroot.Foundation.HRESULT get_accRole(winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Variant.VARIANT* pvarRole); 1382 unsafe winmdroot.Foundation.HRESULT get_accState(winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Variant.VARIANT* pvarState); 1385 unsafe winmdroot.Foundation.HRESULT get_accHelp(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszHelp); 1388 unsafe winmdroot.Foundation.HRESULT get_accHelpTopic(winmdroot.Foundation.BSTR* pszHelpFile, winmdroot.System.Variant.VARIANT varChild, int* pidTopic); 1391 unsafe winmdroot.Foundation.HRESULT get_accKeyboardShortcut(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszKeyboardShortcut); 1394 unsafe winmdroot.Foundation.HRESULT get_accFocus(winmdroot.System.Variant.VARIANT* pvarChild); 1397 unsafe winmdroot.Foundation.HRESULT get_accSelection(winmdroot.System.Variant.VARIANT* pvarChildren); 1400 unsafe winmdroot.Foundation.HRESULT get_accDefaultAction(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDefaultAction); 1403winmdroot.Foundation.HRESULT accSelect(int flagsSelect, winmdroot.System.Variant.VARIANT varChild); 1406 unsafe winmdroot.Foundation.HRESULT accLocation(int* pxLeft, int* pyTop, int* pcxWidth, int* pcyHeight, winmdroot.System.Variant.VARIANT varChild); 1409 unsafe winmdroot.Foundation.HRESULT accNavigate(int navDir, winmdroot.System.Variant.VARIANT varStart, winmdroot.System.Variant.VARIANT* pvarEndUpAt); 1412 unsafe winmdroot.Foundation.HRESULT accHitTest(int xLeft, int yTop, winmdroot.System.Variant.VARIANT* pvarChild); 1415winmdroot.Foundation.HRESULT accDoDefaultAction(winmdroot.System.Variant.VARIANT varChild); 1418winmdroot.Foundation.HRESULT put_accName(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szName); 1421winmdroot.Foundation.HRESULT put_accValue(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szValue);
_generated\107\Windows.Win32.IAccessibleEx.g.cs (31)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IAccessibleEx*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IAccessibleEx*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT GetObjectForChild(IAccessibleEx* pThis, int idChild, winmdroot.UI.Accessibility.IAccessibleEx** pRetVal) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 92 ((delegate *unmanaged [Stdcall]<IAccessibleEx*,int ,winmdroot.UI.Accessibility.IAccessibleEx** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IAccessibleEx*)Unsafe.AsPointer(ref this), idChild, &__retVal).ThrowOnFailure(); 109 private static winmdroot.Foundation.HRESULT GetIAccessiblePair(IAccessibleEx* pThis, winmdroot.UI.Accessibility.IAccessible** ppAcc, int* pidChild) 113 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 122 return (winmdroot.Foundation.HRESULT)ex.HResult; 143 ((delegate *unmanaged [Stdcall]<IAccessibleEx*,winmdroot.UI.Accessibility.IAccessible** ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IAccessibleEx*)Unsafe.AsPointer(ref this), ppAcc, pidChild).ThrowOnFailure(); 149 private static winmdroot.Foundation.HRESULT GetRuntimeId(IAccessibleEx* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 153 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 162 return (winmdroot.Foundation.HRESULT)ex.HResult; 177 ((delegate *unmanaged [Stdcall]<IAccessibleEx*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IAccessibleEx*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 184 private static winmdroot.Foundation.HRESULT ConvertReturnedElement(IAccessibleEx* pThis, winmdroot.UI.Accessibility.IRawElementProviderSimple* pIn, winmdroot.UI.Accessibility.IAccessibleEx** ppRetValOut) 188 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 197 return (winmdroot.Foundation.HRESULT)ex.HResult; 216 ((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(); 219 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 225 var hr = this.QueryInterface(&guid, &pv); 242 internal delegate *unmanaged [Stdcall]<IAccessibleEx*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 248 internal delegate *unmanaged [Stdcall]<IAccessibleEx*,int ,winmdroot.UI.Accessibility.IAccessibleEx** ,winmdroot.Foundation.HRESULT> GetObjectForChild_4; 250 internal delegate *unmanaged [Stdcall]<IAccessibleEx*,winmdroot.UI.Accessibility.IAccessible** ,int* ,winmdroot.Foundation.HRESULT> GetIAccessiblePair_5; 252 internal delegate *unmanaged [Stdcall]<IAccessibleEx*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetRuntimeId_6; 254 internal delegate *unmanaged [Stdcall]<IAccessibleEx*,winmdroot.UI.Accessibility.IRawElementProviderSimple* ,winmdroot.UI.Accessibility.IAccessibleEx** ,winmdroot.Foundation.HRESULT> ConvertReturnedElement_7; 284 unsafe winmdroot.Foundation.HRESULT GetObjectForChild(int idChild, winmdroot.UI.Accessibility.IAccessibleEx** pRetVal); 287 unsafe winmdroot.Foundation.HRESULT GetIAccessiblePair(winmdroot.UI.Accessibility.IAccessible** ppAcc, int* pidChild); 290 unsafe winmdroot.Foundation.HRESULT GetRuntimeId(winmdroot.System.Com.SAFEARRAY** pRetVal); 293 unsafe winmdroot.Foundation.HRESULT ConvertReturnedElement(winmdroot.UI.Accessibility.IRawElementProviderSimple* pIn, winmdroot.UI.Accessibility.IAccessibleEx** ppRetValOut);
_generated\108\Windows.Win32.IAdviseSinkEx.g.cs (13)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IAdviseSinkEx*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IAdviseSinkEx*)Unsafe.AsPointer(ref this), riid, ppvObject); 77 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 100 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 123 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 146 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 169 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 192 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 212 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 218 var hr = this.QueryInterface(&guid, &pv); 235 internal delegate *unmanaged [Stdcall]<IAdviseSinkEx*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1;
_generated\109\Windows.Win32.IAutoComplete.g.cs (19)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IAutoComplete*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IAutoComplete*)Unsafe.AsPointer(ref this), riid, ppvObject); 73 private static winmdroot.Foundation.HRESULT Init(IAutoComplete* pThis, winmdroot.Foundation.HWND hwndEdit, winmdroot.System.Com.IUnknown* punkACL, [Optional] winmdroot.Foundation.PCWSTR pwszRegKeyPath, [Optional] winmdroot.Foundation.PCWSTR pwszQuickComplete) 77 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 86 return (winmdroot.Foundation.HRESULT)ex.HResult; 115 ((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(); 121 private static winmdroot.Foundation.HRESULT Enable(IAutoComplete* pThis, winmdroot.Foundation.BOOL fEnable) 125 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 134 return (winmdroot.Foundation.HRESULT)ex.HResult; 149 ((delegate *unmanaged [Stdcall]<IAutoComplete*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IAutoComplete*)Unsafe.AsPointer(ref this), fEnable).ThrowOnFailure(); 152 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 158 var hr = this.QueryInterface(&guid, &pv); 175 internal delegate *unmanaged [Stdcall]<IAutoComplete*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 181 internal delegate *unmanaged [Stdcall]<IAutoComplete*,winmdroot.Foundation.HWND ,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> Init_4; 183 internal delegate *unmanaged [Stdcall]<IAutoComplete*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Enable_5; 211 unsafe winmdroot.Foundation.HRESULT Init(winmdroot.Foundation.HWND hwndEdit, winmdroot.System.Com.IUnknown* punkACL, [Optional] winmdroot.Foundation.PCWSTR pwszRegKeyPath, [Optional] winmdroot.Foundation.PCWSTR pwszQuickComplete); 214winmdroot.Foundation.HRESULT Enable(winmdroot.Foundation.BOOL fEnable);
_generated\110\Windows.Win32.IAutoComplete2.g.cs (32)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IAutoComplete2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IAutoComplete2*)Unsafe.AsPointer(ref this), riid, ppvObject); 73 private static winmdroot.Foundation.HRESULT Init(IAutoComplete2* pThis, winmdroot.Foundation.HWND hwndEdit, winmdroot.System.Com.IUnknown* punkACL, [Optional] winmdroot.Foundation.PCWSTR pwszRegKeyPath, [Optional] winmdroot.Foundation.PCWSTR pwszQuickComplete) 77 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 86 return (winmdroot.Foundation.HRESULT)ex.HResult; 92 ((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(); 98 private static winmdroot.Foundation.HRESULT Enable(IAutoComplete2* pThis, winmdroot.Foundation.BOOL fEnable) 102 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 111 return (winmdroot.Foundation.HRESULT)ex.HResult; 117 ((delegate *unmanaged [Stdcall]<IAutoComplete2*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IAutoComplete2*)Unsafe.AsPointer(ref this), fEnable).ThrowOnFailure(); 123 private static winmdroot.Foundation.HRESULT SetOptions(IAutoComplete2* pThis, uint dwFlag) 127 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 136 return (winmdroot.Foundation.HRESULT)ex.HResult; 149 public winmdroot.Foundation.HRESULT SetOptions(uint dwFlag) 151 return ((delegate *unmanaged [Stdcall]<IAutoComplete2*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IAutoComplete2*)Unsafe.AsPointer(ref this), dwFlag); 167 private static winmdroot.Foundation.HRESULT GetOptions(IAutoComplete2* pThis, uint* pdwFlag) 171 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return (winmdroot.Foundation.HRESULT)ex.HResult; 197 ((delegate *unmanaged [Stdcall]<IAutoComplete2*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IAutoComplete2*)Unsafe.AsPointer(ref this), pdwFlag).ThrowOnFailure(); 200 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 206 var hr = this.QueryInterface(&guid, &pv); 223 internal delegate *unmanaged [Stdcall]<IAutoComplete2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 229 internal delegate *unmanaged [Stdcall]<IAutoComplete2*,winmdroot.Foundation.HWND ,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> Init_4; 231 internal delegate *unmanaged [Stdcall]<IAutoComplete2*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Enable_5; 233 internal delegate *unmanaged [Stdcall]<IAutoComplete2*,uint ,winmdroot.Foundation.HRESULT> SetOptions_6; 235 internal delegate *unmanaged [Stdcall]<IAutoComplete2*,uint* ,winmdroot.Foundation.HRESULT> GetOptions_7; 265 unsafe new winmdroot.Foundation.HRESULT Init(winmdroot.Foundation.HWND hwndEdit, winmdroot.System.Com.IUnknown* punkACL, [Optional] winmdroot.Foundation.PCWSTR pwszRegKeyPath, [Optional] winmdroot.Foundation.PCWSTR pwszQuickComplete); 268 new winmdroot.Foundation.HRESULT Enable(winmdroot.Foundation.BOOL fEnable); 271winmdroot.Foundation.HRESULT SetOptions(uint dwFlag); 274 unsafe winmdroot.Foundation.HRESULT GetOptions(uint* pdwFlag);
_generated\111\Windows.Win32.IBindHost.g.cs (25)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IBindHost*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IBindHost*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 private static winmdroot.Foundation.HRESULT CreateMoniker(IBindHost* pThis, winmdroot.Foundation.PWSTR szName, winmdroot.System.Com.IBindCtx* pBC, winmdroot.System.Com.IMoniker** ppmk, uint dwReserved) 63 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 72 return (winmdroot.Foundation.HRESULT)ex.HResult; 78 ((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(); 97 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) 101 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 110 return (winmdroot.Foundation.HRESULT)ex.HResult; 116 ((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(); 135 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) 139 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 148 return (winmdroot.Foundation.HRESULT)ex.HResult; 154 ((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(); 157 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 163 var hr = this.QueryInterface(&guid, &pv); 180 internal delegate *unmanaged [Stdcall]<IBindHost*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 186 internal delegate *unmanaged [Stdcall]<IBindHost*,winmdroot.Foundation.PWSTR ,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker** ,uint ,winmdroot.Foundation.HRESULT> CreateMoniker_4; 188 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; 190 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; 218 unsafe winmdroot.Foundation.HRESULT CreateMoniker(winmdroot.Foundation.PWSTR szName, winmdroot.System.Com.IBindCtx* pBC, winmdroot.System.Com.IMoniker** ppmk, uint dwReserved); 221 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); 224 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);
_generated\112\Windows.Win32.IBinding.g.cs (43)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IBinding*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IBinding*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 private static winmdroot.Foundation.HRESULT Abort(IBinding* pThis) 63 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 72 return (winmdroot.Foundation.HRESULT)ex.HResult; 78 ((delegate *unmanaged [Stdcall]<IBinding*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IBinding*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 84 private static winmdroot.Foundation.HRESULT Suspend(IBinding* pThis) 88 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 97 return (winmdroot.Foundation.HRESULT)ex.HResult; 103 ((delegate *unmanaged [Stdcall]<IBinding*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IBinding*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 109 private static winmdroot.Foundation.HRESULT Resume(IBinding* pThis) 113 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 122 return (winmdroot.Foundation.HRESULT)ex.HResult; 128 ((delegate *unmanaged [Stdcall]<IBinding*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IBinding*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 134 private static winmdroot.Foundation.HRESULT SetPriority(IBinding* pThis, int nPriority) 138 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 147 return (winmdroot.Foundation.HRESULT)ex.HResult; 153 ((delegate *unmanaged [Stdcall]<IBinding*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IBinding*)Unsafe.AsPointer(ref this), nPriority).ThrowOnFailure(); 169 private static winmdroot.Foundation.HRESULT GetPriority(IBinding* pThis, int* pnPriority) 173 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 182 return (winmdroot.Foundation.HRESULT)ex.HResult; 188 ((delegate *unmanaged [Stdcall]<IBinding*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IBinding*)Unsafe.AsPointer(ref this), pnPriority).ThrowOnFailure(); 213 private static winmdroot.Foundation.HRESULT GetBindResult(IBinding* pThis, global::System.Guid* pclsidProtocol, uint* pdwResult, winmdroot.Foundation.PWSTR* pszResult, uint* pdwReserved) 217 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 226 return (winmdroot.Foundation.HRESULT)ex.HResult; 232 ((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(); 235 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 241 var hr = this.QueryInterface(&guid, &pv); 258 internal delegate *unmanaged [Stdcall]<IBinding*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 264 internal delegate *unmanaged [Stdcall]<IBinding*,winmdroot.Foundation.HRESULT> Abort_4; 266 internal delegate *unmanaged [Stdcall]<IBinding*,winmdroot.Foundation.HRESULT> Suspend_5; 268 internal delegate *unmanaged [Stdcall]<IBinding*,winmdroot.Foundation.HRESULT> Resume_6; 270 internal delegate *unmanaged [Stdcall]<IBinding*,int ,winmdroot.Foundation.HRESULT> SetPriority_7; 272 internal delegate *unmanaged [Stdcall]<IBinding*,int* ,winmdroot.Foundation.HRESULT> GetPriority_8; 274 internal delegate *unmanaged [Stdcall]<IBinding*,global::System.Guid* ,uint* ,winmdroot.Foundation.PWSTR* ,uint* ,winmdroot.Foundation.HRESULT> GetBindResult_9; 305winmdroot.Foundation.HRESULT Abort(); 308winmdroot.Foundation.HRESULT Suspend(); 311winmdroot.Foundation.HRESULT Resume(); 314winmdroot.Foundation.HRESULT SetPriority(int nPriority); 317 unsafe winmdroot.Foundation.HRESULT GetPriority(int* pnPriority); 320 unsafe winmdroot.Foundation.HRESULT GetBindResult(global::System.Guid* pclsidProtocol, uint* pdwResult, winmdroot.Foundation.PWSTR* pszResult, uint* pdwReserved);
_generated\113\Windows.Win32.IBindStatusCallback.g.cs (62)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IBindStatusCallback*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IBindStatusCallback*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 private static winmdroot.Foundation.HRESULT OnStartBinding(IBindStatusCallback* pThis, uint dwReserved, winmdroot.System.Com.IBinding* pib) 63 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 72 return (winmdroot.Foundation.HRESULT)ex.HResult; 78 ((delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint ,winmdroot.System.Com.IBinding* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IBindStatusCallback*)Unsafe.AsPointer(ref this), dwReserved, pib).ThrowOnFailure(); 94 private static winmdroot.Foundation.HRESULT GetPriority(IBindStatusCallback* pThis, int* pnPriority) 98 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 return (winmdroot.Foundation.HRESULT)ex.HResult; 113 ((delegate *unmanaged [Stdcall]<IBindStatusCallback*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IBindStatusCallback*)Unsafe.AsPointer(ref this), pnPriority).ThrowOnFailure(); 119 private static winmdroot.Foundation.HRESULT OnLowResource(IBindStatusCallback* pThis, uint reserved) 123 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 132 return (winmdroot.Foundation.HRESULT)ex.HResult; 138 ((delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IBindStatusCallback*)Unsafe.AsPointer(ref this), reserved).ThrowOnFailure(); 154 private static winmdroot.Foundation.HRESULT OnProgress(IBindStatusCallback* pThis, uint ulProgress, uint ulProgressMax, uint ulStatusCode, winmdroot.Foundation.PCWSTR szStatusText) 158 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 167 return (winmdroot.Foundation.HRESULT)ex.HResult; 173 ((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(); 176 /// <inheritdoc cref="OnStopBinding(winmdroot.Foundation.HRESULT, winmdroot.Foundation.PCWSTR)"/> 178 internal unsafe void OnStopBinding(winmdroot.Foundation.HRESULT hresult, string szError) 189 private static winmdroot.Foundation.HRESULT OnStopBinding(IBindStatusCallback* pThis, winmdroot.Foundation.HRESULT hresult, winmdroot.Foundation.PCWSTR szError) 193 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 202 return (winmdroot.Foundation.HRESULT)ex.HResult; 206 public void OnStopBinding(winmdroot.Foundation.HRESULT hresult, winmdroot.Foundation.PCWSTR szError) 208 ((delegate *unmanaged [Stdcall]<IBindStatusCallback*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IBindStatusCallback*)Unsafe.AsPointer(ref this), hresult, szError).ThrowOnFailure(); 227 private static winmdroot.Foundation.HRESULT GetBindInfo(IBindStatusCallback* pThis, uint* grfBINDF, winmdroot.System.Com.BINDINFO* pbindinfo) 231 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 240 return (winmdroot.Foundation.HRESULT)ex.HResult; 246 ((delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint* ,winmdroot.System.Com.BINDINFO* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IBindStatusCallback*)Unsafe.AsPointer(ref this), grfBINDF, pbindinfo).ThrowOnFailure(); 265 private static winmdroot.Foundation.HRESULT OnDataAvailable(IBindStatusCallback* pThis, uint grfBSCF, uint dwSize, winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pstgmed) 269 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 278 return (winmdroot.Foundation.HRESULT)ex.HResult; 284 ((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(); 300 private static winmdroot.Foundation.HRESULT OnObjectAvailable(IBindStatusCallback* pThis, global::System.Guid* riid, winmdroot.System.Com.IUnknown* punk) 304 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 313 return (winmdroot.Foundation.HRESULT)ex.HResult; 319 ((delegate *unmanaged [Stdcall]<IBindStatusCallback*,global::System.Guid* ,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IBindStatusCallback*)Unsafe.AsPointer(ref this), riid, punk).ThrowOnFailure(); 322 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 328 var hr = this.QueryInterface(&guid, &pv); 345 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 351 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint ,winmdroot.System.Com.IBinding* ,winmdroot.Foundation.HRESULT> OnStartBinding_4; 353 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,int* ,winmdroot.Foundation.HRESULT> GetPriority_5; 355 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint ,winmdroot.Foundation.HRESULT> OnLowResource_6; 357 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint ,uint ,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> OnProgress_7; 359 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> OnStopBinding_8; 361 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint* ,winmdroot.System.Com.BINDINFO* ,winmdroot.Foundation.HRESULT> GetBindInfo_9; 363 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint ,uint ,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.HRESULT> OnDataAvailable_10; 365 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,global::System.Guid* ,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT> OnObjectAvailable_11; 398 unsafe winmdroot.Foundation.HRESULT OnStartBinding(uint dwReserved, winmdroot.System.Com.IBinding* pib); 401 unsafe winmdroot.Foundation.HRESULT GetPriority(int* pnPriority); 404winmdroot.Foundation.HRESULT OnLowResource(uint reserved); 407winmdroot.Foundation.HRESULT OnProgress(uint ulProgress, uint ulProgressMax, uint ulStatusCode, winmdroot.Foundation.PCWSTR szStatusText); 410winmdroot.Foundation.HRESULT OnStopBinding(winmdroot.Foundation.HRESULT hresult, winmdroot.Foundation.PCWSTR szError); 413 unsafe winmdroot.Foundation.HRESULT GetBindInfo(uint* grfBINDF, winmdroot.System.Com.BINDINFO* pbindinfo); 416 unsafe winmdroot.Foundation.HRESULT OnDataAvailable(uint grfBSCF, uint dwSize, winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pstgmed); 419 unsafe winmdroot.Foundation.HRESULT OnObjectAvailable(global::System.Guid* riid, winmdroot.System.Com.IUnknown* punk);
_generated\114\Windows.Win32.IClassFactory.g.cs (23)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IClassFactory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IClassFactory*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT CreateInstance([Optional] winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, out void* ppvObject) 65 winmdroot.Foundation.HRESULT __result = this.CreateInstance(pUnkOuter, riidLocal, ppvObjectLocal); 74 private static winmdroot.Foundation.HRESULT CreateInstance(IClassFactory* pThis, [Optional] winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObject) 78 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 87 return (winmdroot.Foundation.HRESULT)ex.HResult; 103 public unsafe winmdroot.Foundation.HRESULT CreateInstance([Optional] winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObject) 105 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); 111 private static winmdroot.Foundation.HRESULT LockServer(IClassFactory* pThis, winmdroot.Foundation.BOOL fLock) 115 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return (winmdroot.Foundation.HRESULT)ex.HResult; 135 public winmdroot.Foundation.HRESULT LockServer(winmdroot.Foundation.BOOL fLock) 137 return ((delegate *unmanaged [Stdcall]<IClassFactory*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IClassFactory*)Unsafe.AsPointer(ref this), fLock); 140 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 146 var hr = this.QueryInterface(&guid, &pv); 163 internal delegate *unmanaged [Stdcall]<IClassFactory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 169 internal delegate *unmanaged [Stdcall]<IClassFactory*,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> CreateInstance_4; 171 internal delegate *unmanaged [Stdcall]<IClassFactory*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> LockServer_5; 199 unsafe winmdroot.Foundation.HRESULT CreateInstance([Optional] winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObject); 202winmdroot.Foundation.HRESULT LockServer(winmdroot.Foundation.BOOL fLock);
_generated\115\Windows.Win32.IClassFactory2.g.cs (50)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IClassFactory2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IClassFactory2*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT CreateInstance([Optional] winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, out void* ppvObject) 65 winmdroot.Foundation.HRESULT __result = this.CreateInstance(pUnkOuter, riidLocal, ppvObjectLocal); 74 private static winmdroot.Foundation.HRESULT CreateInstance(IClassFactory2* pThis, [Optional] winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObject) 78 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 87 return (winmdroot.Foundation.HRESULT)ex.HResult; 91 public unsafe winmdroot.Foundation.HRESULT CreateInstance([Optional] winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObject) 93 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); 99 private static winmdroot.Foundation.HRESULT LockServer(IClassFactory2* pThis, winmdroot.Foundation.BOOL fLock) 103 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 112 return (winmdroot.Foundation.HRESULT)ex.HResult; 116 public winmdroot.Foundation.HRESULT LockServer(winmdroot.Foundation.BOOL fLock) 118 return ((delegate *unmanaged [Stdcall]<IClassFactory2*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IClassFactory2*)Unsafe.AsPointer(ref this), fLock); 123 internal unsafe winmdroot.Foundation.HRESULT GetLicInfo(ref winmdroot.System.Ole.LICINFO pLicInfo) 127 winmdroot.Foundation.HRESULT __result = this.GetLicInfo(pLicInfoLocal); 135 private static winmdroot.Foundation.HRESULT GetLicInfo(IClassFactory2* pThis, winmdroot.System.Ole.LICINFO* pLicInfo) 139 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 148 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 public unsafe winmdroot.Foundation.HRESULT GetLicInfo(winmdroot.System.Ole.LICINFO* pLicInfo) 164 return ((delegate *unmanaged [Stdcall]<IClassFactory2*,winmdroot.System.Ole.LICINFO* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IClassFactory2*)Unsafe.AsPointer(ref this), pLicInfo); 169 internal unsafe winmdroot.Foundation.HRESULT RequestLicKey(uint dwReserved, out winmdroot.Foundation.BSTR pBstrKey) 173 winmdroot.Foundation.HRESULT __result = this.RequestLicKey(dwReserved, pBstrKeyLocal); 181 private static winmdroot.Foundation.HRESULT RequestLicKey(IClassFactory2* pThis, uint dwReserved, winmdroot.Foundation.BSTR* pBstrKey) 185 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 194 return (winmdroot.Foundation.HRESULT)ex.HResult; 209 public unsafe winmdroot.Foundation.HRESULT RequestLicKey(uint dwReserved, winmdroot.Foundation.BSTR* pBstrKey) 211 return ((delegate *unmanaged [Stdcall]<IClassFactory2*,uint ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IClassFactory2*)Unsafe.AsPointer(ref this), dwReserved, pBstrKey); 215 internal unsafe winmdroot.Foundation.HRESULT CreateInstanceLic([Optional] winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, winmdroot.Foundation.BSTR bstrKey, out void* ppvObj) 221 winmdroot.Foundation.HRESULT __result = this.CreateInstanceLic(pUnkOuter, default, riidLocal, bstrKey, ppvObjLocal); 230 private static winmdroot.Foundation.HRESULT CreateInstanceLic(IClassFactory2* pThis, [Optional] winmdroot.System.Com.IUnknown* pUnkOuter, [Optional] winmdroot.System.Com.IUnknown* pUnkReserved, global::System.Guid* riid, winmdroot.Foundation.BSTR bstrKey, void** ppvObj) 234 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 243 return (winmdroot.Foundation.HRESULT)ex.HResult; 261 public unsafe winmdroot.Foundation.HRESULT CreateInstanceLic([Optional] winmdroot.System.Com.IUnknown* pUnkOuter, [Optional] winmdroot.System.Com.IUnknown* pUnkReserved, global::System.Guid* riid, winmdroot.Foundation.BSTR bstrKey, void** ppvObj) 263 return ((delegate *unmanaged [Stdcall]<IClassFactory2*,winmdroot.System.Com.IUnknown* ,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,winmdroot.Foundation.BSTR ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IClassFactory2*)Unsafe.AsPointer(ref this), pUnkOuter, pUnkReserved, riid, bstrKey, ppvObj); 266 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 272 var hr = this.QueryInterface(&guid, &pv); 289 internal delegate *unmanaged [Stdcall]<IClassFactory2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 295 internal delegate *unmanaged [Stdcall]<IClassFactory2*,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> CreateInstance_4; 297 internal delegate *unmanaged [Stdcall]<IClassFactory2*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> LockServer_5; 299 internal delegate *unmanaged [Stdcall]<IClassFactory2*,winmdroot.System.Ole.LICINFO* ,winmdroot.Foundation.HRESULT> GetLicInfo_6; 301 internal delegate *unmanaged [Stdcall]<IClassFactory2*,uint ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> RequestLicKey_7; 303 internal delegate *unmanaged [Stdcall]<IClassFactory2*,winmdroot.System.Com.IUnknown* ,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,winmdroot.Foundation.BSTR ,void** ,winmdroot.Foundation.HRESULT> CreateInstanceLic_8; 334 unsafe new winmdroot.Foundation.HRESULT CreateInstance([Optional] winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObject); 337 new winmdroot.Foundation.HRESULT LockServer(winmdroot.Foundation.BOOL fLock); 340 unsafe winmdroot.Foundation.HRESULT GetLicInfo(winmdroot.System.Ole.LICINFO* pLicInfo); 343 unsafe winmdroot.Foundation.HRESULT RequestLicKey(uint dwReserved, winmdroot.Foundation.BSTR* pBstrKey); 346 unsafe winmdroot.Foundation.HRESULT CreateInstanceLic([Optional] winmdroot.System.Com.IUnknown* pUnkOuter, [Optional] winmdroot.System.Com.IUnknown* pUnkReserved, global::System.Guid* riid, winmdroot.Foundation.BSTR bstrKey, void** ppvObj);
_generated\117\Windows.Win32.IConnectionPoint.g.cs (46)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IConnectionPoint*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IConnectionPoint*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT GetConnectionInterface(out global::System.Guid pIID) 63 winmdroot.Foundation.HRESULT __result = this.GetConnectionInterface(pIIDLocal); 71 private static winmdroot.Foundation.HRESULT GetConnectionInterface(IConnectionPoint* pThis, global::System.Guid* pIID) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 98 public unsafe winmdroot.Foundation.HRESULT GetConnectionInterface(global::System.Guid* pIID) 100 return ((delegate *unmanaged [Stdcall]<IConnectionPoint*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IConnectionPoint*)Unsafe.AsPointer(ref this), pIID); 106 private static winmdroot.Foundation.HRESULT GetConnectionPointContainer(IConnectionPoint* pThis, winmdroot.System.Com.IConnectionPointContainer** ppCPC) 110 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 119 return (winmdroot.Foundation.HRESULT)ex.HResult; 133 public unsafe winmdroot.Foundation.HRESULT GetConnectionPointContainer(winmdroot.System.Com.IConnectionPointContainer** ppCPC) 135 return ((delegate *unmanaged [Stdcall]<IConnectionPoint*,winmdroot.System.Com.IConnectionPointContainer** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IConnectionPoint*)Unsafe.AsPointer(ref this), ppCPC); 140 internal unsafe winmdroot.Foundation.HRESULT Advise(winmdroot.System.Com.IUnknown* pUnkSink, out uint pdwCookie) 144 winmdroot.Foundation.HRESULT __result = this.Advise(pUnkSink, pdwCookieLocal); 152 private static winmdroot.Foundation.HRESULT Advise(IConnectionPoint* pThis, winmdroot.System.Com.IUnknown* pUnkSink, uint* pdwCookie) 156 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 165 return (winmdroot.Foundation.HRESULT)ex.HResult; 180 public unsafe winmdroot.Foundation.HRESULT Advise(winmdroot.System.Com.IUnknown* pUnkSink, uint* pdwCookie) 182 return ((delegate *unmanaged [Stdcall]<IConnectionPoint*,winmdroot.System.Com.IUnknown* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IConnectionPoint*)Unsafe.AsPointer(ref this), pUnkSink, pdwCookie); 188 private static winmdroot.Foundation.HRESULT Unadvise(IConnectionPoint* pThis, uint dwCookie) 192 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 201 return (winmdroot.Foundation.HRESULT)ex.HResult; 212 public winmdroot.Foundation.HRESULT Unadvise(uint dwCookie) 214 return ((delegate *unmanaged [Stdcall]<IConnectionPoint*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IConnectionPoint*)Unsafe.AsPointer(ref this), dwCookie); 220 private static winmdroot.Foundation.HRESULT EnumConnections(IConnectionPoint* pThis, winmdroot.System.Com.IEnumConnections** ppEnum) 224 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 233 return (winmdroot.Foundation.HRESULT)ex.HResult; 244 public unsafe winmdroot.Foundation.HRESULT EnumConnections(winmdroot.System.Com.IEnumConnections** ppEnum) 246 return ((delegate *unmanaged [Stdcall]<IConnectionPoint*,winmdroot.System.Com.IEnumConnections** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IConnectionPoint*)Unsafe.AsPointer(ref this), ppEnum); 249 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 255 var hr = this.QueryInterface(&guid, &pv); 272 internal delegate *unmanaged [Stdcall]<IConnectionPoint*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 278 internal delegate *unmanaged [Stdcall]<IConnectionPoint*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetConnectionInterface_4; 280 internal delegate *unmanaged [Stdcall]<IConnectionPoint*,winmdroot.System.Com.IConnectionPointContainer** ,winmdroot.Foundation.HRESULT> GetConnectionPointContainer_5; 282 internal delegate *unmanaged [Stdcall]<IConnectionPoint*,winmdroot.System.Com.IUnknown* ,uint* ,winmdroot.Foundation.HRESULT> Advise_6; 284 internal delegate *unmanaged [Stdcall]<IConnectionPoint*,uint ,winmdroot.Foundation.HRESULT> Unadvise_7; 286 internal delegate *unmanaged [Stdcall]<IConnectionPoint*,winmdroot.System.Com.IEnumConnections** ,winmdroot.Foundation.HRESULT> EnumConnections_8; 317 unsafe winmdroot.Foundation.HRESULT GetConnectionInterface(global::System.Guid* pIID); 320 unsafe winmdroot.Foundation.HRESULT GetConnectionPointContainer(winmdroot.System.Com.IConnectionPointContainer** ppCPC); 323 unsafe winmdroot.Foundation.HRESULT Advise(winmdroot.System.Com.IUnknown* pUnkSink, uint* pdwCookie); 326winmdroot.Foundation.HRESULT Unadvise(uint dwCookie); 329 unsafe winmdroot.Foundation.HRESULT EnumConnections(winmdroot.System.Com.IEnumConnections** ppEnum);
_generated\118\Windows.Win32.IConnectionPointContainer.g.cs (23)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IConnectionPointContainer*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IConnectionPointContainer*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT EnumConnectionPoints(IConnectionPointContainer* pThis, winmdroot.System.Com.IEnumConnectionPoints** ppEnum) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 87 public unsafe winmdroot.Foundation.HRESULT EnumConnectionPoints(winmdroot.System.Com.IEnumConnectionPoints** ppEnum) 89 return ((delegate *unmanaged [Stdcall]<IConnectionPointContainer*,winmdroot.System.Com.IEnumConnectionPoints** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IConnectionPointContainer*)Unsafe.AsPointer(ref this), ppEnum); 94 internal unsafe winmdroot.Foundation.HRESULT FindConnectionPoint(in global::System.Guid riid, winmdroot.System.Com.IConnectionPoint** ppCP) 98 winmdroot.Foundation.HRESULT __result = this.FindConnectionPoint(riidLocal, ppCP); 106 private static winmdroot.Foundation.HRESULT FindConnectionPoint(IConnectionPointContainer* pThis, global::System.Guid* riid, winmdroot.System.Com.IConnectionPoint** ppCP) 110 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 119 return (winmdroot.Foundation.HRESULT)ex.HResult; 134 public unsafe winmdroot.Foundation.HRESULT FindConnectionPoint(global::System.Guid* riid, winmdroot.System.Com.IConnectionPoint** ppCP) 136 return ((delegate *unmanaged [Stdcall]<IConnectionPointContainer*,global::System.Guid* ,winmdroot.System.Com.IConnectionPoint** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IConnectionPointContainer*)Unsafe.AsPointer(ref this), riid, ppCP); 139 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 145 var hr = this.QueryInterface(&guid, &pv); 162 internal delegate *unmanaged [Stdcall]<IConnectionPointContainer*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 168 internal delegate *unmanaged [Stdcall]<IConnectionPointContainer*,winmdroot.System.Com.IEnumConnectionPoints** ,winmdroot.Foundation.HRESULT> EnumConnectionPoints_4; 170 internal delegate *unmanaged [Stdcall]<IConnectionPointContainer*,global::System.Guid* ,winmdroot.System.Com.IConnectionPoint** ,winmdroot.Foundation.HRESULT> FindConnectionPoint_5; 198 unsafe winmdroot.Foundation.HRESULT EnumConnectionPoints(winmdroot.System.Com.IEnumConnectionPoints** ppEnum); 201 unsafe winmdroot.Foundation.HRESULT FindConnectionPoint(global::System.Guid* riid, winmdroot.System.Com.IConnectionPoint** ppCP);
_generated\119\Windows.Win32.IEnumConnectionPoints.g.cs (34)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumConnectionPoints*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT Next(uint cConnections, winmdroot.System.Com.IConnectionPoint** ppCP, out uint pcFetched) 63 winmdroot.Foundation.HRESULT __result = this.Next(cConnections, ppCP, pcFetchedLocal); 71 private static winmdroot.Foundation.HRESULT Next(IEnumConnectionPoints* pThis, uint cConnections, winmdroot.System.Com.IConnectionPoint** ppCP, uint* pcFetched) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 99 public unsafe winmdroot.Foundation.HRESULT Next(uint cConnections, winmdroot.System.Com.IConnectionPoint** ppCP, uint* pcFetched) 101 return ((delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,uint ,winmdroot.System.Com.IConnectionPoint** ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumConnectionPoints*)Unsafe.AsPointer(ref this), cConnections, ppCP, pcFetched); 107 private static winmdroot.Foundation.HRESULT Skip(IEnumConnectionPoints* pThis, uint cConnections) 111 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 120 return (winmdroot.Foundation.HRESULT)ex.HResult; 132 ((delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumConnectionPoints*)Unsafe.AsPointer(ref this), cConnections).ThrowOnFailure(); 138 private static winmdroot.Foundation.HRESULT Reset(IEnumConnectionPoints* pThis) 142 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 151 return (winmdroot.Foundation.HRESULT)ex.HResult; 160 ((delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumConnectionPoints*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 166 private static winmdroot.Foundation.HRESULT Clone(IEnumConnectionPoints* pThis, winmdroot.System.Com.IEnumConnectionPoints** ppEnum) 170 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 179 return (winmdroot.Foundation.HRESULT)ex.HResult; 191 ((delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,winmdroot.System.Com.IEnumConnectionPoints** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumConnectionPoints*)Unsafe.AsPointer(ref this), ppEnum).ThrowOnFailure(); 194 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 200 var hr = this.QueryInterface(&guid, &pv); 217 internal delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 223 internal delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,uint ,winmdroot.System.Com.IConnectionPoint** ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 225 internal delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 227 internal delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,winmdroot.Foundation.HRESULT> Reset_6; 229 internal delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,winmdroot.System.Com.IEnumConnectionPoints** ,winmdroot.Foundation.HRESULT> Clone_7; 259 unsafe winmdroot.Foundation.HRESULT Next(uint cConnections, winmdroot.System.Com.IConnectionPoint** ppCP, uint* pcFetched); 262winmdroot.Foundation.HRESULT Skip(uint cConnections); 265winmdroot.Foundation.HRESULT Reset(); 268 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumConnectionPoints** ppEnum);
_generated\120\Windows.Win32.IEnumConnections.g.cs (34)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IEnumConnections*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumConnections*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.System.Com.CONNECTDATA> rgcd, out uint pcFetched) 64 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgcd.Length, rgcdLocal, pcFetchedLocal); 73 private static winmdroot.Foundation.HRESULT Next(IEnumConnections* pThis, uint cConnections, winmdroot.System.Com.CONNECTDATA* rgcd, uint* pcFetched) 77 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 86 return (winmdroot.Foundation.HRESULT)ex.HResult; 102 public unsafe winmdroot.Foundation.HRESULT Next(uint cConnections, winmdroot.System.Com.CONNECTDATA* rgcd, uint* pcFetched) 104 return ((delegate *unmanaged [Stdcall]<IEnumConnections*,uint ,winmdroot.System.Com.CONNECTDATA* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumConnections*)Unsafe.AsPointer(ref this), cConnections, rgcd, pcFetched); 110 private static winmdroot.Foundation.HRESULT Skip(IEnumConnections* pThis, uint cConnections) 114 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 123 return (winmdroot.Foundation.HRESULT)ex.HResult; 135 ((delegate *unmanaged [Stdcall]<IEnumConnections*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumConnections*)Unsafe.AsPointer(ref this), cConnections).ThrowOnFailure(); 141 private static winmdroot.Foundation.HRESULT Reset(IEnumConnections* pThis) 145 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 154 return (winmdroot.Foundation.HRESULT)ex.HResult; 163 ((delegate *unmanaged [Stdcall]<IEnumConnections*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumConnections*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 169 private static winmdroot.Foundation.HRESULT Clone(IEnumConnections* pThis, winmdroot.System.Com.IEnumConnections** ppEnum) 173 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 182 return (winmdroot.Foundation.HRESULT)ex.HResult; 194 ((delegate *unmanaged [Stdcall]<IEnumConnections*,winmdroot.System.Com.IEnumConnections** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumConnections*)Unsafe.AsPointer(ref this), ppEnum).ThrowOnFailure(); 197 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 203 var hr = this.QueryInterface(&guid, &pv); 220 internal delegate *unmanaged [Stdcall]<IEnumConnections*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 226 internal delegate *unmanaged [Stdcall]<IEnumConnections*,uint ,winmdroot.System.Com.CONNECTDATA* ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 228 internal delegate *unmanaged [Stdcall]<IEnumConnections*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 230 internal delegate *unmanaged [Stdcall]<IEnumConnections*,winmdroot.Foundation.HRESULT> Reset_6; 232 internal delegate *unmanaged [Stdcall]<IEnumConnections*,winmdroot.System.Com.IEnumConnections** ,winmdroot.Foundation.HRESULT> Clone_7; 262 unsafe winmdroot.Foundation.HRESULT Next(uint cConnections, winmdroot.System.Com.CONNECTDATA* rgcd, uint* pcFetched); 265winmdroot.Foundation.HRESULT Skip(uint cConnections); 268winmdroot.Foundation.HRESULT Reset(); 271 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumConnections** ppEnum);
_generated\121\Windows.Win32.IEnumIDList.g.cs (39)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IEnumIDList*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumIDList*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.UI.Shell.Common.ITEMIDLIST** rgelt, out uint pceltFetched) 63 winmdroot.Foundation.HRESULT __result = this.Next(celt, rgelt, pceltFetchedLocal); 69 internal unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.UI.Shell.Common.ITEMIDLIST** rgelt) 71 winmdroot.Foundation.HRESULT __result = this.Next(celt, rgelt, default(uint* )); 78 private static winmdroot.Foundation.HRESULT Next(IEnumIDList* pThis, uint celt, winmdroot.UI.Shell.Common.ITEMIDLIST** rgelt, [Optional] uint* pceltFetched) 82 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 91 return (winmdroot.Foundation.HRESULT)ex.HResult; 117 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.UI.Shell.Common.ITEMIDLIST** rgelt, [Optional] uint* pceltFetched) 119 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); 125 private static winmdroot.Foundation.HRESULT Skip(IEnumIDList* pThis, uint celt) 129 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 138 return (winmdroot.Foundation.HRESULT)ex.HResult; 153 public winmdroot.Foundation.HRESULT Skip(uint celt) 155 return ((delegate *unmanaged [Stdcall]<IEnumIDList*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumIDList*)Unsafe.AsPointer(ref this), celt); 161 private static winmdroot.Foundation.HRESULT Reset(IEnumIDList* pThis) 165 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 174 return (winmdroot.Foundation.HRESULT)ex.HResult; 185 public winmdroot.Foundation.HRESULT Reset() 187 return ((delegate *unmanaged [Stdcall]<IEnumIDList*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumIDList*)Unsafe.AsPointer(ref this)); 193 private static winmdroot.Foundation.HRESULT Clone(IEnumIDList* pThis, winmdroot.UI.Shell.IEnumIDList** ppenum) 197 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 206 return (winmdroot.Foundation.HRESULT)ex.HResult; 219 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.UI.Shell.IEnumIDList** ppenum) 221 return ((delegate *unmanaged [Stdcall]<IEnumIDList*,winmdroot.UI.Shell.IEnumIDList** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumIDList*)Unsafe.AsPointer(ref this), ppenum); 224 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 230 var hr = this.QueryInterface(&guid, &pv); 247 internal delegate *unmanaged [Stdcall]<IEnumIDList*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 253 internal delegate *unmanaged [Stdcall]<IEnumIDList*,uint ,winmdroot.UI.Shell.Common.ITEMIDLIST** ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 255 internal delegate *unmanaged [Stdcall]<IEnumIDList*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 257 internal delegate *unmanaged [Stdcall]<IEnumIDList*,winmdroot.Foundation.HRESULT> Reset_6; 259 internal delegate *unmanaged [Stdcall]<IEnumIDList*,winmdroot.UI.Shell.IEnumIDList** ,winmdroot.Foundation.HRESULT> Clone_7; 289 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.UI.Shell.Common.ITEMIDLIST** rgelt, [Optional] uint* pceltFetched); 292winmdroot.Foundation.HRESULT Skip(uint celt); 295winmdroot.Foundation.HRESULT Reset(); 298 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.UI.Shell.IEnumIDList** ppenum);
_generated\122\Windows.Win32.IEnumOleUndoUnits.g.cs (34)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumOleUndoUnits*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT Next(uint cElt, winmdroot.System.Ole.IOleUndoUnit** rgElt, out uint pcEltFetched) 63 winmdroot.Foundation.HRESULT __result = this.Next(cElt, rgElt, pcEltFetchedLocal); 71 private static winmdroot.Foundation.HRESULT Next(IEnumOleUndoUnits* pThis, uint cElt, winmdroot.System.Ole.IOleUndoUnit** rgElt, uint* pcEltFetched) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 101 public unsafe winmdroot.Foundation.HRESULT Next(uint cElt, winmdroot.System.Ole.IOleUndoUnit** rgElt, uint* pcEltFetched) 103 return ((delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,uint ,winmdroot.System.Ole.IOleUndoUnit** ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumOleUndoUnits*)Unsafe.AsPointer(ref this), cElt, rgElt, pcEltFetched); 109 private static winmdroot.Foundation.HRESULT Skip(IEnumOleUndoUnits* pThis, uint cElt) 113 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 122 return (winmdroot.Foundation.HRESULT)ex.HResult; 134 ((delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumOleUndoUnits*)Unsafe.AsPointer(ref this), cElt).ThrowOnFailure(); 140 private static winmdroot.Foundation.HRESULT Reset(IEnumOleUndoUnits* pThis) 144 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 ((delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumOleUndoUnits*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 168 private static winmdroot.Foundation.HRESULT Clone(IEnumOleUndoUnits* pThis, winmdroot.System.Ole.IEnumOleUndoUnits** ppEnum) 172 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 181 return (winmdroot.Foundation.HRESULT)ex.HResult; 196 ((delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,winmdroot.System.Ole.IEnumOleUndoUnits** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumOleUndoUnits*)Unsafe.AsPointer(ref this), ppEnum).ThrowOnFailure(); 199 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 205 var hr = this.QueryInterface(&guid, &pv); 222 internal delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 228 internal delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,uint ,winmdroot.System.Ole.IOleUndoUnit** ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 230 internal delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 232 internal delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,winmdroot.Foundation.HRESULT> Reset_6; 234 internal delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,winmdroot.System.Ole.IEnumOleUndoUnits** ,winmdroot.Foundation.HRESULT> Clone_7; 264 unsafe winmdroot.Foundation.HRESULT Next(uint cElt, winmdroot.System.Ole.IOleUndoUnit** rgElt, uint* pcEltFetched); 267winmdroot.Foundation.HRESULT Skip(uint cElt); 270winmdroot.Foundation.HRESULT Reset(); 273 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Ole.IEnumOleUndoUnits** ppEnum);
_generated\123\Windows.Win32.IEnumOLEVERB.g.cs (39)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IEnumOLEVERB*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumOLEVERB*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.System.Ole.OLEVERB> rgelt, out uint pceltFetched) 64 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgelt.Length, rgeltLocal, pceltFetchedLocal); 71 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.System.Ole.OLEVERB> rgelt) 75 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgelt.Length, rgeltLocal, default(uint* )); 83 private static winmdroot.Foundation.HRESULT Next(IEnumOLEVERB* pThis, uint celt, winmdroot.System.Ole.OLEVERB* rgelt, [Optional] uint* pceltFetched) 87 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 96 return (winmdroot.Foundation.HRESULT)ex.HResult; 111 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Ole.OLEVERB* rgelt, [Optional] uint* pceltFetched) 113 return ((delegate *unmanaged [Stdcall]<IEnumOLEVERB*,uint ,winmdroot.System.Ole.OLEVERB* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumOLEVERB*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched); 119 private static winmdroot.Foundation.HRESULT Skip(IEnumOLEVERB* pThis, uint celt) 123 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 132 return (winmdroot.Foundation.HRESULT)ex.HResult; 142 public winmdroot.Foundation.HRESULT Skip(uint celt) 144 return ((delegate *unmanaged [Stdcall]<IEnumOLEVERB*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumOLEVERB*)Unsafe.AsPointer(ref this), celt); 150 private static winmdroot.Foundation.HRESULT Reset(IEnumOLEVERB* pThis) 154 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 public winmdroot.Foundation.HRESULT Reset() 172 return ((delegate *unmanaged [Stdcall]<IEnumOLEVERB*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumOLEVERB*)Unsafe.AsPointer(ref this)); 178 private static winmdroot.Foundation.HRESULT Clone(IEnumOLEVERB* pThis, winmdroot.System.Ole.IEnumOLEVERB** ppenum) 182 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 191 return (winmdroot.Foundation.HRESULT)ex.HResult; 204 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Ole.IEnumOLEVERB** ppenum) 206 return ((delegate *unmanaged [Stdcall]<IEnumOLEVERB*,winmdroot.System.Ole.IEnumOLEVERB** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumOLEVERB*)Unsafe.AsPointer(ref this), ppenum); 209 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 215 var hr = this.QueryInterface(&guid, &pv); 232 internal delegate *unmanaged [Stdcall]<IEnumOLEVERB*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 238 internal delegate *unmanaged [Stdcall]<IEnumOLEVERB*,uint ,winmdroot.System.Ole.OLEVERB* ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 240 internal delegate *unmanaged [Stdcall]<IEnumOLEVERB*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 242 internal delegate *unmanaged [Stdcall]<IEnumOLEVERB*,winmdroot.Foundation.HRESULT> Reset_6; 244 internal delegate *unmanaged [Stdcall]<IEnumOLEVERB*,winmdroot.System.Ole.IEnumOLEVERB** ,winmdroot.Foundation.HRESULT> Clone_7; 274 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Ole.OLEVERB* rgelt, [Optional] uint* pceltFetched); 277winmdroot.Foundation.HRESULT Skip(uint celt); 280winmdroot.Foundation.HRESULT Reset(); 283 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Ole.IEnumOLEVERB** ppenum);
_generated\124\Windows.Win32.IEnumShellItems.g.cs (31)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IEnumShellItems*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumShellItems*)Unsafe.AsPointer(ref this), riid, ppvObject); 76 private static winmdroot.Foundation.HRESULT Next(IEnumShellItems* pThis, uint celt, winmdroot.UI.Shell.IShellItem** rgelt, [Optional] uint* pceltFetched) 80 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 89 return (winmdroot.Foundation.HRESULT)ex.HResult; 115 ((delegate *unmanaged [Stdcall]<IEnumShellItems*,uint ,winmdroot.UI.Shell.IShellItem** ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumShellItems*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched).ThrowOnFailure(); 121 private static winmdroot.Foundation.HRESULT Skip(IEnumShellItems* pThis, uint celt) 125 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 134 return (winmdroot.Foundation.HRESULT)ex.HResult; 151 ((delegate *unmanaged [Stdcall]<IEnumShellItems*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumShellItems*)Unsafe.AsPointer(ref this), celt).ThrowOnFailure(); 157 private static winmdroot.Foundation.HRESULT Reset(IEnumShellItems* pThis) 161 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 170 return (winmdroot.Foundation.HRESULT)ex.HResult; 183 ((delegate *unmanaged [Stdcall]<IEnumShellItems*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumShellItems*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 189 private static winmdroot.Foundation.HRESULT Clone(IEnumShellItems* pThis, winmdroot.UI.Shell.IEnumShellItems** ppenum) 193 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 202 return (winmdroot.Foundation.HRESULT)ex.HResult; 219 ((delegate *unmanaged [Stdcall]<IEnumShellItems*,winmdroot.UI.Shell.IEnumShellItems** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumShellItems*)Unsafe.AsPointer(ref this), ppenum).ThrowOnFailure(); 222 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 228 var hr = this.QueryInterface(&guid, &pv); 245 internal delegate *unmanaged [Stdcall]<IEnumShellItems*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 251 internal delegate *unmanaged [Stdcall]<IEnumShellItems*,uint ,winmdroot.UI.Shell.IShellItem** ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 253 internal delegate *unmanaged [Stdcall]<IEnumShellItems*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 255 internal delegate *unmanaged [Stdcall]<IEnumShellItems*,winmdroot.Foundation.HRESULT> Reset_6; 257 internal delegate *unmanaged [Stdcall]<IEnumShellItems*,winmdroot.UI.Shell.IEnumShellItems** ,winmdroot.Foundation.HRESULT> Clone_7; 287 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.UI.Shell.IShellItem** rgelt, [Optional] uint* pceltFetched); 290winmdroot.Foundation.HRESULT Skip(uint celt); 293winmdroot.Foundation.HRESULT Reset(); 296 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.UI.Shell.IEnumShellItems** ppenum);
_generated\125\Windows.Win32.IEnumVARIANT.g.cs (37)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IEnumVARIANT*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumVARIANT*)Unsafe.AsPointer(ref this), riid, ppvObject); 57 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.System.Variant.VARIANT> rgVar, out uint pCeltFetched) 63 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgVar.Length, rgVarLocal, pCeltFetchedLocal); 72 private static winmdroot.Foundation.HRESULT Next(IEnumVARIANT* pThis, uint celt, winmdroot.System.Variant.VARIANT* rgVar, uint* pCeltFetched) 76 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 85 return (winmdroot.Foundation.HRESULT)ex.HResult; 98 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Variant.VARIANT* rgVar, uint* pCeltFetched) 100 return ((delegate *unmanaged [Stdcall]<IEnumVARIANT*,uint ,winmdroot.System.Variant.VARIANT* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumVARIANT*)Unsafe.AsPointer(ref this), celt, rgVar, pCeltFetched); 106 private static winmdroot.Foundation.HRESULT Skip(IEnumVARIANT* pThis, uint celt) 110 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 119 return (winmdroot.Foundation.HRESULT)ex.HResult; 132 public winmdroot.Foundation.HRESULT Skip(uint celt) 134 return ((delegate *unmanaged [Stdcall]<IEnumVARIANT*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumVARIANT*)Unsafe.AsPointer(ref this), celt); 140 private static winmdroot.Foundation.HRESULT Reset(IEnumVARIANT* pThis) 144 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 163 public winmdroot.Foundation.HRESULT Reset() 165 return ((delegate *unmanaged [Stdcall]<IEnumVARIANT*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumVARIANT*)Unsafe.AsPointer(ref this)); 171 private static winmdroot.Foundation.HRESULT Clone(IEnumVARIANT* pThis, winmdroot.System.Ole.IEnumVARIANT** ppEnum) 175 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 198 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Ole.IEnumVARIANT** ppEnum) 200 return ((delegate *unmanaged [Stdcall]<IEnumVARIANT*,winmdroot.System.Ole.IEnumVARIANT** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumVARIANT*)Unsafe.AsPointer(ref this), ppEnum); 203 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 209 var hr = this.QueryInterface(&guid, &pv); 226 internal delegate *unmanaged [Stdcall]<IEnumVARIANT*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 232 internal delegate *unmanaged [Stdcall]<IEnumVARIANT*,uint ,winmdroot.System.Variant.VARIANT* ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 234 internal delegate *unmanaged [Stdcall]<IEnumVARIANT*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 236 internal delegate *unmanaged [Stdcall]<IEnumVARIANT*,winmdroot.Foundation.HRESULT> Reset_6; 238 internal delegate *unmanaged [Stdcall]<IEnumVARIANT*,winmdroot.System.Ole.IEnumVARIANT** ,winmdroot.Foundation.HRESULT> Clone_7; 267 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Variant.VARIANT* rgVar, uint* pCeltFetched); 270winmdroot.Foundation.HRESULT Skip(uint celt); 273winmdroot.Foundation.HRESULT Reset(); 276 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Ole.IEnumVARIANT** ppEnum);
_generated\126\Windows.Win32.IErrorInfo.g.cs (40)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IErrorInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IErrorInfo*)Unsafe.AsPointer(ref this), riid, ppvObject); 69 private static winmdroot.Foundation.HRESULT GetGUID(IErrorInfo* pThis, global::System.Guid* pGUID) 73 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 82 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 ((delegate *unmanaged [Stdcall]<IErrorInfo*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IErrorInfo*)Unsafe.AsPointer(ref this), pGUID).ThrowOnFailure(); 112 private static winmdroot.Foundation.HRESULT GetSource(IErrorInfo* pThis, winmdroot.Foundation.BSTR* pBstrSource) 116 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 125 return (winmdroot.Foundation.HRESULT)ex.HResult; 135 ((delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IErrorInfo*)Unsafe.AsPointer(ref this), pBstrSource).ThrowOnFailure(); 140 internal unsafe winmdroot.Foundation.HRESULT GetDescription(out winmdroot.Foundation.BSTR pBstrDescription) 144 winmdroot.Foundation.HRESULT __result = this.GetDescription(pBstrDescriptionLocal); 152 private static winmdroot.Foundation.HRESULT GetDescription(IErrorInfo* pThis, winmdroot.Foundation.BSTR* pBstrDescription) 156 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 165 return (winmdroot.Foundation.HRESULT)ex.HResult; 173 public unsafe winmdroot.Foundation.HRESULT GetDescription(winmdroot.Foundation.BSTR* pBstrDescription) 175 return ((delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IErrorInfo*)Unsafe.AsPointer(ref this), pBstrDescription); 191 private static winmdroot.Foundation.HRESULT GetHelpFile(IErrorInfo* pThis, winmdroot.Foundation.BSTR* pBstrHelpFile) 195 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 204 return (winmdroot.Foundation.HRESULT)ex.HResult; 214 ((delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IErrorInfo*)Unsafe.AsPointer(ref this), pBstrHelpFile).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT GetHelpContext(IErrorInfo* pThis, uint* pdwHelpContext) 234 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 243 return (winmdroot.Foundation.HRESULT)ex.HResult; 253 ((delegate *unmanaged [Stdcall]<IErrorInfo*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IErrorInfo*)Unsafe.AsPointer(ref this), pdwHelpContext).ThrowOnFailure(); 256 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 262 var hr = this.QueryInterface(&guid, &pv); 279 internal delegate *unmanaged [Stdcall]<IErrorInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 285 internal delegate *unmanaged [Stdcall]<IErrorInfo*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetGUID_4; 287 internal delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetSource_5; 289 internal delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDescription_6; 291 internal delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetHelpFile_7; 293 internal delegate *unmanaged [Stdcall]<IErrorInfo*,uint* ,winmdroot.Foundation.HRESULT> GetHelpContext_8; 323 unsafe winmdroot.Foundation.HRESULT GetGUID(global::System.Guid* pGUID); 326 unsafe winmdroot.Foundation.HRESULT GetSource(winmdroot.Foundation.BSTR* pBstrSource); 329 unsafe winmdroot.Foundation.HRESULT GetDescription(winmdroot.Foundation.BSTR* pBstrDescription); 332 unsafe winmdroot.Foundation.HRESULT GetHelpFile(winmdroot.Foundation.BSTR* pBstrHelpFile); 335 unsafe winmdroot.Foundation.HRESULT GetHelpContext(uint* pdwHelpContext);
_generated\127\Windows.Win32.IErrorLog.g.cs (13)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IErrorLog*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IErrorLog*)Unsafe.AsPointer(ref this), riid, ppvObject); 72 private static winmdroot.Foundation.HRESULT AddError(IErrorLog* pThis, winmdroot.Foundation.PCWSTR pszPropName, winmdroot.System.Com.EXCEPINFO* pExcepInfo) 76 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 85 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 ((delegate *unmanaged [Stdcall]<IErrorLog*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.EXCEPINFO* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IErrorLog*)Unsafe.AsPointer(ref this), pszPropName, pExcepInfo).ThrowOnFailure(); 99 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 105 var hr = this.QueryInterface(&guid, &pv); 122 internal delegate *unmanaged [Stdcall]<IErrorLog*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 128 internal delegate *unmanaged [Stdcall]<IErrorLog*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.EXCEPINFO* ,winmdroot.Foundation.HRESULT> AddError_4; 154 unsafe winmdroot.Foundation.HRESULT AddError(winmdroot.Foundation.PCWSTR pszPropName, winmdroot.System.Com.EXCEPINFO* pExcepInfo);
_generated\128\Windows.Win32.IExpandCollapseProvider.g.cs (28)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IExpandCollapseProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IExpandCollapseProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT Expand(IExpandCollapseProvider* pThis) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 84 ((delegate *unmanaged [Stdcall]<IExpandCollapseProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IExpandCollapseProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 90 private static winmdroot.Foundation.HRESULT Collapse(IExpandCollapseProvider* pThis) 94 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 103 return (winmdroot.Foundation.HRESULT)ex.HResult; 114 ((delegate *unmanaged [Stdcall]<IExpandCollapseProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IExpandCollapseProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 119 internal unsafe winmdroot.Foundation.HRESULT get_ExpandCollapseState(out winmdroot.UI.Accessibility.ExpandCollapseState pRetVal) 123 winmdroot.Foundation.HRESULT __result = this.get_ExpandCollapseState(pRetValLocal); 131 private static winmdroot.Foundation.HRESULT get_ExpandCollapseState(IExpandCollapseProvider* pThis, winmdroot.UI.Accessibility.ExpandCollapseState* pRetVal) 135 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 144 return (winmdroot.Foundation.HRESULT)ex.HResult; 152 public unsafe winmdroot.Foundation.HRESULT get_ExpandCollapseState(winmdroot.UI.Accessibility.ExpandCollapseState* pRetVal) 154 return ((delegate *unmanaged [Stdcall]<IExpandCollapseProvider*,winmdroot.UI.Accessibility.ExpandCollapseState* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IExpandCollapseProvider*)Unsafe.AsPointer(ref this), pRetVal); 157 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 163 var hr = this.QueryInterface(&guid, &pv); 180 internal delegate *unmanaged [Stdcall]<IExpandCollapseProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 186 internal delegate *unmanaged [Stdcall]<IExpandCollapseProvider*,winmdroot.Foundation.HRESULT> Expand_4; 188 internal delegate *unmanaged [Stdcall]<IExpandCollapseProvider*,winmdroot.Foundation.HRESULT> Collapse_5; 190 internal delegate *unmanaged [Stdcall]<IExpandCollapseProvider*,winmdroot.UI.Accessibility.ExpandCollapseState* ,winmdroot.Foundation.HRESULT> get_ExpandCollapseState_6; 219winmdroot.Foundation.HRESULT Expand(); 222winmdroot.Foundation.HRESULT Collapse(); 225 unsafe winmdroot.Foundation.HRESULT get_ExpandCollapseState(winmdroot.UI.Accessibility.ExpandCollapseState* pRetVal);
_generated\129\Windows.Win32.IFileDialog.g.cs (158)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IFileDialog*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IFileDialog*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT Show(IFileDialog* pThis, [Optional] winmdroot.Foundation.HWND hwndOwner) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 77 public winmdroot.Foundation.HRESULT Show([Optional] winmdroot.Foundation.HWND hwndOwner) 79 return ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFileDialog*)Unsafe.AsPointer(ref this), hwndOwner); 94 private static winmdroot.Foundation.HRESULT SetFileTypes(IFileDialog* pThis, uint cFileTypes, winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* rgFilterSpec) 98 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 return (winmdroot.Foundation.HRESULT)ex.HResult; 130 ((delegate *unmanaged [Stdcall]<IFileDialog*,uint ,winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IFileDialog*)Unsafe.AsPointer(ref this), cFileTypes, rgFilterSpec).ThrowOnFailure(); 136 private static winmdroot.Foundation.HRESULT SetFileTypeIndex(IFileDialog* pThis, uint iFileType) 140 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return (winmdroot.Foundation.HRESULT)ex.HResult; 164 ((delegate *unmanaged [Stdcall]<IFileDialog*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IFileDialog*)Unsafe.AsPointer(ref this), iFileType).ThrowOnFailure(); 180 private static winmdroot.Foundation.HRESULT GetFileTypeIndex(IFileDialog* pThis, uint* piFileType) 184 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 193 return (winmdroot.Foundation.HRESULT)ex.HResult; 208 ((delegate *unmanaged [Stdcall]<IFileDialog*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IFileDialog*)Unsafe.AsPointer(ref this), piFileType).ThrowOnFailure(); 224 private static winmdroot.Foundation.HRESULT Advise(IFileDialog* pThis, winmdroot.UI.Shell.IFileDialogEvents* pfde, uint* pdwCookie) 228 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 237 return (winmdroot.Foundation.HRESULT)ex.HResult; 258 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IFileDialogEvents* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IFileDialog*)Unsafe.AsPointer(ref this), pfde, pdwCookie).ThrowOnFailure(); 264 private static winmdroot.Foundation.HRESULT Unadvise(IFileDialog* pThis, uint dwCookie) 268 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 277 return (winmdroot.Foundation.HRESULT)ex.HResult; 294 ((delegate *unmanaged [Stdcall]<IFileDialog*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IFileDialog*)Unsafe.AsPointer(ref this), dwCookie).ThrowOnFailure(); 300 private static winmdroot.Foundation.HRESULT SetOptions(IFileDialog* pThis, winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS fos) 304 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 313 return (winmdroot.Foundation.HRESULT)ex.HResult; 328 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IFileDialog*)Unsafe.AsPointer(ref this), fos).ThrowOnFailure(); 344 private static winmdroot.Foundation.HRESULT GetOptions(IFileDialog* pThis, winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* pfos) 348 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 357 return (winmdroot.Foundation.HRESULT)ex.HResult; 374 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IFileDialog*)Unsafe.AsPointer(ref this), pfos).ThrowOnFailure(); 380 private static winmdroot.Foundation.HRESULT SetDefaultFolder(IFileDialog* pThis, winmdroot.UI.Shell.IShellItem* psi) 384 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 393 return (winmdroot.Foundation.HRESULT)ex.HResult; 410 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IFileDialog*)Unsafe.AsPointer(ref this), psi).ThrowOnFailure(); 416 private static winmdroot.Foundation.HRESULT SetFolder(IFileDialog* pThis, winmdroot.UI.Shell.IShellItem* psi) 420 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 429 return (winmdroot.Foundation.HRESULT)ex.HResult; 447 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IFileDialog*)Unsafe.AsPointer(ref this), psi).ThrowOnFailure(); 453 private static winmdroot.Foundation.HRESULT GetFolder(IFileDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 457 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 466 return (winmdroot.Foundation.HRESULT)ex.HResult; 481 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IFileDialog*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 487 private static winmdroot.Foundation.HRESULT GetCurrentSelection(IFileDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 491 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 500 return (winmdroot.Foundation.HRESULT)ex.HResult; 515 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IFileDialog*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 531 private static winmdroot.Foundation.HRESULT SetFileName(IFileDialog* pThis, winmdroot.Foundation.PCWSTR pszName) 535 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 544 return (winmdroot.Foundation.HRESULT)ex.HResult; 561 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IFileDialog*)Unsafe.AsPointer(ref this), pszName).ThrowOnFailure(); 577 private static winmdroot.Foundation.HRESULT GetFileName(IFileDialog* pThis, winmdroot.Foundation.PWSTR* pszName) 581 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 590 return (winmdroot.Foundation.HRESULT)ex.HResult; 608 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IFileDialog*)Unsafe.AsPointer(ref this), pszName).ThrowOnFailure(); 624 private static winmdroot.Foundation.HRESULT SetTitle(IFileDialog* pThis, winmdroot.Foundation.PCWSTR pszTitle) 628 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 637 return (winmdroot.Foundation.HRESULT)ex.HResult; 654 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IFileDialog*)Unsafe.AsPointer(ref this), pszTitle).ThrowOnFailure(); 670 private static winmdroot.Foundation.HRESULT SetOkButtonLabel(IFileDialog* pThis, winmdroot.Foundation.PCWSTR pszText) 674 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 683 return (winmdroot.Foundation.HRESULT)ex.HResult; 700 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IFileDialog*)Unsafe.AsPointer(ref this), pszText).ThrowOnFailure(); 716 private static winmdroot.Foundation.HRESULT SetFileNameLabel(IFileDialog* pThis, winmdroot.Foundation.PCWSTR pszLabel) 720 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 729 return (winmdroot.Foundation.HRESULT)ex.HResult; 746 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IFileDialog*)Unsafe.AsPointer(ref this), pszLabel).ThrowOnFailure(); 752 private static winmdroot.Foundation.HRESULT GetResult(IFileDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 756 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 765 return (winmdroot.Foundation.HRESULT)ex.HResult; 782 public unsafe winmdroot.Foundation.HRESULT GetResult(winmdroot.UI.Shell.IShellItem** ppsi) 784 return ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IFileDialog*)Unsafe.AsPointer(ref this), ppsi); 790 private static winmdroot.Foundation.HRESULT AddPlace(IFileDialog* pThis, winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDAP fdap) 794 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 803 return (winmdroot.Foundation.HRESULT)ex.HResult; 822 ((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(); 838 private static winmdroot.Foundation.HRESULT SetDefaultExtension(IFileDialog* pThis, winmdroot.Foundation.PCWSTR pszDefaultExtension) 842 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 851 return (winmdroot.Foundation.HRESULT)ex.HResult; 866 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IFileDialog*)Unsafe.AsPointer(ref this), pszDefaultExtension).ThrowOnFailure(); 872 private static winmdroot.Foundation.HRESULT Close(IFileDialog* pThis, winmdroot.Foundation.HRESULT hr) 876 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 885 return (winmdroot.Foundation.HRESULT)ex.HResult; 901 public void Close(winmdroot.Foundation.HRESULT hr) 903 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IFileDialog*)Unsafe.AsPointer(ref this), hr).ThrowOnFailure(); 919 private static winmdroot.Foundation.HRESULT SetClientGuid(IFileDialog* pThis, global::System.Guid* guid) 923 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 932 return (winmdroot.Foundation.HRESULT)ex.HResult; 951 ((delegate *unmanaged [Stdcall]<IFileDialog*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IFileDialog*)Unsafe.AsPointer(ref this), guid).ThrowOnFailure(); 957 private static winmdroot.Foundation.HRESULT ClearClientData(IFileDialog* pThis) 961 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 970 return (winmdroot.Foundation.HRESULT)ex.HResult; 981 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IFileDialog*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 987 private static winmdroot.Foundation.HRESULT SetFilter(IFileDialog* pThis, winmdroot.UI.Shell.IShellItemFilter* pFilter) 991 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1000 return (winmdroot.Foundation.HRESULT)ex.HResult; 1018 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItemFilter* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IFileDialog*)Unsafe.AsPointer(ref this), pFilter).ThrowOnFailure(); 1021 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 1027 var hr = this.QueryInterface(&guid, &pv); 1044 internal delegate *unmanaged [Stdcall]<IFileDialog*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 1050 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT> Show_4; 1052 internal delegate *unmanaged [Stdcall]<IFileDialog*,uint ,winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* ,winmdroot.Foundation.HRESULT> SetFileTypes_5; 1054 internal delegate *unmanaged [Stdcall]<IFileDialog*,uint ,winmdroot.Foundation.HRESULT> SetFileTypeIndex_6; 1056 internal delegate *unmanaged [Stdcall]<IFileDialog*,uint* ,winmdroot.Foundation.HRESULT> GetFileTypeIndex_7; 1058 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IFileDialogEvents* ,uint* ,winmdroot.Foundation.HRESULT> Advise_8; 1060 internal delegate *unmanaged [Stdcall]<IFileDialog*,uint ,winmdroot.Foundation.HRESULT> Unadvise_9; 1062 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS ,winmdroot.Foundation.HRESULT> SetOptions_10; 1064 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* ,winmdroot.Foundation.HRESULT> GetOptions_11; 1066 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> SetDefaultFolder_12; 1068 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> SetFolder_13; 1070 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetFolder_14; 1072 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetCurrentSelection_15; 1074 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetFileName_16; 1076 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT> GetFileName_17; 1078 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetTitle_18; 1080 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetOkButtonLabel_19; 1082 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetFileNameLabel_20; 1084 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetResult_21; 1086 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.FDAP ,winmdroot.Foundation.HRESULT> AddPlace_22; 1088 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetDefaultExtension_23; 1090 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.HRESULT> Close_24; 1092 internal delegate *unmanaged [Stdcall]<IFileDialog*,global::System.Guid* ,winmdroot.Foundation.HRESULT> SetClientGuid_25; 1094 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.HRESULT> ClearClientData_26; 1096 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItemFilter* ,winmdroot.Foundation.HRESULT> SetFilter_27; 1146 new winmdroot.Foundation.HRESULT Show([Optional] winmdroot.Foundation.HWND hwndOwner); 1149 unsafe winmdroot.Foundation.HRESULT SetFileTypes(uint cFileTypes, winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* rgFilterSpec); 1152winmdroot.Foundation.HRESULT SetFileTypeIndex(uint iFileType); 1155 unsafe winmdroot.Foundation.HRESULT GetFileTypeIndex(uint* piFileType); 1158 unsafe winmdroot.Foundation.HRESULT Advise(winmdroot.UI.Shell.IFileDialogEvents* pfde, uint* pdwCookie); 1161winmdroot.Foundation.HRESULT Unadvise(uint dwCookie); 1164winmdroot.Foundation.HRESULT SetOptions(winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS fos); 1167 unsafe winmdroot.Foundation.HRESULT GetOptions(winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* pfos); 1170 unsafe winmdroot.Foundation.HRESULT SetDefaultFolder(winmdroot.UI.Shell.IShellItem* psi); 1173 unsafe winmdroot.Foundation.HRESULT SetFolder(winmdroot.UI.Shell.IShellItem* psi); 1176 unsafe winmdroot.Foundation.HRESULT GetFolder(winmdroot.UI.Shell.IShellItem** ppsi); 1179 unsafe winmdroot.Foundation.HRESULT GetCurrentSelection(winmdroot.UI.Shell.IShellItem** ppsi); 1182winmdroot.Foundation.HRESULT SetFileName(winmdroot.Foundation.PCWSTR pszName); 1185 unsafe winmdroot.Foundation.HRESULT GetFileName(winmdroot.Foundation.PWSTR* pszName); 1188winmdroot.Foundation.HRESULT SetTitle(winmdroot.Foundation.PCWSTR pszTitle); 1191winmdroot.Foundation.HRESULT SetOkButtonLabel(winmdroot.Foundation.PCWSTR pszText); 1194winmdroot.Foundation.HRESULT SetFileNameLabel(winmdroot.Foundation.PCWSTR pszLabel); 1197 unsafe winmdroot.Foundation.HRESULT GetResult(winmdroot.UI.Shell.IShellItem** ppsi); 1200 unsafe winmdroot.Foundation.HRESULT AddPlace(winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDAP fdap); 1203winmdroot.Foundation.HRESULT SetDefaultExtension(winmdroot.Foundation.PCWSTR pszDefaultExtension); 1206winmdroot.Foundation.HRESULT Close(winmdroot.Foundation.HRESULT hr); 1209 unsafe winmdroot.Foundation.HRESULT SetClientGuid(global::System.Guid* guid); 1212winmdroot.Foundation.HRESULT ClearClientData(); 1215 unsafe winmdroot.Foundation.HRESULT SetFilter(winmdroot.UI.Shell.IShellItemFilter* pFilter);
_generated\130\Windows.Win32.IFileDialogCustomize.g.cs (169)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT EnableOpenDropDown(IFileDialogCustomize* pThis, uint dwIDCtl) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 91 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl).ThrowOnFailure(); 107 private static winmdroot.Foundation.HRESULT AddMenu(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel) 111 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 120 return (winmdroot.Foundation.HRESULT)ex.HResult; 142 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pszLabel).ThrowOnFailure(); 158 private static winmdroot.Foundation.HRESULT AddPushButton(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel) 162 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 171 return (winmdroot.Foundation.HRESULT)ex.HResult; 190 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pszLabel).ThrowOnFailure(); 196 private static winmdroot.Foundation.HRESULT AddComboBox(IFileDialogCustomize* pThis, uint dwIDCtl) 200 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 224 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT AddRadioButtonList(IFileDialogCustomize* pThis, uint dwIDCtl) 234 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 243 return (winmdroot.Foundation.HRESULT)ex.HResult; 258 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl).ThrowOnFailure(); 274 private static winmdroot.Foundation.HRESULT AddCheckButton(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel, winmdroot.Foundation.BOOL bChecked) 278 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 287 return (winmdroot.Foundation.HRESULT)ex.HResult; 310 ((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(); 326 private static winmdroot.Foundation.HRESULT AddEditBox(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.PCWSTR pszText) 330 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 339 return (winmdroot.Foundation.HRESULT)ex.HResult; 361 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pszText).ThrowOnFailure(); 367 private static winmdroot.Foundation.HRESULT AddSeparator(IFileDialogCustomize* pThis, uint dwIDCtl) 371 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 380 return (winmdroot.Foundation.HRESULT)ex.HResult; 395 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl).ThrowOnFailure(); 411 private static winmdroot.Foundation.HRESULT AddText(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.PCWSTR pszText) 415 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 424 return (winmdroot.Foundation.HRESULT)ex.HResult; 443 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pszText).ThrowOnFailure(); 459 private static winmdroot.Foundation.HRESULT SetControlLabel(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel) 463 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 472 return (winmdroot.Foundation.HRESULT)ex.HResult; 491 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pszLabel).ThrowOnFailure(); 507 private static winmdroot.Foundation.HRESULT GetControlState(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.UI.Shell.CDCONTROLSTATEF* pdwState) 511 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 520 return (winmdroot.Foundation.HRESULT)ex.HResult; 541 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.UI.Shell.CDCONTROLSTATEF* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pdwState).ThrowOnFailure(); 547 private static winmdroot.Foundation.HRESULT SetControlState(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.UI.Shell.CDCONTROLSTATEF dwState) 551 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 560 return (winmdroot.Foundation.HRESULT)ex.HResult; 579 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.UI.Shell.CDCONTROLSTATEF ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, dwState).ThrowOnFailure(); 595 private static winmdroot.Foundation.HRESULT GetEditBoxText(IFileDialogCustomize* pThis, uint dwIDCtl, ushort** ppszText) 599 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 608 return (winmdroot.Foundation.HRESULT)ex.HResult; 627 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,ushort** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, ppszText).ThrowOnFailure(); 643 private static winmdroot.Foundation.HRESULT SetEditBoxText(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.PCWSTR pszText) 647 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 656 return (winmdroot.Foundation.HRESULT)ex.HResult; 677 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pszText).ThrowOnFailure(); 693 private static winmdroot.Foundation.HRESULT GetCheckButtonState(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.BOOL* pbChecked) 697 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 706 return (winmdroot.Foundation.HRESULT)ex.HResult; 727 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pbChecked).ThrowOnFailure(); 733 private static winmdroot.Foundation.HRESULT SetCheckButtonState(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.BOOL bChecked) 737 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 746 return (winmdroot.Foundation.HRESULT)ex.HResult; 767 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, bChecked).ThrowOnFailure(); 783 private static winmdroot.Foundation.HRESULT AddControlItem(IFileDialogCustomize* pThis, uint dwIDCtl, uint dwIDItem, winmdroot.Foundation.PCWSTR pszLabel) 787 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 796 return (winmdroot.Foundation.HRESULT)ex.HResult; 822 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, dwIDItem, pszLabel).ThrowOnFailure(); 828 private static winmdroot.Foundation.HRESULT RemoveControlItem(IFileDialogCustomize* pThis, uint dwIDCtl, uint dwIDItem) 832 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 841 return (winmdroot.Foundation.HRESULT)ex.HResult; 860 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, dwIDItem).ThrowOnFailure(); 866 private static winmdroot.Foundation.HRESULT RemoveAllControlItems(IFileDialogCustomize* pThis, uint dwIDCtl) 870 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 879 return (winmdroot.Foundation.HRESULT)ex.HResult; 896 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl).ThrowOnFailure(); 912 private static winmdroot.Foundation.HRESULT GetControlItemState(IFileDialogCustomize* pThis, uint dwIDCtl, uint dwIDItem, winmdroot.UI.Shell.CDCONTROLSTATEF* pdwState) 916 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 925 return (winmdroot.Foundation.HRESULT)ex.HResult; 951 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.UI.Shell.CDCONTROLSTATEF* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, dwIDItem, pdwState).ThrowOnFailure(); 957 private static winmdroot.Foundation.HRESULT SetControlItemState(IFileDialogCustomize* pThis, uint dwIDCtl, uint dwIDItem, winmdroot.UI.Shell.CDCONTROLSTATEF dwState) 961 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 970 return (winmdroot.Foundation.HRESULT)ex.HResult; 996 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.UI.Shell.CDCONTROLSTATEF ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, dwIDItem, dwState).ThrowOnFailure(); 1012 private static winmdroot.Foundation.HRESULT GetSelectedControlItem(IFileDialogCustomize* pThis, uint dwIDCtl, uint* pdwIDItem) 1016 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1025 return (winmdroot.Foundation.HRESULT)ex.HResult; 1047 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pdwIDItem).ThrowOnFailure(); 1053 private static winmdroot.Foundation.HRESULT SetSelectedControlItem(IFileDialogCustomize* pThis, uint dwIDCtl, uint dwIDItem) 1057 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1066 return (winmdroot.Foundation.HRESULT)ex.HResult; 1087 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, dwIDItem).ThrowOnFailure(); 1103 private static winmdroot.Foundation.HRESULT StartVisualGroup(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel) 1107 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1116 return (winmdroot.Foundation.HRESULT)ex.HResult; 1139 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pszLabel).ThrowOnFailure(); 1145 private static winmdroot.Foundation.HRESULT EndVisualGroup(IFileDialogCustomize* pThis) 1149 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1158 return (winmdroot.Foundation.HRESULT)ex.HResult; 1171 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IFileDialogCustomize*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 1177 private static winmdroot.Foundation.HRESULT MakeProminent(IFileDialogCustomize* pThis, uint dwIDCtl) 1181 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1190 return (winmdroot.Foundation.HRESULT)ex.HResult; 1208 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl).ThrowOnFailure(); 1224 private static winmdroot.Foundation.HRESULT SetControlItemText(IFileDialogCustomize* pThis, uint dwIDCtl, uint dwIDItem, winmdroot.Foundation.PCWSTR pszLabel) 1228 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1237 return (winmdroot.Foundation.HRESULT)ex.HResult; 1263 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, dwIDItem, pszLabel).ThrowOnFailure(); 1266 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 1272 var hr = this.QueryInterface(&guid, &pv); 1289 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 1295 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT> EnableOpenDropDown_4; 1297 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> AddMenu_5; 1299 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> AddPushButton_6; 1301 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT> AddComboBox_7; 1303 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT> AddRadioButtonList_8; 1305 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> AddCheckButton_9; 1307 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> AddEditBox_10; 1309 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT> AddSeparator_11; 1311 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> AddText_12; 1313 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetControlLabel_13; 1315 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.UI.Shell.CDCONTROLSTATEF* ,winmdroot.Foundation.HRESULT> GetControlState_14; 1317 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.UI.Shell.CDCONTROLSTATEF ,winmdroot.Foundation.HRESULT> SetControlState_15; 1319 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,ushort** ,winmdroot.Foundation.HRESULT> GetEditBoxText_16; 1321 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetEditBoxText_17; 1323 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> GetCheckButtonState_18; 1325 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> SetCheckButtonState_19; 1327 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> AddControlItem_20; 1329 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.Foundation.HRESULT> RemoveControlItem_21; 1331 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT> RemoveAllControlItems_22; 1333 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.UI.Shell.CDCONTROLSTATEF* ,winmdroot.Foundation.HRESULT> GetControlItemState_23; 1335 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.UI.Shell.CDCONTROLSTATEF ,winmdroot.Foundation.HRESULT> SetControlItemState_24; 1337 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint* ,winmdroot.Foundation.HRESULT> GetSelectedControlItem_25; 1339 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.Foundation.HRESULT> SetSelectedControlItem_26; 1341 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> StartVisualGroup_27; 1343 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,winmdroot.Foundation.HRESULT> EndVisualGroup_28; 1345 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT> MakeProminent_29; 1347 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetControlItemText_30; 1400winmdroot.Foundation.HRESULT EnableOpenDropDown(uint dwIDCtl); 1403winmdroot.Foundation.HRESULT AddMenu(uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel); 1406winmdroot.Foundation.HRESULT AddPushButton(uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel); 1409winmdroot.Foundation.HRESULT AddComboBox(uint dwIDCtl); 1412winmdroot.Foundation.HRESULT AddRadioButtonList(uint dwIDCtl); 1415winmdroot.Foundation.HRESULT AddCheckButton(uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel, winmdroot.Foundation.BOOL bChecked); 1418winmdroot.Foundation.HRESULT AddEditBox(uint dwIDCtl, winmdroot.Foundation.PCWSTR pszText); 1421winmdroot.Foundation.HRESULT AddSeparator(uint dwIDCtl); 1424winmdroot.Foundation.HRESULT AddText(uint dwIDCtl, winmdroot.Foundation.PCWSTR pszText); 1427winmdroot.Foundation.HRESULT SetControlLabel(uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel); 1430 unsafe winmdroot.Foundation.HRESULT GetControlState(uint dwIDCtl, winmdroot.UI.Shell.CDCONTROLSTATEF* pdwState); 1433winmdroot.Foundation.HRESULT SetControlState(uint dwIDCtl, winmdroot.UI.Shell.CDCONTROLSTATEF dwState); 1436 unsafe winmdroot.Foundation.HRESULT GetEditBoxText(uint dwIDCtl, ushort** ppszText); 1439winmdroot.Foundation.HRESULT SetEditBoxText(uint dwIDCtl, winmdroot.Foundation.PCWSTR pszText); 1442 unsafe winmdroot.Foundation.HRESULT GetCheckButtonState(uint dwIDCtl, winmdroot.Foundation.BOOL* pbChecked); 1445winmdroot.Foundation.HRESULT SetCheckButtonState(uint dwIDCtl, winmdroot.Foundation.BOOL bChecked); 1448winmdroot.Foundation.HRESULT AddControlItem(uint dwIDCtl, uint dwIDItem, winmdroot.Foundation.PCWSTR pszLabel); 1451winmdroot.Foundation.HRESULT RemoveControlItem(uint dwIDCtl, uint dwIDItem); 1454winmdroot.Foundation.HRESULT RemoveAllControlItems(uint dwIDCtl); 1457 unsafe winmdroot.Foundation.HRESULT GetControlItemState(uint dwIDCtl, uint dwIDItem, winmdroot.UI.Shell.CDCONTROLSTATEF* pdwState); 1460winmdroot.Foundation.HRESULT SetControlItemState(uint dwIDCtl, uint dwIDItem, winmdroot.UI.Shell.CDCONTROLSTATEF dwState); 1463 unsafe winmdroot.Foundation.HRESULT GetSelectedControlItem(uint dwIDCtl, uint* pdwIDItem); 1466winmdroot.Foundation.HRESULT SetSelectedControlItem(uint dwIDCtl, uint dwIDItem); 1469winmdroot.Foundation.HRESULT StartVisualGroup(uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel); 1472winmdroot.Foundation.HRESULT EndVisualGroup(); 1475winmdroot.Foundation.HRESULT MakeProminent(uint dwIDCtl); 1478winmdroot.Foundation.HRESULT SetControlItemText(uint dwIDCtl, uint dwIDItem, winmdroot.Foundation.PCWSTR pszLabel);
_generated\131\Windows.Win32.IFileDialogEvents.g.cs (49)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IFileDialogEvents*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IFileDialogEvents*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT OnFileOk(IFileDialogEvents* pThis, winmdroot.UI.Shell.IFileDialog* pfd) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 91 ((delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFileDialogEvents*)Unsafe.AsPointer(ref this), pfd).ThrowOnFailure(); 97 private static winmdroot.Foundation.HRESULT OnFolderChanging(IFileDialogEvents* pThis, winmdroot.UI.Shell.IFileDialog* pfd, winmdroot.UI.Shell.IShellItem* psiFolder) 101 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 110 return (winmdroot.Foundation.HRESULT)ex.HResult; 132 ((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(); 138 private static winmdroot.Foundation.HRESULT OnFolderChange(IFileDialogEvents* pThis, winmdroot.UI.Shell.IFileDialog* pfd) 142 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 151 return (winmdroot.Foundation.HRESULT)ex.HResult; 166 ((delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IFileDialogEvents*)Unsafe.AsPointer(ref this), pfd).ThrowOnFailure(); 172 private static winmdroot.Foundation.HRESULT OnSelectionChange(IFileDialogEvents* pThis, winmdroot.UI.Shell.IFileDialog* pfd) 176 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 185 return (winmdroot.Foundation.HRESULT)ex.HResult; 202 ((delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IFileDialogEvents*)Unsafe.AsPointer(ref this), pfd).ThrowOnFailure(); 218 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) 222 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 231 return (winmdroot.Foundation.HRESULT)ex.HResult; 257 ((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(); 263 private static winmdroot.Foundation.HRESULT OnTypeChange(IFileDialogEvents* pThis, winmdroot.UI.Shell.IFileDialog* pfd) 267 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 276 return (winmdroot.Foundation.HRESULT)ex.HResult; 291 ((delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IFileDialogEvents*)Unsafe.AsPointer(ref this), pfd).ThrowOnFailure(); 307 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) 311 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 320 return (winmdroot.Foundation.HRESULT)ex.HResult; 343 ((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(); 346 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 352 var hr = this.QueryInterface(&guid, &pv); 369 internal delegate *unmanaged [Stdcall]<IFileDialogEvents*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 375 internal delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.Foundation.HRESULT> OnFileOk_4; 377 internal delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> OnFolderChanging_5; 379 internal delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.Foundation.HRESULT> OnFolderChange_6; 381 internal delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.Foundation.HRESULT> OnSelectionChange_7; 383 internal delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.FDE_SHAREVIOLATION_RESPONSE* ,winmdroot.Foundation.HRESULT> OnShareViolation_8; 385 internal delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.Foundation.HRESULT> OnTypeChange_9; 387 internal delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.FDE_OVERWRITE_RESPONSE* ,winmdroot.Foundation.HRESULT> OnOverwrite_10; 420 unsafe winmdroot.Foundation.HRESULT OnFileOk(winmdroot.UI.Shell.IFileDialog* pfd); 423 unsafe winmdroot.Foundation.HRESULT OnFolderChanging(winmdroot.UI.Shell.IFileDialog* pfd, winmdroot.UI.Shell.IShellItem* psiFolder); 426 unsafe winmdroot.Foundation.HRESULT OnFolderChange(winmdroot.UI.Shell.IFileDialog* pfd); 429 unsafe winmdroot.Foundation.HRESULT OnSelectionChange(winmdroot.UI.Shell.IFileDialog* pfd); 432 unsafe winmdroot.Foundation.HRESULT OnShareViolation(winmdroot.UI.Shell.IFileDialog* pfd, winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDE_SHAREVIOLATION_RESPONSE* pResponse); 435 unsafe winmdroot.Foundation.HRESULT OnTypeChange(winmdroot.UI.Shell.IFileDialog* pfd); 438 unsafe winmdroot.Foundation.HRESULT OnOverwrite(winmdroot.UI.Shell.IFileDialog* pfd, winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDE_OVERWRITE_RESPONSE* pResponse);
_generated\132\Windows.Win32.IFileOpenDialog.g.cs (170)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IFileOpenDialog*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT Show(IFileOpenDialog* pThis, [Optional] winmdroot.Foundation.HWND hwndOwner) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 77 public winmdroot.Foundation.HRESULT Show([Optional] winmdroot.Foundation.HWND hwndOwner) 79 return ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFileOpenDialog*)Unsafe.AsPointer(ref this), hwndOwner); 94 private static winmdroot.Foundation.HRESULT SetFileTypes(IFileOpenDialog* pThis, uint cFileTypes, winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* rgFilterSpec) 98 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 return (winmdroot.Foundation.HRESULT)ex.HResult; 113 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,uint ,winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IFileOpenDialog*)Unsafe.AsPointer(ref this), cFileTypes, rgFilterSpec).ThrowOnFailure(); 119 private static winmdroot.Foundation.HRESULT SetFileTypeIndex(IFileOpenDialog* pThis, uint iFileType) 123 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 132 return (winmdroot.Foundation.HRESULT)ex.HResult; 138 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IFileOpenDialog*)Unsafe.AsPointer(ref this), iFileType).ThrowOnFailure(); 154 private static winmdroot.Foundation.HRESULT GetFileTypeIndex(IFileOpenDialog* pThis, uint* piFileType) 158 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 167 return (winmdroot.Foundation.HRESULT)ex.HResult; 173 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IFileOpenDialog*)Unsafe.AsPointer(ref this), piFileType).ThrowOnFailure(); 189 private static winmdroot.Foundation.HRESULT Advise(IFileOpenDialog* pThis, winmdroot.UI.Shell.IFileDialogEvents* pfde, uint* pdwCookie) 193 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 202 return (winmdroot.Foundation.HRESULT)ex.HResult; 208 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IFileDialogEvents* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pfde, pdwCookie).ThrowOnFailure(); 214 private static winmdroot.Foundation.HRESULT Unadvise(IFileOpenDialog* pThis, uint dwCookie) 218 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 227 return (winmdroot.Foundation.HRESULT)ex.HResult; 233 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IFileOpenDialog*)Unsafe.AsPointer(ref this), dwCookie).ThrowOnFailure(); 239 private static winmdroot.Foundation.HRESULT SetOptions(IFileOpenDialog* pThis, winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS fos) 243 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 252 return (winmdroot.Foundation.HRESULT)ex.HResult; 258 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IFileOpenDialog*)Unsafe.AsPointer(ref this), fos).ThrowOnFailure(); 274 private static winmdroot.Foundation.HRESULT GetOptions(IFileOpenDialog* pThis, winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* pfos) 278 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 287 return (winmdroot.Foundation.HRESULT)ex.HResult; 293 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pfos).ThrowOnFailure(); 299 private static winmdroot.Foundation.HRESULT SetDefaultFolder(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItem* psi) 303 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 312 return (winmdroot.Foundation.HRESULT)ex.HResult; 318 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IFileOpenDialog*)Unsafe.AsPointer(ref this), psi).ThrowOnFailure(); 324 private static winmdroot.Foundation.HRESULT SetFolder(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItem* psi) 328 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 337 return (winmdroot.Foundation.HRESULT)ex.HResult; 343 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IFileOpenDialog*)Unsafe.AsPointer(ref this), psi).ThrowOnFailure(); 349 private static winmdroot.Foundation.HRESULT GetFolder(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 353 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 362 return (winmdroot.Foundation.HRESULT)ex.HResult; 368 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IFileOpenDialog*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 374 private static winmdroot.Foundation.HRESULT GetCurrentSelection(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 378 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 387 return (winmdroot.Foundation.HRESULT)ex.HResult; 393 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IFileOpenDialog*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 409 private static winmdroot.Foundation.HRESULT SetFileName(IFileOpenDialog* pThis, winmdroot.Foundation.PCWSTR pszName) 413 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 422 return (winmdroot.Foundation.HRESULT)ex.HResult; 428 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pszName).ThrowOnFailure(); 444 private static winmdroot.Foundation.HRESULT GetFileName(IFileOpenDialog* pThis, winmdroot.Foundation.PWSTR* pszName) 448 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 457 return (winmdroot.Foundation.HRESULT)ex.HResult; 463 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pszName).ThrowOnFailure(); 479 private static winmdroot.Foundation.HRESULT SetTitle(IFileOpenDialog* pThis, winmdroot.Foundation.PCWSTR pszTitle) 483 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 492 return (winmdroot.Foundation.HRESULT)ex.HResult; 498 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pszTitle).ThrowOnFailure(); 514 private static winmdroot.Foundation.HRESULT SetOkButtonLabel(IFileOpenDialog* pThis, winmdroot.Foundation.PCWSTR pszText) 518 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 527 return (winmdroot.Foundation.HRESULT)ex.HResult; 533 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pszText).ThrowOnFailure(); 549 private static winmdroot.Foundation.HRESULT SetFileNameLabel(IFileOpenDialog* pThis, winmdroot.Foundation.PCWSTR pszLabel) 553 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 562 return (winmdroot.Foundation.HRESULT)ex.HResult; 568 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pszLabel).ThrowOnFailure(); 574 private static winmdroot.Foundation.HRESULT GetResult(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 578 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 587 return (winmdroot.Foundation.HRESULT)ex.HResult; 593 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IFileOpenDialog*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 599 private static winmdroot.Foundation.HRESULT AddPlace(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDAP fdap) 603 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 612 return (winmdroot.Foundation.HRESULT)ex.HResult; 618 ((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(); 634 private static winmdroot.Foundation.HRESULT SetDefaultExtension(IFileOpenDialog* pThis, winmdroot.Foundation.PCWSTR pszDefaultExtension) 638 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 647 return (winmdroot.Foundation.HRESULT)ex.HResult; 653 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pszDefaultExtension).ThrowOnFailure(); 659 private static winmdroot.Foundation.HRESULT Close(IFileOpenDialog* pThis, winmdroot.Foundation.HRESULT hr) 663 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 672 return (winmdroot.Foundation.HRESULT)ex.HResult; 676 public void Close(winmdroot.Foundation.HRESULT hr) 678 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IFileOpenDialog*)Unsafe.AsPointer(ref this), hr).ThrowOnFailure(); 694 private static winmdroot.Foundation.HRESULT SetClientGuid(IFileOpenDialog* pThis, global::System.Guid* guid) 698 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 707 return (winmdroot.Foundation.HRESULT)ex.HResult; 713 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IFileOpenDialog*)Unsafe.AsPointer(ref this), guid).ThrowOnFailure(); 719 private static winmdroot.Foundation.HRESULT ClearClientData(IFileOpenDialog* pThis) 723 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 732 return (winmdroot.Foundation.HRESULT)ex.HResult; 738 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IFileOpenDialog*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 744 private static winmdroot.Foundation.HRESULT SetFilter(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItemFilter* pFilter) 748 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 757 return (winmdroot.Foundation.HRESULT)ex.HResult; 763 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItemFilter* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pFilter).ThrowOnFailure(); 769 private static winmdroot.Foundation.HRESULT GetResults(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItemArray** ppenum) 773 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 782 return (winmdroot.Foundation.HRESULT)ex.HResult; 799 public unsafe winmdroot.Foundation.HRESULT GetResults(winmdroot.UI.Shell.IShellItemArray** ppenum) 801 return ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItemArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IFileOpenDialog*)Unsafe.AsPointer(ref this), ppenum); 807 private static winmdroot.Foundation.HRESULT GetSelectedItems(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItemArray** ppsai) 811 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 820 return (winmdroot.Foundation.HRESULT)ex.HResult; 835 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItemArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IFileOpenDialog*)Unsafe.AsPointer(ref this), ppsai).ThrowOnFailure(); 838 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 844 var hr = this.QueryInterface(&guid, &pv); 861 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 867 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT> Show_4; 869 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,uint ,winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* ,winmdroot.Foundation.HRESULT> SetFileTypes_5; 871 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,uint ,winmdroot.Foundation.HRESULT> SetFileTypeIndex_6; 873 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,uint* ,winmdroot.Foundation.HRESULT> GetFileTypeIndex_7; 875 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IFileDialogEvents* ,uint* ,winmdroot.Foundation.HRESULT> Advise_8; 877 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,uint ,winmdroot.Foundation.HRESULT> Unadvise_9; 879 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS ,winmdroot.Foundation.HRESULT> SetOptions_10; 881 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* ,winmdroot.Foundation.HRESULT> GetOptions_11; 883 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> SetDefaultFolder_12; 885 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> SetFolder_13; 887 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetFolder_14; 889 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetCurrentSelection_15; 891 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetFileName_16; 893 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT> GetFileName_17; 895 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetTitle_18; 897 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetOkButtonLabel_19; 899 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetFileNameLabel_20; 901 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetResult_21; 903 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.FDAP ,winmdroot.Foundation.HRESULT> AddPlace_22; 905 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetDefaultExtension_23; 907 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.HRESULT> Close_24; 909 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,global::System.Guid* ,winmdroot.Foundation.HRESULT> SetClientGuid_25; 911 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.HRESULT> ClearClientData_26; 913 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItemFilter* ,winmdroot.Foundation.HRESULT> SetFilter_27; 915 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItemArray** ,winmdroot.Foundation.HRESULT> GetResults_28; 917 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItemArray** ,winmdroot.Foundation.HRESULT> GetSelectedItems_29; 969 new winmdroot.Foundation.HRESULT Show([Optional] winmdroot.Foundation.HWND hwndOwner); 972 unsafe new winmdroot.Foundation.HRESULT SetFileTypes(uint cFileTypes, winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* rgFilterSpec); 975 new winmdroot.Foundation.HRESULT SetFileTypeIndex(uint iFileType); 978 unsafe new winmdroot.Foundation.HRESULT GetFileTypeIndex(uint* piFileType); 981 unsafe new winmdroot.Foundation.HRESULT Advise(winmdroot.UI.Shell.IFileDialogEvents* pfde, uint* pdwCookie); 984 new winmdroot.Foundation.HRESULT Unadvise(uint dwCookie); 987 new winmdroot.Foundation.HRESULT SetOptions(winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS fos); 990 unsafe new winmdroot.Foundation.HRESULT GetOptions(winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* pfos); 993 unsafe new winmdroot.Foundation.HRESULT SetDefaultFolder(winmdroot.UI.Shell.IShellItem* psi); 996 unsafe new winmdroot.Foundation.HRESULT SetFolder(winmdroot.UI.Shell.IShellItem* psi); 999 unsafe new winmdroot.Foundation.HRESULT GetFolder(winmdroot.UI.Shell.IShellItem** ppsi); 1002 unsafe new winmdroot.Foundation.HRESULT GetCurrentSelection(winmdroot.UI.Shell.IShellItem** ppsi); 1005 new winmdroot.Foundation.HRESULT SetFileName(winmdroot.Foundation.PCWSTR pszName); 1008 unsafe new winmdroot.Foundation.HRESULT GetFileName(winmdroot.Foundation.PWSTR* pszName); 1011 new winmdroot.Foundation.HRESULT SetTitle(winmdroot.Foundation.PCWSTR pszTitle); 1014 new winmdroot.Foundation.HRESULT SetOkButtonLabel(winmdroot.Foundation.PCWSTR pszText); 1017 new winmdroot.Foundation.HRESULT SetFileNameLabel(winmdroot.Foundation.PCWSTR pszLabel); 1020 unsafe new winmdroot.Foundation.HRESULT GetResult(winmdroot.UI.Shell.IShellItem** ppsi); 1023 unsafe new winmdroot.Foundation.HRESULT AddPlace(winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDAP fdap); 1026 new winmdroot.Foundation.HRESULT SetDefaultExtension(winmdroot.Foundation.PCWSTR pszDefaultExtension); 1029 new winmdroot.Foundation.HRESULT Close(winmdroot.Foundation.HRESULT hr); 1032 unsafe new winmdroot.Foundation.HRESULT SetClientGuid(global::System.Guid* guid); 1035 new winmdroot.Foundation.HRESULT ClearClientData(); 1038 unsafe new winmdroot.Foundation.HRESULT SetFilter(winmdroot.UI.Shell.IShellItemFilter* pFilter); 1041 unsafe winmdroot.Foundation.HRESULT GetResults(winmdroot.UI.Shell.IShellItemArray** ppenum); 1044 unsafe winmdroot.Foundation.HRESULT GetSelectedItems(winmdroot.UI.Shell.IShellItemArray** ppsai);
_generated\133\Windows.Win32.IFileOperationProgressSink.g.cs (141)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT StartOperations(IFileOperationProgressSink* pThis) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 84 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 90 private static winmdroot.Foundation.HRESULT FinishOperations(IFileOperationProgressSink* pThis, winmdroot.Foundation.HRESULT hrResult) 94 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 103 return (winmdroot.Foundation.HRESULT)ex.HResult; 118 public void FinishOperations(winmdroot.Foundation.HRESULT hrResult) 120 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), hrResult).ThrowOnFailure(); 136 private static winmdroot.Foundation.HRESULT PreRenameItem(IFileOperationProgressSink* pThis, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.Foundation.PCWSTR pszNewName) 140 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return (winmdroot.Foundation.HRESULT)ex.HResult; 174 ((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(); 177 /// <inheritdoc cref="PostRenameItem(uint, winmdroot.UI.Shell.IShellItem*, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.HRESULT, winmdroot.UI.Shell.IShellItem*)"/> 179 internal unsafe void PostRenameItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, string pszNewName, winmdroot.Foundation.HRESULT hrRename, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 190 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) 194 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 203 return (winmdroot.Foundation.HRESULT)ex.HResult; 234 public unsafe void PostRenameItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.Foundation.PCWSTR pszNewName, winmdroot.Foundation.HRESULT hrRename, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 236 ((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(); 252 private static winmdroot.Foundation.HRESULT PreMoveItem(IFileOperationProgressSink* pThis, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName) 256 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 265 return (winmdroot.Foundation.HRESULT)ex.HResult; 294 ((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(); 297 /// <inheritdoc cref="PostMoveItem(uint, winmdroot.UI.Shell.IShellItem*, winmdroot.UI.Shell.IShellItem*, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.HRESULT, winmdroot.UI.Shell.IShellItem*)"/> 299 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) 310 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) 314 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 323 return (winmdroot.Foundation.HRESULT)ex.HResult; 358 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) 360 ((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(); 376 private static winmdroot.Foundation.HRESULT PreCopyItem(IFileOperationProgressSink* pThis, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName) 380 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 389 return (winmdroot.Foundation.HRESULT)ex.HResult; 418 ((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(); 421 /// <inheritdoc cref="PostCopyItem(uint, winmdroot.UI.Shell.IShellItem*, winmdroot.UI.Shell.IShellItem*, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.HRESULT, winmdroot.UI.Shell.IShellItem*)"/> 423 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) 434 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) 438 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 447 return (winmdroot.Foundation.HRESULT)ex.HResult; 482 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) 484 ((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(); 490 private static winmdroot.Foundation.HRESULT PreDeleteItem(IFileOperationProgressSink* pThis, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem) 494 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 503 return (winmdroot.Foundation.HRESULT)ex.HResult; 524 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), dwFlags, psiItem).ThrowOnFailure(); 530 private static winmdroot.Foundation.HRESULT PostDeleteItem(IFileOperationProgressSink* pThis, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.Foundation.HRESULT hrDelete, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 534 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 543 return (winmdroot.Foundation.HRESULT)ex.HResult; 570 public unsafe void PostDeleteItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.Foundation.HRESULT hrDelete, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 572 ((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(); 588 private static winmdroot.Foundation.HRESULT PreNewItem(IFileOperationProgressSink* pThis, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName) 592 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 601 return (winmdroot.Foundation.HRESULT)ex.HResult; 626 ((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(); 629 /// <inheritdoc cref="PostNewItem(uint, winmdroot.UI.Shell.IShellItem*, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.PCWSTR, uint, winmdroot.Foundation.HRESULT, winmdroot.UI.Shell.IShellItem*)"/> 631 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) 645 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) 649 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 658 return (winmdroot.Foundation.HRESULT)ex.HResult; 699 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) 701 ((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(); 707 private static winmdroot.Foundation.HRESULT UpdateProgress(IFileOperationProgressSink* pThis, uint iWorkTotal, uint iWorkSoFar) 711 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 720 return (winmdroot.Foundation.HRESULT)ex.HResult; 739 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), iWorkTotal, iWorkSoFar).ThrowOnFailure(); 745 private static winmdroot.Foundation.HRESULT ResetTimer(IFileOperationProgressSink* pThis) 749 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 758 return (winmdroot.Foundation.HRESULT)ex.HResult; 769 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 775 private static winmdroot.Foundation.HRESULT PauseTimer(IFileOperationProgressSink* pThis) 779 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 788 return (winmdroot.Foundation.HRESULT)ex.HResult; 799 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 805 private static winmdroot.Foundation.HRESULT ResumeTimer(IFileOperationProgressSink* pThis) 809 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 818 return (winmdroot.Foundation.HRESULT)ex.HResult; 829 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 832 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 838 var hr = this.QueryInterface(&guid, &pv); 855 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 861 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT> StartOperations_4; 863 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.HRESULT> FinishOperations_5; 865 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> PreRenameItem_6; 867 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; 869 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> PreMoveItem_8; 871 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; 873 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> PreCopyItem_10; 875 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; 877 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> PreDeleteItem_12; 879 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> PostDeleteItem_13; 881 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> PreNewItem_14; 883 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; 885 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,uint ,winmdroot.Foundation.HRESULT> UpdateProgress_16; 887 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT> ResetTimer_17; 889 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT> PauseTimer_18; 891 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT> ResumeTimer_19; 933winmdroot.Foundation.HRESULT StartOperations(); 936winmdroot.Foundation.HRESULT FinishOperations(winmdroot.Foundation.HRESULT hrResult); 939 unsafe winmdroot.Foundation.HRESULT PreRenameItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.Foundation.PCWSTR pszNewName); 942 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); 945 unsafe winmdroot.Foundation.HRESULT PreMoveItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName); 948 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); 951 unsafe winmdroot.Foundation.HRESULT PreCopyItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName); 954 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); 957 unsafe winmdroot.Foundation.HRESULT PreDeleteItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem); 960 unsafe winmdroot.Foundation.HRESULT PostDeleteItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.Foundation.HRESULT hrDelete, winmdroot.UI.Shell.IShellItem* psiNewlyCreated); 963 unsafe winmdroot.Foundation.HRESULT PreNewItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName); 966 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); 969winmdroot.Foundation.HRESULT UpdateProgress(uint iWorkTotal, uint iWorkSoFar); 972winmdroot.Foundation.HRESULT ResetTimer(); 975winmdroot.Foundation.HRESULT PauseTimer(); 978winmdroot.Foundation.HRESULT ResumeTimer();
_generated\134\Windows.Win32.IFileSaveDialog.g.cs (186)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IFileSaveDialog*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT Show(IFileSaveDialog* pThis, [Optional] winmdroot.Foundation.HWND hwndOwner) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 79 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFileSaveDialog*)Unsafe.AsPointer(ref this), hwndOwner).ThrowOnFailure(); 94 private static winmdroot.Foundation.HRESULT SetFileTypes(IFileSaveDialog* pThis, uint cFileTypes, winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* rgFilterSpec) 98 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 return (winmdroot.Foundation.HRESULT)ex.HResult; 113 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,uint ,winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IFileSaveDialog*)Unsafe.AsPointer(ref this), cFileTypes, rgFilterSpec).ThrowOnFailure(); 119 private static winmdroot.Foundation.HRESULT SetFileTypeIndex(IFileSaveDialog* pThis, uint iFileType) 123 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 132 return (winmdroot.Foundation.HRESULT)ex.HResult; 138 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IFileSaveDialog*)Unsafe.AsPointer(ref this), iFileType).ThrowOnFailure(); 154 private static winmdroot.Foundation.HRESULT GetFileTypeIndex(IFileSaveDialog* pThis, uint* piFileType) 158 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 167 return (winmdroot.Foundation.HRESULT)ex.HResult; 173 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IFileSaveDialog*)Unsafe.AsPointer(ref this), piFileType).ThrowOnFailure(); 189 private static winmdroot.Foundation.HRESULT Advise(IFileSaveDialog* pThis, winmdroot.UI.Shell.IFileDialogEvents* pfde, uint* pdwCookie) 193 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 202 return (winmdroot.Foundation.HRESULT)ex.HResult; 208 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IFileDialogEvents* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pfde, pdwCookie).ThrowOnFailure(); 214 private static winmdroot.Foundation.HRESULT Unadvise(IFileSaveDialog* pThis, uint dwCookie) 218 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 227 return (winmdroot.Foundation.HRESULT)ex.HResult; 233 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IFileSaveDialog*)Unsafe.AsPointer(ref this), dwCookie).ThrowOnFailure(); 239 private static winmdroot.Foundation.HRESULT SetOptions(IFileSaveDialog* pThis, winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS fos) 243 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 252 return (winmdroot.Foundation.HRESULT)ex.HResult; 258 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IFileSaveDialog*)Unsafe.AsPointer(ref this), fos).ThrowOnFailure(); 274 private static winmdroot.Foundation.HRESULT GetOptions(IFileSaveDialog* pThis, winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* pfos) 278 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 287 return (winmdroot.Foundation.HRESULT)ex.HResult; 293 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pfos).ThrowOnFailure(); 299 private static winmdroot.Foundation.HRESULT SetDefaultFolder(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItem* psi) 303 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 312 return (winmdroot.Foundation.HRESULT)ex.HResult; 318 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IFileSaveDialog*)Unsafe.AsPointer(ref this), psi).ThrowOnFailure(); 324 private static winmdroot.Foundation.HRESULT SetFolder(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItem* psi) 328 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 337 return (winmdroot.Foundation.HRESULT)ex.HResult; 343 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IFileSaveDialog*)Unsafe.AsPointer(ref this), psi).ThrowOnFailure(); 349 private static winmdroot.Foundation.HRESULT GetFolder(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 353 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 362 return (winmdroot.Foundation.HRESULT)ex.HResult; 368 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IFileSaveDialog*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 374 private static winmdroot.Foundation.HRESULT GetCurrentSelection(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 378 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 387 return (winmdroot.Foundation.HRESULT)ex.HResult; 393 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IFileSaveDialog*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 409 private static winmdroot.Foundation.HRESULT SetFileName(IFileSaveDialog* pThis, winmdroot.Foundation.PCWSTR pszName) 413 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 422 return (winmdroot.Foundation.HRESULT)ex.HResult; 428 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pszName).ThrowOnFailure(); 444 private static winmdroot.Foundation.HRESULT GetFileName(IFileSaveDialog* pThis, winmdroot.Foundation.PWSTR* pszName) 448 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 457 return (winmdroot.Foundation.HRESULT)ex.HResult; 463 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pszName).ThrowOnFailure(); 479 private static winmdroot.Foundation.HRESULT SetTitle(IFileSaveDialog* pThis, winmdroot.Foundation.PCWSTR pszTitle) 483 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 492 return (winmdroot.Foundation.HRESULT)ex.HResult; 498 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pszTitle).ThrowOnFailure(); 514 private static winmdroot.Foundation.HRESULT SetOkButtonLabel(IFileSaveDialog* pThis, winmdroot.Foundation.PCWSTR pszText) 518 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 527 return (winmdroot.Foundation.HRESULT)ex.HResult; 533 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pszText).ThrowOnFailure(); 549 private static winmdroot.Foundation.HRESULT SetFileNameLabel(IFileSaveDialog* pThis, winmdroot.Foundation.PCWSTR pszLabel) 553 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 562 return (winmdroot.Foundation.HRESULT)ex.HResult; 568 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pszLabel).ThrowOnFailure(); 574 private static winmdroot.Foundation.HRESULT GetResult(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 578 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 587 return (winmdroot.Foundation.HRESULT)ex.HResult; 593 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IFileSaveDialog*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 599 private static winmdroot.Foundation.HRESULT AddPlace(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDAP fdap) 603 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 612 return (winmdroot.Foundation.HRESULT)ex.HResult; 618 ((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(); 634 private static winmdroot.Foundation.HRESULT SetDefaultExtension(IFileSaveDialog* pThis, winmdroot.Foundation.PCWSTR pszDefaultExtension) 638 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 647 return (winmdroot.Foundation.HRESULT)ex.HResult; 653 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pszDefaultExtension).ThrowOnFailure(); 659 private static winmdroot.Foundation.HRESULT Close(IFileSaveDialog* pThis, winmdroot.Foundation.HRESULT hr) 663 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 672 return (winmdroot.Foundation.HRESULT)ex.HResult; 676 public void Close(winmdroot.Foundation.HRESULT hr) 678 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IFileSaveDialog*)Unsafe.AsPointer(ref this), hr).ThrowOnFailure(); 694 private static winmdroot.Foundation.HRESULT SetClientGuid(IFileSaveDialog* pThis, global::System.Guid* guid) 698 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 707 return (winmdroot.Foundation.HRESULT)ex.HResult; 713 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IFileSaveDialog*)Unsafe.AsPointer(ref this), guid).ThrowOnFailure(); 719 private static winmdroot.Foundation.HRESULT ClearClientData(IFileSaveDialog* pThis) 723 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 732 return (winmdroot.Foundation.HRESULT)ex.HResult; 738 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IFileSaveDialog*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 744 private static winmdroot.Foundation.HRESULT SetFilter(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItemFilter* pFilter) 748 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 757 return (winmdroot.Foundation.HRESULT)ex.HResult; 763 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItemFilter* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pFilter).ThrowOnFailure(); 769 private static winmdroot.Foundation.HRESULT SetSaveAsItem(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItem* psi) 773 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 782 return (winmdroot.Foundation.HRESULT)ex.HResult; 797 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IFileSaveDialog*)Unsafe.AsPointer(ref this), psi).ThrowOnFailure(); 803 private static winmdroot.Foundation.HRESULT SetProperties(IFileSaveDialog* pThis, winmdroot.UI.Shell.PropertiesSystem.IPropertyStore* pStore) 807 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 816 return (winmdroot.Foundation.HRESULT)ex.HResult; 834 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.PropertiesSystem.IPropertyStore* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pStore).ThrowOnFailure(); 840 private static winmdroot.Foundation.HRESULT SetCollectedProperties(IFileSaveDialog* pThis, winmdroot.UI.Shell.PropertiesSystem.IPropertyDescriptionList* pList, winmdroot.Foundation.BOOL fAppendDefault) 844 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 853 return (winmdroot.Foundation.HRESULT)ex.HResult; 875 ((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(); 881 private static winmdroot.Foundation.HRESULT GetProperties(IFileSaveDialog* pThis, winmdroot.UI.Shell.PropertiesSystem.IPropertyStore** ppStore) 885 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 894 return (winmdroot.Foundation.HRESULT)ex.HResult; 912 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.PropertiesSystem.IPropertyStore** ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IFileSaveDialog*)Unsafe.AsPointer(ref this), ppStore).ThrowOnFailure(); 918 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) 922 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 931 return (winmdroot.Foundation.HRESULT)ex.HResult; 961 ((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(); 964 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 970 var hr = this.QueryInterface(&guid, &pv); 987 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 993 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT> Show_4; 995 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,uint ,winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* ,winmdroot.Foundation.HRESULT> SetFileTypes_5; 997 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,uint ,winmdroot.Foundation.HRESULT> SetFileTypeIndex_6; 999 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,uint* ,winmdroot.Foundation.HRESULT> GetFileTypeIndex_7; 1001 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IFileDialogEvents* ,uint* ,winmdroot.Foundation.HRESULT> Advise_8; 1003 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,uint ,winmdroot.Foundation.HRESULT> Unadvise_9; 1005 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS ,winmdroot.Foundation.HRESULT> SetOptions_10; 1007 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* ,winmdroot.Foundation.HRESULT> GetOptions_11; 1009 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> SetDefaultFolder_12; 1011 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> SetFolder_13; 1013 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetFolder_14; 1015 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetCurrentSelection_15; 1017 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetFileName_16; 1019 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT> GetFileName_17; 1021 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetTitle_18; 1023 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetOkButtonLabel_19; 1025 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetFileNameLabel_20; 1027 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetResult_21; 1029 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.FDAP ,winmdroot.Foundation.HRESULT> AddPlace_22; 1031 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetDefaultExtension_23; 1033 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.HRESULT> Close_24; 1035 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,global::System.Guid* ,winmdroot.Foundation.HRESULT> SetClientGuid_25; 1037 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.HRESULT> ClearClientData_26; 1039 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItemFilter* ,winmdroot.Foundation.HRESULT> SetFilter_27; 1041 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> SetSaveAsItem_28; 1043 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.PropertiesSystem.IPropertyStore* ,winmdroot.Foundation.HRESULT> SetProperties_29; 1045 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.PropertiesSystem.IPropertyDescriptionList* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> SetCollectedProperties_30; 1047 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.PropertiesSystem.IPropertyStore** ,winmdroot.Foundation.HRESULT> GetProperties_31; 1049 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; 1104 new winmdroot.Foundation.HRESULT Show([Optional] winmdroot.Foundation.HWND hwndOwner); 1107 unsafe new winmdroot.Foundation.HRESULT SetFileTypes(uint cFileTypes, winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* rgFilterSpec); 1110 new winmdroot.Foundation.HRESULT SetFileTypeIndex(uint iFileType); 1113 unsafe new winmdroot.Foundation.HRESULT GetFileTypeIndex(uint* piFileType); 1116 unsafe new winmdroot.Foundation.HRESULT Advise(winmdroot.UI.Shell.IFileDialogEvents* pfde, uint* pdwCookie); 1119 new winmdroot.Foundation.HRESULT Unadvise(uint dwCookie); 1122 new winmdroot.Foundation.HRESULT SetOptions(winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS fos); 1125 unsafe new winmdroot.Foundation.HRESULT GetOptions(winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* pfos); 1128 unsafe new winmdroot.Foundation.HRESULT SetDefaultFolder(winmdroot.UI.Shell.IShellItem* psi); 1131 unsafe new winmdroot.Foundation.HRESULT SetFolder(winmdroot.UI.Shell.IShellItem* psi); 1134 unsafe new winmdroot.Foundation.HRESULT GetFolder(winmdroot.UI.Shell.IShellItem** ppsi); 1137 unsafe new winmdroot.Foundation.HRESULT GetCurrentSelection(winmdroot.UI.Shell.IShellItem** ppsi); 1140 new winmdroot.Foundation.HRESULT SetFileName(winmdroot.Foundation.PCWSTR pszName); 1143 unsafe new winmdroot.Foundation.HRESULT GetFileName(winmdroot.Foundation.PWSTR* pszName); 1146 new winmdroot.Foundation.HRESULT SetTitle(winmdroot.Foundation.PCWSTR pszTitle); 1149 new winmdroot.Foundation.HRESULT SetOkButtonLabel(winmdroot.Foundation.PCWSTR pszText); 1152 new winmdroot.Foundation.HRESULT SetFileNameLabel(winmdroot.Foundation.PCWSTR pszLabel); 1155 unsafe new winmdroot.Foundation.HRESULT GetResult(winmdroot.UI.Shell.IShellItem** ppsi); 1158 unsafe new winmdroot.Foundation.HRESULT AddPlace(winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDAP fdap); 1161 new winmdroot.Foundation.HRESULT SetDefaultExtension(winmdroot.Foundation.PCWSTR pszDefaultExtension); 1164 new winmdroot.Foundation.HRESULT Close(winmdroot.Foundation.HRESULT hr); 1167 unsafe new winmdroot.Foundation.HRESULT SetClientGuid(global::System.Guid* guid); 1170 new winmdroot.Foundation.HRESULT ClearClientData(); 1173 unsafe new winmdroot.Foundation.HRESULT SetFilter(winmdroot.UI.Shell.IShellItemFilter* pFilter); 1176 unsafe winmdroot.Foundation.HRESULT SetSaveAsItem(winmdroot.UI.Shell.IShellItem* psi); 1179 unsafe winmdroot.Foundation.HRESULT SetProperties(winmdroot.UI.Shell.PropertiesSystem.IPropertyStore* pStore); 1182 unsafe winmdroot.Foundation.HRESULT SetCollectedProperties(winmdroot.UI.Shell.PropertiesSystem.IPropertyDescriptionList* pList, winmdroot.Foundation.BOOL fAppendDefault); 1185 unsafe winmdroot.Foundation.HRESULT GetProperties(winmdroot.UI.Shell.PropertiesSystem.IPropertyStore** ppStore); 1188 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);
_generated\135\Windows.Win32.IFont.g.cs (151)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IFont*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IFont*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT get_Name(IFont* pThis, winmdroot.Foundation.BSTR* pName) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 70 return winmdroot.Foundation.HRESULT.S_OK; 74 return (winmdroot.Foundation.HRESULT)ex.HResult; 91 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 96 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 103 private static winmdroot.Foundation.HRESULT put_Name(IFont* pThis, winmdroot.Foundation.BSTR name) 107 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 113 return winmdroot.Foundation.HRESULT.S_OK; 117 return (winmdroot.Foundation.HRESULT)ex.HResult; 124 private static winmdroot.Foundation.HRESULT get_Size(IFont* pThis, winmdroot.System.Com.CY* pSize) 128 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 134 return winmdroot.Foundation.HRESULT.S_OK; 138 return (winmdroot.Foundation.HRESULT)ex.HResult; 155 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.System.Com.CY* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 160 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.System.Com.CY ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 167 private static winmdroot.Foundation.HRESULT put_Size(IFont* pThis, winmdroot.System.Com.CY size) 171 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 177 return winmdroot.Foundation.HRESULT.S_OK; 181 return (winmdroot.Foundation.HRESULT)ex.HResult; 188 private static winmdroot.Foundation.HRESULT get_Bold(IFont* pThis, winmdroot.Foundation.BOOL* pBold) 192 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 198 return winmdroot.Foundation.HRESULT.S_OK; 202 return (winmdroot.Foundation.HRESULT)ex.HResult; 219 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 224 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 231 private static winmdroot.Foundation.HRESULT put_Bold(IFont* pThis, winmdroot.Foundation.BOOL bold) 235 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 241 return winmdroot.Foundation.HRESULT.S_OK; 245 return (winmdroot.Foundation.HRESULT)ex.HResult; 252 private static winmdroot.Foundation.HRESULT get_Italic(IFont* pThis, winmdroot.Foundation.BOOL* pItalic) 256 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 262 return winmdroot.Foundation.HRESULT.S_OK; 266 return (winmdroot.Foundation.HRESULT)ex.HResult; 283 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 288 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 295 private static winmdroot.Foundation.HRESULT put_Italic(IFont* pThis, winmdroot.Foundation.BOOL italic) 299 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 305 return winmdroot.Foundation.HRESULT.S_OK; 309 return (winmdroot.Foundation.HRESULT)ex.HResult; 316 private static winmdroot.Foundation.HRESULT get_Underline(IFont* pThis, winmdroot.Foundation.BOOL* pUnderline) 320 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 326 return winmdroot.Foundation.HRESULT.S_OK; 330 return (winmdroot.Foundation.HRESULT)ex.HResult; 347 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 352 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 359 private static winmdroot.Foundation.HRESULT put_Underline(IFont* pThis, winmdroot.Foundation.BOOL underline) 363 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 369 return winmdroot.Foundation.HRESULT.S_OK; 373 return (winmdroot.Foundation.HRESULT)ex.HResult; 380 private static winmdroot.Foundation.HRESULT get_Strikethrough(IFont* pThis, winmdroot.Foundation.BOOL* pStrikethrough) 384 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 390 return winmdroot.Foundation.HRESULT.S_OK; 394 return (winmdroot.Foundation.HRESULT)ex.HResult; 411 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 416 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 423 private static winmdroot.Foundation.HRESULT put_Strikethrough(IFont* pThis, winmdroot.Foundation.BOOL strikethrough) 427 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 433 return winmdroot.Foundation.HRESULT.S_OK; 437 return (winmdroot.Foundation.HRESULT)ex.HResult; 444 private static winmdroot.Foundation.HRESULT get_Weight(IFont* pThis, short* pWeight) 448 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 454 return winmdroot.Foundation.HRESULT.S_OK; 458 return (winmdroot.Foundation.HRESULT)ex.HResult; 475 ((delegate *unmanaged [Stdcall]<IFont*,short* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 480 ((delegate *unmanaged [Stdcall]<IFont*,short ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 487 private static winmdroot.Foundation.HRESULT put_Weight(IFont* pThis, short weight) 491 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 497 return winmdroot.Foundation.HRESULT.S_OK; 501 return (winmdroot.Foundation.HRESULT)ex.HResult; 508 private static winmdroot.Foundation.HRESULT get_Charset(IFont* pThis, short* pCharset) 512 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 518 return winmdroot.Foundation.HRESULT.S_OK; 522 return (winmdroot.Foundation.HRESULT)ex.HResult; 539 ((delegate *unmanaged [Stdcall]<IFont*,short* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 544 ((delegate *unmanaged [Stdcall]<IFont*,short ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 551 private static winmdroot.Foundation.HRESULT put_Charset(IFont* pThis, short charset) 555 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 561 return winmdroot.Foundation.HRESULT.S_OK; 565 return (winmdroot.Foundation.HRESULT)ex.HResult; 572 private static winmdroot.Foundation.HRESULT get_hFont(IFont* pThis, winmdroot.Graphics.Gdi.HFONT* phFont) 576 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 582 return winmdroot.Foundation.HRESULT.S_OK; 586 return (winmdroot.Foundation.HRESULT)ex.HResult; 604 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.HFONT* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 612 private static winmdroot.Foundation.HRESULT Clone(IFont* pThis, winmdroot.System.Ole.IFont** ppFont) 616 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 625 return (winmdroot.Foundation.HRESULT)ex.HResult; 644 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.System.Ole.IFont** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IFont*)Unsafe.AsPointer(ref this), ppFont).ThrowOnFailure(); 650 private static winmdroot.Foundation.HRESULT IsEqual(IFont* pThis, winmdroot.System.Ole.IFont* pFontOther) 654 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 663 return (winmdroot.Foundation.HRESULT)ex.HResult; 678 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.System.Ole.IFont* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IFont*)Unsafe.AsPointer(ref this), pFontOther).ThrowOnFailure(); 684 private static winmdroot.Foundation.HRESULT SetRatio(IFont* pThis, int cyLogical, int cyHimetric) 688 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 697 return (winmdroot.Foundation.HRESULT)ex.HResult; 710 ((delegate *unmanaged [Stdcall]<IFont*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IFont*)Unsafe.AsPointer(ref this), cyLogical, cyHimetric).ThrowOnFailure(); 726 private static winmdroot.Foundation.HRESULT QueryTextMetrics(IFont* pThis, winmdroot.Graphics.Gdi.TEXTMETRICW* pTM) 730 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 739 return (winmdroot.Foundation.HRESULT)ex.HResult; 758 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.TEXTMETRICW* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IFont*)Unsafe.AsPointer(ref this), pTM).ThrowOnFailure(); 764 private static winmdroot.Foundation.HRESULT AddRefHfont(IFont* pThis, winmdroot.Graphics.Gdi.HFONT hFont) 768 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 777 return (winmdroot.Foundation.HRESULT)ex.HResult; 792 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.HFONT ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IFont*)Unsafe.AsPointer(ref this), hFont).ThrowOnFailure(); 798 private static winmdroot.Foundation.HRESULT ReleaseHfont(IFont* pThis, winmdroot.Graphics.Gdi.HFONT hFont) 802 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 811 return (winmdroot.Foundation.HRESULT)ex.HResult; 829 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.HFONT ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IFont*)Unsafe.AsPointer(ref this), hFont).ThrowOnFailure(); 835 private static winmdroot.Foundation.HRESULT SetHdc(IFont* pThis, winmdroot.Graphics.Gdi.HDC hDC) 839 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 848 return (winmdroot.Foundation.HRESULT)ex.HResult; 864 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.HDC ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IFont*)Unsafe.AsPointer(ref this), hDC).ThrowOnFailure(); 867 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 873 var hr = this.QueryInterface(&guid, &pv); 890 internal delegate *unmanaged [Stdcall]<IFont*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 896 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Name_4; 898 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_Name_5; 900 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.System.Com.CY* ,winmdroot.Foundation.HRESULT> get_Size_6; 902 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.System.Com.CY ,winmdroot.Foundation.HRESULT> put_Size_7; 904 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_Bold_8; 906 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> put_Bold_9; 908 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_Italic_10; 910 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> put_Italic_11; 912 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_Underline_12; 914 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> put_Underline_13; 916 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_Strikethrough_14; 918 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> put_Strikethrough_15; 920 internal delegate *unmanaged [Stdcall]<IFont*,short* ,winmdroot.Foundation.HRESULT> get_Weight_16; 922 internal delegate *unmanaged [Stdcall]<IFont*,short ,winmdroot.Foundation.HRESULT> put_Weight_17; 924 internal delegate *unmanaged [Stdcall]<IFont*,short* ,winmdroot.Foundation.HRESULT> get_Charset_18; 926 internal delegate *unmanaged [Stdcall]<IFont*,short ,winmdroot.Foundation.HRESULT> put_Charset_19; 928 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.HFONT* ,winmdroot.Foundation.HRESULT> get_hFont_20; 930 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.System.Ole.IFont** ,winmdroot.Foundation.HRESULT> Clone_21; 932 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.System.Ole.IFont* ,winmdroot.Foundation.HRESULT> IsEqual_22; 934 internal delegate *unmanaged [Stdcall]<IFont*,int ,int ,winmdroot.Foundation.HRESULT> SetRatio_23; 936 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.TEXTMETRICW* ,winmdroot.Foundation.HRESULT> QueryTextMetrics_24; 938 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.HFONT ,winmdroot.Foundation.HRESULT> AddRefHfont_25; 940 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.HFONT ,winmdroot.Foundation.HRESULT> ReleaseHfont_26; 942 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.HDC ,winmdroot.Foundation.HRESULT> SetHdc_27; 1045 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Ole.IFont** ppFont); 1048 unsafe winmdroot.Foundation.HRESULT IsEqual(winmdroot.System.Ole.IFont* pFontOther); 1051winmdroot.Foundation.HRESULT SetRatio(int cyLogical, int cyHimetric); 1054 unsafe winmdroot.Foundation.HRESULT QueryTextMetrics(winmdroot.Graphics.Gdi.TEXTMETRICW* pTM); 1057winmdroot.Foundation.HRESULT AddRefHfont(winmdroot.Graphics.Gdi.HFONT hFont); 1060winmdroot.Foundation.HRESULT ReleaseHfont(winmdroot.Graphics.Gdi.HFONT hFont); 1063winmdroot.Foundation.HRESULT SetHdc(winmdroot.Graphics.Gdi.HDC hDC);
_generated\136\Windows.Win32.IFontDisp.g.cs (15)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IFontDisp*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IFontDisp*)Unsafe.AsPointer(ref this), riid, ppvObject); 69 ((delegate *unmanaged [Stdcall]<IFontDisp*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFontDisp*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 74 ((delegate *unmanaged [Stdcall]<IFontDisp*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IFontDisp*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 95 ((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(); 134 ((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(); 137 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 143 var hr = this.QueryInterface(&guid, &pv); 160 internal delegate *unmanaged [Stdcall]<IFontDisp*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 166 internal delegate *unmanaged [Stdcall]<IFontDisp*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 168 internal delegate *unmanaged [Stdcall]<IFontDisp*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 170 internal delegate *unmanaged [Stdcall]<IFontDisp*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 172 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;
_generated\137\Windows.Win32.IGetOleObject.g.cs (16)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IGetOleObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IGetOleObject*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 internal unsafe winmdroot.Foundation.HRESULT GetOleObject(in global::System.Guid riid, ref void* ppvObj) 64 winmdroot.Foundation.HRESULT __result = this.GetOleObject(riidLocal, ppvObjLocal); 73 private static winmdroot.Foundation.HRESULT GetOleObject(IGetOleObject* pThis, global::System.Guid* riid, void** ppvObj) 77 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 86 return (winmdroot.Foundation.HRESULT)ex.HResult; 102 public unsafe winmdroot.Foundation.HRESULT GetOleObject(global::System.Guid* riid, void** ppvObj) 104 return ((delegate *unmanaged [Stdcall]<IGetOleObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IGetOleObject*)Unsafe.AsPointer(ref this), riid, ppvObj); 107 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 113 var hr = this.QueryInterface(&guid, &pv); 130 internal delegate *unmanaged [Stdcall]<IGetOleObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 136 internal delegate *unmanaged [Stdcall]<IGetOleObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> GetOleObject_4; 162 unsafe winmdroot.Foundation.HRESULT GetOleObject(global::System.Guid* riid, void** ppvObj);
_generated\138\Windows.Win32.IGetVBAObject.g.cs (13)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IGetVBAObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IGetVBAObject*)Unsafe.AsPointer(ref this), riid, ppvObject); 72 private static winmdroot.Foundation.HRESULT GetObject(IGetVBAObject* pThis, global::System.Guid* riid, void** ppvObj, uint dwReserved) 76 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 85 return (winmdroot.Foundation.HRESULT)ex.HResult; 104 ((delegate *unmanaged [Stdcall]<IGetVBAObject*,global::System.Guid* ,void** ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IGetVBAObject*)Unsafe.AsPointer(ref this), riid, ppvObj, dwReserved).ThrowOnFailure(); 107 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 113 var hr = this.QueryInterface(&guid, &pv); 130 internal delegate *unmanaged [Stdcall]<IGetVBAObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 136 internal delegate *unmanaged [Stdcall]<IGetVBAObject*,global::System.Guid* ,void** ,uint ,winmdroot.Foundation.HRESULT> GetObject_4; 162 unsafe winmdroot.Foundation.HRESULT GetObject(global::System.Guid* riid, void** ppvObj, uint dwReserved);
_generated\139\Windows.Win32.IGridItemProvider.g.cs (50)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IGridItemProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IGridItemProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT get_Row(out int pRetVal) 63 winmdroot.Foundation.HRESULT __result = this.get_Row(pRetValLocal); 71 private static winmdroot.Foundation.HRESULT get_Row(IGridItemProvider* pThis, int* pRetVal) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 92 public unsafe winmdroot.Foundation.HRESULT get_Row(int* pRetVal) 94 return ((delegate *unmanaged [Stdcall]<IGridItemProvider*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IGridItemProvider*)Unsafe.AsPointer(ref this), pRetVal); 99 internal unsafe winmdroot.Foundation.HRESULT get_Column(out int pRetVal) 103 winmdroot.Foundation.HRESULT __result = this.get_Column(pRetValLocal); 111 private static winmdroot.Foundation.HRESULT get_Column(IGridItemProvider* pThis, int* pRetVal) 115 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return (winmdroot.Foundation.HRESULT)ex.HResult; 132 public unsafe winmdroot.Foundation.HRESULT get_Column(int* pRetVal) 134 return ((delegate *unmanaged [Stdcall]<IGridItemProvider*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IGridItemProvider*)Unsafe.AsPointer(ref this), pRetVal); 139 internal unsafe winmdroot.Foundation.HRESULT get_RowSpan(out int pRetVal) 143 winmdroot.Foundation.HRESULT __result = this.get_RowSpan(pRetValLocal); 151 private static winmdroot.Foundation.HRESULT get_RowSpan(IGridItemProvider* pThis, int* pRetVal) 155 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 164 return (winmdroot.Foundation.HRESULT)ex.HResult; 172 public unsafe winmdroot.Foundation.HRESULT get_RowSpan(int* pRetVal) 174 return ((delegate *unmanaged [Stdcall]<IGridItemProvider*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IGridItemProvider*)Unsafe.AsPointer(ref this), pRetVal); 179 internal unsafe winmdroot.Foundation.HRESULT get_ColumnSpan(out int pRetVal) 183 winmdroot.Foundation.HRESULT __result = this.get_ColumnSpan(pRetValLocal); 191 private static winmdroot.Foundation.HRESULT get_ColumnSpan(IGridItemProvider* pThis, int* pRetVal) 195 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 204 return (winmdroot.Foundation.HRESULT)ex.HResult; 212 public unsafe winmdroot.Foundation.HRESULT get_ColumnSpan(int* pRetVal) 214 return ((delegate *unmanaged [Stdcall]<IGridItemProvider*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IGridItemProvider*)Unsafe.AsPointer(ref this), pRetVal); 220 private static winmdroot.Foundation.HRESULT get_ContainingGrid(IGridItemProvider* pThis, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 224 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 233 return (winmdroot.Foundation.HRESULT)ex.HResult; 241 public unsafe winmdroot.Foundation.HRESULT get_ContainingGrid(winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 243 return ((delegate *unmanaged [Stdcall]<IGridItemProvider*,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IGridItemProvider*)Unsafe.AsPointer(ref this), pRetVal); 246 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 252 var hr = this.QueryInterface(&guid, &pv); 269 internal delegate *unmanaged [Stdcall]<IGridItemProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 275 internal delegate *unmanaged [Stdcall]<IGridItemProvider*,int* ,winmdroot.Foundation.HRESULT> get_Row_4; 277 internal delegate *unmanaged [Stdcall]<IGridItemProvider*,int* ,winmdroot.Foundation.HRESULT> get_Column_5; 279 internal delegate *unmanaged [Stdcall]<IGridItemProvider*,int* ,winmdroot.Foundation.HRESULT> get_RowSpan_6; 281 internal delegate *unmanaged [Stdcall]<IGridItemProvider*,int* ,winmdroot.Foundation.HRESULT> get_ColumnSpan_7; 283 internal delegate *unmanaged [Stdcall]<IGridItemProvider*,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT> get_ContainingGrid_8; 314 unsafe winmdroot.Foundation.HRESULT get_Row(int* pRetVal); 317 unsafe winmdroot.Foundation.HRESULT get_Column(int* pRetVal); 320 unsafe winmdroot.Foundation.HRESULT get_RowSpan(int* pRetVal); 323 unsafe winmdroot.Foundation.HRESULT get_ColumnSpan(int* pRetVal); 326 unsafe winmdroot.Foundation.HRESULT get_ContainingGrid(winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal);
_generated\140\Windows.Win32.IGridProvider.g.cs (31)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IGridProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IGridProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT GetItem(IGridProvider* pThis, int row, int column, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 98 ((delegate *unmanaged [Stdcall]<IGridProvider*,int ,int ,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IGridProvider*)Unsafe.AsPointer(ref this), row, column, &__retVal).ThrowOnFailure(); 104 internal unsafe winmdroot.Foundation.HRESULT get_RowCount(out int pRetVal) 108 winmdroot.Foundation.HRESULT __result = this.get_RowCount(pRetValLocal); 116 private static winmdroot.Foundation.HRESULT get_RowCount(IGridProvider* pThis, int* pRetVal) 120 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 129 return (winmdroot.Foundation.HRESULT)ex.HResult; 138 public unsafe winmdroot.Foundation.HRESULT get_RowCount(int* pRetVal) 140 return ((delegate *unmanaged [Stdcall]<IGridProvider*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IGridProvider*)Unsafe.AsPointer(ref this), pRetVal); 145 internal unsafe winmdroot.Foundation.HRESULT get_ColumnCount(out int pRetVal) 149 winmdroot.Foundation.HRESULT __result = this.get_ColumnCount(pRetValLocal); 157 private static winmdroot.Foundation.HRESULT get_ColumnCount(IGridProvider* pThis, int* pRetVal) 161 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 170 return (winmdroot.Foundation.HRESULT)ex.HResult; 179 public unsafe winmdroot.Foundation.HRESULT get_ColumnCount(int* pRetVal) 181 return ((delegate *unmanaged [Stdcall]<IGridProvider*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IGridProvider*)Unsafe.AsPointer(ref this), pRetVal); 184 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 190 var hr = this.QueryInterface(&guid, &pv); 207 internal delegate *unmanaged [Stdcall]<IGridProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 213 internal delegate *unmanaged [Stdcall]<IGridProvider*,int ,int ,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT> GetItem_4; 215 internal delegate *unmanaged [Stdcall]<IGridProvider*,int* ,winmdroot.Foundation.HRESULT> get_RowCount_5; 217 internal delegate *unmanaged [Stdcall]<IGridProvider*,int* ,winmdroot.Foundation.HRESULT> get_ColumnCount_6; 246 unsafe winmdroot.Foundation.HRESULT GetItem(int row, int column, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal); 249 unsafe winmdroot.Foundation.HRESULT get_RowCount(int* pRetVal); 252 unsafe winmdroot.Foundation.HRESULT get_ColumnCount(int* pRetVal);
_generated\141\Windows.Win32.IHTMLCurrentStyle.g.cs (561)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT get_position(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT get_styleFloat(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 174 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 201 private static winmdroot.Foundation.HRESULT get_color(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 205 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 211 return winmdroot.Foundation.HRESULT.S_OK; 215 return (winmdroot.Foundation.HRESULT)ex.HResult; 224 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 232 private static winmdroot.Foundation.HRESULT get_backgroundColor(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 236 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 242 return winmdroot.Foundation.HRESULT.S_OK; 246 return (winmdroot.Foundation.HRESULT)ex.HResult; 255 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 263 private static winmdroot.Foundation.HRESULT get_fontFamily(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 267 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 273 return winmdroot.Foundation.HRESULT.S_OK; 277 return (winmdroot.Foundation.HRESULT)ex.HResult; 286 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 294 private static winmdroot.Foundation.HRESULT get_fontStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 298 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 304 return winmdroot.Foundation.HRESULT.S_OK; 308 return (winmdroot.Foundation.HRESULT)ex.HResult; 317 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 325 private static winmdroot.Foundation.HRESULT get_fontVariant(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 329 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 335 return winmdroot.Foundation.HRESULT.S_OK; 339 return (winmdroot.Foundation.HRESULT)ex.HResult; 348 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 356 private static winmdroot.Foundation.HRESULT get_fontWeight(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 360 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 366 return winmdroot.Foundation.HRESULT.S_OK; 370 return (winmdroot.Foundation.HRESULT)ex.HResult; 379 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 387 private static winmdroot.Foundation.HRESULT get_fontSize(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 391 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 397 return winmdroot.Foundation.HRESULT.S_OK; 401 return (winmdroot.Foundation.HRESULT)ex.HResult; 410 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 418 private static winmdroot.Foundation.HRESULT get_backgroundImage(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 422 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 428 return winmdroot.Foundation.HRESULT.S_OK; 432 return (winmdroot.Foundation.HRESULT)ex.HResult; 441 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 449 private static winmdroot.Foundation.HRESULT get_backgroundPositionX(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 453 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 459 return winmdroot.Foundation.HRESULT.S_OK; 463 return (winmdroot.Foundation.HRESULT)ex.HResult; 472 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 480 private static winmdroot.Foundation.HRESULT get_backgroundPositionY(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 484 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 490 return winmdroot.Foundation.HRESULT.S_OK; 494 return (winmdroot.Foundation.HRESULT)ex.HResult; 503 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 511 private static winmdroot.Foundation.HRESULT get_backgroundRepeat(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 515 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 521 return winmdroot.Foundation.HRESULT.S_OK; 525 return (winmdroot.Foundation.HRESULT)ex.HResult; 534 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 542 private static winmdroot.Foundation.HRESULT get_borderLeftColor(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 546 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 552 return winmdroot.Foundation.HRESULT.S_OK; 556 return (winmdroot.Foundation.HRESULT)ex.HResult; 565 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 573 private static winmdroot.Foundation.HRESULT get_borderTopColor(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 577 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 583 return winmdroot.Foundation.HRESULT.S_OK; 587 return (winmdroot.Foundation.HRESULT)ex.HResult; 596 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 604 private static winmdroot.Foundation.HRESULT get_borderRightColor(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 608 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 614 return winmdroot.Foundation.HRESULT.S_OK; 618 return (winmdroot.Foundation.HRESULT)ex.HResult; 627 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 635 private static winmdroot.Foundation.HRESULT get_borderBottomColor(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 639 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 645 return winmdroot.Foundation.HRESULT.S_OK; 649 return (winmdroot.Foundation.HRESULT)ex.HResult; 658 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 666 private static winmdroot.Foundation.HRESULT get_borderTopStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 670 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 676 return winmdroot.Foundation.HRESULT.S_OK; 680 return (winmdroot.Foundation.HRESULT)ex.HResult; 689 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 697 private static winmdroot.Foundation.HRESULT get_borderRightStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 701 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 707 return winmdroot.Foundation.HRESULT.S_OK; 711 return (winmdroot.Foundation.HRESULT)ex.HResult; 720 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 728 private static winmdroot.Foundation.HRESULT get_borderBottomStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 732 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 738 return winmdroot.Foundation.HRESULT.S_OK; 742 return (winmdroot.Foundation.HRESULT)ex.HResult; 751 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 759 private static winmdroot.Foundation.HRESULT get_borderLeftStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 763 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 769 return winmdroot.Foundation.HRESULT.S_OK; 773 return (winmdroot.Foundation.HRESULT)ex.HResult; 782 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 790 private static winmdroot.Foundation.HRESULT get_borderTopWidth(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 794 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 800 return winmdroot.Foundation.HRESULT.S_OK; 804 return (winmdroot.Foundation.HRESULT)ex.HResult; 813 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 821 private static winmdroot.Foundation.HRESULT get_borderRightWidth(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 825 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 831 return winmdroot.Foundation.HRESULT.S_OK; 835 return (winmdroot.Foundation.HRESULT)ex.HResult; 844 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 852 private static winmdroot.Foundation.HRESULT get_borderBottomWidth(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 856 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 862 return winmdroot.Foundation.HRESULT.S_OK; 866 return (winmdroot.Foundation.HRESULT)ex.HResult; 875 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 883 private static winmdroot.Foundation.HRESULT get_borderLeftWidth(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 887 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 893 return winmdroot.Foundation.HRESULT.S_OK; 897 return (winmdroot.Foundation.HRESULT)ex.HResult; 906 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 914 private static winmdroot.Foundation.HRESULT get_left(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 918 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 924 return winmdroot.Foundation.HRESULT.S_OK; 928 return (winmdroot.Foundation.HRESULT)ex.HResult; 937 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 945 private static winmdroot.Foundation.HRESULT get_top(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 949 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 955 return winmdroot.Foundation.HRESULT.S_OK; 959 return (winmdroot.Foundation.HRESULT)ex.HResult; 968 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 976 private static winmdroot.Foundation.HRESULT get_width(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 980 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 986 return winmdroot.Foundation.HRESULT.S_OK; 990 return (winmdroot.Foundation.HRESULT)ex.HResult; 999 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1007 private static winmdroot.Foundation.HRESULT get_height(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1011 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1017 return winmdroot.Foundation.HRESULT.S_OK; 1021 return (winmdroot.Foundation.HRESULT)ex.HResult; 1030 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1038 private static winmdroot.Foundation.HRESULT get_paddingLeft(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1042 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1048 return winmdroot.Foundation.HRESULT.S_OK; 1052 return (winmdroot.Foundation.HRESULT)ex.HResult; 1061 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1069 private static winmdroot.Foundation.HRESULT get_paddingTop(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1073 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1079 return winmdroot.Foundation.HRESULT.S_OK; 1083 return (winmdroot.Foundation.HRESULT)ex.HResult; 1092 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1100 private static winmdroot.Foundation.HRESULT get_paddingRight(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1104 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1110 return winmdroot.Foundation.HRESULT.S_OK; 1114 return (winmdroot.Foundation.HRESULT)ex.HResult; 1123 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1131 private static winmdroot.Foundation.HRESULT get_paddingBottom(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1135 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1141 return winmdroot.Foundation.HRESULT.S_OK; 1145 return (winmdroot.Foundation.HRESULT)ex.HResult; 1154 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1162 private static winmdroot.Foundation.HRESULT get_textAlign(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1166 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1172 return winmdroot.Foundation.HRESULT.S_OK; 1176 return (winmdroot.Foundation.HRESULT)ex.HResult; 1185 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1193 private static winmdroot.Foundation.HRESULT get_textDecoration(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1197 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1203 return winmdroot.Foundation.HRESULT.S_OK; 1207 return (winmdroot.Foundation.HRESULT)ex.HResult; 1216 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1224 private static winmdroot.Foundation.HRESULT get_display(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1228 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1234 return winmdroot.Foundation.HRESULT.S_OK; 1238 return (winmdroot.Foundation.HRESULT)ex.HResult; 1247 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1255 private static winmdroot.Foundation.HRESULT get_visibility(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1259 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1265 return winmdroot.Foundation.HRESULT.S_OK; 1269 return (winmdroot.Foundation.HRESULT)ex.HResult; 1278 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1286 private static winmdroot.Foundation.HRESULT get_zIndex(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1290 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1296 return winmdroot.Foundation.HRESULT.S_OK; 1300 return (winmdroot.Foundation.HRESULT)ex.HResult; 1309 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1317 private static winmdroot.Foundation.HRESULT get_letterSpacing(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1321 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1327 return winmdroot.Foundation.HRESULT.S_OK; 1331 return (winmdroot.Foundation.HRESULT)ex.HResult; 1340 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1348 private static winmdroot.Foundation.HRESULT get_lineHeight(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1352 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1358 return winmdroot.Foundation.HRESULT.S_OK; 1362 return (winmdroot.Foundation.HRESULT)ex.HResult; 1371 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1379 private static winmdroot.Foundation.HRESULT get_textIndent(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1383 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1389 return winmdroot.Foundation.HRESULT.S_OK; 1393 return (winmdroot.Foundation.HRESULT)ex.HResult; 1402 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1410 private static winmdroot.Foundation.HRESULT get_verticalAlign(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1414 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1420 return winmdroot.Foundation.HRESULT.S_OK; 1424 return (winmdroot.Foundation.HRESULT)ex.HResult; 1433 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1441 private static winmdroot.Foundation.HRESULT get_backgroundAttachment(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1445 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1451 return winmdroot.Foundation.HRESULT.S_OK; 1455 return (winmdroot.Foundation.HRESULT)ex.HResult; 1464 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1472 private static winmdroot.Foundation.HRESULT get_marginTop(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1476 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1482 return winmdroot.Foundation.HRESULT.S_OK; 1486 return (winmdroot.Foundation.HRESULT)ex.HResult; 1495 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1503 private static winmdroot.Foundation.HRESULT get_marginRight(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1507 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1513 return winmdroot.Foundation.HRESULT.S_OK; 1517 return (winmdroot.Foundation.HRESULT)ex.HResult; 1526 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1534 private static winmdroot.Foundation.HRESULT get_marginBottom(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1538 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1544 return winmdroot.Foundation.HRESULT.S_OK; 1548 return (winmdroot.Foundation.HRESULT)ex.HResult; 1557 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1565 private static winmdroot.Foundation.HRESULT get_marginLeft(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1569 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1575 return winmdroot.Foundation.HRESULT.S_OK; 1579 return (winmdroot.Foundation.HRESULT)ex.HResult; 1588 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1596 private static winmdroot.Foundation.HRESULT get_clear(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1600 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1606 return winmdroot.Foundation.HRESULT.S_OK; 1610 return (winmdroot.Foundation.HRESULT)ex.HResult; 1619 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1627 private static winmdroot.Foundation.HRESULT get_listStyleType(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1631 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1637 return winmdroot.Foundation.HRESULT.S_OK; 1641 return (winmdroot.Foundation.HRESULT)ex.HResult; 1650 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1658 private static winmdroot.Foundation.HRESULT get_listStylePosition(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1662 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1668 return winmdroot.Foundation.HRESULT.S_OK; 1672 return (winmdroot.Foundation.HRESULT)ex.HResult; 1681 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1689 private static winmdroot.Foundation.HRESULT get_listStyleImage(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1693 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1699 return winmdroot.Foundation.HRESULT.S_OK; 1703 return (winmdroot.Foundation.HRESULT)ex.HResult; 1712 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1720 private static winmdroot.Foundation.HRESULT get_clipTop(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1724 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1730 return winmdroot.Foundation.HRESULT.S_OK; 1734 return (winmdroot.Foundation.HRESULT)ex.HResult; 1743 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1751 private static winmdroot.Foundation.HRESULT get_clipRight(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1755 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1761 return winmdroot.Foundation.HRESULT.S_OK; 1765 return (winmdroot.Foundation.HRESULT)ex.HResult; 1774 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1782 private static winmdroot.Foundation.HRESULT get_clipBottom(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1786 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1792 return winmdroot.Foundation.HRESULT.S_OK; 1796 return (winmdroot.Foundation.HRESULT)ex.HResult; 1805 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1813 private static winmdroot.Foundation.HRESULT get_clipLeft(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1817 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1823 return winmdroot.Foundation.HRESULT.S_OK; 1827 return (winmdroot.Foundation.HRESULT)ex.HResult; 1836 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1844 private static winmdroot.Foundation.HRESULT get_overflow(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1848 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1854 return winmdroot.Foundation.HRESULT.S_OK; 1858 return (winmdroot.Foundation.HRESULT)ex.HResult; 1867 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1875 private static winmdroot.Foundation.HRESULT get_pageBreakBefore(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1879 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1885 return winmdroot.Foundation.HRESULT.S_OK; 1889 return (winmdroot.Foundation.HRESULT)ex.HResult; 1898 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1906 private static winmdroot.Foundation.HRESULT get_pageBreakAfter(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1910 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1916 return winmdroot.Foundation.HRESULT.S_OK; 1920 return (winmdroot.Foundation.HRESULT)ex.HResult; 1929 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1937 private static winmdroot.Foundation.HRESULT get_cursor(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1941 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1947 return winmdroot.Foundation.HRESULT.S_OK; 1951 return (winmdroot.Foundation.HRESULT)ex.HResult; 1960 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1968 private static winmdroot.Foundation.HRESULT get_tableLayout(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1972 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1978 return winmdroot.Foundation.HRESULT.S_OK; 1982 return (winmdroot.Foundation.HRESULT)ex.HResult; 1991 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1999 private static winmdroot.Foundation.HRESULT get_borderCollapse(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2003 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2009 return winmdroot.Foundation.HRESULT.S_OK; 2013 return (winmdroot.Foundation.HRESULT)ex.HResult; 2022 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2030 private static winmdroot.Foundation.HRESULT get_direction(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2034 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2040 return winmdroot.Foundation.HRESULT.S_OK; 2044 return (winmdroot.Foundation.HRESULT)ex.HResult; 2053 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2061 private static winmdroot.Foundation.HRESULT get_behavior(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2065 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2071 return winmdroot.Foundation.HRESULT.S_OK; 2075 return (winmdroot.Foundation.HRESULT)ex.HResult; 2084 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2092 private static winmdroot.Foundation.HRESULT getAttribute(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue) 2096 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2105 return (winmdroot.Foundation.HRESULT)ex.HResult; 2112 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), strAttributeName, lFlags, &__retVal).ThrowOnFailure(); 2119 private static winmdroot.Foundation.HRESULT get_unicodeBidi(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2123 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2129 return winmdroot.Foundation.HRESULT.S_OK; 2133 return (winmdroot.Foundation.HRESULT)ex.HResult; 2142 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2150 private static winmdroot.Foundation.HRESULT get_right(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2154 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2160 return winmdroot.Foundation.HRESULT.S_OK; 2164 return (winmdroot.Foundation.HRESULT)ex.HResult; 2173 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2181 private static winmdroot.Foundation.HRESULT get_bottom(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2185 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2191 return winmdroot.Foundation.HRESULT.S_OK; 2195 return (winmdroot.Foundation.HRESULT)ex.HResult; 2204 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2212 private static winmdroot.Foundation.HRESULT get_imeMode(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2216 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2222 return winmdroot.Foundation.HRESULT.S_OK; 2226 return (winmdroot.Foundation.HRESULT)ex.HResult; 2235 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2243 private static winmdroot.Foundation.HRESULT get_rubyAlign(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2247 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2253 return winmdroot.Foundation.HRESULT.S_OK; 2257 return (winmdroot.Foundation.HRESULT)ex.HResult; 2266 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2274 private static winmdroot.Foundation.HRESULT get_rubyPosition(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2278 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2284 return winmdroot.Foundation.HRESULT.S_OK; 2288 return (winmdroot.Foundation.HRESULT)ex.HResult; 2297 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2305 private static winmdroot.Foundation.HRESULT get_rubyOverhang(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2309 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2315 return winmdroot.Foundation.HRESULT.S_OK; 2319 return (winmdroot.Foundation.HRESULT)ex.HResult; 2328 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2336 private static winmdroot.Foundation.HRESULT get_textAutospace(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2340 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2346 return winmdroot.Foundation.HRESULT.S_OK; 2350 return (winmdroot.Foundation.HRESULT)ex.HResult; 2359 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2367 private static winmdroot.Foundation.HRESULT get_lineBreak(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2371 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2377 return winmdroot.Foundation.HRESULT.S_OK; 2381 return (winmdroot.Foundation.HRESULT)ex.HResult; 2390 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[79])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2398 private static winmdroot.Foundation.HRESULT get_wordBreak(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2402 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2408 return winmdroot.Foundation.HRESULT.S_OK; 2412 return (winmdroot.Foundation.HRESULT)ex.HResult; 2421 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[80])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2429 private static winmdroot.Foundation.HRESULT get_textJustify(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2433 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2439 return winmdroot.Foundation.HRESULT.S_OK; 2443 return (winmdroot.Foundation.HRESULT)ex.HResult; 2452 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2460 private static winmdroot.Foundation.HRESULT get_textJustifyTrim(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2464 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2470 return winmdroot.Foundation.HRESULT.S_OK; 2474 return (winmdroot.Foundation.HRESULT)ex.HResult; 2483 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2491 private static winmdroot.Foundation.HRESULT get_textKashida(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2495 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2501 return winmdroot.Foundation.HRESULT.S_OK; 2505 return (winmdroot.Foundation.HRESULT)ex.HResult; 2514 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2522 private static winmdroot.Foundation.HRESULT get_blockDirection(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2526 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2532 return winmdroot.Foundation.HRESULT.S_OK; 2536 return (winmdroot.Foundation.HRESULT)ex.HResult; 2545 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2553 private static winmdroot.Foundation.HRESULT get_layoutGridChar(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2557 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2563 return winmdroot.Foundation.HRESULT.S_OK; 2567 return (winmdroot.Foundation.HRESULT)ex.HResult; 2576 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[85])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2584 private static winmdroot.Foundation.HRESULT get_layoutGridLine(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2588 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2594 return winmdroot.Foundation.HRESULT.S_OK; 2598 return (winmdroot.Foundation.HRESULT)ex.HResult; 2607 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[86])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2615 private static winmdroot.Foundation.HRESULT get_layoutGridMode(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2619 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2625 return winmdroot.Foundation.HRESULT.S_OK; 2629 return (winmdroot.Foundation.HRESULT)ex.HResult; 2638 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[87])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2646 private static winmdroot.Foundation.HRESULT get_layoutGridType(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2650 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2656 return winmdroot.Foundation.HRESULT.S_OK; 2660 return (winmdroot.Foundation.HRESULT)ex.HResult; 2669 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[88])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2677 private static winmdroot.Foundation.HRESULT get_borderStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2681 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2687 return winmdroot.Foundation.HRESULT.S_OK; 2691 return (winmdroot.Foundation.HRESULT)ex.HResult; 2700 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[89])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2708 private static winmdroot.Foundation.HRESULT get_borderColor(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2712 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2718 return winmdroot.Foundation.HRESULT.S_OK; 2722 return (winmdroot.Foundation.HRESULT)ex.HResult; 2731 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[90])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2739 private static winmdroot.Foundation.HRESULT get_borderWidth(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2743 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2749 return winmdroot.Foundation.HRESULT.S_OK; 2753 return (winmdroot.Foundation.HRESULT)ex.HResult; 2762 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[91])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2770 private static winmdroot.Foundation.HRESULT get_padding(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2774 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2780 return winmdroot.Foundation.HRESULT.S_OK; 2784 return (winmdroot.Foundation.HRESULT)ex.HResult; 2793 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2801 private static winmdroot.Foundation.HRESULT get_margin(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2805 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2811 return winmdroot.Foundation.HRESULT.S_OK; 2815 return (winmdroot.Foundation.HRESULT)ex.HResult; 2824 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[93])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2832 private static winmdroot.Foundation.HRESULT get_accelerator(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2836 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2842 return winmdroot.Foundation.HRESULT.S_OK; 2846 return (winmdroot.Foundation.HRESULT)ex.HResult; 2855 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[94])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2863 private static winmdroot.Foundation.HRESULT get_overflowX(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2867 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2873 return winmdroot.Foundation.HRESULT.S_OK; 2877 return (winmdroot.Foundation.HRESULT)ex.HResult; 2886 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[95])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2894 private static winmdroot.Foundation.HRESULT get_overflowY(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2898 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2904 return winmdroot.Foundation.HRESULT.S_OK; 2908 return (winmdroot.Foundation.HRESULT)ex.HResult; 2917 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[96])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2925 private static winmdroot.Foundation.HRESULT get_textTransform(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2929 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2935 return winmdroot.Foundation.HRESULT.S_OK; 2939 return (winmdroot.Foundation.HRESULT)ex.HResult; 2948 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[97])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2953 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2959 var hr = this.QueryInterface(&guid, &pv); 2976 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2982 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2984 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2986 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2988 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; 2990 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_position_8; 2992 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_styleFloat_9; 2994 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_color_10; 2996 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundColor_11; 2998 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontFamily_12; 3000 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontStyle_13; 3002 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontVariant_14; 3004 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_fontWeight_15; 3006 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_fontSize_16; 3008 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundImage_17; 3010 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundPositionX_18; 3012 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundPositionY_19; 3014 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundRepeat_20; 3016 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderLeftColor_21; 3018 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderTopColor_22; 3020 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderRightColor_23; 3022 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderBottomColor_24; 3024 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderTopStyle_25; 3026 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderRightStyle_26; 3028 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderBottomStyle_27; 3030 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderLeftStyle_28; 3032 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderTopWidth_29; 3034 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderRightWidth_30; 3036 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderBottomWidth_31; 3038 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderLeftWidth_32; 3040 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_left_33; 3042 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_top_34; 3044 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_width_35; 3046 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_height_36; 3048 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingLeft_37; 3050 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingTop_38; 3052 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingRight_39; 3054 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingBottom_40; 3056 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textAlign_41; 3058 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textDecoration_42; 3060 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_display_43; 3062 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_visibility_44; 3064 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_zIndex_45; 3066 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_letterSpacing_46; 3068 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_lineHeight_47; 3070 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_textIndent_48; 3072 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_verticalAlign_49; 3074 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundAttachment_50; 3076 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginTop_51; 3078 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginRight_52; 3080 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginBottom_53; 3082 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginLeft_54; 3084 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_clear_55; 3086 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleType_56; 3088 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStylePosition_57; 3090 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleImage_58; 3092 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_clipTop_59; 3094 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_clipRight_60; 3096 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_clipBottom_61; 3098 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_clipLeft_62; 3100 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_overflow_63; 3102 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakBefore_64; 3104 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakAfter_65; 3106 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cursor_66; 3108 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_tableLayout_67; 3110 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderCollapse_68; 3112 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_direction_69; 3114 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_behavior_70; 3116 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getAttribute_71; 3118 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_unicodeBidi_72; 3120 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_right_73; 3122 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_bottom_74; 3124 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_imeMode_75; 3126 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_rubyAlign_76; 3128 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_rubyPosition_77; 3130 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_rubyOverhang_78; 3132 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textAutospace_79; 3134 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_lineBreak_80; 3136 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_wordBreak_81; 3138 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textJustify_82; 3140 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textJustifyTrim_83; 3142 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_textKashida_84; 3144 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_blockDirection_85; 3146 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_layoutGridChar_86; 3148 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_layoutGridLine_87; 3150 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_layoutGridMode_88; 3152 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_layoutGridType_89; 3154 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderStyle_90; 3156 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderColor_91; 3158 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderWidth_92; 3160 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_padding_93; 3162 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_margin_94; 3164 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accelerator_95; 3166 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_overflowX_96; 3168 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_overflowY_97; 3170 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textTransform_98; 3601 unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue);
_generated\142\Windows.Win32.IHTMLDataTransfer.g.cs (57)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 150 private static winmdroot.Foundation.HRESULT setData(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR format, winmdroot.System.Variant.VARIANT* data, winmdroot.Foundation.VARIANT_BOOL* pret) 154 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), format, data, &__retVal).ThrowOnFailure(); 177 private static winmdroot.Foundation.HRESULT getData(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR format, winmdroot.System.Variant.VARIANT* pvarRet) 181 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 190 return (winmdroot.Foundation.HRESULT)ex.HResult; 197 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), format, &__retVal).ThrowOnFailure(); 204 private static winmdroot.Foundation.HRESULT clearData(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR format, winmdroot.Foundation.VARIANT_BOOL* pret) 208 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 217 return (winmdroot.Foundation.HRESULT)ex.HResult; 224 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), format, &__retVal).ThrowOnFailure(); 231 private static winmdroot.Foundation.HRESULT put_dropEffect(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR v) 235 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 241 return winmdroot.Foundation.HRESULT.S_OK; 245 return (winmdroot.Foundation.HRESULT)ex.HResult; 253 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 258 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 266 private static winmdroot.Foundation.HRESULT get_dropEffect(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR* p) 270 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 276 return winmdroot.Foundation.HRESULT.S_OK; 280 return (winmdroot.Foundation.HRESULT)ex.HResult; 287 private static winmdroot.Foundation.HRESULT put_effectAllowed(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR v) 291 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 297 return winmdroot.Foundation.HRESULT.S_OK; 301 return (winmdroot.Foundation.HRESULT)ex.HResult; 309 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 314 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 322 private static winmdroot.Foundation.HRESULT get_effectAllowed(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR* p) 326 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 332 return winmdroot.Foundation.HRESULT.S_OK; 336 return (winmdroot.Foundation.HRESULT)ex.HResult; 340 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 346 var hr = this.QueryInterface(&guid, &pv); 363 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 369 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 371 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 373 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 375 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; 377 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> setData_8; 379 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getData_9; 381 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> clearData_10; 383 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_dropEffect_11; 385 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_dropEffect_12; 387 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_effectAllowed_13; 389 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_effectAllowed_14; 421 unsafe winmdroot.Foundation.HRESULT setData(winmdroot.Foundation.BSTR format, winmdroot.System.Variant.VARIANT* data, winmdroot.Foundation.VARIANT_BOOL* pret); 424 unsafe winmdroot.Foundation.HRESULT getData(winmdroot.Foundation.BSTR format, winmdroot.System.Variant.VARIANT* pvarRet); 427 unsafe winmdroot.Foundation.HRESULT clearData(winmdroot.Foundation.BSTR format, winmdroot.Foundation.VARIANT_BOOL* pret);
_generated\143\Windows.Win32.IHTMLDocument.g.cs (22)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLDocument*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLDocument*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLDocument*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLDocument*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLDocument*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLDocument*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT get_Script(IHTMLDocument* pThis, winmdroot.System.Com.IDispatch** p) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 156 public unsafe winmdroot.Foundation.HRESULT get_Script(winmdroot.System.Com.IDispatch** p) 158 return ((delegate *unmanaged [Stdcall]<IHTMLDocument*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLDocument*)Unsafe.AsPointer(ref this), p); 161 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 167 var hr = this.QueryInterface(&guid, &pv); 184 internal delegate *unmanaged [Stdcall]<IHTMLDocument*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 190 internal delegate *unmanaged [Stdcall]<IHTMLDocument*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 192 internal delegate *unmanaged [Stdcall]<IHTMLDocument*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 194 internal delegate *unmanaged [Stdcall]<IHTMLDocument*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 196 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; 198 internal delegate *unmanaged [Stdcall]<IHTMLDocument*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Script_8; 224 unsafe winmdroot.Foundation.HRESULT get_Script(winmdroot.System.Com.IDispatch** p);
_generated\144\Windows.Win32.IHTMLDocument2.g.cs (728)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLDocument2*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLDocument2*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLDocument2*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT get_Script(IHTMLDocument2* pThis, winmdroot.System.Com.IDispatch** p) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 156 public unsafe winmdroot.Foundation.HRESULT get_Script(winmdroot.System.Com.IDispatch** p) 158 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 164 private static winmdroot.Foundation.HRESULT get_all(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 168 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 177 return (winmdroot.Foundation.HRESULT)ex.HResult; 181 public unsafe winmdroot.Foundation.HRESULT get_all(winmdroot.Web.MsHtml.IHTMLElementCollection** p) 183 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 189 private static winmdroot.Foundation.HRESULT get_body(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 193 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 202 return (winmdroot.Foundation.HRESULT)ex.HResult; 206 public unsafe winmdroot.Foundation.HRESULT get_body(winmdroot.Web.MsHtml.IHTMLElement** p) 208 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 214 private static winmdroot.Foundation.HRESULT get_activeElement(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 218 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 227 return (winmdroot.Foundation.HRESULT)ex.HResult; 231 public unsafe winmdroot.Foundation.HRESULT get_activeElement(winmdroot.Web.MsHtml.IHTMLElement** p) 233 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 239 private static winmdroot.Foundation.HRESULT get_images(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 243 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 252 return (winmdroot.Foundation.HRESULT)ex.HResult; 256 public unsafe winmdroot.Foundation.HRESULT get_images(winmdroot.Web.MsHtml.IHTMLElementCollection** p) 258 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 264 private static winmdroot.Foundation.HRESULT get_applets(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 268 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 274 return winmdroot.Foundation.HRESULT.S_OK; 278 return (winmdroot.Foundation.HRESULT)ex.HResult; 287 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 295 private static winmdroot.Foundation.HRESULT get_links(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 299 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 308 return (winmdroot.Foundation.HRESULT)ex.HResult; 312 public unsafe winmdroot.Foundation.HRESULT get_links(winmdroot.Web.MsHtml.IHTMLElementCollection** p) 314 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 320 private static winmdroot.Foundation.HRESULT get_forms(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 324 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 333 return (winmdroot.Foundation.HRESULT)ex.HResult; 337 public unsafe winmdroot.Foundation.HRESULT get_forms(winmdroot.Web.MsHtml.IHTMLElementCollection** p) 339 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 345 private static winmdroot.Foundation.HRESULT get_anchors(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 349 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 355 return winmdroot.Foundation.HRESULT.S_OK; 359 return (winmdroot.Foundation.HRESULT)ex.HResult; 368 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 376 private static winmdroot.Foundation.HRESULT put_title(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 380 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 389 return (winmdroot.Foundation.HRESULT)ex.HResult; 393 public winmdroot.Foundation.HRESULT put_title(winmdroot.Foundation.BSTR v) 395 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 400 internal unsafe winmdroot.Foundation.HRESULT get_title(out winmdroot.Foundation.BSTR p) 404 winmdroot.Foundation.HRESULT __result = this.get_title(pLocal); 412 private static winmdroot.Foundation.HRESULT get_title(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 416 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 425 return (winmdroot.Foundation.HRESULT)ex.HResult; 429 public unsafe winmdroot.Foundation.HRESULT get_title(winmdroot.Foundation.BSTR* p) 431 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 437 private static winmdroot.Foundation.HRESULT get_scripts(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 441 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 447 return winmdroot.Foundation.HRESULT.S_OK; 451 return (winmdroot.Foundation.HRESULT)ex.HResult; 460 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 468 private static winmdroot.Foundation.HRESULT put_designMode(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 472 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 478 return winmdroot.Foundation.HRESULT.S_OK; 482 return (winmdroot.Foundation.HRESULT)ex.HResult; 490 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 495 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 503 private static winmdroot.Foundation.HRESULT get_designMode(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 507 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 513 return winmdroot.Foundation.HRESULT.S_OK; 517 return (winmdroot.Foundation.HRESULT)ex.HResult; 524 private static winmdroot.Foundation.HRESULT get_selection(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLSelectionObject** p) 528 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 534 return winmdroot.Foundation.HRESULT.S_OK; 538 return (winmdroot.Foundation.HRESULT)ex.HResult; 547 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLSelectionObject** ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 555 private static winmdroot.Foundation.HRESULT get_readyState(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 559 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 565 return winmdroot.Foundation.HRESULT.S_OK; 569 return (winmdroot.Foundation.HRESULT)ex.HResult; 578 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 586 private static winmdroot.Foundation.HRESULT get_frames(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLFramesCollection2** p) 590 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 596 return winmdroot.Foundation.HRESULT.S_OK; 600 return (winmdroot.Foundation.HRESULT)ex.HResult; 609 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLFramesCollection2** ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 617 private static winmdroot.Foundation.HRESULT get_embeds(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 621 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 627 return winmdroot.Foundation.HRESULT.S_OK; 631 return (winmdroot.Foundation.HRESULT)ex.HResult; 640 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 648 private static winmdroot.Foundation.HRESULT get_plugins(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 652 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 658 return winmdroot.Foundation.HRESULT.S_OK; 662 return (winmdroot.Foundation.HRESULT)ex.HResult; 671 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 679 private static winmdroot.Foundation.HRESULT put_alinkColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 683 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 692 return (winmdroot.Foundation.HRESULT)ex.HResult; 696 public winmdroot.Foundation.HRESULT put_alinkColor(winmdroot.System.Variant.VARIANT v) 698 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 703 internal unsafe winmdroot.Foundation.HRESULT get_alinkColor(out winmdroot.System.Variant.VARIANT p) 707 winmdroot.Foundation.HRESULT __result = this.get_alinkColor(pLocal); 715 private static winmdroot.Foundation.HRESULT get_alinkColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 719 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 728 return (winmdroot.Foundation.HRESULT)ex.HResult; 732 public unsafe winmdroot.Foundation.HRESULT get_alinkColor(winmdroot.System.Variant.VARIANT* p) 734 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 740 private static winmdroot.Foundation.HRESULT put_bgColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 744 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 753 return (winmdroot.Foundation.HRESULT)ex.HResult; 757 public winmdroot.Foundation.HRESULT put_bgColor(winmdroot.System.Variant.VARIANT v) 759 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 764 internal unsafe winmdroot.Foundation.HRESULT get_bgColor(out winmdroot.System.Variant.VARIANT p) 768 winmdroot.Foundation.HRESULT __result = this.get_bgColor(pLocal); 776 private static winmdroot.Foundation.HRESULT get_bgColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 780 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 789 return (winmdroot.Foundation.HRESULT)ex.HResult; 793 public unsafe winmdroot.Foundation.HRESULT get_bgColor(winmdroot.System.Variant.VARIANT* p) 795 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 801 private static winmdroot.Foundation.HRESULT put_fgColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 805 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 814 return (winmdroot.Foundation.HRESULT)ex.HResult; 818 public winmdroot.Foundation.HRESULT put_fgColor(winmdroot.System.Variant.VARIANT v) 820 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 825 internal unsafe winmdroot.Foundation.HRESULT get_fgColor(out winmdroot.System.Variant.VARIANT p) 829 winmdroot.Foundation.HRESULT __result = this.get_fgColor(pLocal); 837 private static winmdroot.Foundation.HRESULT get_fgColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 841 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 850 return (winmdroot.Foundation.HRESULT)ex.HResult; 854 public unsafe winmdroot.Foundation.HRESULT get_fgColor(winmdroot.System.Variant.VARIANT* p) 856 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 862 private static winmdroot.Foundation.HRESULT put_linkColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 866 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 875 return (winmdroot.Foundation.HRESULT)ex.HResult; 879 public winmdroot.Foundation.HRESULT put_linkColor(winmdroot.System.Variant.VARIANT v) 881 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 886 internal unsafe winmdroot.Foundation.HRESULT get_linkColor(out winmdroot.System.Variant.VARIANT p) 890 winmdroot.Foundation.HRESULT __result = this.get_linkColor(pLocal); 898 private static winmdroot.Foundation.HRESULT get_linkColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 902 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 911 return (winmdroot.Foundation.HRESULT)ex.HResult; 915 public unsafe winmdroot.Foundation.HRESULT get_linkColor(winmdroot.System.Variant.VARIANT* p) 917 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 923 private static winmdroot.Foundation.HRESULT put_vlinkColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 927 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 936 return (winmdroot.Foundation.HRESULT)ex.HResult; 940 public winmdroot.Foundation.HRESULT put_vlinkColor(winmdroot.System.Variant.VARIANT v) 942 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 947 internal unsafe winmdroot.Foundation.HRESULT get_vlinkColor(out winmdroot.System.Variant.VARIANT p) 951 winmdroot.Foundation.HRESULT __result = this.get_vlinkColor(pLocal); 959 private static winmdroot.Foundation.HRESULT get_vlinkColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 963 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 972 return (winmdroot.Foundation.HRESULT)ex.HResult; 976 public unsafe winmdroot.Foundation.HRESULT get_vlinkColor(winmdroot.System.Variant.VARIANT* p) 978 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 984 private static winmdroot.Foundation.HRESULT get_referrer(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 988 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 994 return winmdroot.Foundation.HRESULT.S_OK; 998 return (winmdroot.Foundation.HRESULT)ex.HResult; 1007 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1015 private static winmdroot.Foundation.HRESULT get_location(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLLocation** p) 1019 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1028 return (winmdroot.Foundation.HRESULT)ex.HResult; 1032 public unsafe winmdroot.Foundation.HRESULT get_location(winmdroot.Web.MsHtml.IHTMLLocation** p) 1034 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLLocation** ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1040 private static winmdroot.Foundation.HRESULT get_lastModified(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1044 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1050 return winmdroot.Foundation.HRESULT.S_OK; 1054 return (winmdroot.Foundation.HRESULT)ex.HResult; 1063 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1071 private static winmdroot.Foundation.HRESULT put_URL(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 1075 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1081 return winmdroot.Foundation.HRESULT.S_OK; 1085 return (winmdroot.Foundation.HRESULT)ex.HResult; 1093 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1098 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1106 private static winmdroot.Foundation.HRESULT get_URL(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1110 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1116 return winmdroot.Foundation.HRESULT.S_OK; 1120 return (winmdroot.Foundation.HRESULT)ex.HResult; 1127 private static winmdroot.Foundation.HRESULT put_domain(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 1131 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1140 return (winmdroot.Foundation.HRESULT)ex.HResult; 1144 public winmdroot.Foundation.HRESULT put_domain(winmdroot.Foundation.BSTR v) 1146 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 1151 internal unsafe winmdroot.Foundation.HRESULT get_domain(out winmdroot.Foundation.BSTR p) 1155 winmdroot.Foundation.HRESULT __result = this.get_domain(pLocal); 1163 private static winmdroot.Foundation.HRESULT get_domain(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1167 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1176 return (winmdroot.Foundation.HRESULT)ex.HResult; 1180 public unsafe winmdroot.Foundation.HRESULT get_domain(winmdroot.Foundation.BSTR* p) 1182 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1188 private static winmdroot.Foundation.HRESULT put_cookie(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 1192 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1201 return (winmdroot.Foundation.HRESULT)ex.HResult; 1205 public winmdroot.Foundation.HRESULT put_cookie(winmdroot.Foundation.BSTR v) 1207 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 1212 internal unsafe winmdroot.Foundation.HRESULT get_cookie(out winmdroot.Foundation.BSTR p) 1216 winmdroot.Foundation.HRESULT __result = this.get_cookie(pLocal); 1224 private static winmdroot.Foundation.HRESULT get_cookie(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1228 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1237 return (winmdroot.Foundation.HRESULT)ex.HResult; 1241 public unsafe winmdroot.Foundation.HRESULT get_cookie(winmdroot.Foundation.BSTR* p) 1243 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1249 private static winmdroot.Foundation.HRESULT put_expando(IHTMLDocument2* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1253 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1259 return winmdroot.Foundation.HRESULT.S_OK; 1263 return (winmdroot.Foundation.HRESULT)ex.HResult; 1271 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1276 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1284 private static winmdroot.Foundation.HRESULT get_expando(IHTMLDocument2* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1288 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1294 return winmdroot.Foundation.HRESULT.S_OK; 1298 return (winmdroot.Foundation.HRESULT)ex.HResult; 1305 private static winmdroot.Foundation.HRESULT put_charset(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 1309 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1318 return (winmdroot.Foundation.HRESULT)ex.HResult; 1322 public winmdroot.Foundation.HRESULT put_charset(winmdroot.Foundation.BSTR v) 1324 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 1329 internal unsafe winmdroot.Foundation.HRESULT get_charset(out winmdroot.Foundation.BSTR p) 1333 winmdroot.Foundation.HRESULT __result = this.get_charset(pLocal); 1341 private static winmdroot.Foundation.HRESULT get_charset(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1345 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1354 return (winmdroot.Foundation.HRESULT)ex.HResult; 1358 public unsafe winmdroot.Foundation.HRESULT get_charset(winmdroot.Foundation.BSTR* p) 1360 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1366 private static winmdroot.Foundation.HRESULT put_defaultCharset(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 1370 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1379 return (winmdroot.Foundation.HRESULT)ex.HResult; 1383 public winmdroot.Foundation.HRESULT put_defaultCharset(winmdroot.Foundation.BSTR v) 1385 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 1390 internal unsafe winmdroot.Foundation.HRESULT get_defaultCharset(out winmdroot.Foundation.BSTR p) 1394 winmdroot.Foundation.HRESULT __result = this.get_defaultCharset(pLocal); 1402 private static winmdroot.Foundation.HRESULT get_defaultCharset(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1406 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1415 return (winmdroot.Foundation.HRESULT)ex.HResult; 1419 public unsafe winmdroot.Foundation.HRESULT get_defaultCharset(winmdroot.Foundation.BSTR* p) 1421 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1426 internal unsafe winmdroot.Foundation.HRESULT get_mimeType(out winmdroot.Foundation.BSTR p) 1430 winmdroot.Foundation.HRESULT __result = this.get_mimeType(pLocal); 1438 private static winmdroot.Foundation.HRESULT get_mimeType(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1442 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1451 return (winmdroot.Foundation.HRESULT)ex.HResult; 1455 public unsafe winmdroot.Foundation.HRESULT get_mimeType(winmdroot.Foundation.BSTR* p) 1457 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1463 private static winmdroot.Foundation.HRESULT get_fileSize(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1467 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1473 return winmdroot.Foundation.HRESULT.S_OK; 1477 return (winmdroot.Foundation.HRESULT)ex.HResult; 1486 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1494 private static winmdroot.Foundation.HRESULT get_fileCreatedDate(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1498 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1504 return winmdroot.Foundation.HRESULT.S_OK; 1508 return (winmdroot.Foundation.HRESULT)ex.HResult; 1517 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1525 private static winmdroot.Foundation.HRESULT get_fileModifiedDate(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1529 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1535 return winmdroot.Foundation.HRESULT.S_OK; 1539 return (winmdroot.Foundation.HRESULT)ex.HResult; 1548 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1556 private static winmdroot.Foundation.HRESULT get_fileUpdatedDate(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1560 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1566 return winmdroot.Foundation.HRESULT.S_OK; 1570 return (winmdroot.Foundation.HRESULT)ex.HResult; 1579 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1587 private static winmdroot.Foundation.HRESULT get_security(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1591 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1597 return winmdroot.Foundation.HRESULT.S_OK; 1601 return (winmdroot.Foundation.HRESULT)ex.HResult; 1610 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1618 private static winmdroot.Foundation.HRESULT get_protocol(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1622 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1628 return winmdroot.Foundation.HRESULT.S_OK; 1632 return (winmdroot.Foundation.HRESULT)ex.HResult; 1641 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1649 private static winmdroot.Foundation.HRESULT get_nameProp(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1653 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1659 return winmdroot.Foundation.HRESULT.S_OK; 1663 return (winmdroot.Foundation.HRESULT)ex.HResult; 1672 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1680 private static winmdroot.Foundation.HRESULT write(IHTMLDocument2* pThis, winmdroot.System.Com.SAFEARRAY* psarray) 1684 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1693 return (winmdroot.Foundation.HRESULT)ex.HResult; 1697 public unsafe winmdroot.Foundation.HRESULT write(winmdroot.System.Com.SAFEARRAY* psarray) 1699 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IHTMLDocument2*)Unsafe.AsPointer(ref this), psarray); 1705 private static winmdroot.Foundation.HRESULT writeln(IHTMLDocument2* pThis, winmdroot.System.Com.SAFEARRAY* psarray) 1709 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1718 return (winmdroot.Foundation.HRESULT)ex.HResult; 1724 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IHTMLDocument2*)Unsafe.AsPointer(ref this), psarray).ThrowOnFailure(); 1730 private static winmdroot.Foundation.HRESULT open(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR url, winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT features, winmdroot.System.Variant.VARIANT replace, winmdroot.System.Com.IDispatch** pomWindowResult) 1734 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1743 return (winmdroot.Foundation.HRESULT)ex.HResult; 1747 public unsafe winmdroot.Foundation.HRESULT open(winmdroot.Foundation.BSTR url, winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT features, winmdroot.System.Variant.VARIANT replace, winmdroot.System.Com.IDispatch** pomWindowResult) 1749 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IHTMLDocument2*)Unsafe.AsPointer(ref this), url, name, features, replace, pomWindowResult); 1755 private static winmdroot.Foundation.HRESULT close(IHTMLDocument2* pThis) 1759 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1768 return (winmdroot.Foundation.HRESULT)ex.HResult; 1774 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IHTMLDocument2*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 1780 private static winmdroot.Foundation.HRESULT clear(IHTMLDocument2* pThis) 1784 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1793 return (winmdroot.Foundation.HRESULT)ex.HResult; 1799 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IHTMLDocument2*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 1805 private static winmdroot.Foundation.HRESULT queryCommandSupported(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1809 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1818 return (winmdroot.Foundation.HRESULT)ex.HResult; 1825 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1832 private static winmdroot.Foundation.HRESULT queryCommandEnabled(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1836 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1845 return (winmdroot.Foundation.HRESULT)ex.HResult; 1852 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1859 private static winmdroot.Foundation.HRESULT queryCommandState(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1863 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1872 return (winmdroot.Foundation.HRESULT)ex.HResult; 1879 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1886 private static winmdroot.Foundation.HRESULT queryCommandIndeterm(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1890 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1899 return (winmdroot.Foundation.HRESULT)ex.HResult; 1906 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1913 private static winmdroot.Foundation.HRESULT queryCommandText(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.BSTR* pcmdText) 1917 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1926 return (winmdroot.Foundation.HRESULT)ex.HResult; 1933 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1940 private static winmdroot.Foundation.HRESULT queryCommandValue(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.System.Variant.VARIANT* pcmdValue) 1944 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1953 return (winmdroot.Foundation.HRESULT)ex.HResult; 1960 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1966 internal unsafe winmdroot.Foundation.HRESULT execCommand(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL showUI, winmdroot.System.Variant.VARIANT value, out winmdroot.Foundation.VARIANT_BOOL pfRet) 1970 winmdroot.Foundation.HRESULT __result = this.execCommand(cmdID, showUI, value, pfRetLocal); 1978 private static winmdroot.Foundation.HRESULT execCommand(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL showUI, winmdroot.System.Variant.VARIANT value, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1982 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1991 return (winmdroot.Foundation.HRESULT)ex.HResult; 1995 public unsafe winmdroot.Foundation.HRESULT execCommand(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL showUI, winmdroot.System.Variant.VARIANT value, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1997 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, showUI, value, pfRet); 2003 private static winmdroot.Foundation.HRESULT execCommandShowHelp(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet) 2007 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2016 return (winmdroot.Foundation.HRESULT)ex.HResult; 2023 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 2030 private static winmdroot.Foundation.HRESULT createElement(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR eTag, winmdroot.Web.MsHtml.IHTMLElement** newElem) 2034 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2043 return (winmdroot.Foundation.HRESULT)ex.HResult; 2047 public unsafe winmdroot.Foundation.HRESULT createElement(winmdroot.Foundation.BSTR eTag, winmdroot.Web.MsHtml.IHTMLElement** newElem) 2049 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLDocument2*)Unsafe.AsPointer(ref this), eTag, newElem); 2055 private static winmdroot.Foundation.HRESULT put_onhelp(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2059 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2065 return winmdroot.Foundation.HRESULT.S_OK; 2069 return (winmdroot.Foundation.HRESULT)ex.HResult; 2077 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2082 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2090 private static winmdroot.Foundation.HRESULT get_onhelp(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2094 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2100 return winmdroot.Foundation.HRESULT.S_OK; 2104 return (winmdroot.Foundation.HRESULT)ex.HResult; 2111 private static winmdroot.Foundation.HRESULT put_onclick(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2115 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2121 return winmdroot.Foundation.HRESULT.S_OK; 2125 return (winmdroot.Foundation.HRESULT)ex.HResult; 2133 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2138 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2146 private static winmdroot.Foundation.HRESULT get_onclick(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2150 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2156 return winmdroot.Foundation.HRESULT.S_OK; 2160 return (winmdroot.Foundation.HRESULT)ex.HResult; 2167 private static winmdroot.Foundation.HRESULT put_ondblclick(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2171 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2177 return winmdroot.Foundation.HRESULT.S_OK; 2181 return (winmdroot.Foundation.HRESULT)ex.HResult; 2189 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2194 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2202 private static winmdroot.Foundation.HRESULT get_ondblclick(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2206 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2212 return winmdroot.Foundation.HRESULT.S_OK; 2216 return (winmdroot.Foundation.HRESULT)ex.HResult; 2223 private static winmdroot.Foundation.HRESULT put_onkeyup(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2227 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2233 return winmdroot.Foundation.HRESULT.S_OK; 2237 return (winmdroot.Foundation.HRESULT)ex.HResult; 2245 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[79])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2250 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[80])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2258 private static winmdroot.Foundation.HRESULT get_onkeyup(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2262 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2268 return winmdroot.Foundation.HRESULT.S_OK; 2272 return (winmdroot.Foundation.HRESULT)ex.HResult; 2279 private static winmdroot.Foundation.HRESULT put_onkeydown(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2283 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2289 return winmdroot.Foundation.HRESULT.S_OK; 2293 return (winmdroot.Foundation.HRESULT)ex.HResult; 2301 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2306 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2314 private static winmdroot.Foundation.HRESULT get_onkeydown(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2318 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2324 return winmdroot.Foundation.HRESULT.S_OK; 2328 return (winmdroot.Foundation.HRESULT)ex.HResult; 2335 private static winmdroot.Foundation.HRESULT put_onkeypress(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2339 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2345 return winmdroot.Foundation.HRESULT.S_OK; 2349 return (winmdroot.Foundation.HRESULT)ex.HResult; 2357 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2362 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2370 private static winmdroot.Foundation.HRESULT get_onkeypress(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2374 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2380 return winmdroot.Foundation.HRESULT.S_OK; 2384 return (winmdroot.Foundation.HRESULT)ex.HResult; 2391 private static winmdroot.Foundation.HRESULT put_onmouseup(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2395 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2401 return winmdroot.Foundation.HRESULT.S_OK; 2405 return (winmdroot.Foundation.HRESULT)ex.HResult; 2413 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[85])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2418 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[86])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2426 private static winmdroot.Foundation.HRESULT get_onmouseup(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2430 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2436 return winmdroot.Foundation.HRESULT.S_OK; 2440 return (winmdroot.Foundation.HRESULT)ex.HResult; 2447 private static winmdroot.Foundation.HRESULT put_onmousedown(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2451 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2457 return winmdroot.Foundation.HRESULT.S_OK; 2461 return (winmdroot.Foundation.HRESULT)ex.HResult; 2469 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[87])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2474 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[88])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2482 private static winmdroot.Foundation.HRESULT get_onmousedown(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2486 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2492 return winmdroot.Foundation.HRESULT.S_OK; 2496 return (winmdroot.Foundation.HRESULT)ex.HResult; 2503 private static winmdroot.Foundation.HRESULT put_onmousemove(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2507 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2513 return winmdroot.Foundation.HRESULT.S_OK; 2517 return (winmdroot.Foundation.HRESULT)ex.HResult; 2525 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[89])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2530 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[90])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2538 private static winmdroot.Foundation.HRESULT get_onmousemove(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2542 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2548 return winmdroot.Foundation.HRESULT.S_OK; 2552 return (winmdroot.Foundation.HRESULT)ex.HResult; 2559 private static winmdroot.Foundation.HRESULT put_onmouseout(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2563 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2569 return winmdroot.Foundation.HRESULT.S_OK; 2573 return (winmdroot.Foundation.HRESULT)ex.HResult; 2581 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[91])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2586 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2594 private static winmdroot.Foundation.HRESULT get_onmouseout(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2598 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2604 return winmdroot.Foundation.HRESULT.S_OK; 2608 return (winmdroot.Foundation.HRESULT)ex.HResult; 2615 private static winmdroot.Foundation.HRESULT put_onmouseover(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2619 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2625 return winmdroot.Foundation.HRESULT.S_OK; 2629 return (winmdroot.Foundation.HRESULT)ex.HResult; 2637 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[93])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2642 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[94])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2650 private static winmdroot.Foundation.HRESULT get_onmouseover(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2654 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2660 return winmdroot.Foundation.HRESULT.S_OK; 2664 return (winmdroot.Foundation.HRESULT)ex.HResult; 2671 private static winmdroot.Foundation.HRESULT put_onreadystatechange(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2675 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2681 return winmdroot.Foundation.HRESULT.S_OK; 2685 return (winmdroot.Foundation.HRESULT)ex.HResult; 2693 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[95])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2698 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[96])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2706 private static winmdroot.Foundation.HRESULT get_onreadystatechange(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2710 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2716 return winmdroot.Foundation.HRESULT.S_OK; 2720 return (winmdroot.Foundation.HRESULT)ex.HResult; 2727 private static winmdroot.Foundation.HRESULT put_onafterupdate(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2731 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2737 return winmdroot.Foundation.HRESULT.S_OK; 2741 return (winmdroot.Foundation.HRESULT)ex.HResult; 2749 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[97])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2754 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[98])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2762 private static winmdroot.Foundation.HRESULT get_onafterupdate(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2766 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2772 return winmdroot.Foundation.HRESULT.S_OK; 2776 return (winmdroot.Foundation.HRESULT)ex.HResult; 2783 private static winmdroot.Foundation.HRESULT put_onrowexit(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2787 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2793 return winmdroot.Foundation.HRESULT.S_OK; 2797 return (winmdroot.Foundation.HRESULT)ex.HResult; 2805 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[99])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2810 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[100])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2818 private static winmdroot.Foundation.HRESULT get_onrowexit(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2822 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2828 return winmdroot.Foundation.HRESULT.S_OK; 2832 return (winmdroot.Foundation.HRESULT)ex.HResult; 2839 private static winmdroot.Foundation.HRESULT put_onrowenter(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2843 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2849 return winmdroot.Foundation.HRESULT.S_OK; 2853 return (winmdroot.Foundation.HRESULT)ex.HResult; 2861 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[101])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2866 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[102])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2874 private static winmdroot.Foundation.HRESULT get_onrowenter(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2878 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2884 return winmdroot.Foundation.HRESULT.S_OK; 2888 return (winmdroot.Foundation.HRESULT)ex.HResult; 2895 private static winmdroot.Foundation.HRESULT put_ondragstart(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2899 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2905 return winmdroot.Foundation.HRESULT.S_OK; 2909 return (winmdroot.Foundation.HRESULT)ex.HResult; 2917 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[103])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2922 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[104])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2930 private static winmdroot.Foundation.HRESULT get_ondragstart(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2934 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2940 return winmdroot.Foundation.HRESULT.S_OK; 2944 return (winmdroot.Foundation.HRESULT)ex.HResult; 2951 private static winmdroot.Foundation.HRESULT put_onselectstart(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2955 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2961 return winmdroot.Foundation.HRESULT.S_OK; 2965 return (winmdroot.Foundation.HRESULT)ex.HResult; 2973 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[105])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2978 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[106])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2986 private static winmdroot.Foundation.HRESULT get_onselectstart(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2990 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2996 return winmdroot.Foundation.HRESULT.S_OK; 3000 return (winmdroot.Foundation.HRESULT)ex.HResult; 3007 private static winmdroot.Foundation.HRESULT elementFromPoint(IHTMLDocument2* pThis, int x, int y, winmdroot.Web.MsHtml.IHTMLElement** elementHit) 3011 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3020 return (winmdroot.Foundation.HRESULT)ex.HResult; 3024 public unsafe winmdroot.Foundation.HRESULT elementFromPoint(int x, int y, winmdroot.Web.MsHtml.IHTMLElement** elementHit) 3026 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,int ,int ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[107])((IHTMLDocument2*)Unsafe.AsPointer(ref this), x, y, elementHit); 3032 private static winmdroot.Foundation.HRESULT get_parentWindow(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLWindow2** p) 3036 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3045 return (winmdroot.Foundation.HRESULT)ex.HResult; 3049 public unsafe winmdroot.Foundation.HRESULT get_parentWindow(winmdroot.Web.MsHtml.IHTMLWindow2** p) 3051 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT>)lpVtbl[108])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 3057 private static winmdroot.Foundation.HRESULT get_styleSheets(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLStyleSheetsCollection** p) 3061 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3067 return winmdroot.Foundation.HRESULT.S_OK; 3071 return (winmdroot.Foundation.HRESULT)ex.HResult; 3080 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLStyleSheetsCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[109])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3088 private static winmdroot.Foundation.HRESULT put_onbeforeupdate(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 3092 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3098 return winmdroot.Foundation.HRESULT.S_OK; 3102 return (winmdroot.Foundation.HRESULT)ex.HResult; 3110 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[110])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3115 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[111])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3123 private static winmdroot.Foundation.HRESULT get_onbeforeupdate(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 3127 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3133 return winmdroot.Foundation.HRESULT.S_OK; 3137 return (winmdroot.Foundation.HRESULT)ex.HResult; 3144 private static winmdroot.Foundation.HRESULT put_onerrorupdate(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 3148 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3154 return winmdroot.Foundation.HRESULT.S_OK; 3158 return (winmdroot.Foundation.HRESULT)ex.HResult; 3166 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[112])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3171 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[113])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3179 private static winmdroot.Foundation.HRESULT get_onerrorupdate(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 3183 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3189 return winmdroot.Foundation.HRESULT.S_OK; 3193 return (winmdroot.Foundation.HRESULT)ex.HResult; 3200 private static winmdroot.Foundation.HRESULT toString(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* String) 3204 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3213 return (winmdroot.Foundation.HRESULT)ex.HResult; 3220 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[114])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 3227 private static winmdroot.Foundation.HRESULT createStyleSheet(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR bstrHref, int lIndex, winmdroot.Web.MsHtml.IHTMLStyleSheet** ppnewStyleSheet) 3231 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3240 return (winmdroot.Foundation.HRESULT)ex.HResult; 3247 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,int ,winmdroot.Web.MsHtml.IHTMLStyleSheet** ,winmdroot.Foundation.HRESULT>)lpVtbl[115])((IHTMLDocument2*)Unsafe.AsPointer(ref this), bstrHref, lIndex, &__retVal).ThrowOnFailure(); 3251 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 3257 var hr = this.QueryInterface(&guid, &pv); 3274 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 3280 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 3282 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 3284 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 3286 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; 3288 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Script_8; 3290 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_all_9; 3292 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_body_10; 3294 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_activeElement_11; 3296 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_images_12; 3298 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_applets_13; 3300 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_links_14; 3302 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_forms_15; 3304 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_anchors_16; 3306 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_title_17; 3308 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_title_18; 3310 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_scripts_19; 3312 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_designMode_20; 3314 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_designMode_21; 3316 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLSelectionObject** ,winmdroot.Foundation.HRESULT> get_selection_22; 3318 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_readyState_23; 3320 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLFramesCollection2** ,winmdroot.Foundation.HRESULT> get_frames_24; 3322 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_embeds_25; 3324 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_plugins_26; 3326 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_alinkColor_27; 3328 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_alinkColor_28; 3330 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_bgColor_29; 3332 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_bgColor_30; 3334 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_fgColor_31; 3336 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_fgColor_32; 3338 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_linkColor_33; 3340 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_linkColor_34; 3342 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_vlinkColor_35; 3344 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_vlinkColor_36; 3346 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_referrer_37; 3348 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLLocation** ,winmdroot.Foundation.HRESULT> get_location_38; 3350 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_lastModified_39; 3352 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_URL_40; 3354 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_URL_41; 3356 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_domain_42; 3358 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_domain_43; 3360 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cookie_44; 3362 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cookie_45; 3364 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_expando_46; 3366 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_expando_47; 3368 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_charset_48; 3370 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_charset_49; 3372 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_defaultCharset_50; 3374 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_defaultCharset_51; 3376 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_mimeType_52; 3378 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileSize_53; 3380 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileCreatedDate_54; 3382 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileModifiedDate_55; 3384 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileUpdatedDate_56; 3386 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_security_57; 3388 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_protocol_58; 3390 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_nameProp_59; 3392 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT> write_60; 3394 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT> writeln_61; 3396 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> open_62; 3398 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.HRESULT> close_63; 3400 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.HRESULT> clear_64; 3402 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> queryCommandSupported_65; 3404 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> queryCommandEnabled_66; 3406 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> queryCommandState_67; 3408 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> queryCommandIndeterm_68; 3410 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> queryCommandText_69; 3412 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> queryCommandValue_70; 3414 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> execCommand_71; 3416 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> execCommandShowHelp_72; 3418 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> createElement_73; 3420 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onhelp_74; 3422 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onhelp_75; 3424 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onclick_76; 3426 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onclick_77; 3428 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondblclick_78; 3430 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondblclick_79; 3432 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onkeyup_80; 3434 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onkeyup_81; 3436 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onkeydown_82; 3438 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onkeydown_83; 3440 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onkeypress_84; 3442 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onkeypress_85; 3444 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmouseup_86; 3446 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmouseup_87; 3448 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmousedown_88; 3450 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmousedown_89; 3452 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmousemove_90; 3454 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmousemove_91; 3456 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmouseout_92; 3458 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmouseout_93; 3460 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmouseover_94; 3462 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmouseover_95; 3464 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onreadystatechange_96; 3466 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onreadystatechange_97; 3468 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onafterupdate_98; 3470 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onafterupdate_99; 3472 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onrowexit_100; 3474 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onrowexit_101; 3476 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onrowenter_102; 3478 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onrowenter_103; 3480 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondragstart_104; 3482 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondragstart_105; 3484 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onselectstart_106; 3486 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onselectstart_107; 3488 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,int ,int ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> elementFromPoint_108; 3490 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT> get_parentWindow_109; 3492 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLStyleSheetsCollection** ,winmdroot.Foundation.HRESULT> get_styleSheets_110; 3494 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforeupdate_111; 3496 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforeupdate_112; 3498 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onerrorupdate_113; 3500 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onerrorupdate_114; 3502 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_115; 3504 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,int ,winmdroot.Web.MsHtml.IHTMLStyleSheet** ,winmdroot.Foundation.HRESULT> createStyleSheet_116; 3638 unsafe new winmdroot.Foundation.HRESULT get_Script(winmdroot.System.Com.IDispatch** p); 3641 unsafe winmdroot.Foundation.HRESULT get_all(winmdroot.Web.MsHtml.IHTMLElementCollection** p); 3644 unsafe winmdroot.Foundation.HRESULT get_body(winmdroot.Web.MsHtml.IHTMLElement** p); 3647 unsafe winmdroot.Foundation.HRESULT get_activeElement(winmdroot.Web.MsHtml.IHTMLElement** p); 3650 unsafe winmdroot.Foundation.HRESULT get_images(winmdroot.Web.MsHtml.IHTMLElementCollection** p); 3658 unsafe winmdroot.Foundation.HRESULT get_links(winmdroot.Web.MsHtml.IHTMLElementCollection** p); 3661 unsafe winmdroot.Foundation.HRESULT get_forms(winmdroot.Web.MsHtml.IHTMLElementCollection** p); 3669winmdroot.Foundation.HRESULT put_title(winmdroot.Foundation.BSTR v); 3672 unsafe winmdroot.Foundation.HRESULT get_title(winmdroot.Foundation.BSTR* p); 3711winmdroot.Foundation.HRESULT put_alinkColor(winmdroot.System.Variant.VARIANT v); 3714 unsafe winmdroot.Foundation.HRESULT get_alinkColor(winmdroot.System.Variant.VARIANT* p); 3717winmdroot.Foundation.HRESULT put_bgColor(winmdroot.System.Variant.VARIANT v); 3720 unsafe winmdroot.Foundation.HRESULT get_bgColor(winmdroot.System.Variant.VARIANT* p); 3723winmdroot.Foundation.HRESULT put_fgColor(winmdroot.System.Variant.VARIANT v); 3726 unsafe winmdroot.Foundation.HRESULT get_fgColor(winmdroot.System.Variant.VARIANT* p); 3729winmdroot.Foundation.HRESULT put_linkColor(winmdroot.System.Variant.VARIANT v); 3732 unsafe winmdroot.Foundation.HRESULT get_linkColor(winmdroot.System.Variant.VARIANT* p); 3735winmdroot.Foundation.HRESULT put_vlinkColor(winmdroot.System.Variant.VARIANT v); 3738 unsafe winmdroot.Foundation.HRESULT get_vlinkColor(winmdroot.System.Variant.VARIANT* p); 3746 unsafe winmdroot.Foundation.HRESULT get_location(winmdroot.Web.MsHtml.IHTMLLocation** p); 3760winmdroot.Foundation.HRESULT put_domain(winmdroot.Foundation.BSTR v); 3763 unsafe winmdroot.Foundation.HRESULT get_domain(winmdroot.Foundation.BSTR* p); 3766winmdroot.Foundation.HRESULT put_cookie(winmdroot.Foundation.BSTR v); 3769 unsafe winmdroot.Foundation.HRESULT get_cookie(winmdroot.Foundation.BSTR* p); 3778winmdroot.Foundation.HRESULT put_charset(winmdroot.Foundation.BSTR v); 3781 unsafe winmdroot.Foundation.HRESULT get_charset(winmdroot.Foundation.BSTR* p); 3784winmdroot.Foundation.HRESULT put_defaultCharset(winmdroot.Foundation.BSTR v); 3787 unsafe winmdroot.Foundation.HRESULT get_defaultCharset(winmdroot.Foundation.BSTR* p); 3790 unsafe winmdroot.Foundation.HRESULT get_mimeType(winmdroot.Foundation.BSTR* p); 3828 unsafe winmdroot.Foundation.HRESULT write(winmdroot.System.Com.SAFEARRAY* psarray); 3831 unsafe winmdroot.Foundation.HRESULT writeln(winmdroot.System.Com.SAFEARRAY* psarray); 3834 unsafe winmdroot.Foundation.HRESULT open(winmdroot.Foundation.BSTR url, winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT features, winmdroot.System.Variant.VARIANT replace, winmdroot.System.Com.IDispatch** pomWindowResult); 3837winmdroot.Foundation.HRESULT close(); 3840winmdroot.Foundation.HRESULT clear(); 3843 unsafe winmdroot.Foundation.HRESULT queryCommandSupported(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3846 unsafe winmdroot.Foundation.HRESULT queryCommandEnabled(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3849 unsafe winmdroot.Foundation.HRESULT queryCommandState(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3852 unsafe winmdroot.Foundation.HRESULT queryCommandIndeterm(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3855 unsafe winmdroot.Foundation.HRESULT queryCommandText(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.BSTR* pcmdText); 3858 unsafe winmdroot.Foundation.HRESULT queryCommandValue(winmdroot.Foundation.BSTR cmdID, winmdroot.System.Variant.VARIANT* pcmdValue); 3861 unsafe winmdroot.Foundation.HRESULT execCommand(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL showUI, winmdroot.System.Variant.VARIANT value, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3864 unsafe winmdroot.Foundation.HRESULT execCommandShowHelp(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3867 unsafe winmdroot.Foundation.HRESULT createElement(winmdroot.Foundation.BSTR eTag, winmdroot.Web.MsHtml.IHTMLElement** newElem); 3972 unsafe winmdroot.Foundation.HRESULT elementFromPoint(int x, int y, winmdroot.Web.MsHtml.IHTMLElement** elementHit); 3975 unsafe winmdroot.Foundation.HRESULT get_parentWindow(winmdroot.Web.MsHtml.IHTMLWindow2** p); 3995 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* String); 3998 unsafe winmdroot.Foundation.HRESULT createStyleSheet(winmdroot.Foundation.BSTR bstrHref, int lIndex, winmdroot.Web.MsHtml.IHTMLStyleSheet** ppnewStyleSheet);
_generated\145\Windows.Win32.IHTMLDocument3.g.cs (271)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLDocument3*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLDocument3*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLDocument3*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT releaseCapture(IHTMLDocument3* pThis) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 158 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLDocument3*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 164 private static winmdroot.Foundation.HRESULT recalc(IHTMLDocument3* pThis, winmdroot.Foundation.VARIANT_BOOL fForce) 168 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 177 return (winmdroot.Foundation.HRESULT)ex.HResult; 183 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLDocument3*)Unsafe.AsPointer(ref this), fForce).ThrowOnFailure(); 189 private static winmdroot.Foundation.HRESULT createTextNode(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR text, winmdroot.Web.MsHtml.IHTMLDOMNode** newTextNode) 193 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 202 return (winmdroot.Foundation.HRESULT)ex.HResult; 209 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLDocument3*)Unsafe.AsPointer(ref this), text, &__retVal).ThrowOnFailure(); 216 private static winmdroot.Foundation.HRESULT get_documentElement(IHTMLDocument3* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 220 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 226 return winmdroot.Foundation.HRESULT.S_OK; 230 return (winmdroot.Foundation.HRESULT)ex.HResult; 239 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 247 private static winmdroot.Foundation.HRESULT get_uniqueID(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR* p) 251 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 257 return winmdroot.Foundation.HRESULT.S_OK; 261 return (winmdroot.Foundation.HRESULT)ex.HResult; 270 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 277 internal unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult) 281 winmdroot.Foundation.HRESULT __result = this.attachEvent(@event, pDisp, pfResultLocal); 289 private static winmdroot.Foundation.HRESULT attachEvent(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 293 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 302 return (winmdroot.Foundation.HRESULT)ex.HResult; 306 public unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 308 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLDocument3*)Unsafe.AsPointer(ref this), @event, pDisp, pfResult); 314 private static winmdroot.Foundation.HRESULT detachEvent(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 318 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 327 return (winmdroot.Foundation.HRESULT)ex.HResult; 331 public unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 333 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLDocument3*)Unsafe.AsPointer(ref this), @event, pDisp); 339 private static winmdroot.Foundation.HRESULT put_onrowsdelete(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 343 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 349 return winmdroot.Foundation.HRESULT.S_OK; 353 return (winmdroot.Foundation.HRESULT)ex.HResult; 361 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 366 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 374 private static winmdroot.Foundation.HRESULT get_onrowsdelete(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 378 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 384 return winmdroot.Foundation.HRESULT.S_OK; 388 return (winmdroot.Foundation.HRESULT)ex.HResult; 395 private static winmdroot.Foundation.HRESULT put_onrowsinserted(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 399 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 405 return winmdroot.Foundation.HRESULT.S_OK; 409 return (winmdroot.Foundation.HRESULT)ex.HResult; 417 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 422 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 430 private static winmdroot.Foundation.HRESULT get_onrowsinserted(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 434 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 440 return winmdroot.Foundation.HRESULT.S_OK; 444 return (winmdroot.Foundation.HRESULT)ex.HResult; 451 private static winmdroot.Foundation.HRESULT put_oncellchange(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 455 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 461 return winmdroot.Foundation.HRESULT.S_OK; 465 return (winmdroot.Foundation.HRESULT)ex.HResult; 473 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 478 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 486 private static winmdroot.Foundation.HRESULT get_oncellchange(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 490 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 496 return winmdroot.Foundation.HRESULT.S_OK; 500 return (winmdroot.Foundation.HRESULT)ex.HResult; 507 private static winmdroot.Foundation.HRESULT put_ondatasetchanged(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 511 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 517 return winmdroot.Foundation.HRESULT.S_OK; 521 return (winmdroot.Foundation.HRESULT)ex.HResult; 529 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 534 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 542 private static winmdroot.Foundation.HRESULT get_ondatasetchanged(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 546 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 552 return winmdroot.Foundation.HRESULT.S_OK; 556 return (winmdroot.Foundation.HRESULT)ex.HResult; 563 private static winmdroot.Foundation.HRESULT put_ondataavailable(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 567 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 573 return winmdroot.Foundation.HRESULT.S_OK; 577 return (winmdroot.Foundation.HRESULT)ex.HResult; 585 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 590 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 598 private static winmdroot.Foundation.HRESULT get_ondataavailable(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 602 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 608 return winmdroot.Foundation.HRESULT.S_OK; 612 return (winmdroot.Foundation.HRESULT)ex.HResult; 619 private static winmdroot.Foundation.HRESULT put_ondatasetcomplete(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 623 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 629 return winmdroot.Foundation.HRESULT.S_OK; 633 return (winmdroot.Foundation.HRESULT)ex.HResult; 641 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 646 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 654 private static winmdroot.Foundation.HRESULT get_ondatasetcomplete(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 658 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 664 return winmdroot.Foundation.HRESULT.S_OK; 668 return (winmdroot.Foundation.HRESULT)ex.HResult; 675 private static winmdroot.Foundation.HRESULT put_onpropertychange(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 679 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 685 return winmdroot.Foundation.HRESULT.S_OK; 689 return (winmdroot.Foundation.HRESULT)ex.HResult; 697 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 702 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 710 private static winmdroot.Foundation.HRESULT get_onpropertychange(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 714 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 720 return winmdroot.Foundation.HRESULT.S_OK; 724 return (winmdroot.Foundation.HRESULT)ex.HResult; 731 private static winmdroot.Foundation.HRESULT put_dir(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR v) 735 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 744 return (winmdroot.Foundation.HRESULT)ex.HResult; 748 public winmdroot.Foundation.HRESULT put_dir(winmdroot.Foundation.BSTR v) 750 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLDocument3*)Unsafe.AsPointer(ref this), v); 755 internal unsafe winmdroot.Foundation.HRESULT get_dir(out winmdroot.Foundation.BSTR p) 759 winmdroot.Foundation.HRESULT __result = this.get_dir(pLocal); 767 private static winmdroot.Foundation.HRESULT get_dir(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR* p) 771 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 780 return (winmdroot.Foundation.HRESULT)ex.HResult; 784 public unsafe winmdroot.Foundation.HRESULT get_dir(winmdroot.Foundation.BSTR* p) 786 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLDocument3*)Unsafe.AsPointer(ref this), p); 792 private static winmdroot.Foundation.HRESULT put_oncontextmenu(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 796 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 802 return winmdroot.Foundation.HRESULT.S_OK; 806 return (winmdroot.Foundation.HRESULT)ex.HResult; 814 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 819 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 827 private static winmdroot.Foundation.HRESULT get_oncontextmenu(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 831 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 837 return winmdroot.Foundation.HRESULT.S_OK; 841 return (winmdroot.Foundation.HRESULT)ex.HResult; 848 private static winmdroot.Foundation.HRESULT put_onstop(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 852 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 858 return winmdroot.Foundation.HRESULT.S_OK; 862 return (winmdroot.Foundation.HRESULT)ex.HResult; 870 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 875 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 883 private static winmdroot.Foundation.HRESULT get_onstop(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 887 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 893 return winmdroot.Foundation.HRESULT.S_OK; 897 return (winmdroot.Foundation.HRESULT)ex.HResult; 904 private static winmdroot.Foundation.HRESULT createDocumentFragment(IHTMLDocument3* pThis, winmdroot.Web.MsHtml.IHTMLDocument2** pNewDoc) 908 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 917 return (winmdroot.Foundation.HRESULT)ex.HResult; 924 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 931 private static winmdroot.Foundation.HRESULT get_parentDocument(IHTMLDocument3* pThis, winmdroot.Web.MsHtml.IHTMLDocument2** p) 935 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 941 return winmdroot.Foundation.HRESULT.S_OK; 945 return (winmdroot.Foundation.HRESULT)ex.HResult; 954 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 962 private static winmdroot.Foundation.HRESULT put_enableDownload(IHTMLDocument3* pThis, winmdroot.Foundation.VARIANT_BOOL v) 966 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 972 return winmdroot.Foundation.HRESULT.S_OK; 976 return (winmdroot.Foundation.HRESULT)ex.HResult; 984 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 989 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 997 private static winmdroot.Foundation.HRESULT get_enableDownload(IHTMLDocument3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1001 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1007 return winmdroot.Foundation.HRESULT.S_OK; 1011 return (winmdroot.Foundation.HRESULT)ex.HResult; 1018 private static winmdroot.Foundation.HRESULT put_baseUrl(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR v) 1022 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1028 return winmdroot.Foundation.HRESULT.S_OK; 1032 return (winmdroot.Foundation.HRESULT)ex.HResult; 1040 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1045 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1053 private static winmdroot.Foundation.HRESULT get_baseUrl(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR* p) 1057 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1063 return winmdroot.Foundation.HRESULT.S_OK; 1067 return (winmdroot.Foundation.HRESULT)ex.HResult; 1074 private static winmdroot.Foundation.HRESULT get_childNodes(IHTMLDocument3* pThis, winmdroot.System.Com.IDispatch** p) 1078 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1084 return winmdroot.Foundation.HRESULT.S_OK; 1088 return (winmdroot.Foundation.HRESULT)ex.HResult; 1097 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1105 private static winmdroot.Foundation.HRESULT put_inheritStyleSheets(IHTMLDocument3* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1109 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1115 return winmdroot.Foundation.HRESULT.S_OK; 1119 return (winmdroot.Foundation.HRESULT)ex.HResult; 1127 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1132 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1140 private static winmdroot.Foundation.HRESULT get_inheritStyleSheets(IHTMLDocument3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1144 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1150 return winmdroot.Foundation.HRESULT.S_OK; 1154 return (winmdroot.Foundation.HRESULT)ex.HResult; 1161 private static winmdroot.Foundation.HRESULT put_onbeforeeditfocus(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 1165 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1171 return winmdroot.Foundation.HRESULT.S_OK; 1175 return (winmdroot.Foundation.HRESULT)ex.HResult; 1183 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1188 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1196 private static winmdroot.Foundation.HRESULT get_onbeforeeditfocus(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 1200 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1206 return winmdroot.Foundation.HRESULT.S_OK; 1210 return (winmdroot.Foundation.HRESULT)ex.HResult; 1217 private static winmdroot.Foundation.HRESULT getElementsByName(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl) 1221 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1230 return (winmdroot.Foundation.HRESULT)ex.HResult; 1237 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLDocument3*)Unsafe.AsPointer(ref this), v, &__retVal).ThrowOnFailure(); 1244 private static winmdroot.Foundation.HRESULT getElementById(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElement** pel) 1248 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1257 return (winmdroot.Foundation.HRESULT)ex.HResult; 1261 public unsafe winmdroot.Foundation.HRESULT getElementById(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElement** pel) 1263 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLDocument3*)Unsafe.AsPointer(ref this), v, pel); 1269 private static winmdroot.Foundation.HRESULT getElementsByTagName(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl) 1273 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1282 return (winmdroot.Foundation.HRESULT)ex.HResult; 1286 public unsafe winmdroot.Foundation.HRESULT getElementsByTagName(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl) 1288 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLDocument3*)Unsafe.AsPointer(ref this), v, pelColl); 1291 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 1297 var hr = this.QueryInterface(&guid, &pv); 1314 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 1320 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 1322 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 1324 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 1326 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; 1328 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.HRESULT> releaseCapture_8; 1330 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> recalc_9; 1332 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> createTextNode_10; 1334 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_documentElement_11; 1336 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_uniqueID_12; 1338 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> attachEvent_13; 1340 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT> detachEvent_14; 1342 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onrowsdelete_15; 1344 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onrowsdelete_16; 1346 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onrowsinserted_17; 1348 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onrowsinserted_18; 1350 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_oncellchange_19; 1352 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_oncellchange_20; 1354 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondatasetchanged_21; 1356 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondatasetchanged_22; 1358 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondataavailable_23; 1360 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondataavailable_24; 1362 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondatasetcomplete_25; 1364 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondatasetcomplete_26; 1366 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onpropertychange_27; 1368 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onpropertychange_28; 1370 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_dir_29; 1372 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_dir_30; 1374 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_oncontextmenu_31; 1376 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_oncontextmenu_32; 1378 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onstop_33; 1380 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onstop_34; 1382 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT> createDocumentFragment_35; 1384 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT> get_parentDocument_36; 1386 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_enableDownload_37; 1388 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_enableDownload_38; 1390 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_baseUrl_39; 1392 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_baseUrl_40; 1394 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_childNodes_41; 1396 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_inheritStyleSheets_42; 1398 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_inheritStyleSheets_43; 1400 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforeeditfocus_44; 1402 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforeeditfocus_45; 1404 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> getElementsByName_46; 1406 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> getElementById_47; 1408 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> getElementsByTagName_48; 1474winmdroot.Foundation.HRESULT releaseCapture(); 1477winmdroot.Foundation.HRESULT recalc(winmdroot.Foundation.VARIANT_BOOL fForce); 1480 unsafe winmdroot.Foundation.HRESULT createTextNode(winmdroot.Foundation.BSTR text, winmdroot.Web.MsHtml.IHTMLDOMNode** newTextNode); 1493 unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult); 1496 unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp); 1541winmdroot.Foundation.HRESULT put_dir(winmdroot.Foundation.BSTR v); 1544 unsafe winmdroot.Foundation.HRESULT get_dir(winmdroot.Foundation.BSTR* p); 1559 unsafe winmdroot.Foundation.HRESULT createDocumentFragment(winmdroot.Web.MsHtml.IHTMLDocument2** pNewDoc); 1596 unsafe winmdroot.Foundation.HRESULT getElementsByName(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl); 1599 unsafe winmdroot.Foundation.HRESULT getElementById(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElement** pel); 1602 unsafe winmdroot.Foundation.HRESULT getElementsByTagName(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl);
_generated\146\Windows.Win32.IHTMLDocument4.g.cs (106)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLDocument4*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLDocument4*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLDocument4*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT focus(IHTMLDocument4* pThis) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 156 public winmdroot.Foundation.HRESULT focus() 158 return ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLDocument4*)Unsafe.AsPointer(ref this)); 163 internal unsafe winmdroot.Foundation.HRESULT hasFocus(out winmdroot.Foundation.VARIANT_BOOL pfFocus) 167 winmdroot.Foundation.HRESULT __result = this.hasFocus(pfFocusLocal); 175 private static winmdroot.Foundation.HRESULT hasFocus(IHTMLDocument4* pThis, winmdroot.Foundation.VARIANT_BOOL* pfFocus) 179 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 188 return (winmdroot.Foundation.HRESULT)ex.HResult; 192 public unsafe winmdroot.Foundation.HRESULT hasFocus(winmdroot.Foundation.VARIANT_BOOL* pfFocus) 194 return ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLDocument4*)Unsafe.AsPointer(ref this), pfFocus); 200 private static winmdroot.Foundation.HRESULT put_onselectionchange(IHTMLDocument4* pThis, winmdroot.System.Variant.VARIANT v) 204 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 210 return winmdroot.Foundation.HRESULT.S_OK; 214 return (winmdroot.Foundation.HRESULT)ex.HResult; 222 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLDocument4*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 227 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLDocument4*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 235 private static winmdroot.Foundation.HRESULT get_onselectionchange(IHTMLDocument4* pThis, winmdroot.System.Variant.VARIANT* p) 239 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 245 return winmdroot.Foundation.HRESULT.S_OK; 249 return (winmdroot.Foundation.HRESULT)ex.HResult; 256 private static winmdroot.Foundation.HRESULT get_namespaces(IHTMLDocument4* pThis, winmdroot.System.Com.IDispatch** p) 260 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 266 return winmdroot.Foundation.HRESULT.S_OK; 270 return (winmdroot.Foundation.HRESULT)ex.HResult; 279 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLDocument4*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 287 private static winmdroot.Foundation.HRESULT createDocumentFromUrl(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR bstrUrl, winmdroot.Foundation.BSTR bstrOptions, winmdroot.Web.MsHtml.IHTMLDocument2** newDoc) 291 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 300 return (winmdroot.Foundation.HRESULT)ex.HResult; 307 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLDocument4*)Unsafe.AsPointer(ref this), bstrUrl, bstrOptions, &__retVal).ThrowOnFailure(); 314 private static winmdroot.Foundation.HRESULT put_media(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR v) 318 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 324 return winmdroot.Foundation.HRESULT.S_OK; 328 return (winmdroot.Foundation.HRESULT)ex.HResult; 336 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLDocument4*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 341 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLDocument4*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 349 private static winmdroot.Foundation.HRESULT get_media(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR* p) 353 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 359 return winmdroot.Foundation.HRESULT.S_OK; 363 return (winmdroot.Foundation.HRESULT)ex.HResult; 381 private static winmdroot.Foundation.HRESULT createEventObject(IHTMLDocument4* pThis, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Web.MsHtml.IHTMLEventObj** ppEventObj) 385 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 394 return (winmdroot.Foundation.HRESULT)ex.HResult; 401 ((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(); 407 internal unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, in winmdroot.System.Variant.VARIANT pvarEventObject, out winmdroot.Foundation.VARIANT_BOOL pfCancelled) 413 winmdroot.Foundation.HRESULT __result = this.fireEvent(bstrEventName, pvarEventObjectLocal, pfCancelledLocal); 422 private static winmdroot.Foundation.HRESULT fireEvent(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled) 426 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 435 return (winmdroot.Foundation.HRESULT)ex.HResult; 439 public unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled) 441 return ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLDocument4*)Unsafe.AsPointer(ref this), bstrEventName, pvarEventObject, pfCancelled); 447 private static winmdroot.Foundation.HRESULT createRenderStyle(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLRenderStyle** ppIHTMLRenderStyle) 451 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 460 return (winmdroot.Foundation.HRESULT)ex.HResult; 467 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLRenderStyle** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLDocument4*)Unsafe.AsPointer(ref this), v, &__retVal).ThrowOnFailure(); 474 private static winmdroot.Foundation.HRESULT put_oncontrolselect(IHTMLDocument4* pThis, winmdroot.System.Variant.VARIANT v) 478 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 484 return winmdroot.Foundation.HRESULT.S_OK; 488 return (winmdroot.Foundation.HRESULT)ex.HResult; 496 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLDocument4*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 501 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLDocument4*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 509 private static winmdroot.Foundation.HRESULT get_oncontrolselect(IHTMLDocument4* pThis, winmdroot.System.Variant.VARIANT* p) 513 winmdroot.Foundation.HRESULT __hr = winmdroot.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 get_URLUnencoded(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR* p) 534 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 540 return winmdroot.Foundation.HRESULT.S_OK; 544 return (winmdroot.Foundation.HRESULT)ex.HResult; 553 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLDocument4*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 558 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 564 var hr = this.QueryInterface(&guid, &pv); 581 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 587 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 589 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 591 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 593 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; 595 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.HRESULT> focus_8; 597 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> hasFocus_9; 599 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onselectionchange_10; 601 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onselectionchange_11; 603 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_namespaces_12; 605 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT> createDocumentFromUrl_13; 607 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_media_14; 609 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_media_15; 611 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT* ,winmdroot.Web.MsHtml.IHTMLEventObj** ,winmdroot.Foundation.HRESULT> createEventObject_16; 613 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> fireEvent_17; 615 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLRenderStyle** ,winmdroot.Foundation.HRESULT> createRenderStyle_18; 617 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_oncontrolselect_19; 619 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_oncontrolselect_20; 621 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_URLUnencoded_21; 660winmdroot.Foundation.HRESULT focus(); 663 unsafe winmdroot.Foundation.HRESULT hasFocus(winmdroot.Foundation.VARIANT_BOOL* pfFocus); 677 unsafe winmdroot.Foundation.HRESULT createDocumentFromUrl(winmdroot.Foundation.BSTR bstrUrl, winmdroot.Foundation.BSTR bstrOptions, winmdroot.Web.MsHtml.IHTMLDocument2** newDoc); 686 unsafe winmdroot.Foundation.HRESULT createEventObject(winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Web.MsHtml.IHTMLEventObj** ppEventObj); 689 unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled); 692 unsafe winmdroot.Foundation.HRESULT createRenderStyle(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLRenderStyle** ppIHTMLRenderStyle);
_generated\147\Windows.Win32.IHTMLDOMNode.g.cs (138)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT get_nodeType(IHTMLDOMNode* pThis, int* p) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT get_parentNode(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode** p) 174 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 201 private static winmdroot.Foundation.HRESULT hasChildNodes(IHTMLDOMNode* pThis, winmdroot.Foundation.VARIANT_BOOL* fChildren) 205 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 214 return (winmdroot.Foundation.HRESULT)ex.HResult; 221 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 228 private static winmdroot.Foundation.HRESULT get_childNodes(IHTMLDOMNode* pThis, winmdroot.System.Com.IDispatch** p) 232 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 238 return winmdroot.Foundation.HRESULT.S_OK; 242 return (winmdroot.Foundation.HRESULT)ex.HResult; 251 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 259 private static winmdroot.Foundation.HRESULT get_attributes(IHTMLDOMNode* pThis, winmdroot.System.Com.IDispatch** p) 263 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 269 return winmdroot.Foundation.HRESULT.S_OK; 273 return (winmdroot.Foundation.HRESULT)ex.HResult; 282 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 290 private static winmdroot.Foundation.HRESULT insertBefore(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode* newChild, winmdroot.System.Variant.VARIANT refChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node) 294 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 303 return (winmdroot.Foundation.HRESULT)ex.HResult; 310 ((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(); 317 private static winmdroot.Foundation.HRESULT removeChild(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode* oldChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node) 321 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 330 return (winmdroot.Foundation.HRESULT)ex.HResult; 334 public unsafe winmdroot.Foundation.HRESULT removeChild(winmdroot.Web.MsHtml.IHTMLDOMNode* oldChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node) 336 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); 342 private static winmdroot.Foundation.HRESULT replaceChild(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode* newChild, winmdroot.Web.MsHtml.IHTMLDOMNode* oldChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node) 346 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 355 return (winmdroot.Foundation.HRESULT)ex.HResult; 362 ((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(); 369 private static winmdroot.Foundation.HRESULT cloneNode(IHTMLDOMNode* pThis, winmdroot.Foundation.VARIANT_BOOL fDeep, winmdroot.Web.MsHtml.IHTMLDOMNode** clonedNode) 373 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 382 return (winmdroot.Foundation.HRESULT)ex.HResult; 389 ((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(); 396 private static winmdroot.Foundation.HRESULT removeNode(IHTMLDOMNode* pThis, winmdroot.Foundation.VARIANT_BOOL fDeep, winmdroot.Web.MsHtml.IHTMLDOMNode** removed) 400 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 409 return (winmdroot.Foundation.HRESULT)ex.HResult; 416 ((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(); 423 private static winmdroot.Foundation.HRESULT swapNode(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode* otherNode, winmdroot.Web.MsHtml.IHTMLDOMNode** swappedNode) 427 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 436 return (winmdroot.Foundation.HRESULT)ex.HResult; 443 ((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(); 450 private static winmdroot.Foundation.HRESULT replaceNode(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode* replacement, winmdroot.Web.MsHtml.IHTMLDOMNode** replaced) 454 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 463 return (winmdroot.Foundation.HRESULT)ex.HResult; 470 ((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(); 477 private static winmdroot.Foundation.HRESULT appendChild(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode* newChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node) 481 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 490 return (winmdroot.Foundation.HRESULT)ex.HResult; 497 ((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(); 504 private static winmdroot.Foundation.HRESULT get_nodeName(IHTMLDOMNode* pThis, winmdroot.Foundation.BSTR* p) 508 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 514 return winmdroot.Foundation.HRESULT.S_OK; 518 return (winmdroot.Foundation.HRESULT)ex.HResult; 527 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 535 private static winmdroot.Foundation.HRESULT put_nodeValue(IHTMLDOMNode* pThis, winmdroot.System.Variant.VARIANT v) 539 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 545 return winmdroot.Foundation.HRESULT.S_OK; 549 return (winmdroot.Foundation.HRESULT)ex.HResult; 557 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 562 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 570 private static winmdroot.Foundation.HRESULT get_nodeValue(IHTMLDOMNode* pThis, winmdroot.System.Variant.VARIANT* p) 574 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 580 return winmdroot.Foundation.HRESULT.S_OK; 584 return (winmdroot.Foundation.HRESULT)ex.HResult; 591 private static winmdroot.Foundation.HRESULT get_firstChild(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode** p) 595 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 604 return (winmdroot.Foundation.HRESULT)ex.HResult; 608 public unsafe winmdroot.Foundation.HRESULT get_firstChild(winmdroot.Web.MsHtml.IHTMLDOMNode** p) 610 return ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), p); 616 private static winmdroot.Foundation.HRESULT get_lastChild(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode** p) 620 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 626 return winmdroot.Foundation.HRESULT.S_OK; 630 return (winmdroot.Foundation.HRESULT)ex.HResult; 639 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 647 private static winmdroot.Foundation.HRESULT get_previousSibling(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode** p) 651 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 657 return winmdroot.Foundation.HRESULT.S_OK; 661 return (winmdroot.Foundation.HRESULT)ex.HResult; 670 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 678 private static winmdroot.Foundation.HRESULT get_nextSibling(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode** p) 682 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 691 return (winmdroot.Foundation.HRESULT)ex.HResult; 695 public unsafe winmdroot.Foundation.HRESULT get_nextSibling(winmdroot.Web.MsHtml.IHTMLDOMNode** p) 697 return ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), p); 700 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 706 var hr = this.QueryInterface(&guid, &pv); 723 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 729 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 731 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 733 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 735 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; 737 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,int* ,winmdroot.Foundation.HRESULT> get_nodeType_8; 739 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> get_parentNode_9; 741 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> hasChildNodes_10; 743 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_childNodes_11; 745 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_attributes_12; 747 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.System.Variant.VARIANT ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> insertBefore_13; 749 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> removeChild_14; 751 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> replaceChild_15; 753 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> cloneNode_16; 755 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> removeNode_17; 757 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> swapNode_18; 759 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> replaceNode_19; 761 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> appendChild_20; 763 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_nodeName_21; 765 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_nodeValue_22; 767 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_nodeValue_23; 769 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> get_firstChild_24; 771 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> get_lastChild_25; 773 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> get_previousSibling_26; 775 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> get_nextSibling_27; 830 unsafe winmdroot.Foundation.HRESULT hasChildNodes(winmdroot.Foundation.VARIANT_BOOL* fChildren); 843 unsafe winmdroot.Foundation.HRESULT insertBefore(winmdroot.Web.MsHtml.IHTMLDOMNode* newChild, winmdroot.System.Variant.VARIANT refChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node); 846 unsafe winmdroot.Foundation.HRESULT removeChild(winmdroot.Web.MsHtml.IHTMLDOMNode* oldChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node); 849 unsafe winmdroot.Foundation.HRESULT replaceChild(winmdroot.Web.MsHtml.IHTMLDOMNode* newChild, winmdroot.Web.MsHtml.IHTMLDOMNode* oldChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node); 852 unsafe winmdroot.Foundation.HRESULT cloneNode(winmdroot.Foundation.VARIANT_BOOL fDeep, winmdroot.Web.MsHtml.IHTMLDOMNode** clonedNode); 855 unsafe winmdroot.Foundation.HRESULT removeNode(winmdroot.Foundation.VARIANT_BOOL fDeep, winmdroot.Web.MsHtml.IHTMLDOMNode** removed); 858 unsafe winmdroot.Foundation.HRESULT swapNode(winmdroot.Web.MsHtml.IHTMLDOMNode* otherNode, winmdroot.Web.MsHtml.IHTMLDOMNode** swappedNode); 861 unsafe winmdroot.Foundation.HRESULT replaceNode(winmdroot.Web.MsHtml.IHTMLDOMNode* replacement, winmdroot.Web.MsHtml.IHTMLDOMNode** replaced); 864 unsafe winmdroot.Foundation.HRESULT appendChild(winmdroot.Web.MsHtml.IHTMLDOMNode* newChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node); 878 unsafe winmdroot.Foundation.HRESULT get_firstChild(winmdroot.Web.MsHtml.IHTMLDOMNode** p); 891 unsafe winmdroot.Foundation.HRESULT get_nextSibling(winmdroot.Web.MsHtml.IHTMLDOMNode** p);
_generated\148\Windows.Win32.IHTMLElement.g.cs (583)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLElement*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLElement*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLElement*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLElement*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLElement*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT setAttribute(IHTMLElement* pThis, winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 156 public winmdroot.Foundation.HRESULT setAttribute(winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags) 158 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLElement*)Unsafe.AsPointer(ref this), strAttributeName, AttributeValue, lFlags); 163 internal unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, out winmdroot.System.Variant.VARIANT AttributeValue) 167 winmdroot.Foundation.HRESULT __result = this.getAttribute(strAttributeName, lFlags, AttributeValueLocal); 175 private static winmdroot.Foundation.HRESULT getAttribute(IHTMLElement* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue) 179 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 188 return (winmdroot.Foundation.HRESULT)ex.HResult; 192 public unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue) 194 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLElement*)Unsafe.AsPointer(ref this), strAttributeName, lFlags, AttributeValue); 200 private static winmdroot.Foundation.HRESULT removeAttribute(IHTMLElement* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess) 204 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 213 return (winmdroot.Foundation.HRESULT)ex.HResult; 220 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLElement*)Unsafe.AsPointer(ref this), strAttributeName, lFlags, &__retVal).ThrowOnFailure(); 227 private static winmdroot.Foundation.HRESULT put_className(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 231 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 237 return winmdroot.Foundation.HRESULT.S_OK; 241 return (winmdroot.Foundation.HRESULT)ex.HResult; 249 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 254 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 262 private static winmdroot.Foundation.HRESULT get_className(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 266 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 272 return winmdroot.Foundation.HRESULT.S_OK; 276 return (winmdroot.Foundation.HRESULT)ex.HResult; 283 private static winmdroot.Foundation.HRESULT put_id(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 287 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 296 return (winmdroot.Foundation.HRESULT)ex.HResult; 300 public winmdroot.Foundation.HRESULT put_id(winmdroot.Foundation.BSTR v) 302 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLElement*)Unsafe.AsPointer(ref this), v); 307 internal unsafe winmdroot.Foundation.HRESULT get_id(out winmdroot.Foundation.BSTR p) 311 winmdroot.Foundation.HRESULT __result = this.get_id(pLocal); 319 private static winmdroot.Foundation.HRESULT get_id(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 323 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 332 return (winmdroot.Foundation.HRESULT)ex.HResult; 336 public unsafe winmdroot.Foundation.HRESULT get_id(winmdroot.Foundation.BSTR* p) 338 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 343 internal unsafe winmdroot.Foundation.HRESULT get_tagName(out winmdroot.Foundation.BSTR p) 347 winmdroot.Foundation.HRESULT __result = this.get_tagName(pLocal); 355 private static winmdroot.Foundation.HRESULT get_tagName(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 359 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 368 return (winmdroot.Foundation.HRESULT)ex.HResult; 372 public unsafe winmdroot.Foundation.HRESULT get_tagName(winmdroot.Foundation.BSTR* p) 374 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 380 private static winmdroot.Foundation.HRESULT get_parentElement(IHTMLElement* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 384 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 393 return (winmdroot.Foundation.HRESULT)ex.HResult; 397 public unsafe winmdroot.Foundation.HRESULT get_parentElement(winmdroot.Web.MsHtml.IHTMLElement** p) 399 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 405 private static winmdroot.Foundation.HRESULT get_style(IHTMLElement* pThis, winmdroot.Web.MsHtml.IHTMLStyle** p) 409 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 418 return (winmdroot.Foundation.HRESULT)ex.HResult; 422 public unsafe winmdroot.Foundation.HRESULT get_style(winmdroot.Web.MsHtml.IHTMLStyle** p) 424 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLStyle** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 430 private static winmdroot.Foundation.HRESULT put_onhelp(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 434 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 440 return winmdroot.Foundation.HRESULT.S_OK; 444 return (winmdroot.Foundation.HRESULT)ex.HResult; 452 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 457 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 465 private static winmdroot.Foundation.HRESULT get_onhelp(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 469 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 475 return winmdroot.Foundation.HRESULT.S_OK; 479 return (winmdroot.Foundation.HRESULT)ex.HResult; 486 private static winmdroot.Foundation.HRESULT put_onclick(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 490 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 496 return winmdroot.Foundation.HRESULT.S_OK; 500 return (winmdroot.Foundation.HRESULT)ex.HResult; 508 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 513 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 521 private static winmdroot.Foundation.HRESULT get_onclick(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 525 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 531 return winmdroot.Foundation.HRESULT.S_OK; 535 return (winmdroot.Foundation.HRESULT)ex.HResult; 542 private static winmdroot.Foundation.HRESULT put_ondblclick(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 546 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 552 return winmdroot.Foundation.HRESULT.S_OK; 556 return (winmdroot.Foundation.HRESULT)ex.HResult; 564 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 569 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 577 private static winmdroot.Foundation.HRESULT get_ondblclick(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 581 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 587 return winmdroot.Foundation.HRESULT.S_OK; 591 return (winmdroot.Foundation.HRESULT)ex.HResult; 598 private static winmdroot.Foundation.HRESULT put_onkeydown(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 602 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 608 return winmdroot.Foundation.HRESULT.S_OK; 612 return (winmdroot.Foundation.HRESULT)ex.HResult; 620 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 625 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 633 private static winmdroot.Foundation.HRESULT get_onkeydown(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 637 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 643 return winmdroot.Foundation.HRESULT.S_OK; 647 return (winmdroot.Foundation.HRESULT)ex.HResult; 654 private static winmdroot.Foundation.HRESULT put_onkeyup(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 658 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 664 return winmdroot.Foundation.HRESULT.S_OK; 668 return (winmdroot.Foundation.HRESULT)ex.HResult; 676 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 681 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 689 private static winmdroot.Foundation.HRESULT get_onkeyup(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 693 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 699 return winmdroot.Foundation.HRESULT.S_OK; 703 return (winmdroot.Foundation.HRESULT)ex.HResult; 710 private static winmdroot.Foundation.HRESULT put_onkeypress(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 714 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 720 return winmdroot.Foundation.HRESULT.S_OK; 724 return (winmdroot.Foundation.HRESULT)ex.HResult; 732 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 737 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 745 private static winmdroot.Foundation.HRESULT get_onkeypress(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 749 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 755 return winmdroot.Foundation.HRESULT.S_OK; 759 return (winmdroot.Foundation.HRESULT)ex.HResult; 766 private static winmdroot.Foundation.HRESULT put_onmouseout(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 770 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 776 return winmdroot.Foundation.HRESULT.S_OK; 780 return (winmdroot.Foundation.HRESULT)ex.HResult; 788 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 793 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 801 private static winmdroot.Foundation.HRESULT get_onmouseout(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 805 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 811 return winmdroot.Foundation.HRESULT.S_OK; 815 return (winmdroot.Foundation.HRESULT)ex.HResult; 822 private static winmdroot.Foundation.HRESULT put_onmouseover(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 826 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 832 return winmdroot.Foundation.HRESULT.S_OK; 836 return (winmdroot.Foundation.HRESULT)ex.HResult; 844 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 849 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 857 private static winmdroot.Foundation.HRESULT get_onmouseover(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 861 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 867 return winmdroot.Foundation.HRESULT.S_OK; 871 return (winmdroot.Foundation.HRESULT)ex.HResult; 878 private static winmdroot.Foundation.HRESULT put_onmousemove(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 882 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 888 return winmdroot.Foundation.HRESULT.S_OK; 892 return (winmdroot.Foundation.HRESULT)ex.HResult; 900 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 905 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 913 private static winmdroot.Foundation.HRESULT get_onmousemove(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 917 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 923 return winmdroot.Foundation.HRESULT.S_OK; 927 return (winmdroot.Foundation.HRESULT)ex.HResult; 934 private static winmdroot.Foundation.HRESULT put_onmousedown(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 938 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 944 return winmdroot.Foundation.HRESULT.S_OK; 948 return (winmdroot.Foundation.HRESULT)ex.HResult; 956 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 961 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 969 private static winmdroot.Foundation.HRESULT get_onmousedown(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 973 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 979 return winmdroot.Foundation.HRESULT.S_OK; 983 return (winmdroot.Foundation.HRESULT)ex.HResult; 990 private static winmdroot.Foundation.HRESULT put_onmouseup(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 994 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1000 return winmdroot.Foundation.HRESULT.S_OK; 1004 return (winmdroot.Foundation.HRESULT)ex.HResult; 1012 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1017 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1025 private static winmdroot.Foundation.HRESULT get_onmouseup(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 1029 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1035 return winmdroot.Foundation.HRESULT.S_OK; 1039 return (winmdroot.Foundation.HRESULT)ex.HResult; 1046 private static winmdroot.Foundation.HRESULT get_document(IHTMLElement* pThis, winmdroot.System.Com.IDispatch** p) 1050 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1059 return (winmdroot.Foundation.HRESULT)ex.HResult; 1063 public unsafe winmdroot.Foundation.HRESULT get_document(winmdroot.System.Com.IDispatch** p) 1065 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1071 private static winmdroot.Foundation.HRESULT put_title(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1075 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1081 return winmdroot.Foundation.HRESULT.S_OK; 1085 return (winmdroot.Foundation.HRESULT)ex.HResult; 1093 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1098 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1106 private static winmdroot.Foundation.HRESULT get_title(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1110 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1116 return winmdroot.Foundation.HRESULT.S_OK; 1120 return (winmdroot.Foundation.HRESULT)ex.HResult; 1127 private static winmdroot.Foundation.HRESULT put_language(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1131 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1137 return winmdroot.Foundation.HRESULT.S_OK; 1141 return (winmdroot.Foundation.HRESULT)ex.HResult; 1149 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1154 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1162 private static winmdroot.Foundation.HRESULT get_language(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1166 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1172 return winmdroot.Foundation.HRESULT.S_OK; 1176 return (winmdroot.Foundation.HRESULT)ex.HResult; 1183 private static winmdroot.Foundation.HRESULT put_onselectstart(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 1187 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1193 return winmdroot.Foundation.HRESULT.S_OK; 1197 return (winmdroot.Foundation.HRESULT)ex.HResult; 1205 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1210 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1218 private static winmdroot.Foundation.HRESULT get_onselectstart(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 1222 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1228 return winmdroot.Foundation.HRESULT.S_OK; 1232 return (winmdroot.Foundation.HRESULT)ex.HResult; 1239 private static winmdroot.Foundation.HRESULT scrollIntoView(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT varargStart) 1243 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1252 return (winmdroot.Foundation.HRESULT)ex.HResult; 1256 public winmdroot.Foundation.HRESULT scrollIntoView(winmdroot.System.Variant.VARIANT varargStart) 1258 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLElement*)Unsafe.AsPointer(ref this), varargStart); 1264 private static winmdroot.Foundation.HRESULT contains(IHTMLElement* pThis, winmdroot.Web.MsHtml.IHTMLElement* pChild, winmdroot.Foundation.VARIANT_BOOL* pfResult) 1268 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1277 return (winmdroot.Foundation.HRESULT)ex.HResult; 1284 ((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(); 1291 private static winmdroot.Foundation.HRESULT get_sourceIndex(IHTMLElement* pThis, int* p) 1295 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1301 return winmdroot.Foundation.HRESULT.S_OK; 1305 return (winmdroot.Foundation.HRESULT)ex.HResult; 1314 ((delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1322 private static winmdroot.Foundation.HRESULT get_recordNumber(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 1326 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1332 return winmdroot.Foundation.HRESULT.S_OK; 1336 return (winmdroot.Foundation.HRESULT)ex.HResult; 1345 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1353 private static winmdroot.Foundation.HRESULT put_lang(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1357 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1363 return winmdroot.Foundation.HRESULT.S_OK; 1367 return (winmdroot.Foundation.HRESULT)ex.HResult; 1375 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1380 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1388 private static winmdroot.Foundation.HRESULT get_lang(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1392 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1398 return winmdroot.Foundation.HRESULT.S_OK; 1402 return (winmdroot.Foundation.HRESULT)ex.HResult; 1408 internal unsafe winmdroot.Foundation.HRESULT get_offsetLeft(out int p) 1412 winmdroot.Foundation.HRESULT __result = this.get_offsetLeft(pLocal); 1420 private static winmdroot.Foundation.HRESULT get_offsetLeft(IHTMLElement* pThis, int* p) 1424 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1433 return (winmdroot.Foundation.HRESULT)ex.HResult; 1437 public unsafe winmdroot.Foundation.HRESULT get_offsetLeft(int* p) 1439 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1444 internal unsafe winmdroot.Foundation.HRESULT get_offsetTop(out int p) 1448 winmdroot.Foundation.HRESULT __result = this.get_offsetTop(pLocal); 1456 private static winmdroot.Foundation.HRESULT get_offsetTop(IHTMLElement* pThis, int* p) 1460 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1469 return (winmdroot.Foundation.HRESULT)ex.HResult; 1473 public unsafe winmdroot.Foundation.HRESULT get_offsetTop(int* p) 1475 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1480 internal unsafe winmdroot.Foundation.HRESULT get_offsetWidth(out int p) 1484 winmdroot.Foundation.HRESULT __result = this.get_offsetWidth(pLocal); 1492 private static winmdroot.Foundation.HRESULT get_offsetWidth(IHTMLElement* pThis, int* p) 1496 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1505 return (winmdroot.Foundation.HRESULT)ex.HResult; 1509 public unsafe winmdroot.Foundation.HRESULT get_offsetWidth(int* p) 1511 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1516 internal unsafe winmdroot.Foundation.HRESULT get_offsetHeight(out int p) 1520 winmdroot.Foundation.HRESULT __result = this.get_offsetHeight(pLocal); 1528 private static winmdroot.Foundation.HRESULT get_offsetHeight(IHTMLElement* pThis, int* p) 1532 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1541 return (winmdroot.Foundation.HRESULT)ex.HResult; 1545 public unsafe winmdroot.Foundation.HRESULT get_offsetHeight(int* p) 1547 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1553 private static winmdroot.Foundation.HRESULT get_offsetParent(IHTMLElement* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 1557 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1566 return (winmdroot.Foundation.HRESULT)ex.HResult; 1570 public unsafe winmdroot.Foundation.HRESULT get_offsetParent(winmdroot.Web.MsHtml.IHTMLElement** p) 1572 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1578 private static winmdroot.Foundation.HRESULT put_innerHTML(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1582 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1591 return (winmdroot.Foundation.HRESULT)ex.HResult; 1595 public winmdroot.Foundation.HRESULT put_innerHTML(winmdroot.Foundation.BSTR v) 1597 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLElement*)Unsafe.AsPointer(ref this), v); 1602 internal unsafe winmdroot.Foundation.HRESULT get_innerHTML(out winmdroot.Foundation.BSTR p) 1606 winmdroot.Foundation.HRESULT __result = this.get_innerHTML(pLocal); 1614 private static winmdroot.Foundation.HRESULT get_innerHTML(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1618 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1627 return (winmdroot.Foundation.HRESULT)ex.HResult; 1631 public unsafe winmdroot.Foundation.HRESULT get_innerHTML(winmdroot.Foundation.BSTR* p) 1633 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1639 private static winmdroot.Foundation.HRESULT put_innerText(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1643 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1652 return (winmdroot.Foundation.HRESULT)ex.HResult; 1656 public winmdroot.Foundation.HRESULT put_innerText(winmdroot.Foundation.BSTR v) 1658 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IHTMLElement*)Unsafe.AsPointer(ref this), v); 1663 internal unsafe winmdroot.Foundation.HRESULT get_innerText(out winmdroot.Foundation.BSTR p) 1667 winmdroot.Foundation.HRESULT __result = this.get_innerText(pLocal); 1675 private static winmdroot.Foundation.HRESULT get_innerText(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1679 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1688 return (winmdroot.Foundation.HRESULT)ex.HResult; 1692 public unsafe winmdroot.Foundation.HRESULT get_innerText(winmdroot.Foundation.BSTR* p) 1694 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1700 private static winmdroot.Foundation.HRESULT put_outerHTML(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1704 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1713 return (winmdroot.Foundation.HRESULT)ex.HResult; 1717 public winmdroot.Foundation.HRESULT put_outerHTML(winmdroot.Foundation.BSTR v) 1719 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IHTMLElement*)Unsafe.AsPointer(ref this), v); 1724 internal unsafe winmdroot.Foundation.HRESULT get_outerHTML(out winmdroot.Foundation.BSTR p) 1728 winmdroot.Foundation.HRESULT __result = this.get_outerHTML(pLocal); 1736 private static winmdroot.Foundation.HRESULT get_outerHTML(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1740 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1749 return (winmdroot.Foundation.HRESULT)ex.HResult; 1753 public unsafe winmdroot.Foundation.HRESULT get_outerHTML(winmdroot.Foundation.BSTR* p) 1755 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1761 private static winmdroot.Foundation.HRESULT put_outerText(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1765 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1774 return (winmdroot.Foundation.HRESULT)ex.HResult; 1778 public winmdroot.Foundation.HRESULT put_outerText(winmdroot.Foundation.BSTR v) 1780 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IHTMLElement*)Unsafe.AsPointer(ref this), v); 1785 internal unsafe winmdroot.Foundation.HRESULT get_outerText(out winmdroot.Foundation.BSTR p) 1789 winmdroot.Foundation.HRESULT __result = this.get_outerText(pLocal); 1797 private static winmdroot.Foundation.HRESULT get_outerText(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1801 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1810 return (winmdroot.Foundation.HRESULT)ex.HResult; 1814 public unsafe winmdroot.Foundation.HRESULT get_outerText(winmdroot.Foundation.BSTR* p) 1816 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1822 private static winmdroot.Foundation.HRESULT insertAdjacentHTML(IHTMLElement* pThis, winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR html) 1826 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1835 return (winmdroot.Foundation.HRESULT)ex.HResult; 1841 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLElement*)Unsafe.AsPointer(ref this), where, html).ThrowOnFailure(); 1847 private static winmdroot.Foundation.HRESULT insertAdjacentText(IHTMLElement* pThis, winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR text) 1851 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1860 return (winmdroot.Foundation.HRESULT)ex.HResult; 1866 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLElement*)Unsafe.AsPointer(ref this), where, text).ThrowOnFailure(); 1872 private static winmdroot.Foundation.HRESULT get_parentTextEdit(IHTMLElement* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 1876 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1882 return winmdroot.Foundation.HRESULT.S_OK; 1886 return (winmdroot.Foundation.HRESULT)ex.HResult; 1895 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1903 private static winmdroot.Foundation.HRESULT get_isTextEdit(IHTMLElement* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1907 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1913 return winmdroot.Foundation.HRESULT.S_OK; 1917 return (winmdroot.Foundation.HRESULT)ex.HResult; 1926 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1934 private static winmdroot.Foundation.HRESULT click(IHTMLElement* pThis) 1938 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1947 return (winmdroot.Foundation.HRESULT)ex.HResult; 1953 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLElement*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 1959 private static winmdroot.Foundation.HRESULT get_filters(IHTMLElement* pThis, winmdroot.Web.MsHtml.IHTMLFiltersCollection** p) 1963 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1969 return winmdroot.Foundation.HRESULT.S_OK; 1973 return (winmdroot.Foundation.HRESULT)ex.HResult; 1982 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLFiltersCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1990 private static winmdroot.Foundation.HRESULT put_ondragstart(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 1994 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2000 return winmdroot.Foundation.HRESULT.S_OK; 2004 return (winmdroot.Foundation.HRESULT)ex.HResult; 2012 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2017 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2025 private static winmdroot.Foundation.HRESULT get_ondragstart(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2029 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2035 return winmdroot.Foundation.HRESULT.S_OK; 2039 return (winmdroot.Foundation.HRESULT)ex.HResult; 2046 private static winmdroot.Foundation.HRESULT toString(IHTMLElement* pThis, winmdroot.Foundation.BSTR* String) 2050 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2059 return (winmdroot.Foundation.HRESULT)ex.HResult; 2066 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IHTMLElement*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 2073 private static winmdroot.Foundation.HRESULT put_onbeforeupdate(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2077 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2083 return winmdroot.Foundation.HRESULT.S_OK; 2087 return (winmdroot.Foundation.HRESULT)ex.HResult; 2095 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2100 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2108 private static winmdroot.Foundation.HRESULT get_onbeforeupdate(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2112 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2118 return winmdroot.Foundation.HRESULT.S_OK; 2122 return (winmdroot.Foundation.HRESULT)ex.HResult; 2129 private static winmdroot.Foundation.HRESULT put_onafterupdate(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2133 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2139 return winmdroot.Foundation.HRESULT.S_OK; 2143 return (winmdroot.Foundation.HRESULT)ex.HResult; 2151 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2156 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2164 private static winmdroot.Foundation.HRESULT get_onafterupdate(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2168 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2174 return winmdroot.Foundation.HRESULT.S_OK; 2178 return (winmdroot.Foundation.HRESULT)ex.HResult; 2185 private static winmdroot.Foundation.HRESULT put_onerrorupdate(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2189 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2195 return winmdroot.Foundation.HRESULT.S_OK; 2199 return (winmdroot.Foundation.HRESULT)ex.HResult; 2207 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2212 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[79])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2220 private static winmdroot.Foundation.HRESULT get_onerrorupdate(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2224 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2230 return winmdroot.Foundation.HRESULT.S_OK; 2234 return (winmdroot.Foundation.HRESULT)ex.HResult; 2241 private static winmdroot.Foundation.HRESULT put_onrowexit(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2245 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2251 return winmdroot.Foundation.HRESULT.S_OK; 2255 return (winmdroot.Foundation.HRESULT)ex.HResult; 2263 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[80])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2268 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2276 private static winmdroot.Foundation.HRESULT get_onrowexit(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2280 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2286 return winmdroot.Foundation.HRESULT.S_OK; 2290 return (winmdroot.Foundation.HRESULT)ex.HResult; 2297 private static winmdroot.Foundation.HRESULT put_onrowenter(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2301 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2307 return winmdroot.Foundation.HRESULT.S_OK; 2311 return (winmdroot.Foundation.HRESULT)ex.HResult; 2319 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2324 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2332 private static winmdroot.Foundation.HRESULT get_onrowenter(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2336 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2342 return winmdroot.Foundation.HRESULT.S_OK; 2346 return (winmdroot.Foundation.HRESULT)ex.HResult; 2353 private static winmdroot.Foundation.HRESULT put_ondatasetchanged(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2357 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2363 return winmdroot.Foundation.HRESULT.S_OK; 2367 return (winmdroot.Foundation.HRESULT)ex.HResult; 2375 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2380 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[85])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2388 private static winmdroot.Foundation.HRESULT get_ondatasetchanged(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2392 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2398 return winmdroot.Foundation.HRESULT.S_OK; 2402 return (winmdroot.Foundation.HRESULT)ex.HResult; 2409 private static winmdroot.Foundation.HRESULT put_ondataavailable(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2413 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2419 return winmdroot.Foundation.HRESULT.S_OK; 2423 return (winmdroot.Foundation.HRESULT)ex.HResult; 2431 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[86])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2436 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[87])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2444 private static winmdroot.Foundation.HRESULT get_ondataavailable(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2448 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2454 return winmdroot.Foundation.HRESULT.S_OK; 2458 return (winmdroot.Foundation.HRESULT)ex.HResult; 2465 private static winmdroot.Foundation.HRESULT put_ondatasetcomplete(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2469 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2475 return winmdroot.Foundation.HRESULT.S_OK; 2479 return (winmdroot.Foundation.HRESULT)ex.HResult; 2487 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[88])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2492 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[89])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2500 private static winmdroot.Foundation.HRESULT get_ondatasetcomplete(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2504 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2510 return winmdroot.Foundation.HRESULT.S_OK; 2514 return (winmdroot.Foundation.HRESULT)ex.HResult; 2521 private static winmdroot.Foundation.HRESULT put_onfilterchange(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2525 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2531 return winmdroot.Foundation.HRESULT.S_OK; 2535 return (winmdroot.Foundation.HRESULT)ex.HResult; 2543 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[90])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2548 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[91])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2556 private static winmdroot.Foundation.HRESULT get_onfilterchange(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2560 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2566 return winmdroot.Foundation.HRESULT.S_OK; 2570 return (winmdroot.Foundation.HRESULT)ex.HResult; 2577 private static winmdroot.Foundation.HRESULT get_children(IHTMLElement* pThis, winmdroot.System.Com.IDispatch** p) 2581 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2590 return (winmdroot.Foundation.HRESULT)ex.HResult; 2594 public unsafe winmdroot.Foundation.HRESULT get_children(winmdroot.System.Com.IDispatch** p) 2596 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 2602 private static winmdroot.Foundation.HRESULT get_all(IHTMLElement* pThis, winmdroot.System.Com.IDispatch** p) 2606 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2615 return (winmdroot.Foundation.HRESULT)ex.HResult; 2619 public unsafe winmdroot.Foundation.HRESULT get_all(winmdroot.System.Com.IDispatch** p) 2621 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[93])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 2624 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2630 var hr = this.QueryInterface(&guid, &pv); 2647 internal delegate *unmanaged [Stdcall]<IHTMLElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2653 internal delegate *unmanaged [Stdcall]<IHTMLElement*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2655 internal delegate *unmanaged [Stdcall]<IHTMLElement*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2657 internal delegate *unmanaged [Stdcall]<IHTMLElement*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2659 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; 2661 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,int ,winmdroot.Foundation.HRESULT> setAttribute_8; 2663 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getAttribute_9; 2665 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> removeAttribute_10; 2667 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_className_11; 2669 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_className_12; 2671 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_id_13; 2673 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_id_14; 2675 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_tagName_15; 2677 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_parentElement_16; 2679 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLStyle** ,winmdroot.Foundation.HRESULT> get_style_17; 2681 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onhelp_18; 2683 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onhelp_19; 2685 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onclick_20; 2687 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onclick_21; 2689 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondblclick_22; 2691 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondblclick_23; 2693 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onkeydown_24; 2695 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onkeydown_25; 2697 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onkeyup_26; 2699 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onkeyup_27; 2701 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onkeypress_28; 2703 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onkeypress_29; 2705 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmouseout_30; 2707 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmouseout_31; 2709 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmouseover_32; 2711 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmouseover_33; 2713 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmousemove_34; 2715 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmousemove_35; 2717 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmousedown_36; 2719 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmousedown_37; 2721 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmouseup_38; 2723 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmouseup_39; 2725 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_document_40; 2727 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_title_41; 2729 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_title_42; 2731 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_language_43; 2733 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_language_44; 2735 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onselectstart_45; 2737 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onselectstart_46; 2739 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> scrollIntoView_47; 2741 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> contains_48; 2743 internal delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT> get_sourceIndex_49; 2745 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_recordNumber_50; 2747 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_lang_51; 2749 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_lang_52; 2751 internal delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT> get_offsetLeft_53; 2753 internal delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT> get_offsetTop_54; 2755 internal delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT> get_offsetWidth_55; 2757 internal delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT> get_offsetHeight_56; 2759 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_offsetParent_57; 2761 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_innerHTML_58; 2763 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_innerHTML_59; 2765 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_innerText_60; 2767 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_innerText_61; 2769 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_outerHTML_62; 2771 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_outerHTML_63; 2773 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_outerText_64; 2775 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_outerText_65; 2777 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> insertAdjacentHTML_66; 2779 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> insertAdjacentText_67; 2781 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_parentTextEdit_68; 2783 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_isTextEdit_69; 2785 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.HRESULT> click_70; 2787 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLFiltersCollection** ,winmdroot.Foundation.HRESULT> get_filters_71; 2789 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondragstart_72; 2791 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondragstart_73; 2793 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_74; 2795 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforeupdate_75; 2797 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforeupdate_76; 2799 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onafterupdate_77; 2801 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onafterupdate_78; 2803 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onerrorupdate_79; 2805 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onerrorupdate_80; 2807 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onrowexit_81; 2809 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onrowexit_82; 2811 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onrowenter_83; 2813 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onrowenter_84; 2815 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondatasetchanged_85; 2817 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondatasetchanged_86; 2819 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondataavailable_87; 2821 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondataavailable_88; 2823 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondatasetcomplete_89; 2825 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondatasetcomplete_90; 2827 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onfilterchange_91; 2829 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onfilterchange_92; 2831 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_children_93; 2833 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_all_94; 2945winmdroot.Foundation.HRESULT setAttribute(winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags); 2948 unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue); 2951 unsafe winmdroot.Foundation.HRESULT removeAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess); 2960winmdroot.Foundation.HRESULT put_id(winmdroot.Foundation.BSTR v); 2963 unsafe winmdroot.Foundation.HRESULT get_id(winmdroot.Foundation.BSTR* p); 2966 unsafe winmdroot.Foundation.HRESULT get_tagName(winmdroot.Foundation.BSTR* p); 2969 unsafe winmdroot.Foundation.HRESULT get_parentElement(winmdroot.Web.MsHtml.IHTMLElement** p); 2972 unsafe winmdroot.Foundation.HRESULT get_style(winmdroot.Web.MsHtml.IHTMLStyle** p); 3041 unsafe winmdroot.Foundation.HRESULT get_document(winmdroot.System.Com.IDispatch** p); 3062winmdroot.Foundation.HRESULT scrollIntoView(winmdroot.System.Variant.VARIANT varargStart); 3065 unsafe winmdroot.Foundation.HRESULT contains(winmdroot.Web.MsHtml.IHTMLElement* pChild, winmdroot.Foundation.VARIANT_BOOL* pfResult); 3084 unsafe winmdroot.Foundation.HRESULT get_offsetLeft(int* p); 3087 unsafe winmdroot.Foundation.HRESULT get_offsetTop(int* p); 3090 unsafe winmdroot.Foundation.HRESULT get_offsetWidth(int* p); 3093 unsafe winmdroot.Foundation.HRESULT get_offsetHeight(int* p); 3096 unsafe winmdroot.Foundation.HRESULT get_offsetParent(winmdroot.Web.MsHtml.IHTMLElement** p); 3099winmdroot.Foundation.HRESULT put_innerHTML(winmdroot.Foundation.BSTR v); 3102 unsafe winmdroot.Foundation.HRESULT get_innerHTML(winmdroot.Foundation.BSTR* p); 3105winmdroot.Foundation.HRESULT put_innerText(winmdroot.Foundation.BSTR v); 3108 unsafe winmdroot.Foundation.HRESULT get_innerText(winmdroot.Foundation.BSTR* p); 3111winmdroot.Foundation.HRESULT put_outerHTML(winmdroot.Foundation.BSTR v); 3114 unsafe winmdroot.Foundation.HRESULT get_outerHTML(winmdroot.Foundation.BSTR* p); 3117winmdroot.Foundation.HRESULT put_outerText(winmdroot.Foundation.BSTR v); 3120 unsafe winmdroot.Foundation.HRESULT get_outerText(winmdroot.Foundation.BSTR* p); 3123winmdroot.Foundation.HRESULT insertAdjacentHTML(winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR html); 3126winmdroot.Foundation.HRESULT insertAdjacentText(winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR text); 3139winmdroot.Foundation.HRESULT click(); 3153 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* String); 3210 unsafe winmdroot.Foundation.HRESULT get_children(winmdroot.System.Com.IDispatch** p); 3213 unsafe winmdroot.Foundation.HRESULT get_all(winmdroot.System.Com.IDispatch** p);
_generated\149\Windows.Win32.IHTMLElement2.g.cs (644)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLElement2*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLElement2*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLElement2*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT get_scopeName(IHTMLElement2* pThis, winmdroot.Foundation.BSTR* p) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT setCapture(IHTMLElement2* pThis, winmdroot.Foundation.VARIANT_BOOL containerCapture) 174 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 183 return (winmdroot.Foundation.HRESULT)ex.HResult; 189 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLElement2*)Unsafe.AsPointer(ref this), containerCapture).ThrowOnFailure(); 195 private static winmdroot.Foundation.HRESULT releaseCapture(IHTMLElement2* pThis) 199 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 208 return (winmdroot.Foundation.HRESULT)ex.HResult; 214 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLElement2*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 220 private static winmdroot.Foundation.HRESULT put_onlosecapture(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 224 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 230 return winmdroot.Foundation.HRESULT.S_OK; 234 return (winmdroot.Foundation.HRESULT)ex.HResult; 242 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 247 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 255 private static winmdroot.Foundation.HRESULT get_onlosecapture(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 259 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 265 return winmdroot.Foundation.HRESULT.S_OK; 269 return (winmdroot.Foundation.HRESULT)ex.HResult; 276 private static winmdroot.Foundation.HRESULT componentFromPoint(IHTMLElement2* pThis, int x, int y, winmdroot.Foundation.BSTR* component) 280 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 289 return (winmdroot.Foundation.HRESULT)ex.HResult; 296 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLElement2*)Unsafe.AsPointer(ref this), x, y, &__retVal).ThrowOnFailure(); 303 private static winmdroot.Foundation.HRESULT doScroll(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT component) 307 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 316 return (winmdroot.Foundation.HRESULT)ex.HResult; 322 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLElement2*)Unsafe.AsPointer(ref this), component).ThrowOnFailure(); 328 private static winmdroot.Foundation.HRESULT put_onscroll(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 332 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 338 return winmdroot.Foundation.HRESULT.S_OK; 342 return (winmdroot.Foundation.HRESULT)ex.HResult; 350 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 355 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 363 private static winmdroot.Foundation.HRESULT get_onscroll(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 367 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 373 return winmdroot.Foundation.HRESULT.S_OK; 377 return (winmdroot.Foundation.HRESULT)ex.HResult; 384 private static winmdroot.Foundation.HRESULT put_ondrag(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 388 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 394 return winmdroot.Foundation.HRESULT.S_OK; 398 return (winmdroot.Foundation.HRESULT)ex.HResult; 406 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 411 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 419 private static winmdroot.Foundation.HRESULT get_ondrag(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 423 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 429 return winmdroot.Foundation.HRESULT.S_OK; 433 return (winmdroot.Foundation.HRESULT)ex.HResult; 440 private static winmdroot.Foundation.HRESULT put_ondragend(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 444 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 450 return winmdroot.Foundation.HRESULT.S_OK; 454 return (winmdroot.Foundation.HRESULT)ex.HResult; 462 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 467 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 475 private static winmdroot.Foundation.HRESULT get_ondragend(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 479 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 485 return winmdroot.Foundation.HRESULT.S_OK; 489 return (winmdroot.Foundation.HRESULT)ex.HResult; 496 private static winmdroot.Foundation.HRESULT put_ondragenter(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 500 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 506 return winmdroot.Foundation.HRESULT.S_OK; 510 return (winmdroot.Foundation.HRESULT)ex.HResult; 518 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 523 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 531 private static winmdroot.Foundation.HRESULT get_ondragenter(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 535 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 541 return winmdroot.Foundation.HRESULT.S_OK; 545 return (winmdroot.Foundation.HRESULT)ex.HResult; 552 private static winmdroot.Foundation.HRESULT put_ondragover(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 556 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 562 return winmdroot.Foundation.HRESULT.S_OK; 566 return (winmdroot.Foundation.HRESULT)ex.HResult; 574 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 579 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 587 private static winmdroot.Foundation.HRESULT get_ondragover(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 591 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 597 return winmdroot.Foundation.HRESULT.S_OK; 601 return (winmdroot.Foundation.HRESULT)ex.HResult; 608 private static winmdroot.Foundation.HRESULT put_ondragleave(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 612 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 618 return winmdroot.Foundation.HRESULT.S_OK; 622 return (winmdroot.Foundation.HRESULT)ex.HResult; 630 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 635 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 643 private static winmdroot.Foundation.HRESULT get_ondragleave(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 647 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 653 return winmdroot.Foundation.HRESULT.S_OK; 657 return (winmdroot.Foundation.HRESULT)ex.HResult; 664 private static winmdroot.Foundation.HRESULT put_ondrop(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 668 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 674 return winmdroot.Foundation.HRESULT.S_OK; 678 return (winmdroot.Foundation.HRESULT)ex.HResult; 686 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 691 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 699 private static winmdroot.Foundation.HRESULT get_ondrop(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 703 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 709 return winmdroot.Foundation.HRESULT.S_OK; 713 return (winmdroot.Foundation.HRESULT)ex.HResult; 720 private static winmdroot.Foundation.HRESULT put_onbeforecut(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 724 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 730 return winmdroot.Foundation.HRESULT.S_OK; 734 return (winmdroot.Foundation.HRESULT)ex.HResult; 742 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 747 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 755 private static winmdroot.Foundation.HRESULT get_onbeforecut(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 759 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 765 return winmdroot.Foundation.HRESULT.S_OK; 769 return (winmdroot.Foundation.HRESULT)ex.HResult; 776 private static winmdroot.Foundation.HRESULT put_oncut(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 780 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 786 return winmdroot.Foundation.HRESULT.S_OK; 790 return (winmdroot.Foundation.HRESULT)ex.HResult; 798 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 803 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 811 private static winmdroot.Foundation.HRESULT get_oncut(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 815 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 821 return winmdroot.Foundation.HRESULT.S_OK; 825 return (winmdroot.Foundation.HRESULT)ex.HResult; 832 private static winmdroot.Foundation.HRESULT put_onbeforecopy(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 836 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 842 return winmdroot.Foundation.HRESULT.S_OK; 846 return (winmdroot.Foundation.HRESULT)ex.HResult; 854 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 859 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 867 private static winmdroot.Foundation.HRESULT get_onbeforecopy(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 871 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 877 return winmdroot.Foundation.HRESULT.S_OK; 881 return (winmdroot.Foundation.HRESULT)ex.HResult; 888 private static winmdroot.Foundation.HRESULT put_oncopy(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 892 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 898 return winmdroot.Foundation.HRESULT.S_OK; 902 return (winmdroot.Foundation.HRESULT)ex.HResult; 910 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 915 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 923 private static winmdroot.Foundation.HRESULT get_oncopy(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 927 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 933 return winmdroot.Foundation.HRESULT.S_OK; 937 return (winmdroot.Foundation.HRESULT)ex.HResult; 944 private static winmdroot.Foundation.HRESULT put_onbeforepaste(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 948 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 954 return winmdroot.Foundation.HRESULT.S_OK; 958 return (winmdroot.Foundation.HRESULT)ex.HResult; 966 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 971 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 979 private static winmdroot.Foundation.HRESULT get_onbeforepaste(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 983 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 989 return winmdroot.Foundation.HRESULT.S_OK; 993 return (winmdroot.Foundation.HRESULT)ex.HResult; 1000 private static winmdroot.Foundation.HRESULT put_onpaste(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 1004 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1010 return winmdroot.Foundation.HRESULT.S_OK; 1014 return (winmdroot.Foundation.HRESULT)ex.HResult; 1022 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1027 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1035 private static winmdroot.Foundation.HRESULT get_onpaste(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 1039 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1045 return winmdroot.Foundation.HRESULT.S_OK; 1049 return (winmdroot.Foundation.HRESULT)ex.HResult; 1056 private static winmdroot.Foundation.HRESULT get_currentStyle(IHTMLElement2* pThis, winmdroot.Web.MsHtml.IHTMLCurrentStyle** p) 1060 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1066 return winmdroot.Foundation.HRESULT.S_OK; 1070 return (winmdroot.Foundation.HRESULT)ex.HResult; 1079 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLCurrentStyle** ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1087 private static winmdroot.Foundation.HRESULT put_onpropertychange(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 1091 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1097 return winmdroot.Foundation.HRESULT.S_OK; 1101 return (winmdroot.Foundation.HRESULT)ex.HResult; 1109 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1114 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1122 private static winmdroot.Foundation.HRESULT get_onpropertychange(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 1126 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1132 return winmdroot.Foundation.HRESULT.S_OK; 1136 return (winmdroot.Foundation.HRESULT)ex.HResult; 1143 private static winmdroot.Foundation.HRESULT getClientRects(IHTMLElement2* pThis, winmdroot.Web.MsHtml.IHTMLRectCollection** pRectCol) 1147 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1156 return (winmdroot.Foundation.HRESULT)ex.HResult; 1163 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLRectCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 1170 private static winmdroot.Foundation.HRESULT getBoundingClientRect(IHTMLElement2* pThis, winmdroot.Web.MsHtml.IHTMLRect** pRect) 1174 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1183 return (winmdroot.Foundation.HRESULT)ex.HResult; 1190 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLRect** ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 1197 private static winmdroot.Foundation.HRESULT setExpression(IHTMLElement2* pThis, winmdroot.Foundation.BSTR propname, winmdroot.Foundation.BSTR expression, winmdroot.Foundation.BSTR language) 1201 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1210 return (winmdroot.Foundation.HRESULT)ex.HResult; 1216 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLElement2*)Unsafe.AsPointer(ref this), propname, expression, language).ThrowOnFailure(); 1222 private static winmdroot.Foundation.HRESULT getExpression(IHTMLElement2* pThis, winmdroot.Foundation.BSTR propname, winmdroot.System.Variant.VARIANT* expression) 1226 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1235 return (winmdroot.Foundation.HRESULT)ex.HResult; 1242 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLElement2*)Unsafe.AsPointer(ref this), propname, &__retVal).ThrowOnFailure(); 1249 private static winmdroot.Foundation.HRESULT removeExpression(IHTMLElement2* pThis, winmdroot.Foundation.BSTR propname, winmdroot.Foundation.VARIANT_BOOL* pfSuccess) 1253 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1262 return (winmdroot.Foundation.HRESULT)ex.HResult; 1269 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLElement2*)Unsafe.AsPointer(ref this), propname, &__retVal).ThrowOnFailure(); 1276 private static winmdroot.Foundation.HRESULT put_tabIndex(IHTMLElement2* pThis, short v) 1280 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1289 return (winmdroot.Foundation.HRESULT)ex.HResult; 1293 public winmdroot.Foundation.HRESULT put_tabIndex(short v) 1295 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,short ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLElement2*)Unsafe.AsPointer(ref this), v); 1300 internal unsafe winmdroot.Foundation.HRESULT get_tabIndex(out short p) 1304 winmdroot.Foundation.HRESULT __result = this.get_tabIndex(pLocal); 1312 private static winmdroot.Foundation.HRESULT get_tabIndex(IHTMLElement2* pThis, short* p) 1316 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1325 return (winmdroot.Foundation.HRESULT)ex.HResult; 1329 public unsafe winmdroot.Foundation.HRESULT get_tabIndex(short* p) 1331 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,short* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 1337 private static winmdroot.Foundation.HRESULT focus(IHTMLElement2* pThis) 1341 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1350 return (winmdroot.Foundation.HRESULT)ex.HResult; 1354 public winmdroot.Foundation.HRESULT focus() 1356 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLElement2*)Unsafe.AsPointer(ref this)); 1362 private static winmdroot.Foundation.HRESULT put_accessKey(IHTMLElement2* pThis, winmdroot.Foundation.BSTR v) 1366 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1372 return winmdroot.Foundation.HRESULT.S_OK; 1376 return (winmdroot.Foundation.HRESULT)ex.HResult; 1384 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1389 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1397 private static winmdroot.Foundation.HRESULT get_accessKey(IHTMLElement2* pThis, winmdroot.Foundation.BSTR* p) 1401 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1407 return winmdroot.Foundation.HRESULT.S_OK; 1411 return (winmdroot.Foundation.HRESULT)ex.HResult; 1418 private static winmdroot.Foundation.HRESULT put_onblur(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 1422 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1428 return winmdroot.Foundation.HRESULT.S_OK; 1432 return (winmdroot.Foundation.HRESULT)ex.HResult; 1440 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1445 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1453 private static winmdroot.Foundation.HRESULT get_onblur(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 1457 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1463 return winmdroot.Foundation.HRESULT.S_OK; 1467 return (winmdroot.Foundation.HRESULT)ex.HResult; 1474 private static winmdroot.Foundation.HRESULT put_onfocus(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 1478 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1484 return winmdroot.Foundation.HRESULT.S_OK; 1488 return (winmdroot.Foundation.HRESULT)ex.HResult; 1496 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1501 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1509 private static winmdroot.Foundation.HRESULT get_onfocus(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 1513 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1519 return winmdroot.Foundation.HRESULT.S_OK; 1523 return (winmdroot.Foundation.HRESULT)ex.HResult; 1530 private static winmdroot.Foundation.HRESULT put_onresize(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 1534 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1540 return winmdroot.Foundation.HRESULT.S_OK; 1544 return (winmdroot.Foundation.HRESULT)ex.HResult; 1552 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1557 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1565 private static winmdroot.Foundation.HRESULT get_onresize(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 1569 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1575 return winmdroot.Foundation.HRESULT.S_OK; 1579 return (winmdroot.Foundation.HRESULT)ex.HResult; 1586 private static winmdroot.Foundation.HRESULT blur(IHTMLElement2* pThis) 1590 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1599 return (winmdroot.Foundation.HRESULT)ex.HResult; 1603 public winmdroot.Foundation.HRESULT blur() 1605 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IHTMLElement2*)Unsafe.AsPointer(ref this)); 1611 private static winmdroot.Foundation.HRESULT addFilter(IHTMLElement2* pThis, winmdroot.System.Com.IUnknown* pUnk) 1615 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1624 return (winmdroot.Foundation.HRESULT)ex.HResult; 1630 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IHTMLElement2*)Unsafe.AsPointer(ref this), pUnk).ThrowOnFailure(); 1636 private static winmdroot.Foundation.HRESULT removeFilter(IHTMLElement2* pThis, winmdroot.System.Com.IUnknown* pUnk) 1640 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1649 return (winmdroot.Foundation.HRESULT)ex.HResult; 1655 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IHTMLElement2*)Unsafe.AsPointer(ref this), pUnk).ThrowOnFailure(); 1660 internal unsafe winmdroot.Foundation.HRESULT get_clientHeight(out int p) 1664 winmdroot.Foundation.HRESULT __result = this.get_clientHeight(pLocal); 1672 private static winmdroot.Foundation.HRESULT get_clientHeight(IHTMLElement2* pThis, int* p) 1676 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1685 return (winmdroot.Foundation.HRESULT)ex.HResult; 1689 public unsafe winmdroot.Foundation.HRESULT get_clientHeight(int* p) 1691 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 1696 internal unsafe winmdroot.Foundation.HRESULT get_clientWidth(out int p) 1700 winmdroot.Foundation.HRESULT __result = this.get_clientWidth(pLocal); 1708 private static winmdroot.Foundation.HRESULT get_clientWidth(IHTMLElement2* pThis, int* p) 1712 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1721 return (winmdroot.Foundation.HRESULT)ex.HResult; 1725 public unsafe winmdroot.Foundation.HRESULT get_clientWidth(int* p) 1727 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 1732 internal unsafe winmdroot.Foundation.HRESULT get_clientTop(out int p) 1736 winmdroot.Foundation.HRESULT __result = this.get_clientTop(pLocal); 1744 private static winmdroot.Foundation.HRESULT get_clientTop(IHTMLElement2* pThis, int* p) 1748 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1757 return (winmdroot.Foundation.HRESULT)ex.HResult; 1761 public unsafe winmdroot.Foundation.HRESULT get_clientTop(int* p) 1763 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 1768 internal unsafe winmdroot.Foundation.HRESULT get_clientLeft(out int p) 1772 winmdroot.Foundation.HRESULT __result = this.get_clientLeft(pLocal); 1780 private static winmdroot.Foundation.HRESULT get_clientLeft(IHTMLElement2* pThis, int* p) 1784 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1793 return (winmdroot.Foundation.HRESULT)ex.HResult; 1797 public unsafe winmdroot.Foundation.HRESULT get_clientLeft(int* p) 1799 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 1804 internal unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult) 1808 winmdroot.Foundation.HRESULT __result = this.attachEvent(@event, pDisp, pfResultLocal); 1816 private static winmdroot.Foundation.HRESULT attachEvent(IHTMLElement2* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 1820 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1829 return (winmdroot.Foundation.HRESULT)ex.HResult; 1833 public unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 1835 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLElement2*)Unsafe.AsPointer(ref this), @event, pDisp, pfResult); 1841 private static winmdroot.Foundation.HRESULT detachEvent(IHTMLElement2* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 1845 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1854 return (winmdroot.Foundation.HRESULT)ex.HResult; 1858 public unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 1860 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLElement2*)Unsafe.AsPointer(ref this), @event, pDisp); 1866 private static winmdroot.Foundation.HRESULT get_readyState(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 1870 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1876 return winmdroot.Foundation.HRESULT.S_OK; 1880 return (winmdroot.Foundation.HRESULT)ex.HResult; 1889 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1897 private static winmdroot.Foundation.HRESULT put_onreadystatechange(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 1901 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1907 return winmdroot.Foundation.HRESULT.S_OK; 1911 return (winmdroot.Foundation.HRESULT)ex.HResult; 1919 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1924 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1932 private static winmdroot.Foundation.HRESULT get_onreadystatechange(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 1936 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1942 return winmdroot.Foundation.HRESULT.S_OK; 1946 return (winmdroot.Foundation.HRESULT)ex.HResult; 1953 private static winmdroot.Foundation.HRESULT put_onrowsdelete(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 1957 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1963 return winmdroot.Foundation.HRESULT.S_OK; 1967 return (winmdroot.Foundation.HRESULT)ex.HResult; 1975 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1980 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1988 private static winmdroot.Foundation.HRESULT get_onrowsdelete(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 1992 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1998 return winmdroot.Foundation.HRESULT.S_OK; 2002 return (winmdroot.Foundation.HRESULT)ex.HResult; 2009 private static winmdroot.Foundation.HRESULT put_onrowsinserted(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 2013 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2019 return winmdroot.Foundation.HRESULT.S_OK; 2023 return (winmdroot.Foundation.HRESULT)ex.HResult; 2031 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2036 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2044 private static winmdroot.Foundation.HRESULT get_onrowsinserted(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 2048 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2054 return winmdroot.Foundation.HRESULT.S_OK; 2058 return (winmdroot.Foundation.HRESULT)ex.HResult; 2065 private static winmdroot.Foundation.HRESULT put_oncellchange(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 2069 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2075 return winmdroot.Foundation.HRESULT.S_OK; 2079 return (winmdroot.Foundation.HRESULT)ex.HResult; 2087 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2092 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2100 private static winmdroot.Foundation.HRESULT get_oncellchange(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 2104 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2110 return winmdroot.Foundation.HRESULT.S_OK; 2114 return (winmdroot.Foundation.HRESULT)ex.HResult; 2121 private static winmdroot.Foundation.HRESULT put_dir(IHTMLElement2* pThis, winmdroot.Foundation.BSTR v) 2125 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2131 return winmdroot.Foundation.HRESULT.S_OK; 2135 return (winmdroot.Foundation.HRESULT)ex.HResult; 2143 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2148 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2156 private static winmdroot.Foundation.HRESULT get_dir(IHTMLElement2* pThis, winmdroot.Foundation.BSTR* p) 2160 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2166 return winmdroot.Foundation.HRESULT.S_OK; 2170 return (winmdroot.Foundation.HRESULT)ex.HResult; 2177 private static winmdroot.Foundation.HRESULT createControlRange(IHTMLElement2* pThis, winmdroot.System.Com.IDispatch** range) 2181 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2190 return (winmdroot.Foundation.HRESULT)ex.HResult; 2197 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[79])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 2203 internal unsafe winmdroot.Foundation.HRESULT get_scrollHeight(out int p) 2207 winmdroot.Foundation.HRESULT __result = this.get_scrollHeight(pLocal); 2215 private static winmdroot.Foundation.HRESULT get_scrollHeight(IHTMLElement2* pThis, int* p) 2219 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2228 return (winmdroot.Foundation.HRESULT)ex.HResult; 2232 public unsafe winmdroot.Foundation.HRESULT get_scrollHeight(int* p) 2234 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[80])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 2239 internal unsafe winmdroot.Foundation.HRESULT get_scrollWidth(out int p) 2243 winmdroot.Foundation.HRESULT __result = this.get_scrollWidth(pLocal); 2251 private static winmdroot.Foundation.HRESULT get_scrollWidth(IHTMLElement2* pThis, int* p) 2255 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2264 return (winmdroot.Foundation.HRESULT)ex.HResult; 2268 public unsafe winmdroot.Foundation.HRESULT get_scrollWidth(int* p) 2270 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 2276 private static winmdroot.Foundation.HRESULT put_scrollTop(IHTMLElement2* pThis, int v) 2280 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2289 return (winmdroot.Foundation.HRESULT)ex.HResult; 2293 public winmdroot.Foundation.HRESULT put_scrollTop(int v) 2295 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IHTMLElement2*)Unsafe.AsPointer(ref this), v); 2300 internal unsafe winmdroot.Foundation.HRESULT get_scrollTop(out int p) 2304 winmdroot.Foundation.HRESULT __result = this.get_scrollTop(pLocal); 2312 private static winmdroot.Foundation.HRESULT get_scrollTop(IHTMLElement2* pThis, int* p) 2316 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2325 return (winmdroot.Foundation.HRESULT)ex.HResult; 2329 public unsafe winmdroot.Foundation.HRESULT get_scrollTop(int* p) 2331 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 2337 private static winmdroot.Foundation.HRESULT put_scrollLeft(IHTMLElement2* pThis, int v) 2341 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2350 return (winmdroot.Foundation.HRESULT)ex.HResult; 2354 public winmdroot.Foundation.HRESULT put_scrollLeft(int v) 2356 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IHTMLElement2*)Unsafe.AsPointer(ref this), v); 2361 internal unsafe winmdroot.Foundation.HRESULT get_scrollLeft(out int p) 2365 winmdroot.Foundation.HRESULT __result = this.get_scrollLeft(pLocal); 2373 private static winmdroot.Foundation.HRESULT get_scrollLeft(IHTMLElement2* pThis, int* p) 2377 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2386 return (winmdroot.Foundation.HRESULT)ex.HResult; 2390 public unsafe winmdroot.Foundation.HRESULT get_scrollLeft(int* p) 2392 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[85])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 2398 private static winmdroot.Foundation.HRESULT clearAttributes(IHTMLElement2* pThis) 2402 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2411 return (winmdroot.Foundation.HRESULT)ex.HResult; 2417 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.HRESULT>)lpVtbl[86])((IHTMLElement2*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 2423 private static winmdroot.Foundation.HRESULT mergeAttributes(IHTMLElement2* pThis, winmdroot.Web.MsHtml.IHTMLElement* mergeThis) 2427 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2436 return (winmdroot.Foundation.HRESULT)ex.HResult; 2442 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Foundation.HRESULT>)lpVtbl[87])((IHTMLElement2*)Unsafe.AsPointer(ref this), mergeThis).ThrowOnFailure(); 2448 private static winmdroot.Foundation.HRESULT put_oncontextmenu(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 2452 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2458 return winmdroot.Foundation.HRESULT.S_OK; 2462 return (winmdroot.Foundation.HRESULT)ex.HResult; 2470 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[88])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2475 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[89])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2483 private static winmdroot.Foundation.HRESULT get_oncontextmenu(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 2487 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2493 return winmdroot.Foundation.HRESULT.S_OK; 2497 return (winmdroot.Foundation.HRESULT)ex.HResult; 2504 private static winmdroot.Foundation.HRESULT insertAdjacentElement(IHTMLElement2* pThis, winmdroot.Foundation.BSTR where, winmdroot.Web.MsHtml.IHTMLElement* insertedElement, winmdroot.Web.MsHtml.IHTMLElement** inserted) 2508 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2517 return (winmdroot.Foundation.HRESULT)ex.HResult; 2521 public unsafe winmdroot.Foundation.HRESULT insertAdjacentElement(winmdroot.Foundation.BSTR where, winmdroot.Web.MsHtml.IHTMLElement* insertedElement, winmdroot.Web.MsHtml.IHTMLElement** inserted) 2523 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[90])((IHTMLElement2*)Unsafe.AsPointer(ref this), where, insertedElement, inserted); 2529 private static winmdroot.Foundation.HRESULT applyElement(IHTMLElement2* pThis, winmdroot.Web.MsHtml.IHTMLElement* apply, winmdroot.Foundation.BSTR where, winmdroot.Web.MsHtml.IHTMLElement** applied) 2533 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2542 return (winmdroot.Foundation.HRESULT)ex.HResult; 2549 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[91])((IHTMLElement2*)Unsafe.AsPointer(ref this), apply, where, &__retVal).ThrowOnFailure(); 2556 private static winmdroot.Foundation.HRESULT getAdjacentText(IHTMLElement2* pThis, winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR* text) 2560 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2569 return (winmdroot.Foundation.HRESULT)ex.HResult; 2576 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLElement2*)Unsafe.AsPointer(ref this), where, &__retVal).ThrowOnFailure(); 2583 private static winmdroot.Foundation.HRESULT replaceAdjacentText(IHTMLElement2* pThis, winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR newText, winmdroot.Foundation.BSTR* oldText) 2587 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2596 return (winmdroot.Foundation.HRESULT)ex.HResult; 2603 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[93])((IHTMLElement2*)Unsafe.AsPointer(ref this), where, newText, &__retVal).ThrowOnFailure(); 2609 internal unsafe winmdroot.Foundation.HRESULT get_canHaveChildren(out winmdroot.Foundation.VARIANT_BOOL p) 2613 winmdroot.Foundation.HRESULT __result = this.get_canHaveChildren(pLocal); 2621 private static winmdroot.Foundation.HRESULT get_canHaveChildren(IHTMLElement2* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 2625 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2634 return (winmdroot.Foundation.HRESULT)ex.HResult; 2638 public unsafe winmdroot.Foundation.HRESULT get_canHaveChildren(winmdroot.Foundation.VARIANT_BOOL* p) 2640 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[94])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 2657 private static winmdroot.Foundation.HRESULT addBehavior(IHTMLElement2* pThis, winmdroot.Foundation.BSTR bstrUrl, winmdroot.System.Variant.VARIANT* pvarFactory, int* pCookie) 2661 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2670 return (winmdroot.Foundation.HRESULT)ex.HResult; 2677 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[95])((IHTMLElement2*)Unsafe.AsPointer(ref this), bstrUrl, pvarFactory, &__retVal).ThrowOnFailure(); 2684 private static winmdroot.Foundation.HRESULT removeBehavior(IHTMLElement2* pThis, int cookie, winmdroot.Foundation.VARIANT_BOOL* pfResult) 2688 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2697 return (winmdroot.Foundation.HRESULT)ex.HResult; 2704 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[96])((IHTMLElement2*)Unsafe.AsPointer(ref this), cookie, &__retVal).ThrowOnFailure(); 2711 private static winmdroot.Foundation.HRESULT get_runtimeStyle(IHTMLElement2* pThis, winmdroot.Web.MsHtml.IHTMLStyle** p) 2715 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2721 return winmdroot.Foundation.HRESULT.S_OK; 2725 return (winmdroot.Foundation.HRESULT)ex.HResult; 2734 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLStyle** ,winmdroot.Foundation.HRESULT>)lpVtbl[97])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2742 private static winmdroot.Foundation.HRESULT get_behaviorUrns(IHTMLElement2* pThis, winmdroot.System.Com.IDispatch** p) 2746 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2752 return winmdroot.Foundation.HRESULT.S_OK; 2756 return (winmdroot.Foundation.HRESULT)ex.HResult; 2765 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[98])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2773 private static winmdroot.Foundation.HRESULT put_tagUrn(IHTMLElement2* pThis, winmdroot.Foundation.BSTR v) 2777 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2783 return winmdroot.Foundation.HRESULT.S_OK; 2787 return (winmdroot.Foundation.HRESULT)ex.HResult; 2795 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[99])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2800 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[100])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2808 private static winmdroot.Foundation.HRESULT get_tagUrn(IHTMLElement2* pThis, winmdroot.Foundation.BSTR* p) 2812 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2818 return winmdroot.Foundation.HRESULT.S_OK; 2822 return (winmdroot.Foundation.HRESULT)ex.HResult; 2829 private static winmdroot.Foundation.HRESULT put_onbeforeeditfocus(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 2833 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2839 return winmdroot.Foundation.HRESULT.S_OK; 2843 return (winmdroot.Foundation.HRESULT)ex.HResult; 2851 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[101])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2856 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[102])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2864 private static winmdroot.Foundation.HRESULT get_onbeforeeditfocus(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 2868 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2874 return winmdroot.Foundation.HRESULT.S_OK; 2878 return (winmdroot.Foundation.HRESULT)ex.HResult; 2885 private static winmdroot.Foundation.HRESULT get_readyStateValue(IHTMLElement2* pThis, int* p) 2889 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2895 return winmdroot.Foundation.HRESULT.S_OK; 2899 return (winmdroot.Foundation.HRESULT)ex.HResult; 2908 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[103])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2916 private static winmdroot.Foundation.HRESULT getElementsByTagName(IHTMLElement2* pThis, winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl) 2920 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2929 return (winmdroot.Foundation.HRESULT)ex.HResult; 2933 public unsafe winmdroot.Foundation.HRESULT getElementsByTagName(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl) 2935 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[104])((IHTMLElement2*)Unsafe.AsPointer(ref this), v, pelColl); 2938 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2944 var hr = this.QueryInterface(&guid, &pv); 2961 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2967 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2969 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2971 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2973 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; 2975 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_scopeName_8; 2977 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> setCapture_9; 2979 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.HRESULT> releaseCapture_10; 2981 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onlosecapture_11; 2983 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onlosecapture_12; 2985 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> componentFromPoint_13; 2987 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> doScroll_14; 2989 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onscroll_15; 2991 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onscroll_16; 2993 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondrag_17; 2995 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondrag_18; 2997 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondragend_19; 2999 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondragend_20; 3001 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondragenter_21; 3003 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondragenter_22; 3005 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondragover_23; 3007 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondragover_24; 3009 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondragleave_25; 3011 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondragleave_26; 3013 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondrop_27; 3015 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondrop_28; 3017 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforecut_29; 3019 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforecut_30; 3021 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_oncut_31; 3023 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_oncut_32; 3025 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforecopy_33; 3027 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforecopy_34; 3029 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_oncopy_35; 3031 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_oncopy_36; 3033 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforepaste_37; 3035 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforepaste_38; 3037 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onpaste_39; 3039 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onpaste_40; 3041 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLCurrentStyle** ,winmdroot.Foundation.HRESULT> get_currentStyle_41; 3043 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onpropertychange_42; 3045 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onpropertychange_43; 3047 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLRectCollection** ,winmdroot.Foundation.HRESULT> getClientRects_44; 3049 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLRect** ,winmdroot.Foundation.HRESULT> getBoundingClientRect_45; 3051 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> setExpression_46; 3053 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getExpression_47; 3055 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> removeExpression_48; 3057 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,short ,winmdroot.Foundation.HRESULT> put_tabIndex_49; 3059 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,short* ,winmdroot.Foundation.HRESULT> get_tabIndex_50; 3061 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.HRESULT> focus_51; 3063 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_accessKey_52; 3065 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accessKey_53; 3067 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onblur_54; 3069 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onblur_55; 3071 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onfocus_56; 3073 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onfocus_57; 3075 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onresize_58; 3077 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onresize_59; 3079 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.HRESULT> blur_60; 3081 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT> addFilter_61; 3083 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT> removeFilter_62; 3085 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_clientHeight_63; 3087 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_clientWidth_64; 3089 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_clientTop_65; 3091 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_clientLeft_66; 3093 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> attachEvent_67; 3095 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT> detachEvent_68; 3097 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_readyState_69; 3099 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onreadystatechange_70; 3101 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onreadystatechange_71; 3103 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onrowsdelete_72; 3105 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onrowsdelete_73; 3107 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onrowsinserted_74; 3109 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onrowsinserted_75; 3111 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_oncellchange_76; 3113 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_oncellchange_77; 3115 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_dir_78; 3117 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_dir_79; 3119 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> createControlRange_80; 3121 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_scrollHeight_81; 3123 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_scrollWidth_82; 3125 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,winmdroot.Foundation.HRESULT> put_scrollTop_83; 3127 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_scrollTop_84; 3129 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,winmdroot.Foundation.HRESULT> put_scrollLeft_85; 3131 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_scrollLeft_86; 3133 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.HRESULT> clearAttributes_87; 3135 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Foundation.HRESULT> mergeAttributes_88; 3137 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_oncontextmenu_89; 3139 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_oncontextmenu_90; 3141 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> insertAdjacentElement_91; 3143 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> applyElement_92; 3145 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> getAdjacentText_93; 3147 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> replaceAdjacentText_94; 3149 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_canHaveChildren_95; 3151 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT> addBehavior_96; 3153 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> removeBehavior_97; 3155 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLStyle** ,winmdroot.Foundation.HRESULT> get_runtimeStyle_98; 3157 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_behaviorUrns_99; 3159 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_tagUrn_100; 3161 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_tagUrn_101; 3163 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforeeditfocus_102; 3165 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforeeditfocus_103; 3167 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_readyStateValue_104; 3169 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> getElementsByTagName_105; 3297winmdroot.Foundation.HRESULT setCapture(winmdroot.Foundation.VARIANT_BOOL containerCapture); 3300winmdroot.Foundation.HRESULT releaseCapture(); 3309 unsafe winmdroot.Foundation.HRESULT componentFromPoint(int x, int y, winmdroot.Foundation.BSTR* component); 3312winmdroot.Foundation.HRESULT doScroll(winmdroot.System.Variant.VARIANT component); 3404 unsafe winmdroot.Foundation.HRESULT getClientRects(winmdroot.Web.MsHtml.IHTMLRectCollection** pRectCol); 3407 unsafe winmdroot.Foundation.HRESULT getBoundingClientRect(winmdroot.Web.MsHtml.IHTMLRect** pRect); 3410winmdroot.Foundation.HRESULT setExpression(winmdroot.Foundation.BSTR propname, winmdroot.Foundation.BSTR expression, winmdroot.Foundation.BSTR language); 3413 unsafe winmdroot.Foundation.HRESULT getExpression(winmdroot.Foundation.BSTR propname, winmdroot.System.Variant.VARIANT* expression); 3416 unsafe winmdroot.Foundation.HRESULT removeExpression(winmdroot.Foundation.BSTR propname, winmdroot.Foundation.VARIANT_BOOL* pfSuccess); 3419winmdroot.Foundation.HRESULT put_tabIndex(short v); 3422 unsafe winmdroot.Foundation.HRESULT get_tabIndex(short* p); 3425winmdroot.Foundation.HRESULT focus(); 3452winmdroot.Foundation.HRESULT blur(); 3455 unsafe winmdroot.Foundation.HRESULT addFilter(winmdroot.System.Com.IUnknown* pUnk); 3458 unsafe winmdroot.Foundation.HRESULT removeFilter(winmdroot.System.Com.IUnknown* pUnk); 3461 unsafe winmdroot.Foundation.HRESULT get_clientHeight(int* p); 3464 unsafe winmdroot.Foundation.HRESULT get_clientWidth(int* p); 3467 unsafe winmdroot.Foundation.HRESULT get_clientTop(int* p); 3470 unsafe winmdroot.Foundation.HRESULT get_clientLeft(int* p); 3473 unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult); 3476 unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp); 3514 unsafe winmdroot.Foundation.HRESULT createControlRange(winmdroot.System.Com.IDispatch** range); 3517 unsafe winmdroot.Foundation.HRESULT get_scrollHeight(int* p); 3520 unsafe winmdroot.Foundation.HRESULT get_scrollWidth(int* p); 3523winmdroot.Foundation.HRESULT put_scrollTop(int v); 3526 unsafe winmdroot.Foundation.HRESULT get_scrollTop(int* p); 3529winmdroot.Foundation.HRESULT put_scrollLeft(int v); 3532 unsafe winmdroot.Foundation.HRESULT get_scrollLeft(int* p); 3535winmdroot.Foundation.HRESULT clearAttributes(); 3538 unsafe winmdroot.Foundation.HRESULT mergeAttributes(winmdroot.Web.MsHtml.IHTMLElement* mergeThis); 3547 unsafe winmdroot.Foundation.HRESULT insertAdjacentElement(winmdroot.Foundation.BSTR where, winmdroot.Web.MsHtml.IHTMLElement* insertedElement, winmdroot.Web.MsHtml.IHTMLElement** inserted); 3550 unsafe winmdroot.Foundation.HRESULT applyElement(winmdroot.Web.MsHtml.IHTMLElement* apply, winmdroot.Foundation.BSTR where, winmdroot.Web.MsHtml.IHTMLElement** applied); 3553 unsafe winmdroot.Foundation.HRESULT getAdjacentText(winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR* text); 3556 unsafe winmdroot.Foundation.HRESULT replaceAdjacentText(winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR newText, winmdroot.Foundation.BSTR* oldText); 3559 unsafe winmdroot.Foundation.HRESULT get_canHaveChildren(winmdroot.Foundation.VARIANT_BOOL* p); 3562 unsafe winmdroot.Foundation.HRESULT addBehavior(winmdroot.Foundation.BSTR bstrUrl, winmdroot.System.Variant.VARIANT* pvarFactory, int* pCookie); 3565 unsafe winmdroot.Foundation.HRESULT removeBehavior(int cookie, winmdroot.Foundation.VARIANT_BOOL* pfResult); 3595 unsafe winmdroot.Foundation.HRESULT getElementsByTagName(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl);
_generated\150\Windows.Win32.IHTMLElement3.g.cs (280)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLElement3*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLElement3*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLElement3*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLElement3*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 149 private static winmdroot.Foundation.HRESULT mergeAttributes(IHTMLElement3* pThis, winmdroot.Web.MsHtml.IHTMLElement* mergeThis, winmdroot.System.Variant.VARIANT* pvarFlags) 153 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 162 return (winmdroot.Foundation.HRESULT)ex.HResult; 168 ((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(); 174 private static winmdroot.Foundation.HRESULT get_isMultiLine(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 178 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 184 return winmdroot.Foundation.HRESULT.S_OK; 188 return (winmdroot.Foundation.HRESULT)ex.HResult; 197 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 205 private static winmdroot.Foundation.HRESULT get_canHaveHTML(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 209 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 215 return winmdroot.Foundation.HRESULT.S_OK; 219 return (winmdroot.Foundation.HRESULT)ex.HResult; 228 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 236 private static winmdroot.Foundation.HRESULT put_onlayoutcomplete(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 240 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 246 return winmdroot.Foundation.HRESULT.S_OK; 250 return (winmdroot.Foundation.HRESULT)ex.HResult; 258 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 263 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 271 private static winmdroot.Foundation.HRESULT get_onlayoutcomplete(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 275 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 281 return winmdroot.Foundation.HRESULT.S_OK; 285 return (winmdroot.Foundation.HRESULT)ex.HResult; 292 private static winmdroot.Foundation.HRESULT put_onpage(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 296 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 302 return winmdroot.Foundation.HRESULT.S_OK; 306 return (winmdroot.Foundation.HRESULT)ex.HResult; 314 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 319 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 327 private static winmdroot.Foundation.HRESULT get_onpage(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 331 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 337 return winmdroot.Foundation.HRESULT.S_OK; 341 return (winmdroot.Foundation.HRESULT)ex.HResult; 348 private static winmdroot.Foundation.HRESULT put_inflateBlock(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL v) 352 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 358 return winmdroot.Foundation.HRESULT.S_OK; 362 return (winmdroot.Foundation.HRESULT)ex.HResult; 370 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 375 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 383 private static winmdroot.Foundation.HRESULT get_inflateBlock(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 387 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 393 return winmdroot.Foundation.HRESULT.S_OK; 397 return (winmdroot.Foundation.HRESULT)ex.HResult; 404 private static winmdroot.Foundation.HRESULT put_onbeforedeactivate(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 408 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 414 return winmdroot.Foundation.HRESULT.S_OK; 418 return (winmdroot.Foundation.HRESULT)ex.HResult; 426 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 431 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 439 private static winmdroot.Foundation.HRESULT get_onbeforedeactivate(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 443 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 449 return winmdroot.Foundation.HRESULT.S_OK; 453 return (winmdroot.Foundation.HRESULT)ex.HResult; 460 private static winmdroot.Foundation.HRESULT setActive(IHTMLElement3* pThis) 464 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 473 return (winmdroot.Foundation.HRESULT)ex.HResult; 479 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLElement3*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 485 private static winmdroot.Foundation.HRESULT put_contentEditable(IHTMLElement3* pThis, winmdroot.Foundation.BSTR v) 489 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 495 return winmdroot.Foundation.HRESULT.S_OK; 499 return (winmdroot.Foundation.HRESULT)ex.HResult; 507 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 512 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 520 private static winmdroot.Foundation.HRESULT get_contentEditable(IHTMLElement3* pThis, winmdroot.Foundation.BSTR* p) 524 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 530 return winmdroot.Foundation.HRESULT.S_OK; 534 return (winmdroot.Foundation.HRESULT)ex.HResult; 541 private static winmdroot.Foundation.HRESULT get_isContentEditable(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 545 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 551 return winmdroot.Foundation.HRESULT.S_OK; 555 return (winmdroot.Foundation.HRESULT)ex.HResult; 564 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 572 private static winmdroot.Foundation.HRESULT put_hideFocus(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL v) 576 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 582 return winmdroot.Foundation.HRESULT.S_OK; 586 return (winmdroot.Foundation.HRESULT)ex.HResult; 594 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 599 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 607 private static winmdroot.Foundation.HRESULT get_hideFocus(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 611 winmdroot.Foundation.HRESULT __hr = winmdroot.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_disabled(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL v) 632 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 641 return (winmdroot.Foundation.HRESULT)ex.HResult; 645 public winmdroot.Foundation.HRESULT put_disabled(winmdroot.Foundation.VARIANT_BOOL v) 647 return ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLElement3*)Unsafe.AsPointer(ref this), v); 652 internal unsafe winmdroot.Foundation.HRESULT get_disabled(out winmdroot.Foundation.VARIANT_BOOL p) 656 winmdroot.Foundation.HRESULT __result = this.get_disabled(pLocal); 664 private static winmdroot.Foundation.HRESULT get_disabled(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 668 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 677 return (winmdroot.Foundation.HRESULT)ex.HResult; 681 public unsafe winmdroot.Foundation.HRESULT get_disabled(winmdroot.Foundation.VARIANT_BOOL* p) 683 return ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLElement3*)Unsafe.AsPointer(ref this), p); 689 private static winmdroot.Foundation.HRESULT get_isDisabled(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 693 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 699 return winmdroot.Foundation.HRESULT.S_OK; 703 return (winmdroot.Foundation.HRESULT)ex.HResult; 712 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 720 private static winmdroot.Foundation.HRESULT put_onmove(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 724 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 730 return winmdroot.Foundation.HRESULT.S_OK; 734 return (winmdroot.Foundation.HRESULT)ex.HResult; 742 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 747 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 755 private static winmdroot.Foundation.HRESULT get_onmove(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 759 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 765 return winmdroot.Foundation.HRESULT.S_OK; 769 return (winmdroot.Foundation.HRESULT)ex.HResult; 776 private static winmdroot.Foundation.HRESULT put_oncontrolselect(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 780 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 786 return winmdroot.Foundation.HRESULT.S_OK; 790 return (winmdroot.Foundation.HRESULT)ex.HResult; 798 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 803 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 811 private static winmdroot.Foundation.HRESULT get_oncontrolselect(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 815 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 821 return winmdroot.Foundation.HRESULT.S_OK; 825 return (winmdroot.Foundation.HRESULT)ex.HResult; 831 internal unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, in winmdroot.System.Variant.VARIANT pvarEventObject, out winmdroot.Foundation.VARIANT_BOOL pfCancelled) 837 winmdroot.Foundation.HRESULT __result = this.fireEvent(bstrEventName, pvarEventObjectLocal, pfCancelledLocal); 846 private static winmdroot.Foundation.HRESULT fireEvent(IHTMLElement3* pThis, winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled) 850 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 859 return (winmdroot.Foundation.HRESULT)ex.HResult; 863 public unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled) 865 return ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLElement3*)Unsafe.AsPointer(ref this), bstrEventName, pvarEventObject, pfCancelled); 871 private static winmdroot.Foundation.HRESULT put_onresizestart(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 875 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 881 return winmdroot.Foundation.HRESULT.S_OK; 885 return (winmdroot.Foundation.HRESULT)ex.HResult; 893 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 898 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 906 private static winmdroot.Foundation.HRESULT get_onresizestart(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 910 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 916 return winmdroot.Foundation.HRESULT.S_OK; 920 return (winmdroot.Foundation.HRESULT)ex.HResult; 927 private static winmdroot.Foundation.HRESULT put_onresizeend(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 931 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 937 return winmdroot.Foundation.HRESULT.S_OK; 941 return (winmdroot.Foundation.HRESULT)ex.HResult; 949 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 954 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 962 private static winmdroot.Foundation.HRESULT get_onresizeend(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 966 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 972 return winmdroot.Foundation.HRESULT.S_OK; 976 return (winmdroot.Foundation.HRESULT)ex.HResult; 983 private static winmdroot.Foundation.HRESULT put_onmovestart(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 987 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 993 return winmdroot.Foundation.HRESULT.S_OK; 997 return (winmdroot.Foundation.HRESULT)ex.HResult; 1005 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1010 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1018 private static winmdroot.Foundation.HRESULT get_onmovestart(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 1022 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1028 return winmdroot.Foundation.HRESULT.S_OK; 1032 return (winmdroot.Foundation.HRESULT)ex.HResult; 1039 private static winmdroot.Foundation.HRESULT put_onmoveend(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 1043 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1049 return winmdroot.Foundation.HRESULT.S_OK; 1053 return (winmdroot.Foundation.HRESULT)ex.HResult; 1061 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1066 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1074 private static winmdroot.Foundation.HRESULT get_onmoveend(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 1078 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1084 return winmdroot.Foundation.HRESULT.S_OK; 1088 return (winmdroot.Foundation.HRESULT)ex.HResult; 1095 private static winmdroot.Foundation.HRESULT put_onmouseenter(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 1099 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1105 return winmdroot.Foundation.HRESULT.S_OK; 1109 return (winmdroot.Foundation.HRESULT)ex.HResult; 1117 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1122 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1130 private static winmdroot.Foundation.HRESULT get_onmouseenter(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 1134 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1140 return winmdroot.Foundation.HRESULT.S_OK; 1144 return (winmdroot.Foundation.HRESULT)ex.HResult; 1151 private static winmdroot.Foundation.HRESULT put_onmouseleave(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 1155 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1161 return winmdroot.Foundation.HRESULT.S_OK; 1165 return (winmdroot.Foundation.HRESULT)ex.HResult; 1173 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1178 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1186 private static winmdroot.Foundation.HRESULT get_onmouseleave(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 1190 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1196 return winmdroot.Foundation.HRESULT.S_OK; 1200 return (winmdroot.Foundation.HRESULT)ex.HResult; 1207 private static winmdroot.Foundation.HRESULT put_onactivate(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 1211 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1217 return winmdroot.Foundation.HRESULT.S_OK; 1221 return (winmdroot.Foundation.HRESULT)ex.HResult; 1229 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1234 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1242 private static winmdroot.Foundation.HRESULT get_onactivate(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 1246 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1252 return winmdroot.Foundation.HRESULT.S_OK; 1256 return (winmdroot.Foundation.HRESULT)ex.HResult; 1263 private static winmdroot.Foundation.HRESULT put_ondeactivate(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 1267 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1273 return winmdroot.Foundation.HRESULT.S_OK; 1277 return (winmdroot.Foundation.HRESULT)ex.HResult; 1285 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1290 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1298 private static winmdroot.Foundation.HRESULT get_ondeactivate(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 1302 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1308 return winmdroot.Foundation.HRESULT.S_OK; 1312 return (winmdroot.Foundation.HRESULT)ex.HResult; 1319 private static winmdroot.Foundation.HRESULT dragDrop(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1323 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1332 return (winmdroot.Foundation.HRESULT)ex.HResult; 1339 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 1346 private static winmdroot.Foundation.HRESULT get_glyphMode(IHTMLElement3* pThis, int* p) 1350 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1356 return winmdroot.Foundation.HRESULT.S_OK; 1360 return (winmdroot.Foundation.HRESULT)ex.HResult; 1369 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1374 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 1380 var hr = this.QueryInterface(&guid, &pv); 1397 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 1403 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 1405 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 1407 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 1409 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; 1411 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> mergeAttributes_8; 1413 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_isMultiLine_9; 1415 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_canHaveHTML_10; 1417 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onlayoutcomplete_11; 1419 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onlayoutcomplete_12; 1421 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onpage_13; 1423 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onpage_14; 1425 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_inflateBlock_15; 1427 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_inflateBlock_16; 1429 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforedeactivate_17; 1431 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforedeactivate_18; 1433 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.HRESULT> setActive_19; 1435 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_contentEditable_20; 1437 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_contentEditable_21; 1439 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_isContentEditable_22; 1441 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_hideFocus_23; 1443 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_hideFocus_24; 1445 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_disabled_25; 1447 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_disabled_26; 1449 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_isDisabled_27; 1451 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmove_28; 1453 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmove_29; 1455 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_oncontrolselect_30; 1457 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_oncontrolselect_31; 1459 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> fireEvent_32; 1461 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onresizestart_33; 1463 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onresizestart_34; 1465 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onresizeend_35; 1467 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onresizeend_36; 1469 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmovestart_37; 1471 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmovestart_38; 1473 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmoveend_39; 1475 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmoveend_40; 1477 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmouseenter_41; 1479 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmouseenter_42; 1481 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmouseleave_43; 1483 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmouseleave_44; 1485 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onactivate_45; 1487 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onactivate_46; 1489 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondeactivate_47; 1491 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondeactivate_48; 1493 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> dragDrop_49; 1495 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,int* ,winmdroot.Foundation.HRESULT> get_glyphMode_50; 1563 unsafe winmdroot.Foundation.HRESULT mergeAttributes(winmdroot.Web.MsHtml.IHTMLElement* mergeThis, winmdroot.System.Variant.VARIANT* pvarFlags); 1600winmdroot.Foundation.HRESULT setActive(); 1620winmdroot.Foundation.HRESULT put_disabled(winmdroot.Foundation.VARIANT_BOOL v); 1623 unsafe winmdroot.Foundation.HRESULT get_disabled(winmdroot.Foundation.VARIANT_BOOL* p); 1643 unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled); 1694 unsafe winmdroot.Foundation.HRESULT dragDrop(winmdroot.Foundation.VARIANT_BOOL* pfRet);
_generated\151\Windows.Win32.IHTMLElementCollection.g.cs (55)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT toString(IHTMLElementCollection* pThis, winmdroot.Foundation.BSTR* String) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 159 ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 166 private static winmdroot.Foundation.HRESULT put_length(IHTMLElementCollection* pThis, int v) 170 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 176 return winmdroot.Foundation.HRESULT.S_OK; 180 return (winmdroot.Foundation.HRESULT)ex.HResult; 188 ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 194 internal unsafe winmdroot.Foundation.HRESULT get_length(out int p) 198 winmdroot.Foundation.HRESULT __result = this.get_length(pLocal); 206 private static winmdroot.Foundation.HRESULT get_length(IHTMLElementCollection* pThis, int* p) 210 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 219 return (winmdroot.Foundation.HRESULT)ex.HResult; 223 public unsafe winmdroot.Foundation.HRESULT get_length(int* p) 225 return ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), p); 231 private static winmdroot.Foundation.HRESULT get__newEnum(IHTMLElementCollection* pThis, winmdroot.System.Com.IUnknown** p) 235 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 241 return winmdroot.Foundation.HRESULT.S_OK; 245 return (winmdroot.Foundation.HRESULT)ex.HResult; 254 ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 262 private static winmdroot.Foundation.HRESULT item(IHTMLElementCollection* pThis, winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT index, winmdroot.System.Com.IDispatch** pdisp) 266 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 275 return (winmdroot.Foundation.HRESULT)ex.HResult; 279 public unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT index, winmdroot.System.Com.IDispatch** pdisp) 281 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); 287 private static winmdroot.Foundation.HRESULT tags(IHTMLElementCollection* pThis, winmdroot.System.Variant.VARIANT tagName, winmdroot.System.Com.IDispatch** pdisp) 291 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 300 return (winmdroot.Foundation.HRESULT)ex.HResult; 307 ((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(); 311 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 317 var hr = this.QueryInterface(&guid, &pv); 334 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 340 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 342 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 344 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 346 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; 348 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_8; 350 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,int ,winmdroot.Foundation.HRESULT> put_length_9; 352 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,int* ,winmdroot.Foundation.HRESULT> get_length_10; 354 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> get__newEnum_11; 356 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> item_12; 358 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> tags_13; 389 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* String); 397 unsafe winmdroot.Foundation.HRESULT get_length(int* p); 405 unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT index, winmdroot.System.Com.IDispatch** pdisp); 408 unsafe winmdroot.Foundation.HRESULT tags(winmdroot.System.Variant.VARIANT tagName, winmdroot.System.Com.IDispatch** pdisp);
_generated\152\Windows.Win32.IHTMLEventObj.g.cs (165)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLEventObj*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLEventObj*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLEventObj*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT get_srcElement(IHTMLEventObj* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT get_altKey(IHTMLEventObj* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 174 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 201 private static winmdroot.Foundation.HRESULT get_ctrlKey(IHTMLEventObj* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 205 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 211 return winmdroot.Foundation.HRESULT.S_OK; 215 return (winmdroot.Foundation.HRESULT)ex.HResult; 224 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 232 private static winmdroot.Foundation.HRESULT get_shiftKey(IHTMLEventObj* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 236 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 242 return winmdroot.Foundation.HRESULT.S_OK; 246 return (winmdroot.Foundation.HRESULT)ex.HResult; 255 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 263 private static winmdroot.Foundation.HRESULT put_returnValue(IHTMLEventObj* pThis, winmdroot.System.Variant.VARIANT v) 267 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 273 return winmdroot.Foundation.HRESULT.S_OK; 277 return (winmdroot.Foundation.HRESULT)ex.HResult; 285 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLEventObj*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 290 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 298 private static winmdroot.Foundation.HRESULT get_returnValue(IHTMLEventObj* pThis, winmdroot.System.Variant.VARIANT* p) 302 winmdroot.Foundation.HRESULT __hr = winmdroot.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 put_cancelBubble(IHTMLEventObj* pThis, winmdroot.Foundation.VARIANT_BOOL v) 323 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 329 return winmdroot.Foundation.HRESULT.S_OK; 333 return (winmdroot.Foundation.HRESULT)ex.HResult; 341 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLEventObj*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 346 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 354 private static winmdroot.Foundation.HRESULT get_cancelBubble(IHTMLEventObj* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 358 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 364 return winmdroot.Foundation.HRESULT.S_OK; 368 return (winmdroot.Foundation.HRESULT)ex.HResult; 375 private static winmdroot.Foundation.HRESULT get_fromElement(IHTMLEventObj* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 379 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 385 return winmdroot.Foundation.HRESULT.S_OK; 389 return (winmdroot.Foundation.HRESULT)ex.HResult; 398 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 406 private static winmdroot.Foundation.HRESULT get_toElement(IHTMLEventObj* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 410 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 416 return winmdroot.Foundation.HRESULT.S_OK; 420 return (winmdroot.Foundation.HRESULT)ex.HResult; 429 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 437 private static winmdroot.Foundation.HRESULT put_keyCode(IHTMLEventObj* pThis, int v) 441 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 447 return winmdroot.Foundation.HRESULT.S_OK; 451 return (winmdroot.Foundation.HRESULT)ex.HResult; 459 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLEventObj*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 464 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 472 private static winmdroot.Foundation.HRESULT get_keyCode(IHTMLEventObj* pThis, int* p) 476 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 482 return winmdroot.Foundation.HRESULT.S_OK; 486 return (winmdroot.Foundation.HRESULT)ex.HResult; 493 private static winmdroot.Foundation.HRESULT get_button(IHTMLEventObj* pThis, int* p) 497 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 503 return winmdroot.Foundation.HRESULT.S_OK; 507 return (winmdroot.Foundation.HRESULT)ex.HResult; 516 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 524 private static winmdroot.Foundation.HRESULT get_type(IHTMLEventObj* pThis, winmdroot.Foundation.BSTR* p) 528 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 534 return winmdroot.Foundation.HRESULT.S_OK; 538 return (winmdroot.Foundation.HRESULT)ex.HResult; 547 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 555 private static winmdroot.Foundation.HRESULT get_qualifier(IHTMLEventObj* pThis, winmdroot.Foundation.BSTR* p) 559 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 565 return winmdroot.Foundation.HRESULT.S_OK; 569 return (winmdroot.Foundation.HRESULT)ex.HResult; 578 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 586 private static winmdroot.Foundation.HRESULT get_reason(IHTMLEventObj* pThis, int* p) 590 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 596 return winmdroot.Foundation.HRESULT.S_OK; 600 return (winmdroot.Foundation.HRESULT)ex.HResult; 609 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 617 private static winmdroot.Foundation.HRESULT get_x(IHTMLEventObj* pThis, int* p) 621 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 627 return winmdroot.Foundation.HRESULT.S_OK; 631 return (winmdroot.Foundation.HRESULT)ex.HResult; 640 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 648 private static winmdroot.Foundation.HRESULT get_y(IHTMLEventObj* pThis, int* p) 652 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 658 return winmdroot.Foundation.HRESULT.S_OK; 662 return (winmdroot.Foundation.HRESULT)ex.HResult; 671 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 679 private static winmdroot.Foundation.HRESULT get_clientX(IHTMLEventObj* pThis, int* p) 683 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 689 return winmdroot.Foundation.HRESULT.S_OK; 693 return (winmdroot.Foundation.HRESULT)ex.HResult; 702 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 710 private static winmdroot.Foundation.HRESULT get_clientY(IHTMLEventObj* pThis, int* p) 714 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 720 return winmdroot.Foundation.HRESULT.S_OK; 724 return (winmdroot.Foundation.HRESULT)ex.HResult; 733 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 741 private static winmdroot.Foundation.HRESULT get_offsetX(IHTMLEventObj* pThis, int* p) 745 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 751 return winmdroot.Foundation.HRESULT.S_OK; 755 return (winmdroot.Foundation.HRESULT)ex.HResult; 764 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 772 private static winmdroot.Foundation.HRESULT get_offsetY(IHTMLEventObj* pThis, int* p) 776 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 782 return winmdroot.Foundation.HRESULT.S_OK; 786 return (winmdroot.Foundation.HRESULT)ex.HResult; 795 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 803 private static winmdroot.Foundation.HRESULT get_screenX(IHTMLEventObj* pThis, int* p) 807 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 813 return winmdroot.Foundation.HRESULT.S_OK; 817 return (winmdroot.Foundation.HRESULT)ex.HResult; 826 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 834 private static winmdroot.Foundation.HRESULT get_screenY(IHTMLEventObj* pThis, int* p) 838 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 844 return winmdroot.Foundation.HRESULT.S_OK; 848 return (winmdroot.Foundation.HRESULT)ex.HResult; 857 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 865 private static winmdroot.Foundation.HRESULT get_srcFilter(IHTMLEventObj* pThis, winmdroot.System.Com.IDispatch** p) 869 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 875 return winmdroot.Foundation.HRESULT.S_OK; 879 return (winmdroot.Foundation.HRESULT)ex.HResult; 888 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 893 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 899 var hr = this.QueryInterface(&guid, &pv); 916 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 922 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 924 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 926 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 928 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; 930 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_srcElement_8; 932 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_altKey_9; 934 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_ctrlKey_10; 936 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_shiftKey_11; 938 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_returnValue_12; 940 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_returnValue_13; 942 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_cancelBubble_14; 944 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_cancelBubble_15; 946 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_fromElement_16; 948 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_toElement_17; 950 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int ,winmdroot.Foundation.HRESULT> put_keyCode_18; 952 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_keyCode_19; 954 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_button_20; 956 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_type_21; 958 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_qualifier_22; 960 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_reason_23; 962 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_x_24; 964 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_y_25; 966 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_clientX_26; 968 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_clientY_27; 970 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_offsetX_28; 972 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_offsetY_29; 974 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_screenX_30; 976 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_screenY_31; 978 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_srcFilter_32;
_generated\153\Windows.Win32.IHTMLFiltersCollection.g.cs (33)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLFiltersCollection*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLFiltersCollection*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLFiltersCollection*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT get_length(IHTMLFiltersCollection* pThis, int* p) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 ((delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLFiltersCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT get__newEnum(IHTMLFiltersCollection* pThis, winmdroot.System.Com.IUnknown** p) 174 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 ((delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLFiltersCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 212 private static winmdroot.Foundation.HRESULT item(IHTMLFiltersCollection* pThis, winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult) 216 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 225 return (winmdroot.Foundation.HRESULT)ex.HResult; 232 ((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(); 236 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 242 var hr = this.QueryInterface(&guid, &pv); 259 internal delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 265 internal delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 267 internal delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 269 internal delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 271 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; 273 internal delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,int* ,winmdroot.Foundation.HRESULT> get_length_8; 275 internal delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> get__newEnum_9; 277 internal delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> item_10; 315 unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult);
_generated\154\Windows.Win32.IHTMLFormElement.g.cs (159)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLFormElement*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLFormElement*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLFormElement*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT put_action(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 166 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_action(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 178 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 184 return winmdroot.Foundation.HRESULT.S_OK; 188 return (winmdroot.Foundation.HRESULT)ex.HResult; 195 private static winmdroot.Foundation.HRESULT put_dir(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 199 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 205 return winmdroot.Foundation.HRESULT.S_OK; 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 217 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 222 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT get_dir(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 234 winmdroot.Foundation.HRESULT __hr = winmdroot.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 put_encoding(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 255 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 261 return winmdroot.Foundation.HRESULT.S_OK; 265 return (winmdroot.Foundation.HRESULT)ex.HResult; 273 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 278 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 286 private static winmdroot.Foundation.HRESULT get_encoding(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 290 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 296 return winmdroot.Foundation.HRESULT.S_OK; 300 return (winmdroot.Foundation.HRESULT)ex.HResult; 307 private static winmdroot.Foundation.HRESULT put_method(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 311 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 317 return winmdroot.Foundation.HRESULT.S_OK; 321 return (winmdroot.Foundation.HRESULT)ex.HResult; 329 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 334 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 342 private static winmdroot.Foundation.HRESULT get_method(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 346 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 352 return winmdroot.Foundation.HRESULT.S_OK; 356 return (winmdroot.Foundation.HRESULT)ex.HResult; 363 private static winmdroot.Foundation.HRESULT get_elements(IHTMLFormElement* pThis, winmdroot.System.Com.IDispatch** p) 367 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 373 return winmdroot.Foundation.HRESULT.S_OK; 377 return (winmdroot.Foundation.HRESULT)ex.HResult; 386 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 394 private static winmdroot.Foundation.HRESULT put_target(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 398 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 404 return winmdroot.Foundation.HRESULT.S_OK; 408 return (winmdroot.Foundation.HRESULT)ex.HResult; 416 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 421 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 429 private static winmdroot.Foundation.HRESULT get_target(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 433 winmdroot.Foundation.HRESULT __hr = winmdroot.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_name(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 454 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 460 return winmdroot.Foundation.HRESULT.S_OK; 464 return (winmdroot.Foundation.HRESULT)ex.HResult; 472 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 477 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 485 private static winmdroot.Foundation.HRESULT get_name(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 489 winmdroot.Foundation.HRESULT __hr = winmdroot.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_onsubmit(IHTMLFormElement* pThis, winmdroot.System.Variant.VARIANT v) 510 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 516 return winmdroot.Foundation.HRESULT.S_OK; 520 return (winmdroot.Foundation.HRESULT)ex.HResult; 528 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 533 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 541 private static winmdroot.Foundation.HRESULT get_onsubmit(IHTMLFormElement* pThis, winmdroot.System.Variant.VARIANT* p) 545 winmdroot.Foundation.HRESULT __hr = winmdroot.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_onreset(IHTMLFormElement* pThis, winmdroot.System.Variant.VARIANT v) 566 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 572 return winmdroot.Foundation.HRESULT.S_OK; 576 return (winmdroot.Foundation.HRESULT)ex.HResult; 584 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 589 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 597 private static winmdroot.Foundation.HRESULT get_onreset(IHTMLFormElement* pThis, winmdroot.System.Variant.VARIANT* p) 601 winmdroot.Foundation.HRESULT __hr = winmdroot.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 submit(IHTMLFormElement* pThis) 622 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 631 return (winmdroot.Foundation.HRESULT)ex.HResult; 637 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLFormElement*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 643 private static winmdroot.Foundation.HRESULT reset(IHTMLFormElement* pThis) 647 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 656 return (winmdroot.Foundation.HRESULT)ex.HResult; 662 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLFormElement*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 668 private static winmdroot.Foundation.HRESULT put_length(IHTMLFormElement* pThis, int v) 672 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 678 return winmdroot.Foundation.HRESULT.S_OK; 682 return (winmdroot.Foundation.HRESULT)ex.HResult; 690 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 695 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 703 private static winmdroot.Foundation.HRESULT get_length(IHTMLFormElement* pThis, int* p) 707 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 713 return winmdroot.Foundation.HRESULT.S_OK; 717 return (winmdroot.Foundation.HRESULT)ex.HResult; 724 private static winmdroot.Foundation.HRESULT get__newEnum(IHTMLFormElement* pThis, winmdroot.System.Com.IUnknown** p) 728 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 734 return winmdroot.Foundation.HRESULT.S_OK; 738 return (winmdroot.Foundation.HRESULT)ex.HResult; 747 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 755 private static winmdroot.Foundation.HRESULT item(IHTMLFormElement* pThis, winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT index, winmdroot.System.Com.IDispatch** pdisp) 759 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 768 return (winmdroot.Foundation.HRESULT)ex.HResult; 775 ((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(); 782 private static winmdroot.Foundation.HRESULT tags(IHTMLFormElement* pThis, winmdroot.System.Variant.VARIANT tagName, winmdroot.System.Com.IDispatch** pdisp) 786 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 795 return (winmdroot.Foundation.HRESULT)ex.HResult; 802 ((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(); 806 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 812 var hr = this.QueryInterface(&guid, &pv); 829 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 835 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 837 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 839 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 841 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; 843 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_action_8; 845 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_action_9; 847 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_dir_10; 849 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_dir_11; 851 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_encoding_12; 853 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_encoding_13; 855 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_method_14; 857 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_method_15; 859 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_elements_16; 861 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_target_17; 863 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_target_18; 865 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_name_19; 867 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_name_20; 869 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onsubmit_21; 871 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onsubmit_22; 873 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onreset_23; 875 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onreset_24; 877 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.HRESULT> submit_25; 879 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.HRESULT> reset_26; 881 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,int ,winmdroot.Foundation.HRESULT> put_length_27; 883 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,int* ,winmdroot.Foundation.HRESULT> get_length_28; 885 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> get__newEnum_29; 887 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> item_30; 889 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> tags_31; 991winmdroot.Foundation.HRESULT submit(); 994winmdroot.Foundation.HRESULT reset(); 1008 unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT index, winmdroot.System.Com.IDispatch** pdisp); 1011 unsafe winmdroot.Foundation.HRESULT tags(winmdroot.System.Variant.VARIANT tagName, winmdroot.System.Com.IDispatch** pdisp);
_generated\155\Windows.Win32.IHTMLFrameBase.g.cs (123)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT put_src(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR v) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 166 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_src(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR* p) 178 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 184 return winmdroot.Foundation.HRESULT.S_OK; 188 return (winmdroot.Foundation.HRESULT)ex.HResult; 195 private static winmdroot.Foundation.HRESULT put_name(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR v) 199 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 205 return winmdroot.Foundation.HRESULT.S_OK; 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 217 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 222 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT get_name(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR* p) 234 winmdroot.Foundation.HRESULT __hr = winmdroot.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 put_border(IHTMLFrameBase* pThis, winmdroot.System.Variant.VARIANT v) 255 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 261 return winmdroot.Foundation.HRESULT.S_OK; 265 return (winmdroot.Foundation.HRESULT)ex.HResult; 273 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 278 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 286 private static winmdroot.Foundation.HRESULT get_border(IHTMLFrameBase* pThis, winmdroot.System.Variant.VARIANT* p) 290 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 296 return winmdroot.Foundation.HRESULT.S_OK; 300 return (winmdroot.Foundation.HRESULT)ex.HResult; 307 private static winmdroot.Foundation.HRESULT put_frameBorder(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR v) 311 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 317 return winmdroot.Foundation.HRESULT.S_OK; 321 return (winmdroot.Foundation.HRESULT)ex.HResult; 329 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 334 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 342 private static winmdroot.Foundation.HRESULT get_frameBorder(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR* p) 346 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 352 return winmdroot.Foundation.HRESULT.S_OK; 356 return (winmdroot.Foundation.HRESULT)ex.HResult; 363 private static winmdroot.Foundation.HRESULT put_frameSpacing(IHTMLFrameBase* pThis, winmdroot.System.Variant.VARIANT v) 367 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 373 return winmdroot.Foundation.HRESULT.S_OK; 377 return (winmdroot.Foundation.HRESULT)ex.HResult; 385 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 390 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 398 private static winmdroot.Foundation.HRESULT get_frameSpacing(IHTMLFrameBase* pThis, winmdroot.System.Variant.VARIANT* p) 402 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 408 return winmdroot.Foundation.HRESULT.S_OK; 412 return (winmdroot.Foundation.HRESULT)ex.HResult; 419 private static winmdroot.Foundation.HRESULT put_marginWidth(IHTMLFrameBase* pThis, winmdroot.System.Variant.VARIANT v) 423 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 429 return winmdroot.Foundation.HRESULT.S_OK; 433 return (winmdroot.Foundation.HRESULT)ex.HResult; 441 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 446 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 454 private static winmdroot.Foundation.HRESULT get_marginWidth(IHTMLFrameBase* pThis, winmdroot.System.Variant.VARIANT* p) 458 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 464 return winmdroot.Foundation.HRESULT.S_OK; 468 return (winmdroot.Foundation.HRESULT)ex.HResult; 475 private static winmdroot.Foundation.HRESULT put_marginHeight(IHTMLFrameBase* pThis, winmdroot.System.Variant.VARIANT v) 479 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 485 return winmdroot.Foundation.HRESULT.S_OK; 489 return (winmdroot.Foundation.HRESULT)ex.HResult; 497 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 502 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 510 private static winmdroot.Foundation.HRESULT get_marginHeight(IHTMLFrameBase* pThis, winmdroot.System.Variant.VARIANT* p) 514 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 520 return winmdroot.Foundation.HRESULT.S_OK; 524 return (winmdroot.Foundation.HRESULT)ex.HResult; 531 private static winmdroot.Foundation.HRESULT put_noResize(IHTMLFrameBase* pThis, winmdroot.Foundation.VARIANT_BOOL v) 535 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 541 return winmdroot.Foundation.HRESULT.S_OK; 545 return (winmdroot.Foundation.HRESULT)ex.HResult; 553 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 558 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 566 private static winmdroot.Foundation.HRESULT get_noResize(IHTMLFrameBase* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 570 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 576 return winmdroot.Foundation.HRESULT.S_OK; 580 return (winmdroot.Foundation.HRESULT)ex.HResult; 587 private static winmdroot.Foundation.HRESULT put_scrolling(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR v) 591 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 597 return winmdroot.Foundation.HRESULT.S_OK; 601 return (winmdroot.Foundation.HRESULT)ex.HResult; 609 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 614 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 622 private static winmdroot.Foundation.HRESULT get_scrolling(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR* p) 626 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 632 return winmdroot.Foundation.HRESULT.S_OK; 636 return (winmdroot.Foundation.HRESULT)ex.HResult; 640 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 646 var hr = this.QueryInterface(&guid, &pv); 663 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 669 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 671 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 673 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 675 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; 677 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_src_8; 679 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_src_9; 681 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_name_10; 683 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_name_11; 685 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_border_12; 687 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_border_13; 689 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_frameBorder_14; 691 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_frameBorder_15; 693 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_frameSpacing_16; 695 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_frameSpacing_17; 697 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginWidth_18; 699 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginWidth_19; 701 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginHeight_20; 703 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginHeight_21; 705 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_noResize_22; 707 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_noResize_23; 709 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_scrolling_24; 711 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_scrolling_25;
_generated\156\Windows.Win32.IHTMLFramesCollection2.g.cs (33)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLFramesCollection2*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLFramesCollection2*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLFramesCollection2*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 138 internal unsafe winmdroot.Foundation.HRESULT item(in winmdroot.System.Variant.VARIANT pvarIndex, out winmdroot.System.Variant.VARIANT pvarResult) 144 winmdroot.Foundation.HRESULT __result = this.item(pvarIndexLocal, pvarResultLocal); 153 private static winmdroot.Foundation.HRESULT item(IHTMLFramesCollection2* pThis, winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult) 157 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 166 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 public unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult) 172 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); 177 internal unsafe winmdroot.Foundation.HRESULT get_length(out int p) 181 winmdroot.Foundation.HRESULT __result = this.get_length(pLocal); 189 private static winmdroot.Foundation.HRESULT get_length(IHTMLFramesCollection2* pThis, int* p) 193 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 202 return (winmdroot.Foundation.HRESULT)ex.HResult; 206 public unsafe winmdroot.Foundation.HRESULT get_length(int* p) 208 return ((delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLFramesCollection2*)Unsafe.AsPointer(ref this), p); 211 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 217 var hr = this.QueryInterface(&guid, &pv); 234 internal delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 240 internal delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 242 internal delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 244 internal delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 246 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; 248 internal delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> item_8; 250 internal delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,int* ,winmdroot.Foundation.HRESULT> get_length_9; 277 unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult); 280 unsafe winmdroot.Foundation.HRESULT get_length(int* p);
_generated\157\Windows.Win32.IHTMLImageElementFactory.g.cs (21)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLImageElementFactory*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLImageElementFactory*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLImageElementFactory*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT create(IHTMLImageElementFactory* pThis, winmdroot.System.Variant.VARIANT width, winmdroot.System.Variant.VARIANT height, winmdroot.Web.MsHtml.IHTMLImgElement** __MIDL__IHTMLImageElementFactory0000) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 159 ((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(); 163 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 169 var hr = this.QueryInterface(&guid, &pv); 186 internal delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 192 internal delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 194 internal delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 196 internal delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 198 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; 200 internal delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.Web.MsHtml.IHTMLImgElement** ,winmdroot.Foundation.HRESULT> create_8; 226 unsafe winmdroot.Foundation.HRESULT create(winmdroot.System.Variant.VARIANT width, winmdroot.System.Variant.VARIANT height, winmdroot.Web.MsHtml.IHTMLImgElement** __MIDL__IHTMLImageElementFactory0000);
_generated\158\Windows.Win32.IHTMLImgElement.g.cs (303)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLImgElement*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLImgElement*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLImgElement*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT put_isMap(IHTMLImgElement* pThis, winmdroot.Foundation.VARIANT_BOOL v) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 166 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_isMap(IHTMLImgElement* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 178 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 184 return winmdroot.Foundation.HRESULT.S_OK; 188 return (winmdroot.Foundation.HRESULT)ex.HResult; 195 private static winmdroot.Foundation.HRESULT put_useMap(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 199 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 205 return winmdroot.Foundation.HRESULT.S_OK; 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 217 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 222 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT get_useMap(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 234 winmdroot.Foundation.HRESULT __hr = winmdroot.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 get_mimeType(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 255 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 261 return winmdroot.Foundation.HRESULT.S_OK; 265 return (winmdroot.Foundation.HRESULT)ex.HResult; 274 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 282 private static winmdroot.Foundation.HRESULT get_fileSize(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 286 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 292 return winmdroot.Foundation.HRESULT.S_OK; 296 return (winmdroot.Foundation.HRESULT)ex.HResult; 305 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 313 private static winmdroot.Foundation.HRESULT get_fileCreatedDate(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 317 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 323 return winmdroot.Foundation.HRESULT.S_OK; 327 return (winmdroot.Foundation.HRESULT)ex.HResult; 336 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 344 private static winmdroot.Foundation.HRESULT get_fileModifiedDate(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 348 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 354 return winmdroot.Foundation.HRESULT.S_OK; 358 return (winmdroot.Foundation.HRESULT)ex.HResult; 367 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 375 private static winmdroot.Foundation.HRESULT get_fileUpdatedDate(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 379 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 385 return winmdroot.Foundation.HRESULT.S_OK; 389 return (winmdroot.Foundation.HRESULT)ex.HResult; 398 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 406 private static winmdroot.Foundation.HRESULT get_protocol(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 410 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 416 return winmdroot.Foundation.HRESULT.S_OK; 420 return (winmdroot.Foundation.HRESULT)ex.HResult; 429 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 437 private static winmdroot.Foundation.HRESULT get_href(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 441 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 447 return winmdroot.Foundation.HRESULT.S_OK; 451 return (winmdroot.Foundation.HRESULT)ex.HResult; 460 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 468 private static winmdroot.Foundation.HRESULT get_nameProp(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 472 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 478 return winmdroot.Foundation.HRESULT.S_OK; 482 return (winmdroot.Foundation.HRESULT)ex.HResult; 491 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 499 private static winmdroot.Foundation.HRESULT put_border(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT v) 503 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 509 return winmdroot.Foundation.HRESULT.S_OK; 513 return (winmdroot.Foundation.HRESULT)ex.HResult; 521 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 526 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 534 private static winmdroot.Foundation.HRESULT get_border(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT* p) 538 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 544 return winmdroot.Foundation.HRESULT.S_OK; 548 return (winmdroot.Foundation.HRESULT)ex.HResult; 555 private static winmdroot.Foundation.HRESULT put_vspace(IHTMLImgElement* pThis, int v) 559 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 565 return winmdroot.Foundation.HRESULT.S_OK; 569 return (winmdroot.Foundation.HRESULT)ex.HResult; 577 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 582 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 590 private static winmdroot.Foundation.HRESULT get_vspace(IHTMLImgElement* pThis, int* p) 594 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 600 return winmdroot.Foundation.HRESULT.S_OK; 604 return (winmdroot.Foundation.HRESULT)ex.HResult; 611 private static winmdroot.Foundation.HRESULT put_hspace(IHTMLImgElement* pThis, int v) 615 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 621 return winmdroot.Foundation.HRESULT.S_OK; 625 return (winmdroot.Foundation.HRESULT)ex.HResult; 633 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 638 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 646 private static winmdroot.Foundation.HRESULT get_hspace(IHTMLImgElement* pThis, int* p) 650 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 656 return winmdroot.Foundation.HRESULT.S_OK; 660 return (winmdroot.Foundation.HRESULT)ex.HResult; 667 private static winmdroot.Foundation.HRESULT put_alt(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 671 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 677 return winmdroot.Foundation.HRESULT.S_OK; 681 return (winmdroot.Foundation.HRESULT)ex.HResult; 689 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 694 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 702 private static winmdroot.Foundation.HRESULT get_alt(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 706 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 712 return winmdroot.Foundation.HRESULT.S_OK; 716 return (winmdroot.Foundation.HRESULT)ex.HResult; 723 private static winmdroot.Foundation.HRESULT put_src(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 727 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 733 return winmdroot.Foundation.HRESULT.S_OK; 737 return (winmdroot.Foundation.HRESULT)ex.HResult; 745 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 750 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 758 private static winmdroot.Foundation.HRESULT get_src(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 762 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 768 return winmdroot.Foundation.HRESULT.S_OK; 772 return (winmdroot.Foundation.HRESULT)ex.HResult; 779 private static winmdroot.Foundation.HRESULT put_lowsrc(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 783 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 789 return winmdroot.Foundation.HRESULT.S_OK; 793 return (winmdroot.Foundation.HRESULT)ex.HResult; 801 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 806 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 814 private static winmdroot.Foundation.HRESULT get_lowsrc(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 818 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 824 return winmdroot.Foundation.HRESULT.S_OK; 828 return (winmdroot.Foundation.HRESULT)ex.HResult; 835 private static winmdroot.Foundation.HRESULT put_vrml(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 839 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 845 return winmdroot.Foundation.HRESULT.S_OK; 849 return (winmdroot.Foundation.HRESULT)ex.HResult; 857 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 862 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 870 private static winmdroot.Foundation.HRESULT get_vrml(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 874 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 880 return winmdroot.Foundation.HRESULT.S_OK; 884 return (winmdroot.Foundation.HRESULT)ex.HResult; 891 private static winmdroot.Foundation.HRESULT put_dynsrc(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 895 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 901 return winmdroot.Foundation.HRESULT.S_OK; 905 return (winmdroot.Foundation.HRESULT)ex.HResult; 913 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 918 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 926 private static winmdroot.Foundation.HRESULT get_dynsrc(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 930 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 936 return winmdroot.Foundation.HRESULT.S_OK; 940 return (winmdroot.Foundation.HRESULT)ex.HResult; 947 private static winmdroot.Foundation.HRESULT get_readyState(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 951 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 957 return winmdroot.Foundation.HRESULT.S_OK; 961 return (winmdroot.Foundation.HRESULT)ex.HResult; 970 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 978 private static winmdroot.Foundation.HRESULT get_complete(IHTMLImgElement* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 982 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 988 return winmdroot.Foundation.HRESULT.S_OK; 992 return (winmdroot.Foundation.HRESULT)ex.HResult; 1001 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1009 private static winmdroot.Foundation.HRESULT put_loop(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT v) 1013 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1019 return winmdroot.Foundation.HRESULT.S_OK; 1023 return (winmdroot.Foundation.HRESULT)ex.HResult; 1031 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1036 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1044 private static winmdroot.Foundation.HRESULT get_loop(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT* p) 1048 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1054 return winmdroot.Foundation.HRESULT.S_OK; 1058 return (winmdroot.Foundation.HRESULT)ex.HResult; 1065 private static winmdroot.Foundation.HRESULT put_align(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 1069 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1075 return winmdroot.Foundation.HRESULT.S_OK; 1079 return (winmdroot.Foundation.HRESULT)ex.HResult; 1087 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1092 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1100 private static winmdroot.Foundation.HRESULT get_align(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 1104 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1110 return winmdroot.Foundation.HRESULT.S_OK; 1114 return (winmdroot.Foundation.HRESULT)ex.HResult; 1121 private static winmdroot.Foundation.HRESULT put_onload(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT v) 1125 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1131 return winmdroot.Foundation.HRESULT.S_OK; 1135 return (winmdroot.Foundation.HRESULT)ex.HResult; 1143 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1148 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1156 private static winmdroot.Foundation.HRESULT get_onload(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT* p) 1160 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1166 return winmdroot.Foundation.HRESULT.S_OK; 1170 return (winmdroot.Foundation.HRESULT)ex.HResult; 1177 private static winmdroot.Foundation.HRESULT put_onerror(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT v) 1181 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1187 return winmdroot.Foundation.HRESULT.S_OK; 1191 return (winmdroot.Foundation.HRESULT)ex.HResult; 1199 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1204 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1212 private static winmdroot.Foundation.HRESULT get_onerror(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT* p) 1216 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1222 return winmdroot.Foundation.HRESULT.S_OK; 1226 return (winmdroot.Foundation.HRESULT)ex.HResult; 1233 private static winmdroot.Foundation.HRESULT put_onabort(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT v) 1237 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1243 return winmdroot.Foundation.HRESULT.S_OK; 1247 return (winmdroot.Foundation.HRESULT)ex.HResult; 1255 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1260 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1268 private static winmdroot.Foundation.HRESULT get_onabort(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT* p) 1272 winmdroot.Foundation.HRESULT __hr = winmdroot.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 put_name(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 1293 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1299 return winmdroot.Foundation.HRESULT.S_OK; 1303 return (winmdroot.Foundation.HRESULT)ex.HResult; 1311 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1316 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1324 private static winmdroot.Foundation.HRESULT get_name(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 1328 winmdroot.Foundation.HRESULT __hr = winmdroot.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 put_width(IHTMLImgElement* pThis, int v) 1349 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1355 return winmdroot.Foundation.HRESULT.S_OK; 1359 return (winmdroot.Foundation.HRESULT)ex.HResult; 1367 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1372 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1380 private static winmdroot.Foundation.HRESULT get_width(IHTMLImgElement* pThis, int* p) 1384 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1390 return winmdroot.Foundation.HRESULT.S_OK; 1394 return (winmdroot.Foundation.HRESULT)ex.HResult; 1401 private static winmdroot.Foundation.HRESULT put_height(IHTMLImgElement* pThis, int v) 1405 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1411 return winmdroot.Foundation.HRESULT.S_OK; 1415 return (winmdroot.Foundation.HRESULT)ex.HResult; 1423 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1428 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1436 private static winmdroot.Foundation.HRESULT get_height(IHTMLImgElement* pThis, int* p) 1440 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1446 return winmdroot.Foundation.HRESULT.S_OK; 1450 return (winmdroot.Foundation.HRESULT)ex.HResult; 1457 private static winmdroot.Foundation.HRESULT put_start(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 1461 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1467 return winmdroot.Foundation.HRESULT.S_OK; 1471 return (winmdroot.Foundation.HRESULT)ex.HResult; 1479 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1484 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1492 private static winmdroot.Foundation.HRESULT get_start(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 1496 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1502 return winmdroot.Foundation.HRESULT.S_OK; 1506 return (winmdroot.Foundation.HRESULT)ex.HResult; 1510 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 1516 var hr = this.QueryInterface(&guid, &pv); 1533 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 1539 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 1541 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 1543 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 1545 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; 1547 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_isMap_8; 1549 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_isMap_9; 1551 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_useMap_10; 1553 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_useMap_11; 1555 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_mimeType_12; 1557 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileSize_13; 1559 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileCreatedDate_14; 1561 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileModifiedDate_15; 1563 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileUpdatedDate_16; 1565 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_protocol_17; 1567 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_href_18; 1569 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_nameProp_19; 1571 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_border_20; 1573 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_border_21; 1575 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,winmdroot.Foundation.HRESULT> put_vspace_22; 1577 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int* ,winmdroot.Foundation.HRESULT> get_vspace_23; 1579 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,winmdroot.Foundation.HRESULT> put_hspace_24; 1581 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int* ,winmdroot.Foundation.HRESULT> get_hspace_25; 1583 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_alt_26; 1585 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_alt_27; 1587 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_src_28; 1589 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_src_29; 1591 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_lowsrc_30; 1593 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_lowsrc_31; 1595 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_vrml_32; 1597 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_vrml_33; 1599 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_dynsrc_34; 1601 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_dynsrc_35; 1603 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_readyState_36; 1605 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_complete_37; 1607 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_loop_38; 1609 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_loop_39; 1611 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_align_40; 1613 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_align_41; 1615 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onload_42; 1617 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onload_43; 1619 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onerror_44; 1621 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onerror_45; 1623 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onabort_46; 1625 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onabort_47; 1627 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_name_48; 1629 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_name_49; 1631 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,winmdroot.Foundation.HRESULT> put_width_50; 1633 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int* ,winmdroot.Foundation.HRESULT> get_width_51; 1635 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,winmdroot.Foundation.HRESULT> put_height_52; 1637 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int* ,winmdroot.Foundation.HRESULT> get_height_53; 1639 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_start_54; 1641 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_start_55;
_generated\159\Windows.Win32.IHTMLLocation.g.cs (138)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLLocation*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLLocation*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLLocation*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLLocation*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT put_href(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 167 internal unsafe winmdroot.Foundation.HRESULT get_href(out winmdroot.Foundation.BSTR p) 171 winmdroot.Foundation.HRESULT __result = this.get_href(pLocal); 179 private static winmdroot.Foundation.HRESULT get_href(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 183 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 192 return (winmdroot.Foundation.HRESULT)ex.HResult; 196 public unsafe winmdroot.Foundation.HRESULT get_href(winmdroot.Foundation.BSTR* p) 198 return ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLLocation*)Unsafe.AsPointer(ref this), p); 204 private static winmdroot.Foundation.HRESULT put_protocol(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 208 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 214 return winmdroot.Foundation.HRESULT.S_OK; 218 return (winmdroot.Foundation.HRESULT)ex.HResult; 226 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 231 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 239 private static winmdroot.Foundation.HRESULT get_protocol(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 243 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 249 return winmdroot.Foundation.HRESULT.S_OK; 253 return (winmdroot.Foundation.HRESULT)ex.HResult; 260 private static winmdroot.Foundation.HRESULT put_host(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 264 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 270 return winmdroot.Foundation.HRESULT.S_OK; 274 return (winmdroot.Foundation.HRESULT)ex.HResult; 282 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 287 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 295 private static winmdroot.Foundation.HRESULT get_host(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 299 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 305 return winmdroot.Foundation.HRESULT.S_OK; 309 return (winmdroot.Foundation.HRESULT)ex.HResult; 316 private static winmdroot.Foundation.HRESULT put_hostname(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 320 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 326 return winmdroot.Foundation.HRESULT.S_OK; 330 return (winmdroot.Foundation.HRESULT)ex.HResult; 338 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 343 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 351 private static winmdroot.Foundation.HRESULT get_hostname(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 355 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 361 return winmdroot.Foundation.HRESULT.S_OK; 365 return (winmdroot.Foundation.HRESULT)ex.HResult; 372 private static winmdroot.Foundation.HRESULT put_port(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 376 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 382 return winmdroot.Foundation.HRESULT.S_OK; 386 return (winmdroot.Foundation.HRESULT)ex.HResult; 394 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 399 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 407 private static winmdroot.Foundation.HRESULT get_port(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 411 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 417 return winmdroot.Foundation.HRESULT.S_OK; 421 return (winmdroot.Foundation.HRESULT)ex.HResult; 428 private static winmdroot.Foundation.HRESULT put_pathname(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 432 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 438 return winmdroot.Foundation.HRESULT.S_OK; 442 return (winmdroot.Foundation.HRESULT)ex.HResult; 450 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 455 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 463 private static winmdroot.Foundation.HRESULT get_pathname(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 467 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 473 return winmdroot.Foundation.HRESULT.S_OK; 477 return (winmdroot.Foundation.HRESULT)ex.HResult; 484 private static winmdroot.Foundation.HRESULT put_search(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 488 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 494 return winmdroot.Foundation.HRESULT.S_OK; 498 return (winmdroot.Foundation.HRESULT)ex.HResult; 506 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 511 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 519 private static winmdroot.Foundation.HRESULT get_search(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 523 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 529 return winmdroot.Foundation.HRESULT.S_OK; 533 return (winmdroot.Foundation.HRESULT)ex.HResult; 540 private static winmdroot.Foundation.HRESULT put_hash(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 544 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 550 return winmdroot.Foundation.HRESULT.S_OK; 554 return (winmdroot.Foundation.HRESULT)ex.HResult; 562 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 567 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 575 private static winmdroot.Foundation.HRESULT get_hash(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 579 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 585 return winmdroot.Foundation.HRESULT.S_OK; 589 return (winmdroot.Foundation.HRESULT)ex.HResult; 596 private static winmdroot.Foundation.HRESULT reload(IHTMLLocation* pThis, winmdroot.Foundation.VARIANT_BOOL flag) 600 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 609 return (winmdroot.Foundation.HRESULT)ex.HResult; 615 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLLocation*)Unsafe.AsPointer(ref this), flag).ThrowOnFailure(); 621 private static winmdroot.Foundation.HRESULT replace(IHTMLLocation* pThis, winmdroot.Foundation.BSTR bstr) 625 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 634 return (winmdroot.Foundation.HRESULT)ex.HResult; 640 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLLocation*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 646 private static winmdroot.Foundation.HRESULT assign(IHTMLLocation* pThis, winmdroot.Foundation.BSTR bstr) 650 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 659 return (winmdroot.Foundation.HRESULT)ex.HResult; 665 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLLocation*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 671 private static winmdroot.Foundation.HRESULT toString(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* @string) 675 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 684 return (winmdroot.Foundation.HRESULT)ex.HResult; 691 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 695 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 701 var hr = this.QueryInterface(&guid, &pv); 718 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 724 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 726 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 728 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 730 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; 732 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_href_8; 734 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_href_9; 736 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_protocol_10; 738 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_protocol_11; 740 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_host_12; 742 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_host_13; 744 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_hostname_14; 746 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_hostname_15; 748 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_port_16; 750 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_port_17; 752 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_pathname_18; 754 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pathname_19; 756 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_search_20; 758 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_search_21; 760 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_hash_22; 762 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_hash_23; 764 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> reload_24; 766 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> replace_25; 768 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> assign_26; 770 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_27; 820 unsafe winmdroot.Foundation.HRESULT get_href(winmdroot.Foundation.BSTR* p); 865winmdroot.Foundation.HRESULT reload(winmdroot.Foundation.VARIANT_BOOL flag); 868winmdroot.Foundation.HRESULT replace(winmdroot.Foundation.BSTR bstr); 871winmdroot.Foundation.HRESULT assign(winmdroot.Foundation.BSTR bstr); 874 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* @string);
_generated\160\Windows.Win32.IHTMLMimeTypesCollection.g.cs (21)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLMimeTypesCollection*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLMimeTypesCollection*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLMimeTypesCollection*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT get_length(IHTMLMimeTypesCollection* pThis, int* p) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 ((delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLMimeTypesCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 167 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 173 var hr = this.QueryInterface(&guid, &pv); 190 internal delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 196 internal delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 198 internal delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 200 internal delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 202 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; 204 internal delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,int* ,winmdroot.Foundation.HRESULT> get_length_8;
_generated\161\Windows.Win32.IHTMLOpsProfile.g.cs (69)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT addRequest(IHTMLOpsProfile* pThis, winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved, winmdroot.Foundation.VARIANT_BOOL* success) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 159 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), name, reserved, &__retVal).ThrowOnFailure(); 166 private static winmdroot.Foundation.HRESULT clearRequest(IHTMLOpsProfile* pThis) 170 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 179 return (winmdroot.Foundation.HRESULT)ex.HResult; 185 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 191 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) 195 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 204 return (winmdroot.Foundation.HRESULT)ex.HResult; 210 ((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(); 216 private static winmdroot.Foundation.HRESULT getAttribute(IHTMLOpsProfile* pThis, winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR* value) 220 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 229 return (winmdroot.Foundation.HRESULT)ex.HResult; 236 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), name, &__retVal).ThrowOnFailure(); 243 private static winmdroot.Foundation.HRESULT setAttribute(IHTMLOpsProfile* pThis, winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR value, winmdroot.System.Variant.VARIANT prefs, winmdroot.Foundation.VARIANT_BOOL* success) 247 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 256 return (winmdroot.Foundation.HRESULT)ex.HResult; 263 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), name, value, prefs, &__retVal).ThrowOnFailure(); 270 private static winmdroot.Foundation.HRESULT commitChanges(IHTMLOpsProfile* pThis, winmdroot.Foundation.VARIANT_BOOL* success) 274 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 283 return (winmdroot.Foundation.HRESULT)ex.HResult; 290 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 297 private static winmdroot.Foundation.HRESULT addReadRequest(IHTMLOpsProfile* pThis, winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved, winmdroot.Foundation.VARIANT_BOOL* success) 301 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 310 return (winmdroot.Foundation.HRESULT)ex.HResult; 317 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), name, reserved, &__retVal).ThrowOnFailure(); 324 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) 328 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 337 return (winmdroot.Foundation.HRESULT)ex.HResult; 343 ((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(); 349 private static winmdroot.Foundation.HRESULT doWriteRequest(IHTMLOpsProfile* pThis, winmdroot.Foundation.VARIANT_BOOL* success) 353 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 362 return (winmdroot.Foundation.HRESULT)ex.HResult; 369 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 373 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 379 var hr = this.QueryInterface(&guid, &pv); 396 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 402 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 404 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 406 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 408 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; 410 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> addRequest_8; 412 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.HRESULT> clearRequest_9; 414 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; 416 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> getAttribute_11; 418 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> setAttribute_12; 420 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> commitChanges_13; 422 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> addReadRequest_14; 424 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; 426 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> doWriteRequest_16; 460 unsafe winmdroot.Foundation.HRESULT addRequest(winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved, winmdroot.Foundation.VARIANT_BOOL* success); 463winmdroot.Foundation.HRESULT clearRequest(); 466winmdroot.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); 469 unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR* value); 472 unsafe winmdroot.Foundation.HRESULT setAttribute(winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR value, winmdroot.System.Variant.VARIANT prefs, winmdroot.Foundation.VARIANT_BOOL* success); 475 unsafe winmdroot.Foundation.HRESULT commitChanges(winmdroot.Foundation.VARIANT_BOOL* success); 478 unsafe winmdroot.Foundation.HRESULT addReadRequest(winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved, winmdroot.Foundation.VARIANT_BOOL* success); 481winmdroot.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); 484 unsafe winmdroot.Foundation.HRESULT doWriteRequest(winmdroot.Foundation.VARIANT_BOOL* success);
_generated\162\Windows.Win32.IHTMLOptionElement.g.cs (81)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT put_selected(IHTMLOptionElement* pThis, winmdroot.Foundation.VARIANT_BOOL v) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 166 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_selected(IHTMLOptionElement* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 178 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 184 return winmdroot.Foundation.HRESULT.S_OK; 188 return (winmdroot.Foundation.HRESULT)ex.HResult; 195 private static winmdroot.Foundation.HRESULT put_value(IHTMLOptionElement* pThis, winmdroot.Foundation.BSTR v) 199 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 205 return winmdroot.Foundation.HRESULT.S_OK; 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 217 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 222 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT get_value(IHTMLOptionElement* pThis, winmdroot.Foundation.BSTR* p) 234 winmdroot.Foundation.HRESULT __hr = winmdroot.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 put_defaultSelected(IHTMLOptionElement* pThis, winmdroot.Foundation.VARIANT_BOOL v) 255 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 261 return winmdroot.Foundation.HRESULT.S_OK; 265 return (winmdroot.Foundation.HRESULT)ex.HResult; 273 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 278 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 286 private static winmdroot.Foundation.HRESULT get_defaultSelected(IHTMLOptionElement* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 290 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 296 return winmdroot.Foundation.HRESULT.S_OK; 300 return (winmdroot.Foundation.HRESULT)ex.HResult; 307 private static winmdroot.Foundation.HRESULT put_index(IHTMLOptionElement* pThis, int v) 311 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 317 return winmdroot.Foundation.HRESULT.S_OK; 321 return (winmdroot.Foundation.HRESULT)ex.HResult; 329 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 334 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 342 private static winmdroot.Foundation.HRESULT get_index(IHTMLOptionElement* pThis, int* p) 346 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 352 return winmdroot.Foundation.HRESULT.S_OK; 356 return (winmdroot.Foundation.HRESULT)ex.HResult; 363 private static winmdroot.Foundation.HRESULT put_text(IHTMLOptionElement* pThis, winmdroot.Foundation.BSTR v) 367 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 373 return winmdroot.Foundation.HRESULT.S_OK; 377 return (winmdroot.Foundation.HRESULT)ex.HResult; 385 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 390 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 398 private static winmdroot.Foundation.HRESULT get_text(IHTMLOptionElement* pThis, winmdroot.Foundation.BSTR* p) 402 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 408 return winmdroot.Foundation.HRESULT.S_OK; 412 return (winmdroot.Foundation.HRESULT)ex.HResult; 419 private static winmdroot.Foundation.HRESULT get_form(IHTMLOptionElement* pThis, winmdroot.Web.MsHtml.IHTMLFormElement** p) 423 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 429 return winmdroot.Foundation.HRESULT.S_OK; 433 return (winmdroot.Foundation.HRESULT)ex.HResult; 442 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Web.MsHtml.IHTMLFormElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 447 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 453 var hr = this.QueryInterface(&guid, &pv); 470 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 476 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 478 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 480 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 482 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; 484 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_selected_8; 486 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_selected_9; 488 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_value_10; 490 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_value_11; 492 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_defaultSelected_12; 494 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_defaultSelected_13; 496 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,int ,winmdroot.Foundation.HRESULT> put_index_14; 498 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,int* ,winmdroot.Foundation.HRESULT> get_index_15; 500 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_text_16; 502 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_text_17; 504 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Web.MsHtml.IHTMLFormElement** ,winmdroot.Foundation.HRESULT> get_form_18;
_generated\163\Windows.Win32.IHTMLOptionElementFactory.g.cs (21)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLOptionElementFactory*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLOptionElementFactory*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLOptionElementFactory*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 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) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 159 ((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(); 163 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 169 var hr = this.QueryInterface(&guid, &pv); 186 internal delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 192 internal delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 194 internal delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 196 internal delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 198 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; 200 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; 226 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);
_generated\164\Windows.Win32.IHTMLPluginsCollection.g.cs (27)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLPluginsCollection*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLPluginsCollection*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLPluginsCollection*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT get_length(IHTMLPluginsCollection* pThis, int* p) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 ((delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLPluginsCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT refresh(IHTMLPluginsCollection* pThis, winmdroot.Foundation.VARIANT_BOOL reload) 174 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 183 return (winmdroot.Foundation.HRESULT)ex.HResult; 189 ((delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLPluginsCollection*)Unsafe.AsPointer(ref this), reload).ThrowOnFailure(); 192 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 198 var hr = this.QueryInterface(&guid, &pv); 215 internal delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 221 internal delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 223 internal delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 225 internal delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 227 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; 229 internal delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,int* ,winmdroot.Foundation.HRESULT> get_length_8; 231 internal delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> refresh_9; 263winmdroot.Foundation.HRESULT refresh(winmdroot.Foundation.VARIANT_BOOL reload);
_generated\165\Windows.Win32.IHTMLRect.g.cs (63)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLRect*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLRect*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLRect*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLRect*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLRect*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLRect*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT put_left(IHTMLRect* pThis, int v) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLRect*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 166 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLRect*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_left(IHTMLRect* pThis, int* p) 178 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 184 return winmdroot.Foundation.HRESULT.S_OK; 188 return (winmdroot.Foundation.HRESULT)ex.HResult; 195 private static winmdroot.Foundation.HRESULT put_top(IHTMLRect* pThis, int v) 199 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 205 return winmdroot.Foundation.HRESULT.S_OK; 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 217 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLRect*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 222 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLRect*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT get_top(IHTMLRect* pThis, int* p) 234 winmdroot.Foundation.HRESULT __hr = winmdroot.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 put_right(IHTMLRect* pThis, int v) 255 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 261 return winmdroot.Foundation.HRESULT.S_OK; 265 return (winmdroot.Foundation.HRESULT)ex.HResult; 273 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLRect*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 278 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLRect*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 286 private static winmdroot.Foundation.HRESULT get_right(IHTMLRect* pThis, int* p) 290 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 296 return winmdroot.Foundation.HRESULT.S_OK; 300 return (winmdroot.Foundation.HRESULT)ex.HResult; 307 private static winmdroot.Foundation.HRESULT put_bottom(IHTMLRect* pThis, int v) 311 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 317 return winmdroot.Foundation.HRESULT.S_OK; 321 return (winmdroot.Foundation.HRESULT)ex.HResult; 329 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLRect*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 334 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLRect*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 342 private static winmdroot.Foundation.HRESULT get_bottom(IHTMLRect* pThis, int* p) 346 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 352 return winmdroot.Foundation.HRESULT.S_OK; 356 return (winmdroot.Foundation.HRESULT)ex.HResult; 360 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 366 var hr = this.QueryInterface(&guid, &pv); 383 internal delegate *unmanaged [Stdcall]<IHTMLRect*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 389 internal delegate *unmanaged [Stdcall]<IHTMLRect*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 391 internal delegate *unmanaged [Stdcall]<IHTMLRect*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 393 internal delegate *unmanaged [Stdcall]<IHTMLRect*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 395 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; 397 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int ,winmdroot.Foundation.HRESULT> put_left_8; 399 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int* ,winmdroot.Foundation.HRESULT> get_left_9; 401 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int ,winmdroot.Foundation.HRESULT> put_top_10; 403 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int* ,winmdroot.Foundation.HRESULT> get_top_11; 405 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int ,winmdroot.Foundation.HRESULT> put_right_12; 407 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int* ,winmdroot.Foundation.HRESULT> get_right_13; 409 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int ,winmdroot.Foundation.HRESULT> put_bottom_14; 411 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int* ,winmdroot.Foundation.HRESULT> get_bottom_15;
_generated\166\Windows.Win32.IHTMLRectCollection.g.cs (33)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLRectCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLRectCollection*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLRectCollection*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLRectCollection*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLRectCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLRectCollection*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT get_length(IHTMLRectCollection* pThis, int* p) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 ((delegate *unmanaged [Stdcall]<IHTMLRectCollection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLRectCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT get__newEnum(IHTMLRectCollection* pThis, winmdroot.System.Com.IUnknown** p) 174 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 ((delegate *unmanaged [Stdcall]<IHTMLRectCollection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLRectCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 212 private static winmdroot.Foundation.HRESULT item(IHTMLRectCollection* pThis, winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult) 216 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 225 return (winmdroot.Foundation.HRESULT)ex.HResult; 232 ((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(); 236 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 242 var hr = this.QueryInterface(&guid, &pv); 259 internal delegate *unmanaged [Stdcall]<IHTMLRectCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 265 internal delegate *unmanaged [Stdcall]<IHTMLRectCollection*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 267 internal delegate *unmanaged [Stdcall]<IHTMLRectCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 269 internal delegate *unmanaged [Stdcall]<IHTMLRectCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 271 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; 273 internal delegate *unmanaged [Stdcall]<IHTMLRectCollection*,int* ,winmdroot.Foundation.HRESULT> get_length_8; 275 internal delegate *unmanaged [Stdcall]<IHTMLRectCollection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> get__newEnum_9; 277 internal delegate *unmanaged [Stdcall]<IHTMLRectCollection*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> item_10; 315 unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult);
_generated\167\Windows.Win32.IHTMLRenderStyle.g.cs (123)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT put_textLineThroughStyle(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR v) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 166 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_textLineThroughStyle(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR* p) 178 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 184 return winmdroot.Foundation.HRESULT.S_OK; 188 return (winmdroot.Foundation.HRESULT)ex.HResult; 195 private static winmdroot.Foundation.HRESULT put_textUnderlineStyle(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR v) 199 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 205 return winmdroot.Foundation.HRESULT.S_OK; 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 217 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 222 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT get_textUnderlineStyle(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR* p) 234 winmdroot.Foundation.HRESULT __hr = winmdroot.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 put_textEffect(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR v) 255 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 261 return winmdroot.Foundation.HRESULT.S_OK; 265 return (winmdroot.Foundation.HRESULT)ex.HResult; 273 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 278 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 286 private static winmdroot.Foundation.HRESULT get_textEffect(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR* p) 290 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 296 return winmdroot.Foundation.HRESULT.S_OK; 300 return (winmdroot.Foundation.HRESULT)ex.HResult; 307 private static winmdroot.Foundation.HRESULT put_textColor(IHTMLRenderStyle* pThis, winmdroot.System.Variant.VARIANT v) 311 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 317 return winmdroot.Foundation.HRESULT.S_OK; 321 return (winmdroot.Foundation.HRESULT)ex.HResult; 329 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 334 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 342 private static winmdroot.Foundation.HRESULT get_textColor(IHTMLRenderStyle* pThis, winmdroot.System.Variant.VARIANT* p) 346 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 352 return winmdroot.Foundation.HRESULT.S_OK; 356 return (winmdroot.Foundation.HRESULT)ex.HResult; 363 private static winmdroot.Foundation.HRESULT put_textBackgroundColor(IHTMLRenderStyle* pThis, winmdroot.System.Variant.VARIANT v) 367 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 373 return winmdroot.Foundation.HRESULT.S_OK; 377 return (winmdroot.Foundation.HRESULT)ex.HResult; 385 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 390 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 398 private static winmdroot.Foundation.HRESULT get_textBackgroundColor(IHTMLRenderStyle* pThis, winmdroot.System.Variant.VARIANT* p) 402 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 408 return winmdroot.Foundation.HRESULT.S_OK; 412 return (winmdroot.Foundation.HRESULT)ex.HResult; 419 private static winmdroot.Foundation.HRESULT put_textDecorationColor(IHTMLRenderStyle* pThis, winmdroot.System.Variant.VARIANT v) 423 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 429 return winmdroot.Foundation.HRESULT.S_OK; 433 return (winmdroot.Foundation.HRESULT)ex.HResult; 441 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 446 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 454 private static winmdroot.Foundation.HRESULT get_textDecorationColor(IHTMLRenderStyle* pThis, winmdroot.System.Variant.VARIANT* p) 458 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 464 return winmdroot.Foundation.HRESULT.S_OK; 468 return (winmdroot.Foundation.HRESULT)ex.HResult; 475 private static winmdroot.Foundation.HRESULT put_renderingPriority(IHTMLRenderStyle* pThis, int v) 479 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 485 return winmdroot.Foundation.HRESULT.S_OK; 489 return (winmdroot.Foundation.HRESULT)ex.HResult; 497 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 502 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 510 private static winmdroot.Foundation.HRESULT get_renderingPriority(IHTMLRenderStyle* pThis, int* p) 514 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 520 return winmdroot.Foundation.HRESULT.S_OK; 524 return (winmdroot.Foundation.HRESULT)ex.HResult; 531 private static winmdroot.Foundation.HRESULT put_defaultTextSelection(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR v) 535 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 541 return winmdroot.Foundation.HRESULT.S_OK; 545 return (winmdroot.Foundation.HRESULT)ex.HResult; 553 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 558 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 566 private static winmdroot.Foundation.HRESULT get_defaultTextSelection(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR* p) 570 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 576 return winmdroot.Foundation.HRESULT.S_OK; 580 return (winmdroot.Foundation.HRESULT)ex.HResult; 587 private static winmdroot.Foundation.HRESULT put_textDecoration(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR v) 591 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 597 return winmdroot.Foundation.HRESULT.S_OK; 601 return (winmdroot.Foundation.HRESULT)ex.HResult; 609 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 614 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 622 private static winmdroot.Foundation.HRESULT get_textDecoration(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR* p) 626 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 632 return winmdroot.Foundation.HRESULT.S_OK; 636 return (winmdroot.Foundation.HRESULT)ex.HResult; 640 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 646 var hr = this.QueryInterface(&guid, &pv); 663 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 669 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 671 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 673 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 675 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; 677 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textLineThroughStyle_8; 679 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textLineThroughStyle_9; 681 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textUnderlineStyle_10; 683 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textUnderlineStyle_11; 685 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textEffect_12; 687 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textEffect_13; 689 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_textColor_14; 691 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_textColor_15; 693 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_textBackgroundColor_16; 695 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_textBackgroundColor_17; 697 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_textDecorationColor_18; 699 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_textDecorationColor_19; 701 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,int ,winmdroot.Foundation.HRESULT> put_renderingPriority_20; 703 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,int* ,winmdroot.Foundation.HRESULT> get_renderingPriority_21; 705 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_defaultTextSelection_22; 707 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_defaultTextSelection_23; 709 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textDecoration_24; 711 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textDecoration_25;
_generated\168\Windows.Win32.IHTMLRuleStyle.g.cs (987)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT put_fontFamily(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 166 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_fontFamily(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 178 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 184 return winmdroot.Foundation.HRESULT.S_OK; 188 return (winmdroot.Foundation.HRESULT)ex.HResult; 195 private static winmdroot.Foundation.HRESULT put_fontStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 199 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 205 return winmdroot.Foundation.HRESULT.S_OK; 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 217 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 222 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT get_fontStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 234 winmdroot.Foundation.HRESULT __hr = winmdroot.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 put_fontVariant(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 255 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 261 return winmdroot.Foundation.HRESULT.S_OK; 265 return (winmdroot.Foundation.HRESULT)ex.HResult; 273 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 278 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 286 private static winmdroot.Foundation.HRESULT get_fontVariant(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 290 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 296 return winmdroot.Foundation.HRESULT.S_OK; 300 return (winmdroot.Foundation.HRESULT)ex.HResult; 307 private static winmdroot.Foundation.HRESULT put_fontWeight(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 311 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 317 return winmdroot.Foundation.HRESULT.S_OK; 321 return (winmdroot.Foundation.HRESULT)ex.HResult; 329 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 334 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 342 private static winmdroot.Foundation.HRESULT get_fontWeight(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 346 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 352 return winmdroot.Foundation.HRESULT.S_OK; 356 return (winmdroot.Foundation.HRESULT)ex.HResult; 363 private static winmdroot.Foundation.HRESULT put_fontSize(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 367 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 373 return winmdroot.Foundation.HRESULT.S_OK; 377 return (winmdroot.Foundation.HRESULT)ex.HResult; 385 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 390 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 398 private static winmdroot.Foundation.HRESULT get_fontSize(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 402 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 408 return winmdroot.Foundation.HRESULT.S_OK; 412 return (winmdroot.Foundation.HRESULT)ex.HResult; 419 private static winmdroot.Foundation.HRESULT put_font(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 423 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 429 return winmdroot.Foundation.HRESULT.S_OK; 433 return (winmdroot.Foundation.HRESULT)ex.HResult; 441 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 446 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 454 private static winmdroot.Foundation.HRESULT get_font(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 458 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 464 return winmdroot.Foundation.HRESULT.S_OK; 468 return (winmdroot.Foundation.HRESULT)ex.HResult; 475 private static winmdroot.Foundation.HRESULT put_color(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 479 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 485 return winmdroot.Foundation.HRESULT.S_OK; 489 return (winmdroot.Foundation.HRESULT)ex.HResult; 497 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 502 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 510 private static winmdroot.Foundation.HRESULT get_color(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 514 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 520 return winmdroot.Foundation.HRESULT.S_OK; 524 return (winmdroot.Foundation.HRESULT)ex.HResult; 531 private static winmdroot.Foundation.HRESULT put_background(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 535 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 541 return winmdroot.Foundation.HRESULT.S_OK; 545 return (winmdroot.Foundation.HRESULT)ex.HResult; 553 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 558 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 566 private static winmdroot.Foundation.HRESULT get_background(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 570 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 576 return winmdroot.Foundation.HRESULT.S_OK; 580 return (winmdroot.Foundation.HRESULT)ex.HResult; 587 private static winmdroot.Foundation.HRESULT put_backgroundColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 591 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 597 return winmdroot.Foundation.HRESULT.S_OK; 601 return (winmdroot.Foundation.HRESULT)ex.HResult; 609 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 614 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 622 private static winmdroot.Foundation.HRESULT get_backgroundColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 626 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 632 return winmdroot.Foundation.HRESULT.S_OK; 636 return (winmdroot.Foundation.HRESULT)ex.HResult; 643 private static winmdroot.Foundation.HRESULT put_backgroundImage(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 647 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 653 return winmdroot.Foundation.HRESULT.S_OK; 657 return (winmdroot.Foundation.HRESULT)ex.HResult; 665 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 670 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 678 private static winmdroot.Foundation.HRESULT get_backgroundImage(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 682 winmdroot.Foundation.HRESULT __hr = winmdroot.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 put_backgroundRepeat(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 703 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 709 return winmdroot.Foundation.HRESULT.S_OK; 713 return (winmdroot.Foundation.HRESULT)ex.HResult; 721 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 726 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 734 private static winmdroot.Foundation.HRESULT get_backgroundRepeat(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 738 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 744 return winmdroot.Foundation.HRESULT.S_OK; 748 return (winmdroot.Foundation.HRESULT)ex.HResult; 755 private static winmdroot.Foundation.HRESULT put_backgroundAttachment(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 759 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 765 return winmdroot.Foundation.HRESULT.S_OK; 769 return (winmdroot.Foundation.HRESULT)ex.HResult; 777 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 782 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 790 private static winmdroot.Foundation.HRESULT get_backgroundAttachment(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 794 winmdroot.Foundation.HRESULT __hr = winmdroot.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_backgroundPosition(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 815 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 821 return winmdroot.Foundation.HRESULT.S_OK; 825 return (winmdroot.Foundation.HRESULT)ex.HResult; 833 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 838 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 846 private static winmdroot.Foundation.HRESULT get_backgroundPosition(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 850 winmdroot.Foundation.HRESULT __hr = winmdroot.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 put_backgroundPositionX(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 871 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 877 return winmdroot.Foundation.HRESULT.S_OK; 881 return (winmdroot.Foundation.HRESULT)ex.HResult; 889 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 894 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 902 private static winmdroot.Foundation.HRESULT get_backgroundPositionX(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 906 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 912 return winmdroot.Foundation.HRESULT.S_OK; 916 return (winmdroot.Foundation.HRESULT)ex.HResult; 923 private static winmdroot.Foundation.HRESULT put_backgroundPositionY(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 927 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 933 return winmdroot.Foundation.HRESULT.S_OK; 937 return (winmdroot.Foundation.HRESULT)ex.HResult; 945 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 950 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 958 private static winmdroot.Foundation.HRESULT get_backgroundPositionY(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 962 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 968 return winmdroot.Foundation.HRESULT.S_OK; 972 return (winmdroot.Foundation.HRESULT)ex.HResult; 979 private static winmdroot.Foundation.HRESULT put_wordSpacing(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 983 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 989 return winmdroot.Foundation.HRESULT.S_OK; 993 return (winmdroot.Foundation.HRESULT)ex.HResult; 1001 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1006 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1014 private static winmdroot.Foundation.HRESULT get_wordSpacing(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1018 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1024 return winmdroot.Foundation.HRESULT.S_OK; 1028 return (winmdroot.Foundation.HRESULT)ex.HResult; 1035 private static winmdroot.Foundation.HRESULT put_letterSpacing(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1039 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1045 return winmdroot.Foundation.HRESULT.S_OK; 1049 return (winmdroot.Foundation.HRESULT)ex.HResult; 1057 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1062 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1070 private static winmdroot.Foundation.HRESULT get_letterSpacing(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1074 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1080 return winmdroot.Foundation.HRESULT.S_OK; 1084 return (winmdroot.Foundation.HRESULT)ex.HResult; 1091 private static winmdroot.Foundation.HRESULT put_textDecoration(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 1095 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1101 return winmdroot.Foundation.HRESULT.S_OK; 1105 return (winmdroot.Foundation.HRESULT)ex.HResult; 1113 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1118 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1126 private static winmdroot.Foundation.HRESULT get_textDecoration(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 1130 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1136 return winmdroot.Foundation.HRESULT.S_OK; 1140 return (winmdroot.Foundation.HRESULT)ex.HResult; 1147 private static winmdroot.Foundation.HRESULT put_textDecorationNone(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1151 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1157 return winmdroot.Foundation.HRESULT.S_OK; 1161 return (winmdroot.Foundation.HRESULT)ex.HResult; 1169 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1174 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1182 private static winmdroot.Foundation.HRESULT get_textDecorationNone(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1186 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1192 return winmdroot.Foundation.HRESULT.S_OK; 1196 return (winmdroot.Foundation.HRESULT)ex.HResult; 1203 private static winmdroot.Foundation.HRESULT put_textDecorationUnderline(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1207 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1213 return winmdroot.Foundation.HRESULT.S_OK; 1217 return (winmdroot.Foundation.HRESULT)ex.HResult; 1225 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1230 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1238 private static winmdroot.Foundation.HRESULT get_textDecorationUnderline(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1242 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1248 return winmdroot.Foundation.HRESULT.S_OK; 1252 return (winmdroot.Foundation.HRESULT)ex.HResult; 1259 private static winmdroot.Foundation.HRESULT put_textDecorationOverline(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1263 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1269 return winmdroot.Foundation.HRESULT.S_OK; 1273 return (winmdroot.Foundation.HRESULT)ex.HResult; 1281 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1286 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1294 private static winmdroot.Foundation.HRESULT get_textDecorationOverline(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1298 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1304 return winmdroot.Foundation.HRESULT.S_OK; 1308 return (winmdroot.Foundation.HRESULT)ex.HResult; 1315 private static winmdroot.Foundation.HRESULT put_textDecorationLineThrough(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1319 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1325 return winmdroot.Foundation.HRESULT.S_OK; 1329 return (winmdroot.Foundation.HRESULT)ex.HResult; 1337 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1342 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1350 private static winmdroot.Foundation.HRESULT get_textDecorationLineThrough(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1354 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1360 return winmdroot.Foundation.HRESULT.S_OK; 1364 return (winmdroot.Foundation.HRESULT)ex.HResult; 1371 private static winmdroot.Foundation.HRESULT put_textDecorationBlink(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1375 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1381 return winmdroot.Foundation.HRESULT.S_OK; 1385 return (winmdroot.Foundation.HRESULT)ex.HResult; 1393 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1398 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1406 private static winmdroot.Foundation.HRESULT get_textDecorationBlink(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1410 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1416 return winmdroot.Foundation.HRESULT.S_OK; 1420 return (winmdroot.Foundation.HRESULT)ex.HResult; 1427 private static winmdroot.Foundation.HRESULT put_verticalAlign(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1431 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1437 return winmdroot.Foundation.HRESULT.S_OK; 1441 return (winmdroot.Foundation.HRESULT)ex.HResult; 1449 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1454 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1462 private static winmdroot.Foundation.HRESULT get_verticalAlign(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1466 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1472 return winmdroot.Foundation.HRESULT.S_OK; 1476 return (winmdroot.Foundation.HRESULT)ex.HResult; 1483 private static winmdroot.Foundation.HRESULT put_textTransform(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 1487 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1493 return winmdroot.Foundation.HRESULT.S_OK; 1497 return (winmdroot.Foundation.HRESULT)ex.HResult; 1505 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1510 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1518 private static winmdroot.Foundation.HRESULT get_textTransform(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 1522 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1528 return winmdroot.Foundation.HRESULT.S_OK; 1532 return (winmdroot.Foundation.HRESULT)ex.HResult; 1539 private static winmdroot.Foundation.HRESULT put_textAlign(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 1543 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1549 return winmdroot.Foundation.HRESULT.S_OK; 1553 return (winmdroot.Foundation.HRESULT)ex.HResult; 1561 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1566 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1574 private static winmdroot.Foundation.HRESULT get_textAlign(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 1578 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1584 return winmdroot.Foundation.HRESULT.S_OK; 1588 return (winmdroot.Foundation.HRESULT)ex.HResult; 1595 private static winmdroot.Foundation.HRESULT put_textIndent(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1599 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1605 return winmdroot.Foundation.HRESULT.S_OK; 1609 return (winmdroot.Foundation.HRESULT)ex.HResult; 1617 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1622 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1630 private static winmdroot.Foundation.HRESULT get_textIndent(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1634 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1640 return winmdroot.Foundation.HRESULT.S_OK; 1644 return (winmdroot.Foundation.HRESULT)ex.HResult; 1651 private static winmdroot.Foundation.HRESULT put_lineHeight(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1655 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1661 return winmdroot.Foundation.HRESULT.S_OK; 1665 return (winmdroot.Foundation.HRESULT)ex.HResult; 1673 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1678 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1686 private static winmdroot.Foundation.HRESULT get_lineHeight(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1690 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1696 return winmdroot.Foundation.HRESULT.S_OK; 1700 return (winmdroot.Foundation.HRESULT)ex.HResult; 1707 private static winmdroot.Foundation.HRESULT put_marginTop(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1711 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1717 return winmdroot.Foundation.HRESULT.S_OK; 1721 return (winmdroot.Foundation.HRESULT)ex.HResult; 1729 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1734 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1742 private static winmdroot.Foundation.HRESULT get_marginTop(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1746 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1752 return winmdroot.Foundation.HRESULT.S_OK; 1756 return (winmdroot.Foundation.HRESULT)ex.HResult; 1763 private static winmdroot.Foundation.HRESULT put_marginRight(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1767 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1773 return winmdroot.Foundation.HRESULT.S_OK; 1777 return (winmdroot.Foundation.HRESULT)ex.HResult; 1785 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1790 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1798 private static winmdroot.Foundation.HRESULT get_marginRight(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1802 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1808 return winmdroot.Foundation.HRESULT.S_OK; 1812 return (winmdroot.Foundation.HRESULT)ex.HResult; 1819 private static winmdroot.Foundation.HRESULT put_marginBottom(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1823 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1829 return winmdroot.Foundation.HRESULT.S_OK; 1833 return (winmdroot.Foundation.HRESULT)ex.HResult; 1841 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1846 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1854 private static winmdroot.Foundation.HRESULT get_marginBottom(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1858 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1864 return winmdroot.Foundation.HRESULT.S_OK; 1868 return (winmdroot.Foundation.HRESULT)ex.HResult; 1875 private static winmdroot.Foundation.HRESULT put_marginLeft(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1879 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1885 return winmdroot.Foundation.HRESULT.S_OK; 1889 return (winmdroot.Foundation.HRESULT)ex.HResult; 1897 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1902 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1910 private static winmdroot.Foundation.HRESULT get_marginLeft(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1914 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1920 return winmdroot.Foundation.HRESULT.S_OK; 1924 return (winmdroot.Foundation.HRESULT)ex.HResult; 1931 private static winmdroot.Foundation.HRESULT put_margin(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 1935 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1941 return winmdroot.Foundation.HRESULT.S_OK; 1945 return (winmdroot.Foundation.HRESULT)ex.HResult; 1953 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1958 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1966 private static winmdroot.Foundation.HRESULT get_margin(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 1970 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1976 return winmdroot.Foundation.HRESULT.S_OK; 1980 return (winmdroot.Foundation.HRESULT)ex.HResult; 1987 private static winmdroot.Foundation.HRESULT put_paddingTop(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1991 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1997 return winmdroot.Foundation.HRESULT.S_OK; 2001 return (winmdroot.Foundation.HRESULT)ex.HResult; 2009 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2014 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2022 private static winmdroot.Foundation.HRESULT get_paddingTop(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2026 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2032 return winmdroot.Foundation.HRESULT.S_OK; 2036 return (winmdroot.Foundation.HRESULT)ex.HResult; 2043 private static winmdroot.Foundation.HRESULT put_paddingRight(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2047 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2053 return winmdroot.Foundation.HRESULT.S_OK; 2057 return (winmdroot.Foundation.HRESULT)ex.HResult; 2065 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2070 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2078 private static winmdroot.Foundation.HRESULT get_paddingRight(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2082 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2088 return winmdroot.Foundation.HRESULT.S_OK; 2092 return (winmdroot.Foundation.HRESULT)ex.HResult; 2099 private static winmdroot.Foundation.HRESULT put_paddingBottom(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2103 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2109 return winmdroot.Foundation.HRESULT.S_OK; 2113 return (winmdroot.Foundation.HRESULT)ex.HResult; 2121 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2126 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2134 private static winmdroot.Foundation.HRESULT get_paddingBottom(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2138 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2144 return winmdroot.Foundation.HRESULT.S_OK; 2148 return (winmdroot.Foundation.HRESULT)ex.HResult; 2155 private static winmdroot.Foundation.HRESULT put_paddingLeft(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2159 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2165 return winmdroot.Foundation.HRESULT.S_OK; 2169 return (winmdroot.Foundation.HRESULT)ex.HResult; 2177 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[79])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2182 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[80])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2190 private static winmdroot.Foundation.HRESULT get_paddingLeft(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2194 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2200 return winmdroot.Foundation.HRESULT.S_OK; 2204 return (winmdroot.Foundation.HRESULT)ex.HResult; 2211 private static winmdroot.Foundation.HRESULT put_padding(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2215 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2221 return winmdroot.Foundation.HRESULT.S_OK; 2225 return (winmdroot.Foundation.HRESULT)ex.HResult; 2233 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2238 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2246 private static winmdroot.Foundation.HRESULT get_padding(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2250 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2256 return winmdroot.Foundation.HRESULT.S_OK; 2260 return (winmdroot.Foundation.HRESULT)ex.HResult; 2267 private static winmdroot.Foundation.HRESULT put_border(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2271 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2277 return winmdroot.Foundation.HRESULT.S_OK; 2281 return (winmdroot.Foundation.HRESULT)ex.HResult; 2289 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2294 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2302 private static winmdroot.Foundation.HRESULT get_border(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2306 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2312 return winmdroot.Foundation.HRESULT.S_OK; 2316 return (winmdroot.Foundation.HRESULT)ex.HResult; 2323 private static winmdroot.Foundation.HRESULT put_borderTop(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2327 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2333 return winmdroot.Foundation.HRESULT.S_OK; 2337 return (winmdroot.Foundation.HRESULT)ex.HResult; 2345 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[85])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2350 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[86])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2358 private static winmdroot.Foundation.HRESULT get_borderTop(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2362 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2368 return winmdroot.Foundation.HRESULT.S_OK; 2372 return (winmdroot.Foundation.HRESULT)ex.HResult; 2379 private static winmdroot.Foundation.HRESULT put_borderRight(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2383 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2389 return winmdroot.Foundation.HRESULT.S_OK; 2393 return (winmdroot.Foundation.HRESULT)ex.HResult; 2401 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[87])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2406 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[88])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2414 private static winmdroot.Foundation.HRESULT get_borderRight(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2418 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2424 return winmdroot.Foundation.HRESULT.S_OK; 2428 return (winmdroot.Foundation.HRESULT)ex.HResult; 2435 private static winmdroot.Foundation.HRESULT put_borderBottom(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2439 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2445 return winmdroot.Foundation.HRESULT.S_OK; 2449 return (winmdroot.Foundation.HRESULT)ex.HResult; 2457 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[89])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2462 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[90])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2470 private static winmdroot.Foundation.HRESULT get_borderBottom(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2474 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2480 return winmdroot.Foundation.HRESULT.S_OK; 2484 return (winmdroot.Foundation.HRESULT)ex.HResult; 2491 private static winmdroot.Foundation.HRESULT put_borderLeft(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2495 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2501 return winmdroot.Foundation.HRESULT.S_OK; 2505 return (winmdroot.Foundation.HRESULT)ex.HResult; 2513 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[91])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2518 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2526 private static winmdroot.Foundation.HRESULT get_borderLeft(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2530 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2536 return winmdroot.Foundation.HRESULT.S_OK; 2540 return (winmdroot.Foundation.HRESULT)ex.HResult; 2547 private static winmdroot.Foundation.HRESULT put_borderColor(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2551 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2557 return winmdroot.Foundation.HRESULT.S_OK; 2561 return (winmdroot.Foundation.HRESULT)ex.HResult; 2569 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[93])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2574 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[94])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2582 private static winmdroot.Foundation.HRESULT get_borderColor(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2586 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2592 return winmdroot.Foundation.HRESULT.S_OK; 2596 return (winmdroot.Foundation.HRESULT)ex.HResult; 2603 private static winmdroot.Foundation.HRESULT put_borderTopColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2607 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2613 return winmdroot.Foundation.HRESULT.S_OK; 2617 return (winmdroot.Foundation.HRESULT)ex.HResult; 2625 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[95])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2630 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[96])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2638 private static winmdroot.Foundation.HRESULT get_borderTopColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2642 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2648 return winmdroot.Foundation.HRESULT.S_OK; 2652 return (winmdroot.Foundation.HRESULT)ex.HResult; 2659 private static winmdroot.Foundation.HRESULT put_borderRightColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2663 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2669 return winmdroot.Foundation.HRESULT.S_OK; 2673 return (winmdroot.Foundation.HRESULT)ex.HResult; 2681 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[97])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2686 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[98])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2694 private static winmdroot.Foundation.HRESULT get_borderRightColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2698 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2704 return winmdroot.Foundation.HRESULT.S_OK; 2708 return (winmdroot.Foundation.HRESULT)ex.HResult; 2715 private static winmdroot.Foundation.HRESULT put_borderBottomColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2719 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2725 return winmdroot.Foundation.HRESULT.S_OK; 2729 return (winmdroot.Foundation.HRESULT)ex.HResult; 2737 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[99])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2742 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[100])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2750 private static winmdroot.Foundation.HRESULT get_borderBottomColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2754 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2760 return winmdroot.Foundation.HRESULT.S_OK; 2764 return (winmdroot.Foundation.HRESULT)ex.HResult; 2771 private static winmdroot.Foundation.HRESULT put_borderLeftColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2775 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2781 return winmdroot.Foundation.HRESULT.S_OK; 2785 return (winmdroot.Foundation.HRESULT)ex.HResult; 2793 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[101])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2798 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[102])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2806 private static winmdroot.Foundation.HRESULT get_borderLeftColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2810 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2816 return winmdroot.Foundation.HRESULT.S_OK; 2820 return (winmdroot.Foundation.HRESULT)ex.HResult; 2827 private static winmdroot.Foundation.HRESULT put_borderWidth(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2831 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2837 return winmdroot.Foundation.HRESULT.S_OK; 2841 return (winmdroot.Foundation.HRESULT)ex.HResult; 2849 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[103])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2854 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[104])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2862 private static winmdroot.Foundation.HRESULT get_borderWidth(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2866 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2872 return winmdroot.Foundation.HRESULT.S_OK; 2876 return (winmdroot.Foundation.HRESULT)ex.HResult; 2883 private static winmdroot.Foundation.HRESULT put_borderTopWidth(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2887 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2893 return winmdroot.Foundation.HRESULT.S_OK; 2897 return (winmdroot.Foundation.HRESULT)ex.HResult; 2905 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[105])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2910 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[106])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2918 private static winmdroot.Foundation.HRESULT get_borderTopWidth(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2922 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2928 return winmdroot.Foundation.HRESULT.S_OK; 2932 return (winmdroot.Foundation.HRESULT)ex.HResult; 2939 private static winmdroot.Foundation.HRESULT put_borderRightWidth(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2943 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2949 return winmdroot.Foundation.HRESULT.S_OK; 2953 return (winmdroot.Foundation.HRESULT)ex.HResult; 2961 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[107])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2966 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[108])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2974 private static winmdroot.Foundation.HRESULT get_borderRightWidth(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2978 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2984 return winmdroot.Foundation.HRESULT.S_OK; 2988 return (winmdroot.Foundation.HRESULT)ex.HResult; 2995 private static winmdroot.Foundation.HRESULT put_borderBottomWidth(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2999 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3005 return winmdroot.Foundation.HRESULT.S_OK; 3009 return (winmdroot.Foundation.HRESULT)ex.HResult; 3017 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[109])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3022 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[110])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3030 private static winmdroot.Foundation.HRESULT get_borderBottomWidth(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 3034 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3040 return winmdroot.Foundation.HRESULT.S_OK; 3044 return (winmdroot.Foundation.HRESULT)ex.HResult; 3051 private static winmdroot.Foundation.HRESULT put_borderLeftWidth(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 3055 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3061 return winmdroot.Foundation.HRESULT.S_OK; 3065 return (winmdroot.Foundation.HRESULT)ex.HResult; 3073 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[111])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3078 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[112])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3086 private static winmdroot.Foundation.HRESULT get_borderLeftWidth(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 3090 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3096 return winmdroot.Foundation.HRESULT.S_OK; 3100 return (winmdroot.Foundation.HRESULT)ex.HResult; 3107 private static winmdroot.Foundation.HRESULT put_borderStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3111 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3117 return winmdroot.Foundation.HRESULT.S_OK; 3121 return (winmdroot.Foundation.HRESULT)ex.HResult; 3129 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[113])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3134 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[114])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3142 private static winmdroot.Foundation.HRESULT get_borderStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3146 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3152 return winmdroot.Foundation.HRESULT.S_OK; 3156 return (winmdroot.Foundation.HRESULT)ex.HResult; 3163 private static winmdroot.Foundation.HRESULT put_borderTopStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3167 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3173 return winmdroot.Foundation.HRESULT.S_OK; 3177 return (winmdroot.Foundation.HRESULT)ex.HResult; 3185 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[115])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3190 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[116])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3198 private static winmdroot.Foundation.HRESULT get_borderTopStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3202 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3208 return winmdroot.Foundation.HRESULT.S_OK; 3212 return (winmdroot.Foundation.HRESULT)ex.HResult; 3219 private static winmdroot.Foundation.HRESULT put_borderRightStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3223 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3229 return winmdroot.Foundation.HRESULT.S_OK; 3233 return (winmdroot.Foundation.HRESULT)ex.HResult; 3241 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[117])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3246 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[118])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3254 private static winmdroot.Foundation.HRESULT get_borderRightStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3258 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3264 return winmdroot.Foundation.HRESULT.S_OK; 3268 return (winmdroot.Foundation.HRESULT)ex.HResult; 3275 private static winmdroot.Foundation.HRESULT put_borderBottomStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3279 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3285 return winmdroot.Foundation.HRESULT.S_OK; 3289 return (winmdroot.Foundation.HRESULT)ex.HResult; 3297 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[119])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3302 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[120])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3310 private static winmdroot.Foundation.HRESULT get_borderBottomStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3314 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3320 return winmdroot.Foundation.HRESULT.S_OK; 3324 return (winmdroot.Foundation.HRESULT)ex.HResult; 3331 private static winmdroot.Foundation.HRESULT put_borderLeftStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3335 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3341 return winmdroot.Foundation.HRESULT.S_OK; 3345 return (winmdroot.Foundation.HRESULT)ex.HResult; 3353 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[121])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3358 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[122])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3366 private static winmdroot.Foundation.HRESULT get_borderLeftStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3370 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3376 return winmdroot.Foundation.HRESULT.S_OK; 3380 return (winmdroot.Foundation.HRESULT)ex.HResult; 3387 private static winmdroot.Foundation.HRESULT put_width(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 3391 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3397 return winmdroot.Foundation.HRESULT.S_OK; 3401 return (winmdroot.Foundation.HRESULT)ex.HResult; 3409 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[123])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3414 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[124])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3422 private static winmdroot.Foundation.HRESULT get_width(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 3426 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3432 return winmdroot.Foundation.HRESULT.S_OK; 3436 return (winmdroot.Foundation.HRESULT)ex.HResult; 3443 private static winmdroot.Foundation.HRESULT put_height(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 3447 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3453 return winmdroot.Foundation.HRESULT.S_OK; 3457 return (winmdroot.Foundation.HRESULT)ex.HResult; 3465 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[125])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3470 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[126])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3478 private static winmdroot.Foundation.HRESULT get_height(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 3482 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3488 return winmdroot.Foundation.HRESULT.S_OK; 3492 return (winmdroot.Foundation.HRESULT)ex.HResult; 3499 private static winmdroot.Foundation.HRESULT put_styleFloat(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3503 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3509 return winmdroot.Foundation.HRESULT.S_OK; 3513 return (winmdroot.Foundation.HRESULT)ex.HResult; 3521 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[127])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3526 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[128])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3534 private static winmdroot.Foundation.HRESULT get_styleFloat(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3538 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3544 return winmdroot.Foundation.HRESULT.S_OK; 3548 return (winmdroot.Foundation.HRESULT)ex.HResult; 3555 private static winmdroot.Foundation.HRESULT put_clear(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3559 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3565 return winmdroot.Foundation.HRESULT.S_OK; 3569 return (winmdroot.Foundation.HRESULT)ex.HResult; 3577 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[129])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3582 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[130])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3590 private static winmdroot.Foundation.HRESULT get_clear(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3594 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3600 return winmdroot.Foundation.HRESULT.S_OK; 3604 return (winmdroot.Foundation.HRESULT)ex.HResult; 3611 private static winmdroot.Foundation.HRESULT put_display(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3615 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3621 return winmdroot.Foundation.HRESULT.S_OK; 3625 return (winmdroot.Foundation.HRESULT)ex.HResult; 3633 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[131])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3638 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[132])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3646 private static winmdroot.Foundation.HRESULT get_display(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3650 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3656 return winmdroot.Foundation.HRESULT.S_OK; 3660 return (winmdroot.Foundation.HRESULT)ex.HResult; 3667 private static winmdroot.Foundation.HRESULT put_visibility(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3671 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3677 return winmdroot.Foundation.HRESULT.S_OK; 3681 return (winmdroot.Foundation.HRESULT)ex.HResult; 3689 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[133])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3694 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[134])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3702 private static winmdroot.Foundation.HRESULT get_visibility(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3706 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3712 return winmdroot.Foundation.HRESULT.S_OK; 3716 return (winmdroot.Foundation.HRESULT)ex.HResult; 3723 private static winmdroot.Foundation.HRESULT put_listStyleType(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3727 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3733 return winmdroot.Foundation.HRESULT.S_OK; 3737 return (winmdroot.Foundation.HRESULT)ex.HResult; 3745 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[135])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3750 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[136])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3758 private static winmdroot.Foundation.HRESULT get_listStyleType(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3762 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3768 return winmdroot.Foundation.HRESULT.S_OK; 3772 return (winmdroot.Foundation.HRESULT)ex.HResult; 3779 private static winmdroot.Foundation.HRESULT put_listStylePosition(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3783 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3789 return winmdroot.Foundation.HRESULT.S_OK; 3793 return (winmdroot.Foundation.HRESULT)ex.HResult; 3801 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[137])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3806 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[138])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3814 private static winmdroot.Foundation.HRESULT get_listStylePosition(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3818 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3824 return winmdroot.Foundation.HRESULT.S_OK; 3828 return (winmdroot.Foundation.HRESULT)ex.HResult; 3835 private static winmdroot.Foundation.HRESULT put_listStyleImage(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3839 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3845 return winmdroot.Foundation.HRESULT.S_OK; 3849 return (winmdroot.Foundation.HRESULT)ex.HResult; 3857 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[139])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3862 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[140])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3870 private static winmdroot.Foundation.HRESULT get_listStyleImage(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3874 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3880 return winmdroot.Foundation.HRESULT.S_OK; 3884 return (winmdroot.Foundation.HRESULT)ex.HResult; 3891 private static winmdroot.Foundation.HRESULT put_listStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3895 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3901 return winmdroot.Foundation.HRESULT.S_OK; 3905 return (winmdroot.Foundation.HRESULT)ex.HResult; 3913 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[141])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3918 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[142])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3926 private static winmdroot.Foundation.HRESULT get_listStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3930 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3936 return winmdroot.Foundation.HRESULT.S_OK; 3940 return (winmdroot.Foundation.HRESULT)ex.HResult; 3947 private static winmdroot.Foundation.HRESULT put_whiteSpace(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3951 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3957 return winmdroot.Foundation.HRESULT.S_OK; 3961 return (winmdroot.Foundation.HRESULT)ex.HResult; 3969 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[143])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3974 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[144])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3982 private static winmdroot.Foundation.HRESULT get_whiteSpace(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3986 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3992 return winmdroot.Foundation.HRESULT.S_OK; 3996 return (winmdroot.Foundation.HRESULT)ex.HResult; 4003 private static winmdroot.Foundation.HRESULT put_top(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 4007 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4013 return winmdroot.Foundation.HRESULT.S_OK; 4017 return (winmdroot.Foundation.HRESULT)ex.HResult; 4025 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[145])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4030 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[146])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4038 private static winmdroot.Foundation.HRESULT get_top(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 4042 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4048 return winmdroot.Foundation.HRESULT.S_OK; 4052 return (winmdroot.Foundation.HRESULT)ex.HResult; 4059 private static winmdroot.Foundation.HRESULT put_left(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 4063 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4069 return winmdroot.Foundation.HRESULT.S_OK; 4073 return (winmdroot.Foundation.HRESULT)ex.HResult; 4081 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[147])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4086 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[148])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4094 private static winmdroot.Foundation.HRESULT get_left(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 4098 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4104 return winmdroot.Foundation.HRESULT.S_OK; 4108 return (winmdroot.Foundation.HRESULT)ex.HResult; 4115 private static winmdroot.Foundation.HRESULT get_position(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4119 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4125 return winmdroot.Foundation.HRESULT.S_OK; 4129 return (winmdroot.Foundation.HRESULT)ex.HResult; 4138 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[149])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4146 private static winmdroot.Foundation.HRESULT put_zIndex(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 4150 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4156 return winmdroot.Foundation.HRESULT.S_OK; 4160 return (winmdroot.Foundation.HRESULT)ex.HResult; 4168 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[150])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4173 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[151])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4181 private static winmdroot.Foundation.HRESULT get_zIndex(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 4185 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4191 return winmdroot.Foundation.HRESULT.S_OK; 4195 return (winmdroot.Foundation.HRESULT)ex.HResult; 4202 private static winmdroot.Foundation.HRESULT put_overflow(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4206 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4212 return winmdroot.Foundation.HRESULT.S_OK; 4216 return (winmdroot.Foundation.HRESULT)ex.HResult; 4224 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[152])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4229 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[153])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4237 private static winmdroot.Foundation.HRESULT get_overflow(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4241 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4247 return winmdroot.Foundation.HRESULT.S_OK; 4251 return (winmdroot.Foundation.HRESULT)ex.HResult; 4258 private static winmdroot.Foundation.HRESULT put_pageBreakBefore(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4262 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4268 return winmdroot.Foundation.HRESULT.S_OK; 4272 return (winmdroot.Foundation.HRESULT)ex.HResult; 4280 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[154])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4285 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[155])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4293 private static winmdroot.Foundation.HRESULT get_pageBreakBefore(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4297 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4303 return winmdroot.Foundation.HRESULT.S_OK; 4307 return (winmdroot.Foundation.HRESULT)ex.HResult; 4314 private static winmdroot.Foundation.HRESULT put_pageBreakAfter(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4318 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4324 return winmdroot.Foundation.HRESULT.S_OK; 4328 return (winmdroot.Foundation.HRESULT)ex.HResult; 4336 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[156])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4341 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[157])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4349 private static winmdroot.Foundation.HRESULT get_pageBreakAfter(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4353 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4359 return winmdroot.Foundation.HRESULT.S_OK; 4363 return (winmdroot.Foundation.HRESULT)ex.HResult; 4370 private static winmdroot.Foundation.HRESULT put_cssText(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4374 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4380 return winmdroot.Foundation.HRESULT.S_OK; 4384 return (winmdroot.Foundation.HRESULT)ex.HResult; 4392 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[158])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4397 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[159])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4405 private static winmdroot.Foundation.HRESULT get_cssText(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4409 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4415 return winmdroot.Foundation.HRESULT.S_OK; 4419 return (winmdroot.Foundation.HRESULT)ex.HResult; 4426 private static winmdroot.Foundation.HRESULT put_cursor(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4430 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4436 return winmdroot.Foundation.HRESULT.S_OK; 4440 return (winmdroot.Foundation.HRESULT)ex.HResult; 4448 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[160])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4453 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[161])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4461 private static winmdroot.Foundation.HRESULT get_cursor(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4465 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4471 return winmdroot.Foundation.HRESULT.S_OK; 4475 return (winmdroot.Foundation.HRESULT)ex.HResult; 4482 private static winmdroot.Foundation.HRESULT put_clip(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4486 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4492 return winmdroot.Foundation.HRESULT.S_OK; 4496 return (winmdroot.Foundation.HRESULT)ex.HResult; 4504 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[162])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4509 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[163])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4517 private static winmdroot.Foundation.HRESULT get_clip(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4521 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4527 return winmdroot.Foundation.HRESULT.S_OK; 4531 return (winmdroot.Foundation.HRESULT)ex.HResult; 4538 private static winmdroot.Foundation.HRESULT put_filter(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4542 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4548 return winmdroot.Foundation.HRESULT.S_OK; 4552 return (winmdroot.Foundation.HRESULT)ex.HResult; 4560 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[164])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4565 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[165])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4573 private static winmdroot.Foundation.HRESULT get_filter(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4577 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4583 return winmdroot.Foundation.HRESULT.S_OK; 4587 return (winmdroot.Foundation.HRESULT)ex.HResult; 4594 private static winmdroot.Foundation.HRESULT setAttribute(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags) 4598 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4607 return (winmdroot.Foundation.HRESULT)ex.HResult; 4613 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[166])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), strAttributeName, AttributeValue, lFlags).ThrowOnFailure(); 4619 private static winmdroot.Foundation.HRESULT getAttribute(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue) 4623 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4632 return (winmdroot.Foundation.HRESULT)ex.HResult; 4639 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[167])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), strAttributeName, lFlags, &__retVal).ThrowOnFailure(); 4646 private static winmdroot.Foundation.HRESULT removeAttribute(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess) 4650 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4659 return (winmdroot.Foundation.HRESULT)ex.HResult; 4666 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[168])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), strAttributeName, lFlags, &__retVal).ThrowOnFailure(); 4670 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 4676 var hr = this.QueryInterface(&guid, &pv); 4693 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 4699 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 4701 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 4703 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 4705 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; 4707 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontFamily_8; 4709 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontFamily_9; 4711 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontStyle_10; 4713 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontStyle_11; 4715 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontVariant_12; 4717 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontVariant_13; 4719 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontWeight_14; 4721 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontWeight_15; 4723 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_fontSize_16; 4725 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_fontSize_17; 4727 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_font_18; 4729 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_font_19; 4731 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_color_20; 4733 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_color_21; 4735 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_background_22; 4737 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_background_23; 4739 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_backgroundColor_24; 4741 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundColor_25; 4743 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundImage_26; 4745 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundImage_27; 4747 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundRepeat_28; 4749 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundRepeat_29; 4751 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundAttachment_30; 4753 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundAttachment_31; 4755 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundPosition_32; 4757 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundPosition_33; 4759 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_backgroundPositionX_34; 4761 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundPositionX_35; 4763 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_backgroundPositionY_36; 4765 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundPositionY_37; 4767 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_wordSpacing_38; 4769 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_wordSpacing_39; 4771 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_letterSpacing_40; 4773 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_letterSpacing_41; 4775 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textDecoration_42; 4777 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textDecoration_43; 4779 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationNone_44; 4781 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationNone_45; 4783 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationUnderline_46; 4785 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationUnderline_47; 4787 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationOverline_48; 4789 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationOverline_49; 4791 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationLineThrough_50; 4793 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationLineThrough_51; 4795 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationBlink_52; 4797 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationBlink_53; 4799 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_verticalAlign_54; 4801 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_verticalAlign_55; 4803 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textTransform_56; 4805 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textTransform_57; 4807 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textAlign_58; 4809 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textAlign_59; 4811 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_textIndent_60; 4813 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_textIndent_61; 4815 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_lineHeight_62; 4817 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_lineHeight_63; 4819 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginTop_64; 4821 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginTop_65; 4823 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginRight_66; 4825 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginRight_67; 4827 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginBottom_68; 4829 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginBottom_69; 4831 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginLeft_70; 4833 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginLeft_71; 4835 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_margin_72; 4837 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_margin_73; 4839 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_paddingTop_74; 4841 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingTop_75; 4843 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_paddingRight_76; 4845 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingRight_77; 4847 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_paddingBottom_78; 4849 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingBottom_79; 4851 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_paddingLeft_80; 4853 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingLeft_81; 4855 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_padding_82; 4857 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_padding_83; 4859 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_border_84; 4861 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_border_85; 4863 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderTop_86; 4865 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderTop_87; 4867 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderRight_88; 4869 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderRight_89; 4871 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderBottom_90; 4873 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderBottom_91; 4875 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderLeft_92; 4877 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderLeft_93; 4879 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderColor_94; 4881 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderColor_95; 4883 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderTopColor_96; 4885 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderTopColor_97; 4887 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderRightColor_98; 4889 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderRightColor_99; 4891 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderBottomColor_100; 4893 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderBottomColor_101; 4895 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderLeftColor_102; 4897 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderLeftColor_103; 4899 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderWidth_104; 4901 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderWidth_105; 4903 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderTopWidth_106; 4905 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderTopWidth_107; 4907 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderRightWidth_108; 4909 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderRightWidth_109; 4911 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderBottomWidth_110; 4913 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderBottomWidth_111; 4915 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderLeftWidth_112; 4917 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderLeftWidth_113; 4919 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderStyle_114; 4921 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderStyle_115; 4923 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderTopStyle_116; 4925 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderTopStyle_117; 4927 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderRightStyle_118; 4929 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderRightStyle_119; 4931 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderBottomStyle_120; 4933 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderBottomStyle_121; 4935 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderLeftStyle_122; 4937 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderLeftStyle_123; 4939 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_width_124; 4941 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_width_125; 4943 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_height_126; 4945 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_height_127; 4947 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_styleFloat_128; 4949 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_styleFloat_129; 4951 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_clear_130; 4953 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_clear_131; 4955 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_display_132; 4957 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_display_133; 4959 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_visibility_134; 4961 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_visibility_135; 4963 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyleType_136; 4965 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleType_137; 4967 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStylePosition_138; 4969 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStylePosition_139; 4971 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyleImage_140; 4973 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleImage_141; 4975 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyle_142; 4977 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyle_143; 4979 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_whiteSpace_144; 4981 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_whiteSpace_145; 4983 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_top_146; 4985 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_top_147; 4987 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_left_148; 4989 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_left_149; 4991 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_position_150; 4993 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_zIndex_151; 4995 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_zIndex_152; 4997 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_overflow_153; 4999 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_overflow_154; 5001 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_pageBreakBefore_155; 5003 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakBefore_156; 5005 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_pageBreakAfter_157; 5007 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakAfter_158; 5009 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cssText_159; 5011 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cssText_160; 5013 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cursor_161; 5015 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cursor_162; 5017 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_clip_163; 5019 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_clip_164; 5021 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_filter_165; 5023 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_filter_166; 5025 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,int ,winmdroot.Foundation.HRESULT> setAttribute_167; 5027 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getAttribute_168; 5029 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> removeAttribute_169; 5695winmdroot.Foundation.HRESULT setAttribute(winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags); 5698 unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue); 5701 unsafe winmdroot.Foundation.HRESULT removeAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess);
_generated\169\Windows.Win32.IHTMLScreen.g.cs (75)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLScreen*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLScreen*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLScreen*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLScreen*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT get_colorDepth(IHTMLScreen* pThis, int* p) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLScreen*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT put_bufferDepth(IHTMLScreen* pThis, int v) 174 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 192 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLScreen*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 197 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLScreen*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 205 private static winmdroot.Foundation.HRESULT get_bufferDepth(IHTMLScreen* pThis, int* p) 209 winmdroot.Foundation.HRESULT __hr = winmdroot.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_width(IHTMLScreen* pThis, int* p) 230 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 236 return winmdroot.Foundation.HRESULT.S_OK; 240 return (winmdroot.Foundation.HRESULT)ex.HResult; 249 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLScreen*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 257 private static winmdroot.Foundation.HRESULT get_height(IHTMLScreen* pThis, int* p) 261 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 267 return winmdroot.Foundation.HRESULT.S_OK; 271 return (winmdroot.Foundation.HRESULT)ex.HResult; 280 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLScreen*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 288 private static winmdroot.Foundation.HRESULT put_updateInterval(IHTMLScreen* pThis, int v) 292 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 298 return winmdroot.Foundation.HRESULT.S_OK; 302 return (winmdroot.Foundation.HRESULT)ex.HResult; 310 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLScreen*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 315 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLScreen*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 323 private static winmdroot.Foundation.HRESULT get_updateInterval(IHTMLScreen* pThis, int* p) 327 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 333 return winmdroot.Foundation.HRESULT.S_OK; 337 return (winmdroot.Foundation.HRESULT)ex.HResult; 344 private static winmdroot.Foundation.HRESULT get_availHeight(IHTMLScreen* pThis, int* p) 348 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 354 return winmdroot.Foundation.HRESULT.S_OK; 358 return (winmdroot.Foundation.HRESULT)ex.HResult; 367 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLScreen*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 375 private static winmdroot.Foundation.HRESULT get_availWidth(IHTMLScreen* pThis, int* p) 379 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 385 return winmdroot.Foundation.HRESULT.S_OK; 389 return (winmdroot.Foundation.HRESULT)ex.HResult; 398 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLScreen*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 406 private static winmdroot.Foundation.HRESULT get_fontSmoothingEnabled(IHTMLScreen* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 410 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 416 return winmdroot.Foundation.HRESULT.S_OK; 420 return (winmdroot.Foundation.HRESULT)ex.HResult; 429 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLScreen*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 434 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 440 var hr = this.QueryInterface(&guid, &pv); 457 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 463 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 465 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 467 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 469 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; 471 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT> get_colorDepth_8; 473 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int ,winmdroot.Foundation.HRESULT> put_bufferDepth_9; 475 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT> get_bufferDepth_10; 477 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT> get_width_11; 479 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT> get_height_12; 481 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int ,winmdroot.Foundation.HRESULT> put_updateInterval_13; 483 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT> get_updateInterval_14; 485 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT> get_availHeight_15; 487 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT> get_availWidth_16; 489 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_fontSmoothingEnabled_17;
_generated\170\Windows.Win32.IHTMLSelectionObject.g.cs (39)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT createRange(IHTMLSelectionObject* pThis, winmdroot.System.Com.IDispatch** range) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 159 ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 166 private static winmdroot.Foundation.HRESULT empty(IHTMLSelectionObject* pThis) 170 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 179 return (winmdroot.Foundation.HRESULT)ex.HResult; 185 ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 191 private static winmdroot.Foundation.HRESULT clear(IHTMLSelectionObject* pThis) 195 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 204 return (winmdroot.Foundation.HRESULT)ex.HResult; 210 ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 216 private static winmdroot.Foundation.HRESULT get_type(IHTMLSelectionObject* pThis, winmdroot.Foundation.BSTR* p) 220 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 226 return winmdroot.Foundation.HRESULT.S_OK; 230 return (winmdroot.Foundation.HRESULT)ex.HResult; 239 ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 244 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 250 var hr = this.QueryInterface(&guid, &pv); 267 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 273 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 275 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 277 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 279 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; 281 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> createRange_8; 283 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.Foundation.HRESULT> empty_9; 285 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.Foundation.HRESULT> clear_10; 287 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_type_11; 316 unsafe winmdroot.Foundation.HRESULT createRange(winmdroot.System.Com.IDispatch** range); 319winmdroot.Foundation.HRESULT empty(); 322winmdroot.Foundation.HRESULT clear();
_generated\171\Windows.Win32.IHTMLStyle.g.cs (1093)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLStyle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLStyle*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLStyle*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLStyle*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT put_fontFamily(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 166 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_fontFamily(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 178 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 184 return winmdroot.Foundation.HRESULT.S_OK; 188 return (winmdroot.Foundation.HRESULT)ex.HResult; 195 private static winmdroot.Foundation.HRESULT put_fontStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 199 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 205 return winmdroot.Foundation.HRESULT.S_OK; 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 217 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 222 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT get_fontStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 234 winmdroot.Foundation.HRESULT __hr = winmdroot.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 put_fontVariant(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 255 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 261 return winmdroot.Foundation.HRESULT.S_OK; 265 return (winmdroot.Foundation.HRESULT)ex.HResult; 273 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 278 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 286 private static winmdroot.Foundation.HRESULT get_fontVariant(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 290 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 296 return winmdroot.Foundation.HRESULT.S_OK; 300 return (winmdroot.Foundation.HRESULT)ex.HResult; 307 private static winmdroot.Foundation.HRESULT put_fontWeight(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 311 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 317 return winmdroot.Foundation.HRESULT.S_OK; 321 return (winmdroot.Foundation.HRESULT)ex.HResult; 329 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 334 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 342 private static winmdroot.Foundation.HRESULT get_fontWeight(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 346 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 352 return winmdroot.Foundation.HRESULT.S_OK; 356 return (winmdroot.Foundation.HRESULT)ex.HResult; 363 private static winmdroot.Foundation.HRESULT put_fontSize(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 367 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 373 return winmdroot.Foundation.HRESULT.S_OK; 377 return (winmdroot.Foundation.HRESULT)ex.HResult; 385 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 390 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 398 private static winmdroot.Foundation.HRESULT get_fontSize(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 402 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 408 return winmdroot.Foundation.HRESULT.S_OK; 412 return (winmdroot.Foundation.HRESULT)ex.HResult; 419 private static winmdroot.Foundation.HRESULT put_font(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 423 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 429 return winmdroot.Foundation.HRESULT.S_OK; 433 return (winmdroot.Foundation.HRESULT)ex.HResult; 441 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 446 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 454 private static winmdroot.Foundation.HRESULT get_font(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 458 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 464 return winmdroot.Foundation.HRESULT.S_OK; 468 return (winmdroot.Foundation.HRESULT)ex.HResult; 475 private static winmdroot.Foundation.HRESULT put_color(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 479 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 485 return winmdroot.Foundation.HRESULT.S_OK; 489 return (winmdroot.Foundation.HRESULT)ex.HResult; 497 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 502 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 510 private static winmdroot.Foundation.HRESULT get_color(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 514 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 520 return winmdroot.Foundation.HRESULT.S_OK; 524 return (winmdroot.Foundation.HRESULT)ex.HResult; 531 private static winmdroot.Foundation.HRESULT put_background(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 535 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 541 return winmdroot.Foundation.HRESULT.S_OK; 545 return (winmdroot.Foundation.HRESULT)ex.HResult; 553 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 558 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 566 private static winmdroot.Foundation.HRESULT get_background(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 570 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 576 return winmdroot.Foundation.HRESULT.S_OK; 580 return (winmdroot.Foundation.HRESULT)ex.HResult; 587 private static winmdroot.Foundation.HRESULT put_backgroundColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 591 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 597 return winmdroot.Foundation.HRESULT.S_OK; 601 return (winmdroot.Foundation.HRESULT)ex.HResult; 609 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 614 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 622 private static winmdroot.Foundation.HRESULT get_backgroundColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 626 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 632 return winmdroot.Foundation.HRESULT.S_OK; 636 return (winmdroot.Foundation.HRESULT)ex.HResult; 643 private static winmdroot.Foundation.HRESULT put_backgroundImage(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 647 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 653 return winmdroot.Foundation.HRESULT.S_OK; 657 return (winmdroot.Foundation.HRESULT)ex.HResult; 665 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 670 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 678 private static winmdroot.Foundation.HRESULT get_backgroundImage(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 682 winmdroot.Foundation.HRESULT __hr = winmdroot.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 put_backgroundRepeat(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 703 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 709 return winmdroot.Foundation.HRESULT.S_OK; 713 return (winmdroot.Foundation.HRESULT)ex.HResult; 721 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 726 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 734 private static winmdroot.Foundation.HRESULT get_backgroundRepeat(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 738 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 744 return winmdroot.Foundation.HRESULT.S_OK; 748 return (winmdroot.Foundation.HRESULT)ex.HResult; 755 private static winmdroot.Foundation.HRESULT put_backgroundAttachment(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 759 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 765 return winmdroot.Foundation.HRESULT.S_OK; 769 return (winmdroot.Foundation.HRESULT)ex.HResult; 777 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 782 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 790 private static winmdroot.Foundation.HRESULT get_backgroundAttachment(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 794 winmdroot.Foundation.HRESULT __hr = winmdroot.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_backgroundPosition(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 815 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 821 return winmdroot.Foundation.HRESULT.S_OK; 825 return (winmdroot.Foundation.HRESULT)ex.HResult; 833 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 838 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 846 private static winmdroot.Foundation.HRESULT get_backgroundPosition(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 850 winmdroot.Foundation.HRESULT __hr = winmdroot.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 put_backgroundPositionX(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 871 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 877 return winmdroot.Foundation.HRESULT.S_OK; 881 return (winmdroot.Foundation.HRESULT)ex.HResult; 889 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 894 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 902 private static winmdroot.Foundation.HRESULT get_backgroundPositionX(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 906 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 912 return winmdroot.Foundation.HRESULT.S_OK; 916 return (winmdroot.Foundation.HRESULT)ex.HResult; 923 private static winmdroot.Foundation.HRESULT put_backgroundPositionY(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 927 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 933 return winmdroot.Foundation.HRESULT.S_OK; 937 return (winmdroot.Foundation.HRESULT)ex.HResult; 945 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 950 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 958 private static winmdroot.Foundation.HRESULT get_backgroundPositionY(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 962 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 968 return winmdroot.Foundation.HRESULT.S_OK; 972 return (winmdroot.Foundation.HRESULT)ex.HResult; 979 private static winmdroot.Foundation.HRESULT put_wordSpacing(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 983 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 989 return winmdroot.Foundation.HRESULT.S_OK; 993 return (winmdroot.Foundation.HRESULT)ex.HResult; 1001 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1006 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1014 private static winmdroot.Foundation.HRESULT get_wordSpacing(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1018 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1024 return winmdroot.Foundation.HRESULT.S_OK; 1028 return (winmdroot.Foundation.HRESULT)ex.HResult; 1035 private static winmdroot.Foundation.HRESULT put_letterSpacing(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1039 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1045 return winmdroot.Foundation.HRESULT.S_OK; 1049 return (winmdroot.Foundation.HRESULT)ex.HResult; 1057 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1062 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1070 private static winmdroot.Foundation.HRESULT get_letterSpacing(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1074 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1080 return winmdroot.Foundation.HRESULT.S_OK; 1084 return (winmdroot.Foundation.HRESULT)ex.HResult; 1091 private static winmdroot.Foundation.HRESULT put_textDecoration(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 1095 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1101 return winmdroot.Foundation.HRESULT.S_OK; 1105 return (winmdroot.Foundation.HRESULT)ex.HResult; 1113 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1118 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1126 private static winmdroot.Foundation.HRESULT get_textDecoration(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 1130 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1136 return winmdroot.Foundation.HRESULT.S_OK; 1140 return (winmdroot.Foundation.HRESULT)ex.HResult; 1147 private static winmdroot.Foundation.HRESULT put_textDecorationNone(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1151 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1157 return winmdroot.Foundation.HRESULT.S_OK; 1161 return (winmdroot.Foundation.HRESULT)ex.HResult; 1169 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1174 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1182 private static winmdroot.Foundation.HRESULT get_textDecorationNone(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1186 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1192 return winmdroot.Foundation.HRESULT.S_OK; 1196 return (winmdroot.Foundation.HRESULT)ex.HResult; 1203 private static winmdroot.Foundation.HRESULT put_textDecorationUnderline(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1207 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1213 return winmdroot.Foundation.HRESULT.S_OK; 1217 return (winmdroot.Foundation.HRESULT)ex.HResult; 1225 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1230 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1238 private static winmdroot.Foundation.HRESULT get_textDecorationUnderline(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1242 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1248 return winmdroot.Foundation.HRESULT.S_OK; 1252 return (winmdroot.Foundation.HRESULT)ex.HResult; 1259 private static winmdroot.Foundation.HRESULT put_textDecorationOverline(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1263 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1269 return winmdroot.Foundation.HRESULT.S_OK; 1273 return (winmdroot.Foundation.HRESULT)ex.HResult; 1281 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1286 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1294 private static winmdroot.Foundation.HRESULT get_textDecorationOverline(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1298 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1304 return winmdroot.Foundation.HRESULT.S_OK; 1308 return (winmdroot.Foundation.HRESULT)ex.HResult; 1315 private static winmdroot.Foundation.HRESULT put_textDecorationLineThrough(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1319 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1325 return winmdroot.Foundation.HRESULT.S_OK; 1329 return (winmdroot.Foundation.HRESULT)ex.HResult; 1337 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1342 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1350 private static winmdroot.Foundation.HRESULT get_textDecorationLineThrough(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1354 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1360 return winmdroot.Foundation.HRESULT.S_OK; 1364 return (winmdroot.Foundation.HRESULT)ex.HResult; 1371 private static winmdroot.Foundation.HRESULT put_textDecorationBlink(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1375 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1381 return winmdroot.Foundation.HRESULT.S_OK; 1385 return (winmdroot.Foundation.HRESULT)ex.HResult; 1393 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1398 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1406 private static winmdroot.Foundation.HRESULT get_textDecorationBlink(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1410 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1416 return winmdroot.Foundation.HRESULT.S_OK; 1420 return (winmdroot.Foundation.HRESULT)ex.HResult; 1427 private static winmdroot.Foundation.HRESULT put_verticalAlign(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1431 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1437 return winmdroot.Foundation.HRESULT.S_OK; 1441 return (winmdroot.Foundation.HRESULT)ex.HResult; 1449 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1454 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1462 private static winmdroot.Foundation.HRESULT get_verticalAlign(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1466 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1472 return winmdroot.Foundation.HRESULT.S_OK; 1476 return (winmdroot.Foundation.HRESULT)ex.HResult; 1483 private static winmdroot.Foundation.HRESULT put_textTransform(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 1487 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1493 return winmdroot.Foundation.HRESULT.S_OK; 1497 return (winmdroot.Foundation.HRESULT)ex.HResult; 1505 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1510 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1518 private static winmdroot.Foundation.HRESULT get_textTransform(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 1522 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1528 return winmdroot.Foundation.HRESULT.S_OK; 1532 return (winmdroot.Foundation.HRESULT)ex.HResult; 1539 private static winmdroot.Foundation.HRESULT put_textAlign(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 1543 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1549 return winmdroot.Foundation.HRESULT.S_OK; 1553 return (winmdroot.Foundation.HRESULT)ex.HResult; 1561 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1566 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1574 private static winmdroot.Foundation.HRESULT get_textAlign(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 1578 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1584 return winmdroot.Foundation.HRESULT.S_OK; 1588 return (winmdroot.Foundation.HRESULT)ex.HResult; 1595 private static winmdroot.Foundation.HRESULT put_textIndent(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1599 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1605 return winmdroot.Foundation.HRESULT.S_OK; 1609 return (winmdroot.Foundation.HRESULT)ex.HResult; 1617 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1622 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1630 private static winmdroot.Foundation.HRESULT get_textIndent(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1634 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1640 return winmdroot.Foundation.HRESULT.S_OK; 1644 return (winmdroot.Foundation.HRESULT)ex.HResult; 1651 private static winmdroot.Foundation.HRESULT put_lineHeight(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1655 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1661 return winmdroot.Foundation.HRESULT.S_OK; 1665 return (winmdroot.Foundation.HRESULT)ex.HResult; 1673 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1678 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1686 private static winmdroot.Foundation.HRESULT get_lineHeight(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1690 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1696 return winmdroot.Foundation.HRESULT.S_OK; 1700 return (winmdroot.Foundation.HRESULT)ex.HResult; 1707 private static winmdroot.Foundation.HRESULT put_marginTop(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1711 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1717 return winmdroot.Foundation.HRESULT.S_OK; 1721 return (winmdroot.Foundation.HRESULT)ex.HResult; 1729 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1734 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1742 private static winmdroot.Foundation.HRESULT get_marginTop(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1746 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1752 return winmdroot.Foundation.HRESULT.S_OK; 1756 return (winmdroot.Foundation.HRESULT)ex.HResult; 1763 private static winmdroot.Foundation.HRESULT put_marginRight(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1767 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1773 return winmdroot.Foundation.HRESULT.S_OK; 1777 return (winmdroot.Foundation.HRESULT)ex.HResult; 1785 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1790 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1798 private static winmdroot.Foundation.HRESULT get_marginRight(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1802 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1808 return winmdroot.Foundation.HRESULT.S_OK; 1812 return (winmdroot.Foundation.HRESULT)ex.HResult; 1819 private static winmdroot.Foundation.HRESULT put_marginBottom(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1823 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1829 return winmdroot.Foundation.HRESULT.S_OK; 1833 return (winmdroot.Foundation.HRESULT)ex.HResult; 1841 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1846 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1854 private static winmdroot.Foundation.HRESULT get_marginBottom(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1858 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1864 return winmdroot.Foundation.HRESULT.S_OK; 1868 return (winmdroot.Foundation.HRESULT)ex.HResult; 1875 private static winmdroot.Foundation.HRESULT put_marginLeft(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1879 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1885 return winmdroot.Foundation.HRESULT.S_OK; 1889 return (winmdroot.Foundation.HRESULT)ex.HResult; 1897 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1902 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1910 private static winmdroot.Foundation.HRESULT get_marginLeft(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1914 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1920 return winmdroot.Foundation.HRESULT.S_OK; 1924 return (winmdroot.Foundation.HRESULT)ex.HResult; 1931 private static winmdroot.Foundation.HRESULT put_margin(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 1935 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1941 return winmdroot.Foundation.HRESULT.S_OK; 1945 return (winmdroot.Foundation.HRESULT)ex.HResult; 1953 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1958 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1966 private static winmdroot.Foundation.HRESULT get_margin(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 1970 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1976 return winmdroot.Foundation.HRESULT.S_OK; 1980 return (winmdroot.Foundation.HRESULT)ex.HResult; 1987 private static winmdroot.Foundation.HRESULT put_paddingTop(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1991 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1997 return winmdroot.Foundation.HRESULT.S_OK; 2001 return (winmdroot.Foundation.HRESULT)ex.HResult; 2009 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2014 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2022 private static winmdroot.Foundation.HRESULT get_paddingTop(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2026 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2032 return winmdroot.Foundation.HRESULT.S_OK; 2036 return (winmdroot.Foundation.HRESULT)ex.HResult; 2043 private static winmdroot.Foundation.HRESULT put_paddingRight(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2047 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2053 return winmdroot.Foundation.HRESULT.S_OK; 2057 return (winmdroot.Foundation.HRESULT)ex.HResult; 2065 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2070 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2078 private static winmdroot.Foundation.HRESULT get_paddingRight(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2082 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2088 return winmdroot.Foundation.HRESULT.S_OK; 2092 return (winmdroot.Foundation.HRESULT)ex.HResult; 2099 private static winmdroot.Foundation.HRESULT put_paddingBottom(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2103 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2109 return winmdroot.Foundation.HRESULT.S_OK; 2113 return (winmdroot.Foundation.HRESULT)ex.HResult; 2121 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2126 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2134 private static winmdroot.Foundation.HRESULT get_paddingBottom(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2138 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2144 return winmdroot.Foundation.HRESULT.S_OK; 2148 return (winmdroot.Foundation.HRESULT)ex.HResult; 2155 private static winmdroot.Foundation.HRESULT put_paddingLeft(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2159 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2165 return winmdroot.Foundation.HRESULT.S_OK; 2169 return (winmdroot.Foundation.HRESULT)ex.HResult; 2177 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[79])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2182 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[80])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2190 private static winmdroot.Foundation.HRESULT get_paddingLeft(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2194 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2200 return winmdroot.Foundation.HRESULT.S_OK; 2204 return (winmdroot.Foundation.HRESULT)ex.HResult; 2211 private static winmdroot.Foundation.HRESULT put_padding(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2215 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2221 return winmdroot.Foundation.HRESULT.S_OK; 2225 return (winmdroot.Foundation.HRESULT)ex.HResult; 2233 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2238 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2246 private static winmdroot.Foundation.HRESULT get_padding(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2250 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2256 return winmdroot.Foundation.HRESULT.S_OK; 2260 return (winmdroot.Foundation.HRESULT)ex.HResult; 2267 private static winmdroot.Foundation.HRESULT put_border(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2271 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2277 return winmdroot.Foundation.HRESULT.S_OK; 2281 return (winmdroot.Foundation.HRESULT)ex.HResult; 2289 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2294 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2302 private static winmdroot.Foundation.HRESULT get_border(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2306 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2312 return winmdroot.Foundation.HRESULT.S_OK; 2316 return (winmdroot.Foundation.HRESULT)ex.HResult; 2323 private static winmdroot.Foundation.HRESULT put_borderTop(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2327 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2333 return winmdroot.Foundation.HRESULT.S_OK; 2337 return (winmdroot.Foundation.HRESULT)ex.HResult; 2345 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[85])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2350 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[86])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2358 private static winmdroot.Foundation.HRESULT get_borderTop(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2362 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2368 return winmdroot.Foundation.HRESULT.S_OK; 2372 return (winmdroot.Foundation.HRESULT)ex.HResult; 2379 private static winmdroot.Foundation.HRESULT put_borderRight(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2383 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2389 return winmdroot.Foundation.HRESULT.S_OK; 2393 return (winmdroot.Foundation.HRESULT)ex.HResult; 2401 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[87])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2406 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[88])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2414 private static winmdroot.Foundation.HRESULT get_borderRight(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2418 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2424 return winmdroot.Foundation.HRESULT.S_OK; 2428 return (winmdroot.Foundation.HRESULT)ex.HResult; 2435 private static winmdroot.Foundation.HRESULT put_borderBottom(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2439 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2445 return winmdroot.Foundation.HRESULT.S_OK; 2449 return (winmdroot.Foundation.HRESULT)ex.HResult; 2457 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[89])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2462 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[90])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2470 private static winmdroot.Foundation.HRESULT get_borderBottom(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2474 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2480 return winmdroot.Foundation.HRESULT.S_OK; 2484 return (winmdroot.Foundation.HRESULT)ex.HResult; 2491 private static winmdroot.Foundation.HRESULT put_borderLeft(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2495 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2501 return winmdroot.Foundation.HRESULT.S_OK; 2505 return (winmdroot.Foundation.HRESULT)ex.HResult; 2513 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[91])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2518 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2526 private static winmdroot.Foundation.HRESULT get_borderLeft(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2530 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2536 return winmdroot.Foundation.HRESULT.S_OK; 2540 return (winmdroot.Foundation.HRESULT)ex.HResult; 2547 private static winmdroot.Foundation.HRESULT put_borderColor(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2551 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2557 return winmdroot.Foundation.HRESULT.S_OK; 2561 return (winmdroot.Foundation.HRESULT)ex.HResult; 2569 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[93])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2574 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[94])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2582 private static winmdroot.Foundation.HRESULT get_borderColor(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2586 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2592 return winmdroot.Foundation.HRESULT.S_OK; 2596 return (winmdroot.Foundation.HRESULT)ex.HResult; 2603 private static winmdroot.Foundation.HRESULT put_borderTopColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2607 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2613 return winmdroot.Foundation.HRESULT.S_OK; 2617 return (winmdroot.Foundation.HRESULT)ex.HResult; 2625 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[95])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2630 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[96])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2638 private static winmdroot.Foundation.HRESULT get_borderTopColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2642 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2648 return winmdroot.Foundation.HRESULT.S_OK; 2652 return (winmdroot.Foundation.HRESULT)ex.HResult; 2659 private static winmdroot.Foundation.HRESULT put_borderRightColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2663 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2669 return winmdroot.Foundation.HRESULT.S_OK; 2673 return (winmdroot.Foundation.HRESULT)ex.HResult; 2681 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[97])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2686 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[98])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2694 private static winmdroot.Foundation.HRESULT get_borderRightColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2698 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2704 return winmdroot.Foundation.HRESULT.S_OK; 2708 return (winmdroot.Foundation.HRESULT)ex.HResult; 2715 private static winmdroot.Foundation.HRESULT put_borderBottomColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2719 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2725 return winmdroot.Foundation.HRESULT.S_OK; 2729 return (winmdroot.Foundation.HRESULT)ex.HResult; 2737 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[99])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2742 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[100])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2750 private static winmdroot.Foundation.HRESULT get_borderBottomColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2754 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2760 return winmdroot.Foundation.HRESULT.S_OK; 2764 return (winmdroot.Foundation.HRESULT)ex.HResult; 2771 private static winmdroot.Foundation.HRESULT put_borderLeftColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2775 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2781 return winmdroot.Foundation.HRESULT.S_OK; 2785 return (winmdroot.Foundation.HRESULT)ex.HResult; 2793 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[101])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2798 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[102])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2806 private static winmdroot.Foundation.HRESULT get_borderLeftColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2810 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2816 return winmdroot.Foundation.HRESULT.S_OK; 2820 return (winmdroot.Foundation.HRESULT)ex.HResult; 2827 private static winmdroot.Foundation.HRESULT put_borderWidth(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2831 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2837 return winmdroot.Foundation.HRESULT.S_OK; 2841 return (winmdroot.Foundation.HRESULT)ex.HResult; 2849 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[103])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2854 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[104])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2862 private static winmdroot.Foundation.HRESULT get_borderWidth(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2866 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2872 return winmdroot.Foundation.HRESULT.S_OK; 2876 return (winmdroot.Foundation.HRESULT)ex.HResult; 2883 private static winmdroot.Foundation.HRESULT put_borderTopWidth(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2887 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2893 return winmdroot.Foundation.HRESULT.S_OK; 2897 return (winmdroot.Foundation.HRESULT)ex.HResult; 2905 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[105])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2910 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[106])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2918 private static winmdroot.Foundation.HRESULT get_borderTopWidth(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2922 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2928 return winmdroot.Foundation.HRESULT.S_OK; 2932 return (winmdroot.Foundation.HRESULT)ex.HResult; 2939 private static winmdroot.Foundation.HRESULT put_borderRightWidth(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2943 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2949 return winmdroot.Foundation.HRESULT.S_OK; 2953 return (winmdroot.Foundation.HRESULT)ex.HResult; 2961 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[107])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2966 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[108])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2974 private static winmdroot.Foundation.HRESULT get_borderRightWidth(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2978 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2984 return winmdroot.Foundation.HRESULT.S_OK; 2988 return (winmdroot.Foundation.HRESULT)ex.HResult; 2995 private static winmdroot.Foundation.HRESULT put_borderBottomWidth(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2999 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3005 return winmdroot.Foundation.HRESULT.S_OK; 3009 return (winmdroot.Foundation.HRESULT)ex.HResult; 3017 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[109])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3022 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[110])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3030 private static winmdroot.Foundation.HRESULT get_borderBottomWidth(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 3034 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3040 return winmdroot.Foundation.HRESULT.S_OK; 3044 return (winmdroot.Foundation.HRESULT)ex.HResult; 3051 private static winmdroot.Foundation.HRESULT put_borderLeftWidth(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 3055 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3061 return winmdroot.Foundation.HRESULT.S_OK; 3065 return (winmdroot.Foundation.HRESULT)ex.HResult; 3073 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[111])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3078 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[112])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3086 private static winmdroot.Foundation.HRESULT get_borderLeftWidth(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 3090 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3096 return winmdroot.Foundation.HRESULT.S_OK; 3100 return (winmdroot.Foundation.HRESULT)ex.HResult; 3107 private static winmdroot.Foundation.HRESULT put_borderStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3111 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3117 return winmdroot.Foundation.HRESULT.S_OK; 3121 return (winmdroot.Foundation.HRESULT)ex.HResult; 3129 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[113])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3134 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[114])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3142 private static winmdroot.Foundation.HRESULT get_borderStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3146 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3152 return winmdroot.Foundation.HRESULT.S_OK; 3156 return (winmdroot.Foundation.HRESULT)ex.HResult; 3163 private static winmdroot.Foundation.HRESULT put_borderTopStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3167 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3173 return winmdroot.Foundation.HRESULT.S_OK; 3177 return (winmdroot.Foundation.HRESULT)ex.HResult; 3185 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[115])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3190 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[116])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3198 private static winmdroot.Foundation.HRESULT get_borderTopStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3202 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3208 return winmdroot.Foundation.HRESULT.S_OK; 3212 return (winmdroot.Foundation.HRESULT)ex.HResult; 3219 private static winmdroot.Foundation.HRESULT put_borderRightStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3223 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3229 return winmdroot.Foundation.HRESULT.S_OK; 3233 return (winmdroot.Foundation.HRESULT)ex.HResult; 3241 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[117])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3246 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[118])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3254 private static winmdroot.Foundation.HRESULT get_borderRightStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3258 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3264 return winmdroot.Foundation.HRESULT.S_OK; 3268 return (winmdroot.Foundation.HRESULT)ex.HResult; 3275 private static winmdroot.Foundation.HRESULT put_borderBottomStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3279 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3285 return winmdroot.Foundation.HRESULT.S_OK; 3289 return (winmdroot.Foundation.HRESULT)ex.HResult; 3297 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[119])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3302 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[120])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3310 private static winmdroot.Foundation.HRESULT get_borderBottomStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3314 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3320 return winmdroot.Foundation.HRESULT.S_OK; 3324 return (winmdroot.Foundation.HRESULT)ex.HResult; 3331 private static winmdroot.Foundation.HRESULT put_borderLeftStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3335 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3341 return winmdroot.Foundation.HRESULT.S_OK; 3345 return (winmdroot.Foundation.HRESULT)ex.HResult; 3353 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[121])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3358 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[122])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3366 private static winmdroot.Foundation.HRESULT get_borderLeftStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3370 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3376 return winmdroot.Foundation.HRESULT.S_OK; 3380 return (winmdroot.Foundation.HRESULT)ex.HResult; 3387 private static winmdroot.Foundation.HRESULT put_width(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 3391 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3397 return winmdroot.Foundation.HRESULT.S_OK; 3401 return (winmdroot.Foundation.HRESULT)ex.HResult; 3409 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[123])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3414 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[124])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3422 private static winmdroot.Foundation.HRESULT get_width(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 3426 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3432 return winmdroot.Foundation.HRESULT.S_OK; 3436 return (winmdroot.Foundation.HRESULT)ex.HResult; 3443 private static winmdroot.Foundation.HRESULT put_height(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 3447 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3453 return winmdroot.Foundation.HRESULT.S_OK; 3457 return (winmdroot.Foundation.HRESULT)ex.HResult; 3465 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[125])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3470 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[126])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3478 private static winmdroot.Foundation.HRESULT get_height(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 3482 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3488 return winmdroot.Foundation.HRESULT.S_OK; 3492 return (winmdroot.Foundation.HRESULT)ex.HResult; 3499 private static winmdroot.Foundation.HRESULT put_styleFloat(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3503 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3509 return winmdroot.Foundation.HRESULT.S_OK; 3513 return (winmdroot.Foundation.HRESULT)ex.HResult; 3521 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[127])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3526 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[128])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3534 private static winmdroot.Foundation.HRESULT get_styleFloat(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3538 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3544 return winmdroot.Foundation.HRESULT.S_OK; 3548 return (winmdroot.Foundation.HRESULT)ex.HResult; 3555 private static winmdroot.Foundation.HRESULT put_clear(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3559 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3565 return winmdroot.Foundation.HRESULT.S_OK; 3569 return (winmdroot.Foundation.HRESULT)ex.HResult; 3577 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[129])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3582 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[130])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3590 private static winmdroot.Foundation.HRESULT get_clear(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3594 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3600 return winmdroot.Foundation.HRESULT.S_OK; 3604 return (winmdroot.Foundation.HRESULT)ex.HResult; 3611 private static winmdroot.Foundation.HRESULT put_display(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3615 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3621 return winmdroot.Foundation.HRESULT.S_OK; 3625 return (winmdroot.Foundation.HRESULT)ex.HResult; 3633 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[131])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3638 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[132])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3646 private static winmdroot.Foundation.HRESULT get_display(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3650 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3656 return winmdroot.Foundation.HRESULT.S_OK; 3660 return (winmdroot.Foundation.HRESULT)ex.HResult; 3667 private static winmdroot.Foundation.HRESULT put_visibility(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3671 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3677 return winmdroot.Foundation.HRESULT.S_OK; 3681 return (winmdroot.Foundation.HRESULT)ex.HResult; 3689 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[133])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3694 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[134])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3702 private static winmdroot.Foundation.HRESULT get_visibility(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3706 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3712 return winmdroot.Foundation.HRESULT.S_OK; 3716 return (winmdroot.Foundation.HRESULT)ex.HResult; 3723 private static winmdroot.Foundation.HRESULT put_listStyleType(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3727 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3733 return winmdroot.Foundation.HRESULT.S_OK; 3737 return (winmdroot.Foundation.HRESULT)ex.HResult; 3745 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[135])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3750 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[136])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3758 private static winmdroot.Foundation.HRESULT get_listStyleType(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3762 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3768 return winmdroot.Foundation.HRESULT.S_OK; 3772 return (winmdroot.Foundation.HRESULT)ex.HResult; 3779 private static winmdroot.Foundation.HRESULT put_listStylePosition(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3783 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3789 return winmdroot.Foundation.HRESULT.S_OK; 3793 return (winmdroot.Foundation.HRESULT)ex.HResult; 3801 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[137])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3806 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[138])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3814 private static winmdroot.Foundation.HRESULT get_listStylePosition(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3818 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3824 return winmdroot.Foundation.HRESULT.S_OK; 3828 return (winmdroot.Foundation.HRESULT)ex.HResult; 3835 private static winmdroot.Foundation.HRESULT put_listStyleImage(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3839 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3845 return winmdroot.Foundation.HRESULT.S_OK; 3849 return (winmdroot.Foundation.HRESULT)ex.HResult; 3857 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[139])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3862 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[140])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3870 private static winmdroot.Foundation.HRESULT get_listStyleImage(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3874 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3880 return winmdroot.Foundation.HRESULT.S_OK; 3884 return (winmdroot.Foundation.HRESULT)ex.HResult; 3891 private static winmdroot.Foundation.HRESULT put_listStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3895 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3901 return winmdroot.Foundation.HRESULT.S_OK; 3905 return (winmdroot.Foundation.HRESULT)ex.HResult; 3913 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[141])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3918 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[142])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3926 private static winmdroot.Foundation.HRESULT get_listStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3930 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3936 return winmdroot.Foundation.HRESULT.S_OK; 3940 return (winmdroot.Foundation.HRESULT)ex.HResult; 3947 private static winmdroot.Foundation.HRESULT put_whiteSpace(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3951 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3957 return winmdroot.Foundation.HRESULT.S_OK; 3961 return (winmdroot.Foundation.HRESULT)ex.HResult; 3969 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[143])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3974 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[144])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3982 private static winmdroot.Foundation.HRESULT get_whiteSpace(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3986 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 3992 return winmdroot.Foundation.HRESULT.S_OK; 3996 return (winmdroot.Foundation.HRESULT)ex.HResult; 4003 private static winmdroot.Foundation.HRESULT put_top(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 4007 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4013 return winmdroot.Foundation.HRESULT.S_OK; 4017 return (winmdroot.Foundation.HRESULT)ex.HResult; 4025 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[145])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4030 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[146])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4038 private static winmdroot.Foundation.HRESULT get_top(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 4042 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4048 return winmdroot.Foundation.HRESULT.S_OK; 4052 return (winmdroot.Foundation.HRESULT)ex.HResult; 4059 private static winmdroot.Foundation.HRESULT put_left(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 4063 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4069 return winmdroot.Foundation.HRESULT.S_OK; 4073 return (winmdroot.Foundation.HRESULT)ex.HResult; 4081 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[147])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4086 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[148])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4094 private static winmdroot.Foundation.HRESULT get_left(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 4098 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4104 return winmdroot.Foundation.HRESULT.S_OK; 4108 return (winmdroot.Foundation.HRESULT)ex.HResult; 4115 private static winmdroot.Foundation.HRESULT get_position(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4119 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4125 return winmdroot.Foundation.HRESULT.S_OK; 4129 return (winmdroot.Foundation.HRESULT)ex.HResult; 4138 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[149])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4146 private static winmdroot.Foundation.HRESULT put_zIndex(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 4150 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4156 return winmdroot.Foundation.HRESULT.S_OK; 4160 return (winmdroot.Foundation.HRESULT)ex.HResult; 4168 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[150])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4173 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[151])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4181 private static winmdroot.Foundation.HRESULT get_zIndex(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 4185 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4191 return winmdroot.Foundation.HRESULT.S_OK; 4195 return (winmdroot.Foundation.HRESULT)ex.HResult; 4202 private static winmdroot.Foundation.HRESULT put_overflow(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4206 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4212 return winmdroot.Foundation.HRESULT.S_OK; 4216 return (winmdroot.Foundation.HRESULT)ex.HResult; 4224 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[152])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4229 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[153])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4237 private static winmdroot.Foundation.HRESULT get_overflow(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4241 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4247 return winmdroot.Foundation.HRESULT.S_OK; 4251 return (winmdroot.Foundation.HRESULT)ex.HResult; 4258 private static winmdroot.Foundation.HRESULT put_pageBreakBefore(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4262 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4268 return winmdroot.Foundation.HRESULT.S_OK; 4272 return (winmdroot.Foundation.HRESULT)ex.HResult; 4280 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[154])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4285 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[155])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4293 private static winmdroot.Foundation.HRESULT get_pageBreakBefore(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4297 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4303 return winmdroot.Foundation.HRESULT.S_OK; 4307 return (winmdroot.Foundation.HRESULT)ex.HResult; 4314 private static winmdroot.Foundation.HRESULT put_pageBreakAfter(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4318 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4324 return winmdroot.Foundation.HRESULT.S_OK; 4328 return (winmdroot.Foundation.HRESULT)ex.HResult; 4336 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[156])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4341 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[157])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4349 private static winmdroot.Foundation.HRESULT get_pageBreakAfter(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4353 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4359 return winmdroot.Foundation.HRESULT.S_OK; 4363 return (winmdroot.Foundation.HRESULT)ex.HResult; 4370 private static winmdroot.Foundation.HRESULT put_cssText(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4374 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4383 return (winmdroot.Foundation.HRESULT)ex.HResult; 4387 public winmdroot.Foundation.HRESULT put_cssText(winmdroot.Foundation.BSTR v) 4389 return ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[158])((IHTMLStyle*)Unsafe.AsPointer(ref this), v); 4394 internal unsafe winmdroot.Foundation.HRESULT get_cssText(out winmdroot.Foundation.BSTR p) 4398 winmdroot.Foundation.HRESULT __result = this.get_cssText(pLocal); 4406 private static winmdroot.Foundation.HRESULT get_cssText(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4410 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4419 return (winmdroot.Foundation.HRESULT)ex.HResult; 4423 public unsafe winmdroot.Foundation.HRESULT get_cssText(winmdroot.Foundation.BSTR* p) 4425 return ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[159])((IHTMLStyle*)Unsafe.AsPointer(ref this), p); 4431 private static winmdroot.Foundation.HRESULT put_pixelTop(IHTMLStyle* pThis, int v) 4435 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4441 return winmdroot.Foundation.HRESULT.S_OK; 4445 return (winmdroot.Foundation.HRESULT)ex.HResult; 4453 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[160])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4458 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[161])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4466 private static winmdroot.Foundation.HRESULT get_pixelTop(IHTMLStyle* pThis, int* p) 4470 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4476 return winmdroot.Foundation.HRESULT.S_OK; 4480 return (winmdroot.Foundation.HRESULT)ex.HResult; 4487 private static winmdroot.Foundation.HRESULT put_pixelLeft(IHTMLStyle* pThis, int v) 4491 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4497 return winmdroot.Foundation.HRESULT.S_OK; 4501 return (winmdroot.Foundation.HRESULT)ex.HResult; 4509 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[162])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4514 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[163])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4522 private static winmdroot.Foundation.HRESULT get_pixelLeft(IHTMLStyle* pThis, int* p) 4526 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4532 return winmdroot.Foundation.HRESULT.S_OK; 4536 return (winmdroot.Foundation.HRESULT)ex.HResult; 4543 private static winmdroot.Foundation.HRESULT put_pixelWidth(IHTMLStyle* pThis, int v) 4547 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4553 return winmdroot.Foundation.HRESULT.S_OK; 4557 return (winmdroot.Foundation.HRESULT)ex.HResult; 4565 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[164])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4570 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[165])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4578 private static winmdroot.Foundation.HRESULT get_pixelWidth(IHTMLStyle* pThis, int* p) 4582 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4588 return winmdroot.Foundation.HRESULT.S_OK; 4592 return (winmdroot.Foundation.HRESULT)ex.HResult; 4599 private static winmdroot.Foundation.HRESULT put_pixelHeight(IHTMLStyle* pThis, int v) 4603 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4609 return winmdroot.Foundation.HRESULT.S_OK; 4613 return (winmdroot.Foundation.HRESULT)ex.HResult; 4621 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[166])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4626 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[167])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4634 private static winmdroot.Foundation.HRESULT get_pixelHeight(IHTMLStyle* pThis, int* p) 4638 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4644 return winmdroot.Foundation.HRESULT.S_OK; 4648 return (winmdroot.Foundation.HRESULT)ex.HResult; 4655 private static winmdroot.Foundation.HRESULT put_posTop(IHTMLStyle* pThis, float v) 4659 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4665 return winmdroot.Foundation.HRESULT.S_OK; 4669 return (winmdroot.Foundation.HRESULT)ex.HResult; 4677 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[168])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4682 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[169])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4690 private static winmdroot.Foundation.HRESULT get_posTop(IHTMLStyle* pThis, float* p) 4694 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4700 return winmdroot.Foundation.HRESULT.S_OK; 4704 return (winmdroot.Foundation.HRESULT)ex.HResult; 4711 private static winmdroot.Foundation.HRESULT put_posLeft(IHTMLStyle* pThis, float v) 4715 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4721 return winmdroot.Foundation.HRESULT.S_OK; 4725 return (winmdroot.Foundation.HRESULT)ex.HResult; 4733 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[170])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4738 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[171])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4746 private static winmdroot.Foundation.HRESULT get_posLeft(IHTMLStyle* pThis, float* p) 4750 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4756 return winmdroot.Foundation.HRESULT.S_OK; 4760 return (winmdroot.Foundation.HRESULT)ex.HResult; 4767 private static winmdroot.Foundation.HRESULT put_posWidth(IHTMLStyle* pThis, float v) 4771 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4777 return winmdroot.Foundation.HRESULT.S_OK; 4781 return (winmdroot.Foundation.HRESULT)ex.HResult; 4789 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[172])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4794 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[173])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4802 private static winmdroot.Foundation.HRESULT get_posWidth(IHTMLStyle* pThis, float* p) 4806 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4812 return winmdroot.Foundation.HRESULT.S_OK; 4816 return (winmdroot.Foundation.HRESULT)ex.HResult; 4823 private static winmdroot.Foundation.HRESULT put_posHeight(IHTMLStyle* pThis, float v) 4827 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4833 return winmdroot.Foundation.HRESULT.S_OK; 4837 return (winmdroot.Foundation.HRESULT)ex.HResult; 4845 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[174])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4850 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[175])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4858 private static winmdroot.Foundation.HRESULT get_posHeight(IHTMLStyle* pThis, float* p) 4862 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4868 return winmdroot.Foundation.HRESULT.S_OK; 4872 return (winmdroot.Foundation.HRESULT)ex.HResult; 4879 private static winmdroot.Foundation.HRESULT put_cursor(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4883 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4889 return winmdroot.Foundation.HRESULT.S_OK; 4893 return (winmdroot.Foundation.HRESULT)ex.HResult; 4901 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[176])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4906 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[177])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4914 private static winmdroot.Foundation.HRESULT get_cursor(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4918 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4924 return winmdroot.Foundation.HRESULT.S_OK; 4928 return (winmdroot.Foundation.HRESULT)ex.HResult; 4935 private static winmdroot.Foundation.HRESULT put_clip(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4939 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4945 return winmdroot.Foundation.HRESULT.S_OK; 4949 return (winmdroot.Foundation.HRESULT)ex.HResult; 4957 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[178])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4962 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[179])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4970 private static winmdroot.Foundation.HRESULT get_clip(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4974 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 4980 return winmdroot.Foundation.HRESULT.S_OK; 4984 return (winmdroot.Foundation.HRESULT)ex.HResult; 4991 private static winmdroot.Foundation.HRESULT put_filter(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4995 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 5001 return winmdroot.Foundation.HRESULT.S_OK; 5005 return (winmdroot.Foundation.HRESULT)ex.HResult; 5013 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[180])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 5018 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[181])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 5026 private static winmdroot.Foundation.HRESULT get_filter(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 5030 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 5036 return winmdroot.Foundation.HRESULT.S_OK; 5040 return (winmdroot.Foundation.HRESULT)ex.HResult; 5047 private static winmdroot.Foundation.HRESULT setAttribute(IHTMLStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags) 5051 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 5060 return (winmdroot.Foundation.HRESULT)ex.HResult; 5066 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[182])((IHTMLStyle*)Unsafe.AsPointer(ref this), strAttributeName, AttributeValue, lFlags).ThrowOnFailure(); 5072 private static winmdroot.Foundation.HRESULT getAttribute(IHTMLStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue) 5076 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 5085 return (winmdroot.Foundation.HRESULT)ex.HResult; 5092 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[183])((IHTMLStyle*)Unsafe.AsPointer(ref this), strAttributeName, lFlags, &__retVal).ThrowOnFailure(); 5099 private static winmdroot.Foundation.HRESULT removeAttribute(IHTMLStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess) 5103 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 5112 return (winmdroot.Foundation.HRESULT)ex.HResult; 5119 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[184])((IHTMLStyle*)Unsafe.AsPointer(ref this), strAttributeName, lFlags, &__retVal).ThrowOnFailure(); 5126 private static winmdroot.Foundation.HRESULT toString(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* String) 5130 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 5139 return (winmdroot.Foundation.HRESULT)ex.HResult; 5146 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[185])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 5150 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 5156 var hr = this.QueryInterface(&guid, &pv); 5173 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 5179 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 5181 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 5183 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 5185 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; 5187 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontFamily_8; 5189 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontFamily_9; 5191 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontStyle_10; 5193 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontStyle_11; 5195 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontVariant_12; 5197 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontVariant_13; 5199 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontWeight_14; 5201 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontWeight_15; 5203 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_fontSize_16; 5205 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_fontSize_17; 5207 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_font_18; 5209 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_font_19; 5211 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_color_20; 5213 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_color_21; 5215 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_background_22; 5217 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_background_23; 5219 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_backgroundColor_24; 5221 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundColor_25; 5223 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundImage_26; 5225 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundImage_27; 5227 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundRepeat_28; 5229 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundRepeat_29; 5231 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundAttachment_30; 5233 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundAttachment_31; 5235 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundPosition_32; 5237 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundPosition_33; 5239 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_backgroundPositionX_34; 5241 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundPositionX_35; 5243 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_backgroundPositionY_36; 5245 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundPositionY_37; 5247 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_wordSpacing_38; 5249 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_wordSpacing_39; 5251 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_letterSpacing_40; 5253 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_letterSpacing_41; 5255 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textDecoration_42; 5257 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textDecoration_43; 5259 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationNone_44; 5261 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationNone_45; 5263 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationUnderline_46; 5265 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationUnderline_47; 5267 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationOverline_48; 5269 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationOverline_49; 5271 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationLineThrough_50; 5273 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationLineThrough_51; 5275 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationBlink_52; 5277 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationBlink_53; 5279 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_verticalAlign_54; 5281 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_verticalAlign_55; 5283 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textTransform_56; 5285 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textTransform_57; 5287 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textAlign_58; 5289 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textAlign_59; 5291 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_textIndent_60; 5293 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_textIndent_61; 5295 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_lineHeight_62; 5297 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_lineHeight_63; 5299 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginTop_64; 5301 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginTop_65; 5303 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginRight_66; 5305 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginRight_67; 5307 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginBottom_68; 5309 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginBottom_69; 5311 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginLeft_70; 5313 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginLeft_71; 5315 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_margin_72; 5317 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_margin_73; 5319 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_paddingTop_74; 5321 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingTop_75; 5323 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_paddingRight_76; 5325 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingRight_77; 5327 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_paddingBottom_78; 5329 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingBottom_79; 5331 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_paddingLeft_80; 5333 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingLeft_81; 5335 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_padding_82; 5337 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_padding_83; 5339 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_border_84; 5341 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_border_85; 5343 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderTop_86; 5345 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderTop_87; 5347 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderRight_88; 5349 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderRight_89; 5351 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderBottom_90; 5353 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderBottom_91; 5355 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderLeft_92; 5357 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderLeft_93; 5359 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderColor_94; 5361 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderColor_95; 5363 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderTopColor_96; 5365 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderTopColor_97; 5367 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderRightColor_98; 5369 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderRightColor_99; 5371 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderBottomColor_100; 5373 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderBottomColor_101; 5375 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderLeftColor_102; 5377 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderLeftColor_103; 5379 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderWidth_104; 5381 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderWidth_105; 5383 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderTopWidth_106; 5385 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderTopWidth_107; 5387 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderRightWidth_108; 5389 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderRightWidth_109; 5391 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderBottomWidth_110; 5393 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderBottomWidth_111; 5395 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderLeftWidth_112; 5397 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderLeftWidth_113; 5399 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderStyle_114; 5401 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderStyle_115; 5403 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderTopStyle_116; 5405 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderTopStyle_117; 5407 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderRightStyle_118; 5409 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderRightStyle_119; 5411 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderBottomStyle_120; 5413 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderBottomStyle_121; 5415 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderLeftStyle_122; 5417 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderLeftStyle_123; 5419 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_width_124; 5421 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_width_125; 5423 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_height_126; 5425 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_height_127; 5427 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_styleFloat_128; 5429 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_styleFloat_129; 5431 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_clear_130; 5433 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_clear_131; 5435 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_display_132; 5437 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_display_133; 5439 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_visibility_134; 5441 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_visibility_135; 5443 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyleType_136; 5445 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleType_137; 5447 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStylePosition_138; 5449 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStylePosition_139; 5451 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyleImage_140; 5453 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleImage_141; 5455 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyle_142; 5457 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyle_143; 5459 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_whiteSpace_144; 5461 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_whiteSpace_145; 5463 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_top_146; 5465 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_top_147; 5467 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_left_148; 5469 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_left_149; 5471 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_position_150; 5473 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_zIndex_151; 5475 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_zIndex_152; 5477 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_overflow_153; 5479 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_overflow_154; 5481 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_pageBreakBefore_155; 5483 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakBefore_156; 5485 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_pageBreakAfter_157; 5487 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakAfter_158; 5489 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cssText_159; 5491 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cssText_160; 5493 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,winmdroot.Foundation.HRESULT> put_pixelTop_161; 5495 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int* ,winmdroot.Foundation.HRESULT> get_pixelTop_162; 5497 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,winmdroot.Foundation.HRESULT> put_pixelLeft_163; 5499 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int* ,winmdroot.Foundation.HRESULT> get_pixelLeft_164; 5501 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,winmdroot.Foundation.HRESULT> put_pixelWidth_165; 5503 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int* ,winmdroot.Foundation.HRESULT> get_pixelWidth_166; 5505 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,winmdroot.Foundation.HRESULT> put_pixelHeight_167; 5507 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int* ,winmdroot.Foundation.HRESULT> get_pixelHeight_168; 5509 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,float ,winmdroot.Foundation.HRESULT> put_posTop_169; 5511 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,float* ,winmdroot.Foundation.HRESULT> get_posTop_170; 5513 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,float ,winmdroot.Foundation.HRESULT> put_posLeft_171; 5515 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,float* ,winmdroot.Foundation.HRESULT> get_posLeft_172; 5517 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,float ,winmdroot.Foundation.HRESULT> put_posWidth_173; 5519 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,float* ,winmdroot.Foundation.HRESULT> get_posWidth_174; 5521 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,float ,winmdroot.Foundation.HRESULT> put_posHeight_175; 5523 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,float* ,winmdroot.Foundation.HRESULT> get_posHeight_176; 5525 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cursor_177; 5527 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cursor_178; 5529 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_clip_179; 5531 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_clip_180; 5533 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_filter_181; 5535 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_filter_182; 5537 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,int ,winmdroot.Foundation.HRESULT> setAttribute_183; 5539 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getAttribute_184; 5541 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> removeAttribute_185; 5543 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_186; 6202winmdroot.Foundation.HRESULT put_cssText(winmdroot.Foundation.BSTR v); 6205 unsafe winmdroot.Foundation.HRESULT get_cssText(winmdroot.Foundation.BSTR* p); 6274winmdroot.Foundation.HRESULT setAttribute(winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags); 6277 unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue); 6280 unsafe winmdroot.Foundation.HRESULT removeAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess); 6283 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* String);
_generated\172\Windows.Win32.IHTMLStyleSheet.g.cs (141)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT put_title(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR v) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 166 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_title(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 178 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 184 return winmdroot.Foundation.HRESULT.S_OK; 188 return (winmdroot.Foundation.HRESULT)ex.HResult; 195 private static winmdroot.Foundation.HRESULT get_parentStyleSheet(IHTMLStyleSheet* pThis, winmdroot.Web.MsHtml.IHTMLStyleSheet** p) 199 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 205 return winmdroot.Foundation.HRESULT.S_OK; 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 218 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Web.MsHtml.IHTMLStyleSheet** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 226 private static winmdroot.Foundation.HRESULT get_owningElement(IHTMLStyleSheet* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 230 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 236 return winmdroot.Foundation.HRESULT.S_OK; 240 return (winmdroot.Foundation.HRESULT)ex.HResult; 249 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 257 private static winmdroot.Foundation.HRESULT put_disabled(IHTMLStyleSheet* pThis, winmdroot.Foundation.VARIANT_BOOL v) 261 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 267 return winmdroot.Foundation.HRESULT.S_OK; 271 return (winmdroot.Foundation.HRESULT)ex.HResult; 279 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 284 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 292 private static winmdroot.Foundation.HRESULT get_disabled(IHTMLStyleSheet* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 296 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 302 return winmdroot.Foundation.HRESULT.S_OK; 306 return (winmdroot.Foundation.HRESULT)ex.HResult; 313 private static winmdroot.Foundation.HRESULT get_readOnly(IHTMLStyleSheet* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 317 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 323 return winmdroot.Foundation.HRESULT.S_OK; 327 return (winmdroot.Foundation.HRESULT)ex.HResult; 336 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 344 private static winmdroot.Foundation.HRESULT get_imports(IHTMLStyleSheet* pThis, winmdroot.Web.MsHtml.IHTMLStyleSheetsCollection** p) 348 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 354 return winmdroot.Foundation.HRESULT.S_OK; 358 return (winmdroot.Foundation.HRESULT)ex.HResult; 367 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Web.MsHtml.IHTMLStyleSheetsCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 375 private static winmdroot.Foundation.HRESULT put_href(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR v) 379 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 385 return winmdroot.Foundation.HRESULT.S_OK; 389 return (winmdroot.Foundation.HRESULT)ex.HResult; 397 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 402 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 410 private static winmdroot.Foundation.HRESULT get_href(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 414 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 420 return winmdroot.Foundation.HRESULT.S_OK; 424 return (winmdroot.Foundation.HRESULT)ex.HResult; 431 private static winmdroot.Foundation.HRESULT get_type(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 435 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 441 return winmdroot.Foundation.HRESULT.S_OK; 445 return (winmdroot.Foundation.HRESULT)ex.HResult; 454 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 462 private static winmdroot.Foundation.HRESULT get_id(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 466 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 472 return winmdroot.Foundation.HRESULT.S_OK; 476 return (winmdroot.Foundation.HRESULT)ex.HResult; 485 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 493 private static winmdroot.Foundation.HRESULT addImport(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR bstrURL, int lIndex, int* plIndex) 497 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 506 return (winmdroot.Foundation.HRESULT)ex.HResult; 513 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), bstrURL, lIndex, &__retVal).ThrowOnFailure(); 520 private static winmdroot.Foundation.HRESULT addRule(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR bstrSelector, winmdroot.Foundation.BSTR bstrStyle, int lIndex, int* plNewIndex) 524 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 533 return (winmdroot.Foundation.HRESULT)ex.HResult; 540 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), bstrSelector, bstrStyle, lIndex, &__retVal).ThrowOnFailure(); 547 private static winmdroot.Foundation.HRESULT removeImport(IHTMLStyleSheet* pThis, int lIndex) 551 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 560 return (winmdroot.Foundation.HRESULT)ex.HResult; 566 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), lIndex).ThrowOnFailure(); 572 private static winmdroot.Foundation.HRESULT removeRule(IHTMLStyleSheet* pThis, int lIndex) 576 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 585 return (winmdroot.Foundation.HRESULT)ex.HResult; 591 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), lIndex).ThrowOnFailure(); 597 private static winmdroot.Foundation.HRESULT put_media(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR v) 601 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 607 return winmdroot.Foundation.HRESULT.S_OK; 611 return (winmdroot.Foundation.HRESULT)ex.HResult; 619 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 624 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 632 private static winmdroot.Foundation.HRESULT get_media(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 636 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 642 return winmdroot.Foundation.HRESULT.S_OK; 646 return (winmdroot.Foundation.HRESULT)ex.HResult; 653 private static winmdroot.Foundation.HRESULT put_cssText(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR v) 657 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 663 return winmdroot.Foundation.HRESULT.S_OK; 667 return (winmdroot.Foundation.HRESULT)ex.HResult; 675 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 680 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 688 private static winmdroot.Foundation.HRESULT get_cssText(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 692 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 698 return winmdroot.Foundation.HRESULT.S_OK; 702 return (winmdroot.Foundation.HRESULT)ex.HResult; 709 private static winmdroot.Foundation.HRESULT get_rules(IHTMLStyleSheet* pThis, winmdroot.Web.MsHtml.IHTMLStyleSheetRulesCollection** p) 713 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 719 return winmdroot.Foundation.HRESULT.S_OK; 723 return (winmdroot.Foundation.HRESULT)ex.HResult; 732 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Web.MsHtml.IHTMLStyleSheetRulesCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 737 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 743 var hr = this.QueryInterface(&guid, &pv); 760 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 766 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 768 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 770 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 772 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; 774 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_title_8; 776 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_title_9; 778 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Web.MsHtml.IHTMLStyleSheet** ,winmdroot.Foundation.HRESULT> get_parentStyleSheet_10; 780 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_owningElement_11; 782 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_disabled_12; 784 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_disabled_13; 786 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_readOnly_14; 788 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Web.MsHtml.IHTMLStyleSheetsCollection** ,winmdroot.Foundation.HRESULT> get_imports_15; 790 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_href_16; 792 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_href_17; 794 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_type_18; 796 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_id_19; 798 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,int ,int* ,winmdroot.Foundation.HRESULT> addImport_20; 800 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,int ,int* ,winmdroot.Foundation.HRESULT> addRule_21; 802 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,int ,winmdroot.Foundation.HRESULT> removeImport_22; 804 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,int ,winmdroot.Foundation.HRESULT> removeRule_23; 806 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_media_24; 808 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_media_25; 810 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cssText_26; 812 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cssText_27; 814 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Web.MsHtml.IHTMLStyleSheetRulesCollection** ,winmdroot.Foundation.HRESULT> get_rules_28; 908 unsafe winmdroot.Foundation.HRESULT addImport(winmdroot.Foundation.BSTR bstrURL, int lIndex, int* plIndex); 911 unsafe winmdroot.Foundation.HRESULT addRule(winmdroot.Foundation.BSTR bstrSelector, winmdroot.Foundation.BSTR bstrStyle, int lIndex, int* plNewIndex); 914winmdroot.Foundation.HRESULT removeImport(int lIndex); 917winmdroot.Foundation.HRESULT removeRule(int lIndex);
_generated\173\Windows.Win32.IHTMLStyleSheetRule.g.cs (39)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT put_selectorText(IHTMLStyleSheetRule* pThis, winmdroot.Foundation.BSTR v) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 166 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_selectorText(IHTMLStyleSheetRule* pThis, winmdroot.Foundation.BSTR* p) 178 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 184 return winmdroot.Foundation.HRESULT.S_OK; 188 return (winmdroot.Foundation.HRESULT)ex.HResult; 195 private static winmdroot.Foundation.HRESULT get_style(IHTMLStyleSheetRule* pThis, winmdroot.Web.MsHtml.IHTMLRuleStyle** p) 199 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 205 return winmdroot.Foundation.HRESULT.S_OK; 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 218 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Web.MsHtml.IHTMLRuleStyle** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 226 private static winmdroot.Foundation.HRESULT get_readOnly(IHTMLStyleSheetRule* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 230 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 236 return winmdroot.Foundation.HRESULT.S_OK; 240 return (winmdroot.Foundation.HRESULT)ex.HResult; 249 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 254 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 260 var hr = this.QueryInterface(&guid, &pv); 277 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 283 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 285 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 287 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 289 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; 291 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_selectorText_8; 293 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_selectorText_9; 295 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Web.MsHtml.IHTMLRuleStyle** ,winmdroot.Foundation.HRESULT> get_style_10; 297 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_readOnly_11;
_generated\174\Windows.Win32.IHTMLStyleSheetRulesCollection.g.cs (27)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLStyleSheetRulesCollection*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLStyleSheetRulesCollection*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLStyleSheetRulesCollection*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT get_length(IHTMLStyleSheetRulesCollection* pThis, int* p) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLStyleSheetRulesCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT item(IHTMLStyleSheetRulesCollection* pThis, int index, winmdroot.Web.MsHtml.IHTMLStyleSheetRule** ppHTMLStyleSheetRule) 174 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 183 return (winmdroot.Foundation.HRESULT)ex.HResult; 190 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,int ,winmdroot.Web.MsHtml.IHTMLStyleSheetRule** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLStyleSheetRulesCollection*)Unsafe.AsPointer(ref this), index, &__retVal).ThrowOnFailure(); 194 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 200 var hr = this.QueryInterface(&guid, &pv); 217 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 223 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 225 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 227 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 229 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; 231 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,int* ,winmdroot.Foundation.HRESULT> get_length_8; 233 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,int ,winmdroot.Web.MsHtml.IHTMLStyleSheetRule** ,winmdroot.Foundation.HRESULT> item_9; 265 unsafe winmdroot.Foundation.HRESULT item(int index, winmdroot.Web.MsHtml.IHTMLStyleSheetRule** ppHTMLStyleSheetRule);
_generated\175\Windows.Win32.IHTMLStyleSheetsCollection.g.cs (33)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLStyleSheetsCollection*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLStyleSheetsCollection*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLStyleSheetsCollection*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT get_length(IHTMLStyleSheetsCollection* pThis, int* p) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLStyleSheetsCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT get__newEnum(IHTMLStyleSheetsCollection* pThis, winmdroot.System.Com.IUnknown** p) 174 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLStyleSheetsCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 212 private static winmdroot.Foundation.HRESULT item(IHTMLStyleSheetsCollection* pThis, winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult) 216 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 225 return (winmdroot.Foundation.HRESULT)ex.HResult; 232 ((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(); 236 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 242 var hr = this.QueryInterface(&guid, &pv); 259 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 265 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 267 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 269 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 271 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; 273 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,int* ,winmdroot.Foundation.HRESULT> get_length_8; 275 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> get__newEnum_9; 277 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> item_10; 315 unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult);
_generated\176\Windows.Win32.IHTMLWindow2.g.cs (472)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLWindow2*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLWindow2*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLWindow2*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 150 private static winmdroot.Foundation.HRESULT item(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult) 154 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 ((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(); 176 internal unsafe winmdroot.Foundation.HRESULT get_length(out int p) 180 winmdroot.Foundation.HRESULT __result = this.get_length(pLocal); 188 private static winmdroot.Foundation.HRESULT get_length(IHTMLWindow2* pThis, int* p) 192 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 201 return (winmdroot.Foundation.HRESULT)ex.HResult; 205 public unsafe winmdroot.Foundation.HRESULT get_length(int* p) 207 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 213 private static winmdroot.Foundation.HRESULT get_frames(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLFramesCollection2** p) 217 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 226 return (winmdroot.Foundation.HRESULT)ex.HResult; 230 public unsafe winmdroot.Foundation.HRESULT get_frames(winmdroot.Web.MsHtml.IHTMLFramesCollection2** p) 232 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLFramesCollection2** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 238 private static winmdroot.Foundation.HRESULT put_defaultStatus(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR v) 242 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 248 return winmdroot.Foundation.HRESULT.S_OK; 252 return (winmdroot.Foundation.HRESULT)ex.HResult; 260 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 265 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 273 private static winmdroot.Foundation.HRESULT get_defaultStatus(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR* p) 277 winmdroot.Foundation.HRESULT __hr = winmdroot.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_status(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR v) 298 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 307 return (winmdroot.Foundation.HRESULT)ex.HResult; 311 public winmdroot.Foundation.HRESULT put_status(winmdroot.Foundation.BSTR v) 313 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLWindow2*)Unsafe.AsPointer(ref this), v); 318 internal unsafe winmdroot.Foundation.HRESULT get_status(out winmdroot.Foundation.BSTR p) 322 winmdroot.Foundation.HRESULT __result = this.get_status(pLocal); 330 private static winmdroot.Foundation.HRESULT get_status(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR* p) 334 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 343 return (winmdroot.Foundation.HRESULT)ex.HResult; 347 public unsafe winmdroot.Foundation.HRESULT get_status(winmdroot.Foundation.BSTR* p) 349 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 366 private static winmdroot.Foundation.HRESULT setTimeout(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID) 370 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 379 return (winmdroot.Foundation.HRESULT)ex.HResult; 386 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLWindow2*)Unsafe.AsPointer(ref this), expression, msec, language, &__retVal).ThrowOnFailure(); 393 private static winmdroot.Foundation.HRESULT clearTimeout(IHTMLWindow2* pThis, int timerID) 397 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 406 return (winmdroot.Foundation.HRESULT)ex.HResult; 412 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLWindow2*)Unsafe.AsPointer(ref this), timerID).ThrowOnFailure(); 418 private static winmdroot.Foundation.HRESULT alert(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR message) 422 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 431 return (winmdroot.Foundation.HRESULT)ex.HResult; 435 public winmdroot.Foundation.HRESULT alert(winmdroot.Foundation.BSTR message) 437 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLWindow2*)Unsafe.AsPointer(ref this), message); 442 internal unsafe winmdroot.Foundation.HRESULT confirm(winmdroot.Foundation.BSTR message, out winmdroot.Foundation.VARIANT_BOOL confirmed) 446 winmdroot.Foundation.HRESULT __result = this.confirm(message, confirmedLocal); 454 private static winmdroot.Foundation.HRESULT confirm(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR message, winmdroot.Foundation.VARIANT_BOOL* confirmed) 458 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 467 return (winmdroot.Foundation.HRESULT)ex.HResult; 471 public unsafe winmdroot.Foundation.HRESULT confirm(winmdroot.Foundation.BSTR message, winmdroot.Foundation.VARIANT_BOOL* confirmed) 473 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLWindow2*)Unsafe.AsPointer(ref this), message, confirmed); 478 internal unsafe winmdroot.Foundation.HRESULT prompt(winmdroot.Foundation.BSTR message, winmdroot.Foundation.BSTR defstr, out winmdroot.System.Variant.VARIANT textdata) 482 winmdroot.Foundation.HRESULT __result = this.prompt(message, defstr, textdataLocal); 490 private static winmdroot.Foundation.HRESULT prompt(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR message, winmdroot.Foundation.BSTR defstr, winmdroot.System.Variant.VARIANT* textdata) 494 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 503 return (winmdroot.Foundation.HRESULT)ex.HResult; 507 public unsafe winmdroot.Foundation.HRESULT prompt(winmdroot.Foundation.BSTR message, winmdroot.Foundation.BSTR defstr, winmdroot.System.Variant.VARIANT* textdata) 509 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLWindow2*)Unsafe.AsPointer(ref this), message, defstr, textdata); 515 private static winmdroot.Foundation.HRESULT get_Image(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLImageElementFactory** p) 519 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 525 return winmdroot.Foundation.HRESULT.S_OK; 529 return (winmdroot.Foundation.HRESULT)ex.HResult; 538 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLImageElementFactory** ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 546 private static winmdroot.Foundation.HRESULT get_location(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLLocation** p) 550 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 559 return (winmdroot.Foundation.HRESULT)ex.HResult; 563 public unsafe winmdroot.Foundation.HRESULT get_location(winmdroot.Web.MsHtml.IHTMLLocation** p) 565 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLLocation** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 571 private static winmdroot.Foundation.HRESULT get_history(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IOmHistory** p) 575 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 584 return (winmdroot.Foundation.HRESULT)ex.HResult; 588 public unsafe winmdroot.Foundation.HRESULT get_history(winmdroot.Web.MsHtml.IOmHistory** p) 590 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IOmHistory** ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 596 private static winmdroot.Foundation.HRESULT close(IHTMLWindow2* pThis) 600 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 609 return (winmdroot.Foundation.HRESULT)ex.HResult; 613 public winmdroot.Foundation.HRESULT close() 615 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLWindow2*)Unsafe.AsPointer(ref this)); 621 private static winmdroot.Foundation.HRESULT put_opener(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 625 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 631 return winmdroot.Foundation.HRESULT.S_OK; 635 return (winmdroot.Foundation.HRESULT)ex.HResult; 643 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 649 internal unsafe winmdroot.Foundation.HRESULT get_opener(out winmdroot.System.Variant.VARIANT p) 653 winmdroot.Foundation.HRESULT __result = this.get_opener(pLocal); 661 private static winmdroot.Foundation.HRESULT get_opener(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 665 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 674 return (winmdroot.Foundation.HRESULT)ex.HResult; 678 public unsafe winmdroot.Foundation.HRESULT get_opener(winmdroot.System.Variant.VARIANT* p) 680 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 686 private static winmdroot.Foundation.HRESULT get_navigator(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IOmNavigator** p) 690 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 696 return winmdroot.Foundation.HRESULT.S_OK; 700 return (winmdroot.Foundation.HRESULT)ex.HResult; 709 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IOmNavigator** ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 717 private static winmdroot.Foundation.HRESULT put_name(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR v) 721 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 730 return (winmdroot.Foundation.HRESULT)ex.HResult; 734 public winmdroot.Foundation.HRESULT put_name(winmdroot.Foundation.BSTR v) 736 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLWindow2*)Unsafe.AsPointer(ref this), v); 741 internal unsafe winmdroot.Foundation.HRESULT get_name(out winmdroot.Foundation.BSTR p) 745 winmdroot.Foundation.HRESULT __result = this.get_name(pLocal); 753 private static winmdroot.Foundation.HRESULT get_name(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR* p) 757 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 766 return (winmdroot.Foundation.HRESULT)ex.HResult; 770 public unsafe winmdroot.Foundation.HRESULT get_name(winmdroot.Foundation.BSTR* p) 772 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 778 private static winmdroot.Foundation.HRESULT get_parent(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLWindow2** p) 782 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 791 return (winmdroot.Foundation.HRESULT)ex.HResult; 795 public unsafe winmdroot.Foundation.HRESULT get_parent(winmdroot.Web.MsHtml.IHTMLWindow2** p) 797 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 803 private static winmdroot.Foundation.HRESULT open(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR url, winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR features, winmdroot.Foundation.VARIANT_BOOL replace, winmdroot.Web.MsHtml.IHTMLWindow2** pomWindowResult) 807 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 816 return (winmdroot.Foundation.HRESULT)ex.HResult; 820 public unsafe winmdroot.Foundation.HRESULT open(winmdroot.Foundation.BSTR url, winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR features, winmdroot.Foundation.VARIANT_BOOL replace, winmdroot.Web.MsHtml.IHTMLWindow2** pomWindowResult) 822 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLWindow2*)Unsafe.AsPointer(ref this), url, name, features, replace, pomWindowResult); 828 private static winmdroot.Foundation.HRESULT get_self(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLWindow2** p) 832 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 838 return winmdroot.Foundation.HRESULT.S_OK; 842 return (winmdroot.Foundation.HRESULT)ex.HResult; 851 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 859 private static winmdroot.Foundation.HRESULT get_top(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLWindow2** p) 863 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 869 return winmdroot.Foundation.HRESULT.S_OK; 873 return (winmdroot.Foundation.HRESULT)ex.HResult; 882 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 890 private static winmdroot.Foundation.HRESULT get_window(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLWindow2** p) 894 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 900 return winmdroot.Foundation.HRESULT.S_OK; 904 return (winmdroot.Foundation.HRESULT)ex.HResult; 913 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 921 private static winmdroot.Foundation.HRESULT navigate(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR url) 925 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 934 return (winmdroot.Foundation.HRESULT)ex.HResult; 938 public winmdroot.Foundation.HRESULT navigate(winmdroot.Foundation.BSTR url) 940 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLWindow2*)Unsafe.AsPointer(ref this), url); 946 private static winmdroot.Foundation.HRESULT put_onfocus(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 950 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 956 return winmdroot.Foundation.HRESULT.S_OK; 960 return (winmdroot.Foundation.HRESULT)ex.HResult; 968 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 973 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 981 private static winmdroot.Foundation.HRESULT get_onfocus(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 985 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 991 return winmdroot.Foundation.HRESULT.S_OK; 995 return (winmdroot.Foundation.HRESULT)ex.HResult; 1002 private static winmdroot.Foundation.HRESULT put_onblur(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1006 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1012 return winmdroot.Foundation.HRESULT.S_OK; 1016 return (winmdroot.Foundation.HRESULT)ex.HResult; 1024 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1029 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1037 private static winmdroot.Foundation.HRESULT get_onblur(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1041 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1047 return winmdroot.Foundation.HRESULT.S_OK; 1051 return (winmdroot.Foundation.HRESULT)ex.HResult; 1058 private static winmdroot.Foundation.HRESULT put_onload(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1062 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1068 return winmdroot.Foundation.HRESULT.S_OK; 1072 return (winmdroot.Foundation.HRESULT)ex.HResult; 1080 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1085 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1093 private static winmdroot.Foundation.HRESULT get_onload(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1097 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1103 return winmdroot.Foundation.HRESULT.S_OK; 1107 return (winmdroot.Foundation.HRESULT)ex.HResult; 1114 private static winmdroot.Foundation.HRESULT put_onbeforeunload(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1118 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1124 return winmdroot.Foundation.HRESULT.S_OK; 1128 return (winmdroot.Foundation.HRESULT)ex.HResult; 1136 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1141 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1149 private static winmdroot.Foundation.HRESULT get_onbeforeunload(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1153 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1159 return winmdroot.Foundation.HRESULT.S_OK; 1163 return (winmdroot.Foundation.HRESULT)ex.HResult; 1170 private static winmdroot.Foundation.HRESULT put_onunload(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1174 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1180 return winmdroot.Foundation.HRESULT.S_OK; 1184 return (winmdroot.Foundation.HRESULT)ex.HResult; 1192 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1197 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1205 private static winmdroot.Foundation.HRESULT get_onunload(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1209 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1215 return winmdroot.Foundation.HRESULT.S_OK; 1219 return (winmdroot.Foundation.HRESULT)ex.HResult; 1226 private static winmdroot.Foundation.HRESULT put_onhelp(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1230 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1236 return winmdroot.Foundation.HRESULT.S_OK; 1240 return (winmdroot.Foundation.HRESULT)ex.HResult; 1248 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1253 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1261 private static winmdroot.Foundation.HRESULT get_onhelp(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1265 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1271 return winmdroot.Foundation.HRESULT.S_OK; 1275 return (winmdroot.Foundation.HRESULT)ex.HResult; 1282 private static winmdroot.Foundation.HRESULT put_onerror(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1286 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1292 return winmdroot.Foundation.HRESULT.S_OK; 1296 return (winmdroot.Foundation.HRESULT)ex.HResult; 1304 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1309 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1317 private static winmdroot.Foundation.HRESULT get_onerror(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1321 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1327 return winmdroot.Foundation.HRESULT.S_OK; 1331 return (winmdroot.Foundation.HRESULT)ex.HResult; 1338 private static winmdroot.Foundation.HRESULT put_onresize(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1342 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1348 return winmdroot.Foundation.HRESULT.S_OK; 1352 return (winmdroot.Foundation.HRESULT)ex.HResult; 1360 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1365 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1373 private static winmdroot.Foundation.HRESULT get_onresize(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1377 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1383 return winmdroot.Foundation.HRESULT.S_OK; 1387 return (winmdroot.Foundation.HRESULT)ex.HResult; 1394 private static winmdroot.Foundation.HRESULT put_onscroll(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1398 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1404 return winmdroot.Foundation.HRESULT.S_OK; 1408 return (winmdroot.Foundation.HRESULT)ex.HResult; 1416 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1421 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1429 private static winmdroot.Foundation.HRESULT get_onscroll(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1433 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1439 return winmdroot.Foundation.HRESULT.S_OK; 1443 return (winmdroot.Foundation.HRESULT)ex.HResult; 1450 private static winmdroot.Foundation.HRESULT get_document(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLDocument2** p) 1454 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1463 return (winmdroot.Foundation.HRESULT)ex.HResult; 1467 public unsafe winmdroot.Foundation.HRESULT get_document(winmdroot.Web.MsHtml.IHTMLDocument2** p) 1469 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 1475 private static winmdroot.Foundation.HRESULT get_event(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLEventObj** p) 1479 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1485 return winmdroot.Foundation.HRESULT.S_OK; 1489 return (winmdroot.Foundation.HRESULT)ex.HResult; 1498 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLEventObj** ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1506 private static winmdroot.Foundation.HRESULT get__newEnum(IHTMLWindow2* pThis, winmdroot.System.Com.IUnknown** p) 1510 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1516 return winmdroot.Foundation.HRESULT.S_OK; 1520 return (winmdroot.Foundation.HRESULT)ex.HResult; 1529 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1551 private static winmdroot.Foundation.HRESULT showModalDialog(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR dialog, winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Variant.VARIANT* varOptions, winmdroot.System.Variant.VARIANT* varArgOut) 1555 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1564 return (winmdroot.Foundation.HRESULT)ex.HResult; 1571 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLWindow2*)Unsafe.AsPointer(ref this), dialog, varArgIn, varOptions, &__retVal).ThrowOnFailure(); 1578 private static winmdroot.Foundation.HRESULT showHelp(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR helpURL, winmdroot.System.Variant.VARIANT helpArg, winmdroot.Foundation.BSTR features) 1582 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1591 return (winmdroot.Foundation.HRESULT)ex.HResult; 1597 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLWindow2*)Unsafe.AsPointer(ref this), helpURL, helpArg, features).ThrowOnFailure(); 1603 private static winmdroot.Foundation.HRESULT get_screen(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLScreen** p) 1607 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1613 return winmdroot.Foundation.HRESULT.S_OK; 1617 return (winmdroot.Foundation.HRESULT)ex.HResult; 1626 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLScreen** ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1634 private static winmdroot.Foundation.HRESULT get_Option(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLOptionElementFactory** p) 1638 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1644 return winmdroot.Foundation.HRESULT.S_OK; 1648 return (winmdroot.Foundation.HRESULT)ex.HResult; 1657 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLOptionElementFactory** ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1665 private static winmdroot.Foundation.HRESULT focus(IHTMLWindow2* pThis) 1669 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1678 return (winmdroot.Foundation.HRESULT)ex.HResult; 1682 public winmdroot.Foundation.HRESULT focus() 1684 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IHTMLWindow2*)Unsafe.AsPointer(ref this)); 1689 internal unsafe winmdroot.Foundation.HRESULT get_closed(out winmdroot.Foundation.VARIANT_BOOL p) 1693 winmdroot.Foundation.HRESULT __result = this.get_closed(pLocal); 1701 private static winmdroot.Foundation.HRESULT get_closed(IHTMLWindow2* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1705 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1714 return (winmdroot.Foundation.HRESULT)ex.HResult; 1718 public unsafe winmdroot.Foundation.HRESULT get_closed(winmdroot.Foundation.VARIANT_BOOL* p) 1720 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 1726 private static winmdroot.Foundation.HRESULT blur(IHTMLWindow2* pThis) 1730 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1739 return (winmdroot.Foundation.HRESULT)ex.HResult; 1743 public winmdroot.Foundation.HRESULT blur() 1745 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IHTMLWindow2*)Unsafe.AsPointer(ref this)); 1751 private static winmdroot.Foundation.HRESULT scroll(IHTMLWindow2* pThis, int x, int y) 1755 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1764 return (winmdroot.Foundation.HRESULT)ex.HResult; 1770 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IHTMLWindow2*)Unsafe.AsPointer(ref this), x, y).ThrowOnFailure(); 1776 private static winmdroot.Foundation.HRESULT get_clientInformation(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IOmNavigator** p) 1780 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1786 return winmdroot.Foundation.HRESULT.S_OK; 1790 return (winmdroot.Foundation.HRESULT)ex.HResult; 1799 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IOmNavigator** ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1818 private static winmdroot.Foundation.HRESULT setInterval(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID) 1822 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1831 return (winmdroot.Foundation.HRESULT)ex.HResult; 1838 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLWindow2*)Unsafe.AsPointer(ref this), expression, msec, language, &__retVal).ThrowOnFailure(); 1845 private static winmdroot.Foundation.HRESULT clearInterval(IHTMLWindow2* pThis, int timerID) 1849 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1858 return (winmdroot.Foundation.HRESULT)ex.HResult; 1864 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLWindow2*)Unsafe.AsPointer(ref this), timerID).ThrowOnFailure(); 1870 private static winmdroot.Foundation.HRESULT put_offscreenBuffering(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1874 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1880 return winmdroot.Foundation.HRESULT.S_OK; 1884 return (winmdroot.Foundation.HRESULT)ex.HResult; 1892 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1897 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1905 private static winmdroot.Foundation.HRESULT get_offscreenBuffering(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1909 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1915 return winmdroot.Foundation.HRESULT.S_OK; 1919 return (winmdroot.Foundation.HRESULT)ex.HResult; 1926 private static winmdroot.Foundation.HRESULT execScript(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR code, winmdroot.Foundation.BSTR language, winmdroot.System.Variant.VARIANT* pvarRet) 1930 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1939 return (winmdroot.Foundation.HRESULT)ex.HResult; 1946 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IHTMLWindow2*)Unsafe.AsPointer(ref this), code, language, &__retVal).ThrowOnFailure(); 1953 private static winmdroot.Foundation.HRESULT toString(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR* String) 1957 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1966 return (winmdroot.Foundation.HRESULT)ex.HResult; 1973 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 1980 private static winmdroot.Foundation.HRESULT scrollBy(IHTMLWindow2* pThis, int x, int y) 1984 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1993 return (winmdroot.Foundation.HRESULT)ex.HResult; 1999 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IHTMLWindow2*)Unsafe.AsPointer(ref this), x, y).ThrowOnFailure(); 2005 private static winmdroot.Foundation.HRESULT scrollTo(IHTMLWindow2* pThis, int x, int y) 2009 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2018 return (winmdroot.Foundation.HRESULT)ex.HResult; 2022 public winmdroot.Foundation.HRESULT scrollTo(int x, int y) 2024 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLWindow2*)Unsafe.AsPointer(ref this), x, y); 2030 private static winmdroot.Foundation.HRESULT moveTo(IHTMLWindow2* pThis, int x, int y) 2034 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2043 return (winmdroot.Foundation.HRESULT)ex.HResult; 2047 public winmdroot.Foundation.HRESULT moveTo(int x, int y) 2049 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLWindow2*)Unsafe.AsPointer(ref this), x, y); 2055 private static winmdroot.Foundation.HRESULT moveBy(IHTMLWindow2* pThis, int x, int y) 2059 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2068 return (winmdroot.Foundation.HRESULT)ex.HResult; 2074 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IHTMLWindow2*)Unsafe.AsPointer(ref this), x, y).ThrowOnFailure(); 2080 private static winmdroot.Foundation.HRESULT resizeTo(IHTMLWindow2* pThis, int x, int y) 2084 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2093 return (winmdroot.Foundation.HRESULT)ex.HResult; 2097 public winmdroot.Foundation.HRESULT resizeTo(int x, int y) 2099 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IHTMLWindow2*)Unsafe.AsPointer(ref this), x, y); 2105 private static winmdroot.Foundation.HRESULT resizeBy(IHTMLWindow2* pThis, int x, int y) 2109 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2118 return (winmdroot.Foundation.HRESULT)ex.HResult; 2124 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IHTMLWindow2*)Unsafe.AsPointer(ref this), x, y).ThrowOnFailure(); 2130 private static winmdroot.Foundation.HRESULT get_external(IHTMLWindow2* pThis, winmdroot.System.Com.IDispatch** p) 2134 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2140 return winmdroot.Foundation.HRESULT.S_OK; 2144 return (winmdroot.Foundation.HRESULT)ex.HResult; 2153 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2158 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2164 var hr = this.QueryInterface(&guid, &pv); 2181 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2187 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2189 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2191 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2193 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; 2195 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> item_8; 2197 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int* ,winmdroot.Foundation.HRESULT> get_length_9; 2199 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLFramesCollection2** ,winmdroot.Foundation.HRESULT> get_frames_10; 2201 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_defaultStatus_11; 2203 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_defaultStatus_12; 2205 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_status_13; 2207 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_status_14; 2209 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT> setTimeout_15; 2211 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,winmdroot.Foundation.HRESULT> clearTimeout_16; 2213 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> alert_17; 2215 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> confirm_18; 2217 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> prompt_19; 2219 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLImageElementFactory** ,winmdroot.Foundation.HRESULT> get_Image_20; 2221 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLLocation** ,winmdroot.Foundation.HRESULT> get_location_21; 2223 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IOmHistory** ,winmdroot.Foundation.HRESULT> get_history_22; 2225 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.HRESULT> close_23; 2227 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_opener_24; 2229 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_opener_25; 2231 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IOmNavigator** ,winmdroot.Foundation.HRESULT> get_navigator_26; 2233 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_name_27; 2235 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_name_28; 2237 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT> get_parent_29; 2239 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT> open_30; 2241 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT> get_self_31; 2243 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT> get_top_32; 2245 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT> get_window_33; 2247 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> navigate_34; 2249 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onfocus_35; 2251 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onfocus_36; 2253 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onblur_37; 2255 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onblur_38; 2257 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onload_39; 2259 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onload_40; 2261 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforeunload_41; 2263 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforeunload_42; 2265 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onunload_43; 2267 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onunload_44; 2269 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onhelp_45; 2271 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onhelp_46; 2273 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onerror_47; 2275 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onerror_48; 2277 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onresize_49; 2279 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onresize_50; 2281 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onscroll_51; 2283 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onscroll_52; 2285 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT> get_document_53; 2287 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLEventObj** ,winmdroot.Foundation.HRESULT> get_event_54; 2289 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> get__newEnum_55; 2291 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> showModalDialog_56; 2293 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> showHelp_57; 2295 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLScreen** ,winmdroot.Foundation.HRESULT> get_screen_58; 2297 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLOptionElementFactory** ,winmdroot.Foundation.HRESULT> get_Option_59; 2299 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.HRESULT> focus_60; 2301 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_closed_61; 2303 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.HRESULT> blur_62; 2305 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT> scroll_63; 2307 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IOmNavigator** ,winmdroot.Foundation.HRESULT> get_clientInformation_64; 2309 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT> setInterval_65; 2311 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,winmdroot.Foundation.HRESULT> clearInterval_66; 2313 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_offscreenBuffering_67; 2315 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_offscreenBuffering_68; 2317 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> execScript_69; 2319 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_70; 2321 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT> scrollBy_71; 2323 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT> scrollTo_72; 2325 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT> moveTo_73; 2327 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT> moveBy_74; 2329 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT> resizeTo_75; 2331 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT> resizeBy_76; 2333 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_external_77; 2428 unsafe new winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult); 2431 unsafe new winmdroot.Foundation.HRESULT get_length(int* p); 2434 unsafe winmdroot.Foundation.HRESULT get_frames(winmdroot.Web.MsHtml.IHTMLFramesCollection2** p); 2443winmdroot.Foundation.HRESULT put_status(winmdroot.Foundation.BSTR v); 2446 unsafe winmdroot.Foundation.HRESULT get_status(winmdroot.Foundation.BSTR* p); 2449 unsafe winmdroot.Foundation.HRESULT setTimeout(winmdroot.Foundation.BSTR expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID); 2452winmdroot.Foundation.HRESULT clearTimeout(int timerID); 2455winmdroot.Foundation.HRESULT alert(winmdroot.Foundation.BSTR message); 2458 unsafe winmdroot.Foundation.HRESULT confirm(winmdroot.Foundation.BSTR message, winmdroot.Foundation.VARIANT_BOOL* confirmed); 2461 unsafe winmdroot.Foundation.HRESULT prompt(winmdroot.Foundation.BSTR message, winmdroot.Foundation.BSTR defstr, winmdroot.System.Variant.VARIANT* textdata); 2469 unsafe winmdroot.Foundation.HRESULT get_location(winmdroot.Web.MsHtml.IHTMLLocation** p); 2472 unsafe winmdroot.Foundation.HRESULT get_history(winmdroot.Web.MsHtml.IOmHistory** p); 2475winmdroot.Foundation.HRESULT close(); 2483 unsafe winmdroot.Foundation.HRESULT get_opener(winmdroot.System.Variant.VARIANT* p); 2491winmdroot.Foundation.HRESULT put_name(winmdroot.Foundation.BSTR v); 2494 unsafe winmdroot.Foundation.HRESULT get_name(winmdroot.Foundation.BSTR* p); 2497 unsafe winmdroot.Foundation.HRESULT get_parent(winmdroot.Web.MsHtml.IHTMLWindow2** p); 2500 unsafe winmdroot.Foundation.HRESULT open(winmdroot.Foundation.BSTR url, winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR features, winmdroot.Foundation.VARIANT_BOOL replace, winmdroot.Web.MsHtml.IHTMLWindow2** pomWindowResult); 2518winmdroot.Foundation.HRESULT navigate(winmdroot.Foundation.BSTR url); 2575 unsafe winmdroot.Foundation.HRESULT get_document(winmdroot.Web.MsHtml.IHTMLDocument2** p); 2588 unsafe winmdroot.Foundation.HRESULT showModalDialog(winmdroot.Foundation.BSTR dialog, winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Variant.VARIANT* varOptions, winmdroot.System.Variant.VARIANT* varArgOut); 2591winmdroot.Foundation.HRESULT showHelp(winmdroot.Foundation.BSTR helpURL, winmdroot.System.Variant.VARIANT helpArg, winmdroot.Foundation.BSTR features); 2604winmdroot.Foundation.HRESULT focus(); 2607 unsafe winmdroot.Foundation.HRESULT get_closed(winmdroot.Foundation.VARIANT_BOOL* p); 2610winmdroot.Foundation.HRESULT blur(); 2613winmdroot.Foundation.HRESULT scroll(int x, int y); 2621 unsafe winmdroot.Foundation.HRESULT setInterval(winmdroot.Foundation.BSTR expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID); 2624winmdroot.Foundation.HRESULT clearInterval(int timerID); 2633 unsafe winmdroot.Foundation.HRESULT execScript(winmdroot.Foundation.BSTR code, winmdroot.Foundation.BSTR language, winmdroot.System.Variant.VARIANT* pvarRet); 2636 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* String); 2639winmdroot.Foundation.HRESULT scrollBy(int x, int y); 2642winmdroot.Foundation.HRESULT scrollTo(int x, int y); 2645winmdroot.Foundation.HRESULT moveTo(int x, int y); 2648winmdroot.Foundation.HRESULT moveBy(int x, int y); 2651winmdroot.Foundation.HRESULT resizeTo(int x, int y); 2654winmdroot.Foundation.HRESULT resizeBy(int x, int y);
_generated\177\Windows.Win32.IHTMLWindow3.g.cs (103)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLWindow3*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLWindow3*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLWindow3*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 138 internal unsafe winmdroot.Foundation.HRESULT get_screenLeft(out int p) 142 winmdroot.Foundation.HRESULT __result = this.get_screenLeft(pLocal); 150 private static winmdroot.Foundation.HRESULT get_screenLeft(IHTMLWindow3* pThis, int* p) 154 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 167 public unsafe winmdroot.Foundation.HRESULT get_screenLeft(int* p) 169 return ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLWindow3*)Unsafe.AsPointer(ref this), p); 174 internal unsafe winmdroot.Foundation.HRESULT get_screenTop(out int p) 178 winmdroot.Foundation.HRESULT __result = this.get_screenTop(pLocal); 186 private static winmdroot.Foundation.HRESULT get_screenTop(IHTMLWindow3* pThis, int* p) 190 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 199 return (winmdroot.Foundation.HRESULT)ex.HResult; 203 public unsafe winmdroot.Foundation.HRESULT get_screenTop(int* p) 205 return ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLWindow3*)Unsafe.AsPointer(ref this), p); 210 internal unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult) 214 winmdroot.Foundation.HRESULT __result = this.attachEvent(@event, pDisp, pfResultLocal); 222 private static winmdroot.Foundation.HRESULT attachEvent(IHTMLWindow3* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 226 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 235 return (winmdroot.Foundation.HRESULT)ex.HResult; 239 public unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 241 return ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLWindow3*)Unsafe.AsPointer(ref this), @event, pDisp, pfResult); 247 private static winmdroot.Foundation.HRESULT detachEvent(IHTMLWindow3* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 251 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 260 return (winmdroot.Foundation.HRESULT)ex.HResult; 264 public unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 266 return ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLWindow3*)Unsafe.AsPointer(ref this), @event, pDisp); 286 private static winmdroot.Foundation.HRESULT setTimeout(IHTMLWindow3* pThis, winmdroot.System.Variant.VARIANT* expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID) 290 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 299 return (winmdroot.Foundation.HRESULT)ex.HResult; 306 ((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(); 327 private static winmdroot.Foundation.HRESULT setInterval(IHTMLWindow3* pThis, winmdroot.System.Variant.VARIANT* expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID) 331 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 340 return (winmdroot.Foundation.HRESULT)ex.HResult; 347 ((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(); 354 private static winmdroot.Foundation.HRESULT print(IHTMLWindow3* pThis) 358 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 367 return (winmdroot.Foundation.HRESULT)ex.HResult; 373 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLWindow3*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 379 private static winmdroot.Foundation.HRESULT put_onbeforeprint(IHTMLWindow3* pThis, winmdroot.System.Variant.VARIANT v) 383 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 389 return winmdroot.Foundation.HRESULT.S_OK; 393 return (winmdroot.Foundation.HRESULT)ex.HResult; 401 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLWindow3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 406 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLWindow3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 414 private static winmdroot.Foundation.HRESULT get_onbeforeprint(IHTMLWindow3* pThis, winmdroot.System.Variant.VARIANT* p) 418 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 424 return winmdroot.Foundation.HRESULT.S_OK; 428 return (winmdroot.Foundation.HRESULT)ex.HResult; 435 private static winmdroot.Foundation.HRESULT put_onafterprint(IHTMLWindow3* pThis, winmdroot.System.Variant.VARIANT v) 439 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 445 return winmdroot.Foundation.HRESULT.S_OK; 449 return (winmdroot.Foundation.HRESULT)ex.HResult; 457 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLWindow3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 462 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLWindow3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 470 private static winmdroot.Foundation.HRESULT get_onafterprint(IHTMLWindow3* pThis, winmdroot.System.Variant.VARIANT* p) 474 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 480 return winmdroot.Foundation.HRESULT.S_OK; 484 return (winmdroot.Foundation.HRESULT)ex.HResult; 491 private static winmdroot.Foundation.HRESULT get_clipboardData(IHTMLWindow3* pThis, winmdroot.Web.MsHtml.IHTMLDataTransfer** p) 495 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 501 return winmdroot.Foundation.HRESULT.S_OK; 505 return (winmdroot.Foundation.HRESULT)ex.HResult; 514 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Web.MsHtml.IHTMLDataTransfer** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLWindow3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 536 private static winmdroot.Foundation.HRESULT showModelessDialog(IHTMLWindow3* pThis, winmdroot.Foundation.BSTR url, winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Variant.VARIANT* options, winmdroot.Web.MsHtml.IHTMLWindow2** pDialog) 540 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 549 return (winmdroot.Foundation.HRESULT)ex.HResult; 556 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLWindow3*)Unsafe.AsPointer(ref this), url, varArgIn, options, &__retVal).ThrowOnFailure(); 560 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 566 var hr = this.QueryInterface(&guid, &pv); 583 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 589 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 591 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 593 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 595 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; 597 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,int* ,winmdroot.Foundation.HRESULT> get_screenLeft_8; 599 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,int* ,winmdroot.Foundation.HRESULT> get_screenTop_9; 601 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> attachEvent_10; 603 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT> detachEvent_11; 605 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT* ,int ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT> setTimeout_12; 607 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT* ,int ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT> setInterval_13; 609 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.HRESULT> print_14; 611 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforeprint_15; 613 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforeprint_16; 615 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onafterprint_17; 617 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onafterprint_18; 619 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Web.MsHtml.IHTMLDataTransfer** ,winmdroot.Foundation.HRESULT> get_clipboardData_19; 621 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT> showModelessDialog_20; 659 unsafe winmdroot.Foundation.HRESULT get_screenLeft(int* p); 662 unsafe winmdroot.Foundation.HRESULT get_screenTop(int* p); 665 unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult); 668 unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp); 671 unsafe winmdroot.Foundation.HRESULT setTimeout(winmdroot.System.Variant.VARIANT* expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID); 674 unsafe winmdroot.Foundation.HRESULT setInterval(winmdroot.System.Variant.VARIANT* expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID); 677winmdroot.Foundation.HRESULT print(); 697 unsafe winmdroot.Foundation.HRESULT showModelessDialog(winmdroot.Foundation.BSTR url, winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Variant.VARIANT* options, winmdroot.Web.MsHtml.IHTMLWindow2** pDialog);
_generated\178\Windows.Win32.IHTMLWindow4.g.cs (28)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IHTMLWindow4*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLWindow4*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IHTMLWindow4*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLWindow4*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IHTMLWindow4*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLWindow4*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 150 private static winmdroot.Foundation.HRESULT createPopup(IHTMLWindow4* pThis, winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Com.IDispatch** ppPopup) 154 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 ((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(); 177 private static winmdroot.Foundation.HRESULT get_frameElement(IHTMLWindow4* pThis, winmdroot.Web.MsHtml.IHTMLFrameBase** p) 181 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 190 return (winmdroot.Foundation.HRESULT)ex.HResult; 194 public unsafe winmdroot.Foundation.HRESULT get_frameElement(winmdroot.Web.MsHtml.IHTMLFrameBase** p) 196 return ((delegate *unmanaged [Stdcall]<IHTMLWindow4*,winmdroot.Web.MsHtml.IHTMLFrameBase** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLWindow4*)Unsafe.AsPointer(ref this), p); 199 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 205 var hr = this.QueryInterface(&guid, &pv); 222 internal delegate *unmanaged [Stdcall]<IHTMLWindow4*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 228 internal delegate *unmanaged [Stdcall]<IHTMLWindow4*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 230 internal delegate *unmanaged [Stdcall]<IHTMLWindow4*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 232 internal delegate *unmanaged [Stdcall]<IHTMLWindow4*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 234 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; 236 internal delegate *unmanaged [Stdcall]<IHTMLWindow4*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> createPopup_8; 238 internal delegate *unmanaged [Stdcall]<IHTMLWindow4*,winmdroot.Web.MsHtml.IHTMLFrameBase** ,winmdroot.Foundation.HRESULT> get_frameElement_9; 265 unsafe winmdroot.Foundation.HRESULT createPopup(winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Com.IDispatch** ppPopup); 268 unsafe winmdroot.Foundation.HRESULT get_frameElement(winmdroot.Web.MsHtml.IHTMLFrameBase** p);
_generated\179\Windows.Win32.IInvokeProvider.g.cs (13)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IInvokeProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IInvokeProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT Invoke(IInvokeProvider* pThis) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 91 ((delegate *unmanaged [Stdcall]<IInvokeProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IInvokeProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 94 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 100 var hr = this.QueryInterface(&guid, &pv); 117 internal delegate *unmanaged [Stdcall]<IInvokeProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 123 internal delegate *unmanaged [Stdcall]<IInvokeProvider*,winmdroot.Foundation.HRESULT> Invoke_4; 150winmdroot.Foundation.HRESULT Invoke();
_generated\180\Windows.Win32.ILegacyIAccessibleProvider.g.cs (118)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT Select(ILegacyIAccessibleProvider* pThis, int flagsSelect) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 90 ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), flagsSelect).ThrowOnFailure(); 96 private static winmdroot.Foundation.HRESULT DoDefaultAction(ILegacyIAccessibleProvider* pThis) 100 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 109 return (winmdroot.Foundation.HRESULT)ex.HResult; 122 ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 138 private static winmdroot.Foundation.HRESULT SetValue(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.PCWSTR szValue) 142 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 151 return (winmdroot.Foundation.HRESULT)ex.HResult; 168 ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), szValue).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT GetIAccessible(ILegacyIAccessibleProvider* pThis, winmdroot.UI.Accessibility.IAccessible** ppAccessible) 178 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 187 return (winmdroot.Foundation.HRESULT)ex.HResult; 201 ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.UI.Accessibility.IAccessible** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 207 internal unsafe winmdroot.Foundation.HRESULT get_ChildId(out int pRetVal) 211 winmdroot.Foundation.HRESULT __result = this.get_ChildId(pRetValLocal); 219 private static winmdroot.Foundation.HRESULT get_ChildId(ILegacyIAccessibleProvider* pThis, int* pRetVal) 223 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 232 return (winmdroot.Foundation.HRESULT)ex.HResult; 240 public unsafe winmdroot.Foundation.HRESULT get_ChildId(int* pRetVal) 242 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pRetVal); 247 internal unsafe winmdroot.Foundation.HRESULT get_Name(out winmdroot.Foundation.BSTR pszName) 251 winmdroot.Foundation.HRESULT __result = this.get_Name(pszNameLocal); 259 private static winmdroot.Foundation.HRESULT get_Name(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszName) 263 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 272 return (winmdroot.Foundation.HRESULT)ex.HResult; 280 public unsafe winmdroot.Foundation.HRESULT get_Name(winmdroot.Foundation.BSTR* pszName) 282 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszName); 287 internal unsafe winmdroot.Foundation.HRESULT get_Value(out winmdroot.Foundation.BSTR pszValue) 291 winmdroot.Foundation.HRESULT __result = this.get_Value(pszValueLocal); 299 private static winmdroot.Foundation.HRESULT get_Value(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszValue) 303 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 312 return (winmdroot.Foundation.HRESULT)ex.HResult; 320 public unsafe winmdroot.Foundation.HRESULT get_Value(winmdroot.Foundation.BSTR* pszValue) 322 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszValue); 327 internal unsafe winmdroot.Foundation.HRESULT get_Description(out winmdroot.Foundation.BSTR pszDescription) 331 winmdroot.Foundation.HRESULT __result = this.get_Description(pszDescriptionLocal); 339 private static winmdroot.Foundation.HRESULT get_Description(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszDescription) 343 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 352 return (winmdroot.Foundation.HRESULT)ex.HResult; 360 public unsafe winmdroot.Foundation.HRESULT get_Description(winmdroot.Foundation.BSTR* pszDescription) 362 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszDescription); 367 internal unsafe winmdroot.Foundation.HRESULT get_Role(out uint pdwRole) 371 winmdroot.Foundation.HRESULT __result = this.get_Role(pdwRoleLocal); 379 private static winmdroot.Foundation.HRESULT get_Role(ILegacyIAccessibleProvider* pThis, uint* pdwRole) 383 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 392 return (winmdroot.Foundation.HRESULT)ex.HResult; 400 public unsafe winmdroot.Foundation.HRESULT get_Role(uint* pdwRole) 402 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pdwRole); 407 internal unsafe winmdroot.Foundation.HRESULT get_State(out uint pdwState) 411 winmdroot.Foundation.HRESULT __result = this.get_State(pdwStateLocal); 419 private static winmdroot.Foundation.HRESULT get_State(ILegacyIAccessibleProvider* pThis, uint* pdwState) 423 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 432 return (winmdroot.Foundation.HRESULT)ex.HResult; 440 public unsafe winmdroot.Foundation.HRESULT get_State(uint* pdwState) 442 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pdwState); 447 internal unsafe winmdroot.Foundation.HRESULT get_Help(out winmdroot.Foundation.BSTR pszHelp) 451 winmdroot.Foundation.HRESULT __result = this.get_Help(pszHelpLocal); 459 private static winmdroot.Foundation.HRESULT get_Help(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszHelp) 463 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 472 return (winmdroot.Foundation.HRESULT)ex.HResult; 480 public unsafe winmdroot.Foundation.HRESULT get_Help(winmdroot.Foundation.BSTR* pszHelp) 482 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszHelp); 487 internal unsafe winmdroot.Foundation.HRESULT get_KeyboardShortcut(out winmdroot.Foundation.BSTR pszKeyboardShortcut) 491 winmdroot.Foundation.HRESULT __result = this.get_KeyboardShortcut(pszKeyboardShortcutLocal); 499 private static winmdroot.Foundation.HRESULT get_KeyboardShortcut(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszKeyboardShortcut) 503 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 512 return (winmdroot.Foundation.HRESULT)ex.HResult; 520 public unsafe winmdroot.Foundation.HRESULT get_KeyboardShortcut(winmdroot.Foundation.BSTR* pszKeyboardShortcut) 522 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszKeyboardShortcut); 528 private static winmdroot.Foundation.HRESULT GetSelection(ILegacyIAccessibleProvider* pThis, winmdroot.System.Com.SAFEARRAY** pvarSelectedChildren) 532 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 541 return (winmdroot.Foundation.HRESULT)ex.HResult; 555 ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 561 internal unsafe winmdroot.Foundation.HRESULT get_DefaultAction(out winmdroot.Foundation.BSTR pszDefaultAction) 565 winmdroot.Foundation.HRESULT __result = this.get_DefaultAction(pszDefaultActionLocal); 573 private static winmdroot.Foundation.HRESULT get_DefaultAction(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszDefaultAction) 577 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 586 return (winmdroot.Foundation.HRESULT)ex.HResult; 594 public unsafe winmdroot.Foundation.HRESULT get_DefaultAction(winmdroot.Foundation.BSTR* pszDefaultAction) 596 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszDefaultAction); 599 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 605 var hr = this.QueryInterface(&guid, &pv); 622 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 628 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,int ,winmdroot.Foundation.HRESULT> Select_4; 630 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.HRESULT> DoDefaultAction_5; 632 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetValue_6; 634 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.UI.Accessibility.IAccessible** ,winmdroot.Foundation.HRESULT> GetIAccessible_7; 636 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,int* ,winmdroot.Foundation.HRESULT> get_ChildId_8; 638 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Name_9; 640 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Value_10; 642 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Description_11; 644 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,uint* ,winmdroot.Foundation.HRESULT> get_Role_12; 646 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,uint* ,winmdroot.Foundation.HRESULT> get_State_13; 648 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Help_14; 650 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_KeyboardShortcut_15; 652 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetSelection_16; 654 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_DefaultAction_17; 694winmdroot.Foundation.HRESULT Select(int flagsSelect); 697winmdroot.Foundation.HRESULT DoDefaultAction(); 700winmdroot.Foundation.HRESULT SetValue(winmdroot.Foundation.PCWSTR szValue); 703 unsafe winmdroot.Foundation.HRESULT GetIAccessible(winmdroot.UI.Accessibility.IAccessible** ppAccessible); 706 unsafe winmdroot.Foundation.HRESULT get_ChildId(int* pRetVal); 709 unsafe winmdroot.Foundation.HRESULT get_Name(winmdroot.Foundation.BSTR* pszName); 712 unsafe winmdroot.Foundation.HRESULT get_Value(winmdroot.Foundation.BSTR* pszValue); 715 unsafe winmdroot.Foundation.HRESULT get_Description(winmdroot.Foundation.BSTR* pszDescription); 718 unsafe winmdroot.Foundation.HRESULT get_Role(uint* pdwRole); 721 unsafe winmdroot.Foundation.HRESULT get_State(uint* pdwState); 724 unsafe winmdroot.Foundation.HRESULT get_Help(winmdroot.Foundation.BSTR* pszHelp); 727 unsafe winmdroot.Foundation.HRESULT get_KeyboardShortcut(winmdroot.Foundation.BSTR* pszKeyboardShortcut); 730 unsafe winmdroot.Foundation.HRESULT GetSelection(winmdroot.System.Com.SAFEARRAY** pvarSelectedChildren); 733 unsafe winmdroot.Foundation.HRESULT get_DefaultAction(winmdroot.Foundation.BSTR* pszDefaultAction);
_generated\181\Windows.Win32.ILockBytes.g.cs (49)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ILockBytes*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ILockBytes*)Unsafe.AsPointer(ref this), riid, ppvObject); 81 private static winmdroot.Foundation.HRESULT ReadAt(ILockBytes* pThis, ulong ulOffset, void* pv, uint cb, [Optional] uint* pcbRead) 85 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 94 return (winmdroot.Foundation.HRESULT)ex.HResult; 112 ((delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ILockBytes*)Unsafe.AsPointer(ref this), ulOffset, pv, cb, pcbRead).ThrowOnFailure(); 139 private static winmdroot.Foundation.HRESULT WriteAt(ILockBytes* pThis, ulong ulOffset, void* pv, uint cb, [Optional] uint* pcbWritten) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 ((delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ILockBytes*)Unsafe.AsPointer(ref this), ulOffset, pv, cb, pcbWritten).ThrowOnFailure(); 176 private static winmdroot.Foundation.HRESULT Flush(ILockBytes* pThis) 180 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 189 return (winmdroot.Foundation.HRESULT)ex.HResult; 203 ((delegate *unmanaged [Stdcall]<ILockBytes*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ILockBytes*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 209 private static winmdroot.Foundation.HRESULT SetSize(ILockBytes* pThis, ulong cb) 213 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 222 return (winmdroot.Foundation.HRESULT)ex.HResult; 237 ((delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ILockBytes*)Unsafe.AsPointer(ref this), cb).ThrowOnFailure(); 243 private static winmdroot.Foundation.HRESULT LockRegion(ILockBytes* pThis, ulong libOffset, ulong cb, uint dwLockType) 247 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 256 return (winmdroot.Foundation.HRESULT)ex.HResult; 276 ((delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,ulong ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ILockBytes*)Unsafe.AsPointer(ref this), libOffset, cb, dwLockType).ThrowOnFailure(); 282 private static winmdroot.Foundation.HRESULT UnlockRegion(ILockBytes* pThis, ulong libOffset, ulong cb, uint dwLockType) 286 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 295 return (winmdroot.Foundation.HRESULT)ex.HResult; 315 ((delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,ulong ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ILockBytes*)Unsafe.AsPointer(ref this), libOffset, cb, dwLockType).ThrowOnFailure(); 331 private static winmdroot.Foundation.HRESULT Stat(ILockBytes* pThis, winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag) 335 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 344 return (winmdroot.Foundation.HRESULT)ex.HResult; 366 ((delegate *unmanaged [Stdcall]<ILockBytes*,winmdroot.System.Com.STATSTG* ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ILockBytes*)Unsafe.AsPointer(ref this), pstatstg, grfStatFlag).ThrowOnFailure(); 369 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 375 var hr = this.QueryInterface(&guid, &pv); 392 internal delegate *unmanaged [Stdcall]<ILockBytes*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 398 internal delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT> ReadAt_4; 400 internal delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT> WriteAt_5; 402 internal delegate *unmanaged [Stdcall]<ILockBytes*,winmdroot.Foundation.HRESULT> Flush_6; 404 internal delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,winmdroot.Foundation.HRESULT> SetSize_7; 406 internal delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,ulong ,uint ,winmdroot.Foundation.HRESULT> LockRegion_8; 408 internal delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,ulong ,uint ,winmdroot.Foundation.HRESULT> UnlockRegion_9; 410 internal delegate *unmanaged [Stdcall]<ILockBytes*,winmdroot.System.Com.STATSTG* ,uint ,winmdroot.Foundation.HRESULT> Stat_10; 443 unsafe winmdroot.Foundation.HRESULT ReadAt(ulong ulOffset, void* pv, uint cb, [Optional] uint* pcbRead); 446 unsafe winmdroot.Foundation.HRESULT WriteAt(ulong ulOffset, void* pv, uint cb, [Optional] uint* pcbWritten); 449winmdroot.Foundation.HRESULT Flush(); 452winmdroot.Foundation.HRESULT SetSize(ulong cb); 455winmdroot.Foundation.HRESULT LockRegion(ulong libOffset, ulong cb, uint dwLockType); 458winmdroot.Foundation.HRESULT UnlockRegion(ulong libOffset, ulong cb, uint dwLockType); 461 unsafe winmdroot.Foundation.HRESULT Stat(winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag);
_generated\186\Windows.Win32.IMessageFilter.g.cs (10)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IMessageFilter*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IMessageFilter*)Unsafe.AsPointer(ref this), riid, ppvObject); 73 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 109 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 144 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 173 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 179 var hr = this.QueryInterface(&guid, &pv); 196 internal delegate *unmanaged [Stdcall]<IMessageFilter*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1;
_generated\190\Windows.Win32.IModalWindow.g.cs (13)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IModalWindow*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IModalWindow*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT Show(IModalWindow* pThis, [Optional] winmdroot.Foundation.HWND hwndOwner) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 91 ((delegate *unmanaged [Stdcall]<IModalWindow*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IModalWindow*)Unsafe.AsPointer(ref this), hwndOwner).ThrowOnFailure(); 94 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 100 var hr = this.QueryInterface(&guid, &pv); 117 internal delegate *unmanaged [Stdcall]<IModalWindow*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 123 internal delegate *unmanaged [Stdcall]<IModalWindow*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT> Show_4; 150winmdroot.Foundation.HRESULT Show([Optional] winmdroot.Foundation.HWND hwndOwner);
_generated\191\Windows.Win32.IMultipleViewProvider.g.cs (34)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IMultipleViewProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IMultipleViewProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT GetViewName(IMultipleViewProvider* pThis, int viewId, winmdroot.Foundation.BSTR* pRetVal) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 94 ((delegate *unmanaged [Stdcall]<IMultipleViewProvider*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IMultipleViewProvider*)Unsafe.AsPointer(ref this), viewId, &__retVal).ThrowOnFailure(); 101 private static winmdroot.Foundation.HRESULT SetCurrentView(IMultipleViewProvider* pThis, int viewId) 105 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 114 return (winmdroot.Foundation.HRESULT)ex.HResult; 133 ((delegate *unmanaged [Stdcall]<IMultipleViewProvider*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IMultipleViewProvider*)Unsafe.AsPointer(ref this), viewId).ThrowOnFailure(); 138 internal unsafe winmdroot.Foundation.HRESULT get_CurrentView(out int pRetVal) 142 winmdroot.Foundation.HRESULT __result = this.get_CurrentView(pRetValLocal); 150 private static winmdroot.Foundation.HRESULT get_CurrentView(IMultipleViewProvider* pThis, int* pRetVal) 154 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 169 public unsafe winmdroot.Foundation.HRESULT get_CurrentView(int* pRetVal) 171 return ((delegate *unmanaged [Stdcall]<IMultipleViewProvider*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IMultipleViewProvider*)Unsafe.AsPointer(ref this), pRetVal); 177 private static winmdroot.Foundation.HRESULT GetSupportedViews(IMultipleViewProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 181 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 190 return (winmdroot.Foundation.HRESULT)ex.HResult; 207 ((delegate *unmanaged [Stdcall]<IMultipleViewProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IMultipleViewProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 211 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 217 var hr = this.QueryInterface(&guid, &pv); 234 internal delegate *unmanaged [Stdcall]<IMultipleViewProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 240 internal delegate *unmanaged [Stdcall]<IMultipleViewProvider*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetViewName_4; 242 internal delegate *unmanaged [Stdcall]<IMultipleViewProvider*,int ,winmdroot.Foundation.HRESULT> SetCurrentView_5; 244 internal delegate *unmanaged [Stdcall]<IMultipleViewProvider*,int* ,winmdroot.Foundation.HRESULT> get_CurrentView_6; 246 internal delegate *unmanaged [Stdcall]<IMultipleViewProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetSupportedViews_7; 276 unsafe winmdroot.Foundation.HRESULT GetViewName(int viewId, winmdroot.Foundation.BSTR* pRetVal); 279winmdroot.Foundation.HRESULT SetCurrentView(int viewId); 282 unsafe winmdroot.Foundation.HRESULT get_CurrentView(int* pRetVal); 285 unsafe winmdroot.Foundation.HRESULT GetSupportedViews(winmdroot.System.Com.SAFEARRAY** pRetVal);
_generated\198\Windows.Win32.IOleAdviseHolder.g.cs (49)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleAdviseHolder*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleAdviseHolder*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT Advise(winmdroot.System.Com.IAdviseSink* pAdvise, out uint pdwConnection) 63 winmdroot.Foundation.HRESULT __result = this.Advise(pAdvise, pdwConnectionLocal); 71 private static winmdroot.Foundation.HRESULT Advise(IOleAdviseHolder* pThis, winmdroot.System.Com.IAdviseSink* pAdvise, uint* pdwConnection) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 99 public unsafe winmdroot.Foundation.HRESULT Advise(winmdroot.System.Com.IAdviseSink* pAdvise, uint* pdwConnection) 101 return ((delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.System.Com.IAdviseSink* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleAdviseHolder*)Unsafe.AsPointer(ref this), pAdvise, pdwConnection); 107 private static winmdroot.Foundation.HRESULT Unadvise(IOleAdviseHolder* pThis, uint dwConnection) 111 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 120 return (winmdroot.Foundation.HRESULT)ex.HResult; 134 public winmdroot.Foundation.HRESULT Unadvise(uint dwConnection) 136 return ((delegate *unmanaged [Stdcall]<IOleAdviseHolder*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleAdviseHolder*)Unsafe.AsPointer(ref this), dwConnection); 142 private static winmdroot.Foundation.HRESULT EnumAdvise(IOleAdviseHolder* pThis, winmdroot.System.Com.IEnumSTATDATA** ppenumAdvise) 146 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 155 return (winmdroot.Foundation.HRESULT)ex.HResult; 171 ((delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleAdviseHolder*)Unsafe.AsPointer(ref this), ppenumAdvise).ThrowOnFailure(); 177 private static winmdroot.Foundation.HRESULT SendOnRename(IOleAdviseHolder* pThis, winmdroot.System.Com.IMoniker* pmk) 181 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 190 return (winmdroot.Foundation.HRESULT)ex.HResult; 200 ((delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleAdviseHolder*)Unsafe.AsPointer(ref this), pmk).ThrowOnFailure(); 206 private static winmdroot.Foundation.HRESULT SendOnSave(IOleAdviseHolder* pThis) 210 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 219 return (winmdroot.Foundation.HRESULT)ex.HResult; 229 public winmdroot.Foundation.HRESULT SendOnSave() 231 return ((delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleAdviseHolder*)Unsafe.AsPointer(ref this)); 237 private static winmdroot.Foundation.HRESULT SendOnClose(IOleAdviseHolder* pThis) 241 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 250 return (winmdroot.Foundation.HRESULT)ex.HResult; 257 public winmdroot.Foundation.HRESULT SendOnClose() 259 return ((delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleAdviseHolder*)Unsafe.AsPointer(ref this)); 262 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 268 var hr = this.QueryInterface(&guid, &pv); 285 internal delegate *unmanaged [Stdcall]<IOleAdviseHolder*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 291 internal delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.System.Com.IAdviseSink* ,uint* ,winmdroot.Foundation.HRESULT> Advise_4; 293 internal delegate *unmanaged [Stdcall]<IOleAdviseHolder*,uint ,winmdroot.Foundation.HRESULT> Unadvise_5; 295 internal delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.HRESULT> EnumAdvise_6; 297 internal delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT> SendOnRename_7; 299 internal delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.Foundation.HRESULT> SendOnSave_8; 301 internal delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.Foundation.HRESULT> SendOnClose_9; 333 unsafe winmdroot.Foundation.HRESULT Advise(winmdroot.System.Com.IAdviseSink* pAdvise, uint* pdwConnection); 336winmdroot.Foundation.HRESULT Unadvise(uint dwConnection); 339 unsafe winmdroot.Foundation.HRESULT EnumAdvise(winmdroot.System.Com.IEnumSTATDATA** ppenumAdvise); 342 unsafe winmdroot.Foundation.HRESULT SendOnRename(winmdroot.System.Com.IMoniker* pmk); 345winmdroot.Foundation.HRESULT SendOnSave(); 348winmdroot.Foundation.HRESULT SendOnClose();
_generated\199\Windows.Win32.IOleClientSite.g.cs (43)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleClientSite*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleClientSite*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT SaveObject(IOleClientSite* pThis) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 88 ((delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleClientSite*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 94 private static winmdroot.Foundation.HRESULT GetMoniker(IOleClientSite* pThis, uint dwAssign, uint dwWhichMoniker, winmdroot.System.Com.IMoniker** ppmk) 98 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 return (winmdroot.Foundation.HRESULT)ex.HResult; 125 ((delegate *unmanaged [Stdcall]<IOleClientSite*,uint ,uint ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleClientSite*)Unsafe.AsPointer(ref this), dwAssign, dwWhichMoniker, ppmk).ThrowOnFailure(); 131 private static winmdroot.Foundation.HRESULT GetContainer(IOleClientSite* pThis, winmdroot.System.Ole.IOleContainer** ppContainer) 135 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 144 return (winmdroot.Foundation.HRESULT)ex.HResult; 160 ((delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.System.Ole.IOleContainer** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleClientSite*)Unsafe.AsPointer(ref this), ppContainer).ThrowOnFailure(); 166 private static winmdroot.Foundation.HRESULT ShowObject(IOleClientSite* pThis) 170 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 179 return (winmdroot.Foundation.HRESULT)ex.HResult; 194 ((delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleClientSite*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 200 private static winmdroot.Foundation.HRESULT OnShowWindow(IOleClientSite* pThis, winmdroot.Foundation.BOOL fShow) 204 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 213 return (winmdroot.Foundation.HRESULT)ex.HResult; 223 ((delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleClientSite*)Unsafe.AsPointer(ref this), fShow).ThrowOnFailure(); 229 private static winmdroot.Foundation.HRESULT RequestNewObjectLayout(IOleClientSite* pThis) 233 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 242 return (winmdroot.Foundation.HRESULT)ex.HResult; 254 ((delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleClientSite*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 257 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 263 var hr = this.QueryInterface(&guid, &pv); 280 internal delegate *unmanaged [Stdcall]<IOleClientSite*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 286 internal delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.Foundation.HRESULT> SaveObject_4; 288 internal delegate *unmanaged [Stdcall]<IOleClientSite*,uint ,uint ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> GetMoniker_5; 290 internal delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.System.Ole.IOleContainer** ,winmdroot.Foundation.HRESULT> GetContainer_6; 292 internal delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.Foundation.HRESULT> ShowObject_7; 294 internal delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> OnShowWindow_8; 296 internal delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.Foundation.HRESULT> RequestNewObjectLayout_9; 328winmdroot.Foundation.HRESULT SaveObject(); 331 unsafe winmdroot.Foundation.HRESULT GetMoniker(uint dwAssign, uint dwWhichMoniker, winmdroot.System.Com.IMoniker** ppmk); 334 unsafe winmdroot.Foundation.HRESULT GetContainer(winmdroot.System.Ole.IOleContainer** ppContainer); 337winmdroot.Foundation.HRESULT ShowObject(); 340winmdroot.Foundation.HRESULT OnShowWindow(winmdroot.Foundation.BOOL fShow); 343winmdroot.Foundation.HRESULT RequestNewObjectLayout();
_generated\200\Windows.Win32.IOleCommandTarget.g.cs (25)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleCommandTarget*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleCommandTarget*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT QueryStatus(in global::System.Guid pguidCmdGroup, uint cCmds, ref winmdroot.System.Ole.OLECMD prgCmds, winmdroot.System.Ole.OLECMDTEXT* pCmdText) 65 winmdroot.Foundation.HRESULT __result = this.QueryStatus(pguidCmdGroupLocal, cCmds, prgCmdsLocal, pCmdText); 74 private static winmdroot.Foundation.HRESULT QueryStatus(IOleCommandTarget* pThis, global::System.Guid* pguidCmdGroup, uint cCmds, winmdroot.System.Ole.OLECMD* prgCmds, winmdroot.System.Ole.OLECMDTEXT* pCmdText) 78 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 87 return (winmdroot.Foundation.HRESULT)ex.HResult; 101 public unsafe winmdroot.Foundation.HRESULT QueryStatus(global::System.Guid* pguidCmdGroup, uint cCmds, winmdroot.System.Ole.OLECMD* prgCmds, winmdroot.System.Ole.OLECMDTEXT* pCmdText) 103 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); 108 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) 116 winmdroot.Foundation.HRESULT __result = this.Exec(pguidCmdGroupLocal, nCmdID, nCmdexecopt, pvaInLocal, pvaOutLocal); 126 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) 130 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 139 return (winmdroot.Foundation.HRESULT)ex.HResult; 157 public unsafe winmdroot.Foundation.HRESULT Exec(global::System.Guid* pguidCmdGroup, uint nCmdID, uint nCmdexecopt, winmdroot.System.Variant.VARIANT* pvaIn, winmdroot.System.Variant.VARIANT* pvaOut) 159 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); 162 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 168 var hr = this.QueryInterface(&guid, &pv); 185 internal delegate *unmanaged [Stdcall]<IOleCommandTarget*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 191 internal delegate *unmanaged [Stdcall]<IOleCommandTarget*,global::System.Guid* ,uint ,winmdroot.System.Ole.OLECMD* ,winmdroot.System.Ole.OLECMDTEXT* ,winmdroot.Foundation.HRESULT> QueryStatus_4; 193 internal delegate *unmanaged [Stdcall]<IOleCommandTarget*,global::System.Guid* ,uint ,uint ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Exec_5; 221 unsafe winmdroot.Foundation.HRESULT QueryStatus(global::System.Guid* pguidCmdGroup, uint cCmds, winmdroot.System.Ole.OLECMD* prgCmds, winmdroot.System.Ole.OLECMDTEXT* pCmdText); 224 unsafe winmdroot.Foundation.HRESULT Exec(global::System.Guid* pguidCmdGroup, uint nCmdID, uint nCmdexecopt, winmdroot.System.Variant.VARIANT* pvaIn, winmdroot.System.Variant.VARIANT* pvaOut);
_generated\201\Windows.Win32.IOleContainer.g.cs (25)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleContainer*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleContainer*)Unsafe.AsPointer(ref this), riid, ppvObject); 70 private static winmdroot.Foundation.HRESULT ParseDisplayName(IOleContainer* pThis, winmdroot.System.Com.IBindCtx* pbc, winmdroot.Foundation.PWSTR pszDisplayName, uint* pchEaten, winmdroot.System.Com.IMoniker** ppmkOut) 74 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 ((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(); 95 private static winmdroot.Foundation.HRESULT EnumObjects(IOleContainer* pThis, uint grfFlags, winmdroot.System.Com.IEnumUnknown** ppenum) 99 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 108 return (winmdroot.Foundation.HRESULT)ex.HResult; 122 ((delegate *unmanaged [Stdcall]<IOleContainer*,uint ,winmdroot.System.Com.IEnumUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleContainer*)Unsafe.AsPointer(ref this), grfFlags, ppenum).ThrowOnFailure(); 128 private static winmdroot.Foundation.HRESULT LockContainer(IOleContainer* pThis, winmdroot.Foundation.BOOL fLock) 132 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 141 return (winmdroot.Foundation.HRESULT)ex.HResult; 154 ((delegate *unmanaged [Stdcall]<IOleContainer*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleContainer*)Unsafe.AsPointer(ref this), fLock).ThrowOnFailure(); 157 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 163 var hr = this.QueryInterface(&guid, &pv); 180 internal delegate *unmanaged [Stdcall]<IOleContainer*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 186 internal delegate *unmanaged [Stdcall]<IOleContainer*,winmdroot.System.Com.IBindCtx* ,winmdroot.Foundation.PWSTR ,uint* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> ParseDisplayName_4; 188 internal delegate *unmanaged [Stdcall]<IOleContainer*,uint ,winmdroot.System.Com.IEnumUnknown** ,winmdroot.Foundation.HRESULT> EnumObjects_5; 190 internal delegate *unmanaged [Stdcall]<IOleContainer*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> LockContainer_6; 219 unsafe new winmdroot.Foundation.HRESULT ParseDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.Foundation.PWSTR pszDisplayName, uint* pchEaten, winmdroot.System.Com.IMoniker** ppmkOut); 222 unsafe winmdroot.Foundation.HRESULT EnumObjects(uint grfFlags, winmdroot.System.Com.IEnumUnknown** ppenum); 225winmdroot.Foundation.HRESULT LockContainer(winmdroot.Foundation.BOOL fLock);
_generated\202\Windows.Win32.IOleControl.g.cs (39)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleControl*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleControl*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT GetControlInfo(ref winmdroot.System.Ole.CONTROLINFO pCI) 63 winmdroot.Foundation.HRESULT __result = this.GetControlInfo(pCILocal); 71 private static winmdroot.Foundation.HRESULT GetControlInfo(IOleControl* pThis, winmdroot.System.Ole.CONTROLINFO* pCI) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 97 public unsafe winmdroot.Foundation.HRESULT GetControlInfo(winmdroot.System.Ole.CONTROLINFO* pCI) 99 return ((delegate *unmanaged [Stdcall]<IOleControl*,winmdroot.System.Ole.CONTROLINFO* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleControl*)Unsafe.AsPointer(ref this), pCI); 104 internal unsafe winmdroot.Foundation.HRESULT OnMnemonic(in winmdroot.UI.WindowsAndMessaging.MSG pMsg) 108 winmdroot.Foundation.HRESULT __result = this.OnMnemonic(pMsgLocal); 116 private static winmdroot.Foundation.HRESULT OnMnemonic(IOleControl* pThis, winmdroot.UI.WindowsAndMessaging.MSG* pMsg) 120 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 129 return (winmdroot.Foundation.HRESULT)ex.HResult; 144 public unsafe winmdroot.Foundation.HRESULT OnMnemonic(winmdroot.UI.WindowsAndMessaging.MSG* pMsg) 146 return ((delegate *unmanaged [Stdcall]<IOleControl*,winmdroot.UI.WindowsAndMessaging.MSG* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleControl*)Unsafe.AsPointer(ref this), pMsg); 152 private static winmdroot.Foundation.HRESULT OnAmbientPropertyChange(IOleControl* pThis, int dispID) 156 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 165 return (winmdroot.Foundation.HRESULT)ex.HResult; 176 public winmdroot.Foundation.HRESULT OnAmbientPropertyChange(int dispID) 178 return ((delegate *unmanaged [Stdcall]<IOleControl*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleControl*)Unsafe.AsPointer(ref this), dispID); 184 private static winmdroot.Foundation.HRESULT FreezeEvents(IOleControl* pThis, winmdroot.Foundation.BOOL bFreeze) 188 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 197 return (winmdroot.Foundation.HRESULT)ex.HResult; 208 public winmdroot.Foundation.HRESULT FreezeEvents(winmdroot.Foundation.BOOL bFreeze) 210 return ((delegate *unmanaged [Stdcall]<IOleControl*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleControl*)Unsafe.AsPointer(ref this), bFreeze); 213 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 219 var hr = this.QueryInterface(&guid, &pv); 236 internal delegate *unmanaged [Stdcall]<IOleControl*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 242 internal delegate *unmanaged [Stdcall]<IOleControl*,winmdroot.System.Ole.CONTROLINFO* ,winmdroot.Foundation.HRESULT> GetControlInfo_4; 244 internal delegate *unmanaged [Stdcall]<IOleControl*,winmdroot.UI.WindowsAndMessaging.MSG* ,winmdroot.Foundation.HRESULT> OnMnemonic_5; 246 internal delegate *unmanaged [Stdcall]<IOleControl*,int ,winmdroot.Foundation.HRESULT> OnAmbientPropertyChange_6; 248 internal delegate *unmanaged [Stdcall]<IOleControl*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> FreezeEvents_7; 278 unsafe winmdroot.Foundation.HRESULT GetControlInfo(winmdroot.System.Ole.CONTROLINFO* pCI); 281 unsafe winmdroot.Foundation.HRESULT OnMnemonic(winmdroot.UI.WindowsAndMessaging.MSG* pMsg); 284winmdroot.Foundation.HRESULT OnAmbientPropertyChange(int dispID); 287winmdroot.Foundation.HRESULT FreezeEvents(winmdroot.Foundation.BOOL bFreeze);
_generated\203\Windows.Win32.IOleControlSite.g.cs (60)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleControlSite*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleControlSite*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT OnControlInfoChanged(IOleControlSite* pThis) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 82 public winmdroot.Foundation.HRESULT OnControlInfoChanged() 84 return ((delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleControlSite*)Unsafe.AsPointer(ref this)); 90 private static winmdroot.Foundation.HRESULT LockInPlaceActive(IOleControlSite* pThis, winmdroot.Foundation.BOOL fLock) 94 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 103 return (winmdroot.Foundation.HRESULT)ex.HResult; 114 public winmdroot.Foundation.HRESULT LockInPlaceActive(winmdroot.Foundation.BOOL fLock) 116 return ((delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleControlSite*)Unsafe.AsPointer(ref this), fLock); 122 private static winmdroot.Foundation.HRESULT GetExtendedControl(IOleControlSite* pThis, winmdroot.System.Com.IDispatch** ppDisp) 126 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 135 return (winmdroot.Foundation.HRESULT)ex.HResult; 150 public unsafe winmdroot.Foundation.HRESULT GetExtendedControl(winmdroot.System.Com.IDispatch** ppDisp) 152 return ((delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleControlSite*)Unsafe.AsPointer(ref this), ppDisp); 157 internal unsafe winmdroot.Foundation.HRESULT TransformCoords(ref winmdroot.Foundation.POINTL pPtlHimetric, ref global::System.Drawing.PointF pPtfContainer, uint dwFlags) 163 winmdroot.Foundation.HRESULT __result = this.TransformCoords(pPtlHimetricLocal, pPtfContainerLocal, dwFlags); 172 private static winmdroot.Foundation.HRESULT TransformCoords(IOleControlSite* pThis, winmdroot.Foundation.POINTL* pPtlHimetric, global::System.Drawing.PointF* pPtfContainer, uint dwFlags) 176 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 185 return (winmdroot.Foundation.HRESULT)ex.HResult; 198 public unsafe winmdroot.Foundation.HRESULT TransformCoords(winmdroot.Foundation.POINTL* pPtlHimetric, global::System.Drawing.PointF* pPtfContainer, uint dwFlags) 200 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); 205 internal unsafe winmdroot.Foundation.HRESULT TranslateAccelerator(in winmdroot.UI.WindowsAndMessaging.MSG pMsg, winmdroot.System.Ole.KEYMODIFIERS grfModifiers) 209 winmdroot.Foundation.HRESULT __result = this.TranslateAccelerator(pMsgLocal, grfModifiers); 217 private static winmdroot.Foundation.HRESULT TranslateAccelerator(IOleControlSite* pThis, winmdroot.UI.WindowsAndMessaging.MSG* pMsg, winmdroot.System.Ole.KEYMODIFIERS grfModifiers) 221 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 230 return (winmdroot.Foundation.HRESULT)ex.HResult; 242 public unsafe winmdroot.Foundation.HRESULT TranslateAccelerator(winmdroot.UI.WindowsAndMessaging.MSG* pMsg, winmdroot.System.Ole.KEYMODIFIERS grfModifiers) 244 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); 250 private static winmdroot.Foundation.HRESULT OnFocus(IOleControlSite* pThis, winmdroot.Foundation.BOOL fGotFocus) 254 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 263 return (winmdroot.Foundation.HRESULT)ex.HResult; 271 public winmdroot.Foundation.HRESULT OnFocus(winmdroot.Foundation.BOOL fGotFocus) 273 return ((delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleControlSite*)Unsafe.AsPointer(ref this), fGotFocus); 279 private static winmdroot.Foundation.HRESULT ShowPropertyFrame(IOleControlSite* pThis) 283 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 292 return (winmdroot.Foundation.HRESULT)ex.HResult; 302 public winmdroot.Foundation.HRESULT ShowPropertyFrame() 304 return ((delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOleControlSite*)Unsafe.AsPointer(ref this)); 307 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 313 var hr = this.QueryInterface(&guid, &pv); 330 internal delegate *unmanaged [Stdcall]<IOleControlSite*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 336 internal delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.HRESULT> OnControlInfoChanged_4; 338 internal delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> LockInPlaceActive_5; 340 internal delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> GetExtendedControl_6; 342 internal delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.POINTL* ,global::System.Drawing.PointF* ,uint ,winmdroot.Foundation.HRESULT> TransformCoords_7; 344 internal delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.UI.WindowsAndMessaging.MSG* ,winmdroot.System.Ole.KEYMODIFIERS ,winmdroot.Foundation.HRESULT> TranslateAccelerator_8; 346 internal delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> OnFocus_9; 348 internal delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.HRESULT> ShowPropertyFrame_10; 381winmdroot.Foundation.HRESULT OnControlInfoChanged(); 384winmdroot.Foundation.HRESULT LockInPlaceActive(winmdroot.Foundation.BOOL fLock); 387 unsafe winmdroot.Foundation.HRESULT GetExtendedControl(winmdroot.System.Com.IDispatch** ppDisp); 390 unsafe winmdroot.Foundation.HRESULT TransformCoords(winmdroot.Foundation.POINTL* pPtlHimetric, global::System.Drawing.PointF* pPtfContainer, uint dwFlags); 393 unsafe winmdroot.Foundation.HRESULT TranslateAccelerator(winmdroot.UI.WindowsAndMessaging.MSG* pMsg, winmdroot.System.Ole.KEYMODIFIERS grfModifiers); 396winmdroot.Foundation.HRESULT OnFocus(winmdroot.Foundation.BOOL fGotFocus); 399winmdroot.Foundation.HRESULT ShowPropertyFrame();
_generated\204\Windows.Win32.IOleInPlaceActiveObject.g.cs (52)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleInPlaceActiveObject*)Unsafe.AsPointer(ref this), riid, ppvObject); 70 private static winmdroot.Foundation.HRESULT GetWindow(IOleInPlaceActiveObject* pThis, winmdroot.Foundation.HWND* phwnd) 74 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 ((delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleInPlaceActiveObject*)Unsafe.AsPointer(ref this), phwnd).ThrowOnFailure(); 95 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IOleInPlaceActiveObject* pThis, winmdroot.Foundation.BOOL fEnterMode) 99 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 108 return (winmdroot.Foundation.HRESULT)ex.HResult; 114 ((delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleInPlaceActiveObject*)Unsafe.AsPointer(ref this), fEnterMode).ThrowOnFailure(); 119 internal unsafe winmdroot.Foundation.HRESULT TranslateAccelerator([Optional] winmdroot.UI.WindowsAndMessaging.MSG? lpmsg) 122 winmdroot.Foundation.HRESULT __result = this.TranslateAccelerator(lpmsg.HasValue ? &lpmsgLocal : null); 129 private static winmdroot.Foundation.HRESULT TranslateAccelerator(IOleInPlaceActiveObject* pThis, [Optional] winmdroot.UI.WindowsAndMessaging.MSG* lpmsg) 133 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 142 return (winmdroot.Foundation.HRESULT)ex.HResult; 156 public unsafe winmdroot.Foundation.HRESULT TranslateAccelerator([Optional] winmdroot.UI.WindowsAndMessaging.MSG* lpmsg) 158 return ((delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.UI.WindowsAndMessaging.MSG* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleInPlaceActiveObject*)Unsafe.AsPointer(ref this), lpmsg); 164 private static winmdroot.Foundation.HRESULT OnFrameWindowActivate(IOleInPlaceActiveObject* pThis, winmdroot.Foundation.BOOL fActivate) 168 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 177 return (winmdroot.Foundation.HRESULT)ex.HResult; 189 ((delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleInPlaceActiveObject*)Unsafe.AsPointer(ref this), fActivate).ThrowOnFailure(); 195 private static winmdroot.Foundation.HRESULT OnDocWindowActivate(IOleInPlaceActiveObject* pThis, winmdroot.Foundation.BOOL fActivate) 199 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 208 return (winmdroot.Foundation.HRESULT)ex.HResult; 221 ((delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleInPlaceActiveObject*)Unsafe.AsPointer(ref this), fActivate).ThrowOnFailure(); 237 private static winmdroot.Foundation.HRESULT ResizeBorder(IOleInPlaceActiveObject* pThis, winmdroot.Foundation.RECT* prcBorder, winmdroot.System.Ole.IOleInPlaceUIWindow* pUIWindow, winmdroot.Foundation.BOOL fFrameWindow) 241 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 250 return (winmdroot.Foundation.HRESULT)ex.HResult; 269 ((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(); 275 private static winmdroot.Foundation.HRESULT EnableModeless(IOleInPlaceActiveObject* pThis, winmdroot.Foundation.BOOL fEnable) 279 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 288 return (winmdroot.Foundation.HRESULT)ex.HResult; 300 ((delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOleInPlaceActiveObject*)Unsafe.AsPointer(ref this), fEnable).ThrowOnFailure(); 303 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 309 var hr = this.QueryInterface(&guid, &pv); 326 internal delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 332 internal delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> GetWindow_4; 334 internal delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_5; 336 internal delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.UI.WindowsAndMessaging.MSG* ,winmdroot.Foundation.HRESULT> TranslateAccelerator_6; 338 internal delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> OnFrameWindowActivate_7; 340 internal delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> OnDocWindowActivate_8; 342 internal delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.RECT* ,winmdroot.System.Ole.IOleInPlaceUIWindow* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ResizeBorder_9; 344 internal delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> EnableModeless_10; 377 unsafe new winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd); 380 new winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode); 383 unsafe winmdroot.Foundation.HRESULT TranslateAccelerator([Optional] winmdroot.UI.WindowsAndMessaging.MSG* lpmsg); 386winmdroot.Foundation.HRESULT OnFrameWindowActivate(winmdroot.Foundation.BOOL fActivate); 389winmdroot.Foundation.HRESULT OnDocWindowActivate(winmdroot.Foundation.BOOL fActivate); 392 unsafe winmdroot.Foundation.HRESULT ResizeBorder(winmdroot.Foundation.RECT* prcBorder, winmdroot.System.Ole.IOleInPlaceUIWindow* pUIWindow, winmdroot.Foundation.BOOL fFrameWindow); 395winmdroot.Foundation.HRESULT EnableModeless(winmdroot.Foundation.BOOL fEnable);
_generated\205\Windows.Win32.IOleInPlaceFrame.g.cs (107)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT GetWindow(out winmdroot.Foundation.HWND phwnd) 63 winmdroot.Foundation.HRESULT __result = this.GetWindow(phwndLocal); 71 private static winmdroot.Foundation.HRESULT GetWindow(IOleInPlaceFrame* pThis, winmdroot.Foundation.HWND* phwnd) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 88 public unsafe winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd) 90 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), phwnd); 96 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IOleInPlaceFrame* pThis, winmdroot.Foundation.BOOL fEnterMode) 100 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 109 return (winmdroot.Foundation.HRESULT)ex.HResult; 113 public winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode) 115 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), fEnterMode); 120 internal unsafe winmdroot.Foundation.HRESULT GetBorder(out winmdroot.Foundation.RECT lprectBorder) 124 winmdroot.Foundation.HRESULT __result = this.GetBorder(lprectBorderLocal); 132 private static winmdroot.Foundation.HRESULT GetBorder(IOleInPlaceFrame* pThis, winmdroot.Foundation.RECT* lprectBorder) 136 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 145 return (winmdroot.Foundation.HRESULT)ex.HResult; 149 public unsafe winmdroot.Foundation.HRESULT GetBorder(winmdroot.Foundation.RECT* lprectBorder) 151 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), lprectBorder); 156 internal unsafe winmdroot.Foundation.HRESULT RequestBorderSpace(in winmdroot.Foundation.RECT pborderwidths) 160 winmdroot.Foundation.HRESULT __result = this.RequestBorderSpace(pborderwidthsLocal); 168 private static winmdroot.Foundation.HRESULT RequestBorderSpace(IOleInPlaceFrame* pThis, winmdroot.Foundation.RECT* pborderwidths) 172 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 181 return (winmdroot.Foundation.HRESULT)ex.HResult; 185 public unsafe winmdroot.Foundation.HRESULT RequestBorderSpace(winmdroot.Foundation.RECT* pborderwidths) 187 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), pborderwidths); 192 internal unsafe winmdroot.Foundation.HRESULT SetBorderSpace(in winmdroot.Foundation.RECT pborderwidths) 196 winmdroot.Foundation.HRESULT __result = this.SetBorderSpace(pborderwidthsLocal); 204 private static winmdroot.Foundation.HRESULT SetBorderSpace(IOleInPlaceFrame* pThis, winmdroot.Foundation.RECT* pborderwidths) 208 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 217 return (winmdroot.Foundation.HRESULT)ex.HResult; 221 public unsafe winmdroot.Foundation.HRESULT SetBorderSpace(winmdroot.Foundation.RECT* pborderwidths) 223 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), pborderwidths); 228 internal unsafe winmdroot.Foundation.HRESULT SetActiveObject(winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, string pszObjName) 232 winmdroot.Foundation.HRESULT __result = this.SetActiveObject(pActiveObject, pszObjNameLocal); 240 private static winmdroot.Foundation.HRESULT SetActiveObject(IOleInPlaceFrame* pThis, winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, winmdroot.Foundation.PCWSTR pszObjName) 244 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 253 return (winmdroot.Foundation.HRESULT)ex.HResult; 257 public unsafe winmdroot.Foundation.HRESULT SetActiveObject(winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, winmdroot.Foundation.PCWSTR pszObjName) 259 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.System.Ole.IOleInPlaceActiveObject* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), pActiveObject, pszObjName); 264 internal unsafe winmdroot.Foundation.HRESULT InsertMenus(winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared, ref winmdroot.System.Ole.OLEMENUGROUPWIDTHS lpMenuWidths) 268 winmdroot.Foundation.HRESULT __result = this.InsertMenus(hmenuShared, lpMenuWidthsLocal); 276 private static winmdroot.Foundation.HRESULT InsertMenus(IOleInPlaceFrame* pThis, winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared, winmdroot.System.Ole.OLEMENUGROUPWIDTHS* lpMenuWidths) 280 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 289 return (winmdroot.Foundation.HRESULT)ex.HResult; 304 public unsafe winmdroot.Foundation.HRESULT InsertMenus(winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared, winmdroot.System.Ole.OLEMENUGROUPWIDTHS* lpMenuWidths) 306 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); 312 private static winmdroot.Foundation.HRESULT SetMenu(IOleInPlaceFrame* pThis, winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared, nint holemenu, winmdroot.Foundation.HWND hwndActiveObject) 316 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 325 return (winmdroot.Foundation.HRESULT)ex.HResult; 341 public winmdroot.Foundation.HRESULT SetMenu(winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared, nint holemenu, winmdroot.Foundation.HWND hwndActiveObject) 343 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); 349 private static winmdroot.Foundation.HRESULT RemoveMenus(IOleInPlaceFrame* pThis, winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared) 353 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 362 return (winmdroot.Foundation.HRESULT)ex.HResult; 376 public winmdroot.Foundation.HRESULT RemoveMenus(winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared) 378 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.UI.WindowsAndMessaging.HMENU ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), hmenuShared); 383 internal unsafe winmdroot.Foundation.HRESULT SetStatusText(string pszStatusText) 387 winmdroot.Foundation.HRESULT __result = this.SetStatusText(pszStatusTextLocal); 395 private static winmdroot.Foundation.HRESULT SetStatusText(IOleInPlaceFrame* pThis, winmdroot.Foundation.PCWSTR pszStatusText) 399 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 408 return (winmdroot.Foundation.HRESULT)ex.HResult; 422 public winmdroot.Foundation.HRESULT SetStatusText(winmdroot.Foundation.PCWSTR pszStatusText) 424 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), pszStatusText); 430 private static winmdroot.Foundation.HRESULT EnableModeless(IOleInPlaceFrame* pThis, winmdroot.Foundation.BOOL fEnable) 434 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 443 return (winmdroot.Foundation.HRESULT)ex.HResult; 453 public winmdroot.Foundation.HRESULT EnableModeless(winmdroot.Foundation.BOOL fEnable) 455 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), fEnable); 460 internal unsafe winmdroot.Foundation.HRESULT TranslateAccelerator(in winmdroot.UI.WindowsAndMessaging.MSG lpmsg, ushort wID) 464 winmdroot.Foundation.HRESULT __result = this.TranslateAccelerator(lpmsgLocal, wID); 472 private static winmdroot.Foundation.HRESULT TranslateAccelerator(IOleInPlaceFrame* pThis, winmdroot.UI.WindowsAndMessaging.MSG* lpmsg, ushort wID) 476 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 485 return (winmdroot.Foundation.HRESULT)ex.HResult; 502 public unsafe winmdroot.Foundation.HRESULT TranslateAccelerator(winmdroot.UI.WindowsAndMessaging.MSG* lpmsg, ushort wID) 504 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.UI.WindowsAndMessaging.MSG* ,ushort ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), lpmsg, wID); 507 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 513 var hr = this.QueryInterface(&guid, &pv); 530 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 536 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> GetWindow_4; 538 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_5; 540 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> GetBorder_6; 542 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> RequestBorderSpace_7; 544 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> SetBorderSpace_8; 546 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.System.Ole.IOleInPlaceActiveObject* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetActiveObject_9; 548 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.UI.WindowsAndMessaging.HMENU ,winmdroot.System.Ole.OLEMENUGROUPWIDTHS* ,winmdroot.Foundation.HRESULT> InsertMenus_10; 550 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.UI.WindowsAndMessaging.HMENU ,nint ,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT> SetMenu_11; 552 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.UI.WindowsAndMessaging.HMENU ,winmdroot.Foundation.HRESULT> RemoveMenus_12; 554 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetStatusText_13; 556 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> EnableModeless_14; 558 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.UI.WindowsAndMessaging.MSG* ,ushort ,winmdroot.Foundation.HRESULT> TranslateAccelerator_15; 596 unsafe new winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd); 599 new winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode); 602 unsafe new winmdroot.Foundation.HRESULT GetBorder(winmdroot.Foundation.RECT* lprectBorder); 605 unsafe new winmdroot.Foundation.HRESULT RequestBorderSpace(winmdroot.Foundation.RECT* pborderwidths); 608 unsafe new winmdroot.Foundation.HRESULT SetBorderSpace(winmdroot.Foundation.RECT* pborderwidths); 611 unsafe new winmdroot.Foundation.HRESULT SetActiveObject(winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, winmdroot.Foundation.PCWSTR pszObjName); 614 unsafe winmdroot.Foundation.HRESULT InsertMenus(winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared, winmdroot.System.Ole.OLEMENUGROUPWIDTHS* lpMenuWidths); 617winmdroot.Foundation.HRESULT SetMenu(winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared, nint holemenu, winmdroot.Foundation.HWND hwndActiveObject); 620winmdroot.Foundation.HRESULT RemoveMenus(winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared); 623winmdroot.Foundation.HRESULT SetStatusText(winmdroot.Foundation.PCWSTR pszStatusText); 626winmdroot.Foundation.HRESULT EnableModeless(winmdroot.Foundation.BOOL fEnable); 629 unsafe winmdroot.Foundation.HRESULT TranslateAccelerator(winmdroot.UI.WindowsAndMessaging.MSG* lpmsg, ushort wID);
_generated\206\Windows.Win32.IOleInPlaceObject.g.cs (51)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleInPlaceObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleInPlaceObject*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT GetWindow(out winmdroot.Foundation.HWND phwnd) 63 winmdroot.Foundation.HRESULT __result = this.GetWindow(phwndLocal); 71 private static winmdroot.Foundation.HRESULT GetWindow(IOleInPlaceObject* pThis, winmdroot.Foundation.HWND* phwnd) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 88 public unsafe winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd) 90 return ((delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleInPlaceObject*)Unsafe.AsPointer(ref this), phwnd); 96 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IOleInPlaceObject* pThis, winmdroot.Foundation.BOOL fEnterMode) 100 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 109 return (winmdroot.Foundation.HRESULT)ex.HResult; 115 ((delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleInPlaceObject*)Unsafe.AsPointer(ref this), fEnterMode).ThrowOnFailure(); 121 private static winmdroot.Foundation.HRESULT InPlaceDeactivate(IOleInPlaceObject* pThis) 125 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 134 return (winmdroot.Foundation.HRESULT)ex.HResult; 148 public winmdroot.Foundation.HRESULT InPlaceDeactivate() 150 return ((delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleInPlaceObject*)Unsafe.AsPointer(ref this)); 156 private static winmdroot.Foundation.HRESULT UIDeactivate(IOleInPlaceObject* pThis) 160 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 169 return (winmdroot.Foundation.HRESULT)ex.HResult; 182 public winmdroot.Foundation.HRESULT UIDeactivate() 184 return ((delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleInPlaceObject*)Unsafe.AsPointer(ref this)); 189 internal unsafe winmdroot.Foundation.HRESULT SetObjectRects(in winmdroot.Foundation.RECT lprcPosRect, in winmdroot.Foundation.RECT lprcClipRect) 195 winmdroot.Foundation.HRESULT __result = this.SetObjectRects(lprcPosRectLocal, lprcClipRectLocal); 204 private static winmdroot.Foundation.HRESULT SetObjectRects(IOleInPlaceObject* pThis, winmdroot.Foundation.RECT* lprcPosRect, winmdroot.Foundation.RECT* lprcClipRect) 208 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 217 return (winmdroot.Foundation.HRESULT)ex.HResult; 232 public unsafe winmdroot.Foundation.HRESULT SetObjectRects(winmdroot.Foundation.RECT* lprcPosRect, winmdroot.Foundation.RECT* lprcClipRect) 234 return ((delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleInPlaceObject*)Unsafe.AsPointer(ref this), lprcPosRect, lprcClipRect); 240 private static winmdroot.Foundation.HRESULT ReactivateAndUndo(IOleInPlaceObject* pThis) 244 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 253 return (winmdroot.Foundation.HRESULT)ex.HResult; 265 ((delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleInPlaceObject*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 268 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 274 var hr = this.QueryInterface(&guid, &pv); 291 internal delegate *unmanaged [Stdcall]<IOleInPlaceObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 297 internal delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> GetWindow_4; 299 internal delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_5; 301 internal delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.HRESULT> InPlaceDeactivate_6; 303 internal delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.HRESULT> UIDeactivate_7; 305 internal delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> SetObjectRects_8; 307 internal delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.HRESULT> ReactivateAndUndo_9; 339 unsafe new winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd); 342 new winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode); 345winmdroot.Foundation.HRESULT InPlaceDeactivate(); 348winmdroot.Foundation.HRESULT UIDeactivate(); 351 unsafe winmdroot.Foundation.HRESULT SetObjectRects(winmdroot.Foundation.RECT* lprcPosRect, winmdroot.Foundation.RECT* lprcClipRect); 354winmdroot.Foundation.HRESULT ReactivateAndUndo();
_generated\207\Windows.Win32.IOleInPlaceObjectWindowless.g.cs (55)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this), riid, ppvObject); 70 private static winmdroot.Foundation.HRESULT GetWindow(IOleInPlaceObjectWindowless* pThis, winmdroot.Foundation.HWND* phwnd) 74 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this), phwnd).ThrowOnFailure(); 95 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IOleInPlaceObjectWindowless* pThis, winmdroot.Foundation.BOOL fEnterMode) 99 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 108 return (winmdroot.Foundation.HRESULT)ex.HResult; 114 ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this), fEnterMode).ThrowOnFailure(); 120 private static winmdroot.Foundation.HRESULT InPlaceDeactivate(IOleInPlaceObjectWindowless* pThis) 124 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 133 return (winmdroot.Foundation.HRESULT)ex.HResult; 139 ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 145 private static winmdroot.Foundation.HRESULT UIDeactivate(IOleInPlaceObjectWindowless* pThis) 149 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 158 return (winmdroot.Foundation.HRESULT)ex.HResult; 164 ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 183 private static winmdroot.Foundation.HRESULT SetObjectRects(IOleInPlaceObjectWindowless* pThis, winmdroot.Foundation.RECT* lprcPosRect, winmdroot.Foundation.RECT* lprcClipRect) 187 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 196 return (winmdroot.Foundation.HRESULT)ex.HResult; 202 ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this), lprcPosRect, lprcClipRect).ThrowOnFailure(); 208 private static winmdroot.Foundation.HRESULT ReactivateAndUndo(IOleInPlaceObjectWindowless* pThis) 212 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 221 return (winmdroot.Foundation.HRESULT)ex.HResult; 227 ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 243 private static winmdroot.Foundation.HRESULT OnWindowMessage(IOleInPlaceObjectWindowless* pThis, uint msg, winmdroot.Foundation.WPARAM wParam, winmdroot.Foundation.LPARAM lParam, winmdroot.Foundation.LRESULT* plResult) 247 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 256 return (winmdroot.Foundation.HRESULT)ex.HResult; 276 ((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(); 282 private static winmdroot.Foundation.HRESULT GetDropTarget(IOleInPlaceObjectWindowless* pThis, winmdroot.System.Ole.IDropTarget** ppDropTarget) 286 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 295 return (winmdroot.Foundation.HRESULT)ex.HResult; 312 ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.System.Ole.IDropTarget** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this), ppDropTarget).ThrowOnFailure(); 315 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 321 var hr = this.QueryInterface(&guid, &pv); 338 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 344 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> GetWindow_4; 346 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_5; 348 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.HRESULT> InPlaceDeactivate_6; 350 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.HRESULT> UIDeactivate_7; 352 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> SetObjectRects_8; 354 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.HRESULT> ReactivateAndUndo_9; 356 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,uint ,winmdroot.Foundation.WPARAM ,winmdroot.Foundation.LPARAM ,winmdroot.Foundation.LRESULT* ,winmdroot.Foundation.HRESULT> OnWindowMessage_10; 358 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.System.Ole.IDropTarget** ,winmdroot.Foundation.HRESULT> GetDropTarget_11; 392 unsafe new winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd); 395 new winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode); 398 new winmdroot.Foundation.HRESULT InPlaceDeactivate(); 401 new winmdroot.Foundation.HRESULT UIDeactivate(); 404 unsafe new winmdroot.Foundation.HRESULT SetObjectRects(winmdroot.Foundation.RECT* lprcPosRect, winmdroot.Foundation.RECT* lprcClipRect); 407 new winmdroot.Foundation.HRESULT ReactivateAndUndo(); 410 unsafe winmdroot.Foundation.HRESULT OnWindowMessage(uint msg, winmdroot.Foundation.WPARAM wParam, winmdroot.Foundation.LPARAM lParam, winmdroot.Foundation.LRESULT* plResult); 413 unsafe winmdroot.Foundation.HRESULT GetDropTarget(winmdroot.System.Ole.IDropTarget** ppDropTarget);
_generated\208\Windows.Win32.IOleInPlaceSite.g.cs (93)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleInPlaceSite*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT GetWindow(out winmdroot.Foundation.HWND phwnd) 63 winmdroot.Foundation.HRESULT __result = this.GetWindow(phwndLocal); 71 private static winmdroot.Foundation.HRESULT GetWindow(IOleInPlaceSite* pThis, winmdroot.Foundation.HWND* phwnd) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 88 public unsafe winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd) 90 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleInPlaceSite*)Unsafe.AsPointer(ref this), phwnd); 96 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IOleInPlaceSite* pThis, winmdroot.Foundation.BOOL fEnterMode) 100 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 109 return (winmdroot.Foundation.HRESULT)ex.HResult; 113 public winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode) 115 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleInPlaceSite*)Unsafe.AsPointer(ref this), fEnterMode); 121 private static winmdroot.Foundation.HRESULT CanInPlaceActivate(IOleInPlaceSite* pThis) 125 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 134 return (winmdroot.Foundation.HRESULT)ex.HResult; 148 public winmdroot.Foundation.HRESULT CanInPlaceActivate() 150 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleInPlaceSite*)Unsafe.AsPointer(ref this)); 156 private static winmdroot.Foundation.HRESULT OnInPlaceActivate(IOleInPlaceSite* pThis) 160 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 169 return (winmdroot.Foundation.HRESULT)ex.HResult; 182 public winmdroot.Foundation.HRESULT OnInPlaceActivate() 184 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleInPlaceSite*)Unsafe.AsPointer(ref this)); 190 private static winmdroot.Foundation.HRESULT OnUIActivate(IOleInPlaceSite* pThis) 194 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 203 return (winmdroot.Foundation.HRESULT)ex.HResult; 216 public winmdroot.Foundation.HRESULT OnUIActivate() 218 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleInPlaceSite*)Unsafe.AsPointer(ref this)); 223 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) 231 winmdroot.Foundation.HRESULT __result = this.GetWindowContext(ppFrame, ppDoc, lprcPosRectLocal, lprcClipRectLocal, lpFrameInfoLocal); 241 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) 245 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 254 return (winmdroot.Foundation.HRESULT)ex.HResult; 272 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) 274 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); 280 private static winmdroot.Foundation.HRESULT Scroll(IOleInPlaceSite* pThis, winmdroot.Foundation.SIZE scrollExtant) 284 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 293 return (winmdroot.Foundation.HRESULT)ex.HResult; 307 public winmdroot.Foundation.HRESULT Scroll(winmdroot.Foundation.SIZE scrollExtant) 309 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.SIZE ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOleInPlaceSite*)Unsafe.AsPointer(ref this), scrollExtant); 315 private static winmdroot.Foundation.HRESULT OnUIDeactivate(IOleInPlaceSite* pThis, winmdroot.Foundation.BOOL fUndoable) 319 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 328 return (winmdroot.Foundation.HRESULT)ex.HResult; 344 ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IOleInPlaceSite*)Unsafe.AsPointer(ref this), fUndoable).ThrowOnFailure(); 350 private static winmdroot.Foundation.HRESULT OnInPlaceDeactivate(IOleInPlaceSite* pThis) 354 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 363 return (winmdroot.Foundation.HRESULT)ex.HResult; 378 ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IOleInPlaceSite*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 384 private static winmdroot.Foundation.HRESULT DiscardUndoState(IOleInPlaceSite* pThis) 388 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 397 return (winmdroot.Foundation.HRESULT)ex.HResult; 412 ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IOleInPlaceSite*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 418 private static winmdroot.Foundation.HRESULT DeactivateAndUndo(IOleInPlaceSite* pThis) 422 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 431 return (winmdroot.Foundation.HRESULT)ex.HResult; 446 ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IOleInPlaceSite*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 451 internal unsafe winmdroot.Foundation.HRESULT OnPosRectChange(in winmdroot.Foundation.RECT lprcPosRect) 455 winmdroot.Foundation.HRESULT __result = this.OnPosRectChange(lprcPosRectLocal); 463 private static winmdroot.Foundation.HRESULT OnPosRectChange(IOleInPlaceSite* pThis, winmdroot.Foundation.RECT* lprcPosRect) 467 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 476 return (winmdroot.Foundation.HRESULT)ex.HResult; 490 public unsafe winmdroot.Foundation.HRESULT OnPosRectChange(winmdroot.Foundation.RECT* lprcPosRect) 492 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IOleInPlaceSite*)Unsafe.AsPointer(ref this), lprcPosRect); 495 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 501 var hr = this.QueryInterface(&guid, &pv); 518 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 524 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> GetWindow_4; 526 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_5; 528 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT> CanInPlaceActivate_6; 530 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT> OnInPlaceActivate_7; 532 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT> OnUIActivate_8; 534 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; 536 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.SIZE ,winmdroot.Foundation.HRESULT> Scroll_10; 538 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> OnUIDeactivate_11; 540 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT> OnInPlaceDeactivate_12; 542 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT> DiscardUndoState_13; 544 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT> DeactivateAndUndo_14; 546 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> OnPosRectChange_15; 584 unsafe new winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd); 587 new winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode); 590winmdroot.Foundation.HRESULT CanInPlaceActivate(); 593winmdroot.Foundation.HRESULT OnInPlaceActivate(); 596winmdroot.Foundation.HRESULT OnUIActivate(); 599 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); 602winmdroot.Foundation.HRESULT Scroll(winmdroot.Foundation.SIZE scrollExtant); 605winmdroot.Foundation.HRESULT OnUIDeactivate(winmdroot.Foundation.BOOL fUndoable); 608winmdroot.Foundation.HRESULT OnInPlaceDeactivate(); 611winmdroot.Foundation.HRESULT DiscardUndoState(); 614winmdroot.Foundation.HRESULT DeactivateAndUndo(); 617 unsafe winmdroot.Foundation.HRESULT OnPosRectChange(winmdroot.Foundation.RECT* lprcPosRect);
_generated\209\Windows.Win32.IOleInPlaceUIWindow.g.cs (59)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleInPlaceUIWindow*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT GetWindow(out winmdroot.Foundation.HWND phwnd) 63 winmdroot.Foundation.HRESULT __result = this.GetWindow(phwndLocal); 71 private static winmdroot.Foundation.HRESULT GetWindow(IOleInPlaceUIWindow* pThis, winmdroot.Foundation.HWND* phwnd) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 88 public unsafe winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd) 90 return ((delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleInPlaceUIWindow*)Unsafe.AsPointer(ref this), phwnd); 96 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IOleInPlaceUIWindow* pThis, winmdroot.Foundation.BOOL fEnterMode) 100 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 109 return (winmdroot.Foundation.HRESULT)ex.HResult; 113 public winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode) 115 return ((delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleInPlaceUIWindow*)Unsafe.AsPointer(ref this), fEnterMode); 120 internal unsafe winmdroot.Foundation.HRESULT GetBorder(out winmdroot.Foundation.RECT lprectBorder) 124 winmdroot.Foundation.HRESULT __result = this.GetBorder(lprectBorderLocal); 132 private static winmdroot.Foundation.HRESULT GetBorder(IOleInPlaceUIWindow* pThis, winmdroot.Foundation.RECT* lprectBorder) 136 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 145 return (winmdroot.Foundation.HRESULT)ex.HResult; 159 public unsafe winmdroot.Foundation.HRESULT GetBorder(winmdroot.Foundation.RECT* lprectBorder) 161 return ((delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleInPlaceUIWindow*)Unsafe.AsPointer(ref this), lprectBorder); 166 internal unsafe winmdroot.Foundation.HRESULT RequestBorderSpace(in winmdroot.Foundation.RECT pborderwidths) 170 winmdroot.Foundation.HRESULT __result = this.RequestBorderSpace(pborderwidthsLocal); 178 private static winmdroot.Foundation.HRESULT RequestBorderSpace(IOleInPlaceUIWindow* pThis, winmdroot.Foundation.RECT* pborderwidths) 182 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 191 return (winmdroot.Foundation.HRESULT)ex.HResult; 207 public unsafe winmdroot.Foundation.HRESULT RequestBorderSpace(winmdroot.Foundation.RECT* pborderwidths) 209 return ((delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleInPlaceUIWindow*)Unsafe.AsPointer(ref this), pborderwidths); 214 internal unsafe winmdroot.Foundation.HRESULT SetBorderSpace(in winmdroot.Foundation.RECT pborderwidths) 218 winmdroot.Foundation.HRESULT __result = this.SetBorderSpace(pborderwidthsLocal); 226 private static winmdroot.Foundation.HRESULT SetBorderSpace(IOleInPlaceUIWindow* pThis, winmdroot.Foundation.RECT* pborderwidths) 230 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 239 return (winmdroot.Foundation.HRESULT)ex.HResult; 254 public unsafe winmdroot.Foundation.HRESULT SetBorderSpace(winmdroot.Foundation.RECT* pborderwidths) 256 return ((delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleInPlaceUIWindow*)Unsafe.AsPointer(ref this), pborderwidths); 261 internal unsafe winmdroot.Foundation.HRESULT SetActiveObject(winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, string pszObjName) 265 winmdroot.Foundation.HRESULT __result = this.SetActiveObject(pActiveObject, pszObjNameLocal); 273 private static winmdroot.Foundation.HRESULT SetActiveObject(IOleInPlaceUIWindow* pThis, winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, winmdroot.Foundation.PCWSTR pszObjName) 277 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 286 return (winmdroot.Foundation.HRESULT)ex.HResult; 301 public unsafe winmdroot.Foundation.HRESULT SetActiveObject(winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, winmdroot.Foundation.PCWSTR pszObjName) 303 return ((delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.System.Ole.IOleInPlaceActiveObject* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleInPlaceUIWindow*)Unsafe.AsPointer(ref this), pActiveObject, pszObjName); 306 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 312 var hr = this.QueryInterface(&guid, &pv); 329 internal delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 335 internal delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> GetWindow_4; 337 internal delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_5; 339 internal delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> GetBorder_6; 341 internal delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> RequestBorderSpace_7; 343 internal delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> SetBorderSpace_8; 345 internal delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.System.Ole.IOleInPlaceActiveObject* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetActiveObject_9; 377 unsafe new winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd); 380 new winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode); 383 unsafe winmdroot.Foundation.HRESULT GetBorder(winmdroot.Foundation.RECT* lprectBorder); 386 unsafe winmdroot.Foundation.HRESULT RequestBorderSpace(winmdroot.Foundation.RECT* pborderwidths); 389 unsafe winmdroot.Foundation.HRESULT SetBorderSpace(winmdroot.Foundation.RECT* pborderwidths); 392 unsafe winmdroot.Foundation.HRESULT SetActiveObject(winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, winmdroot.Foundation.PCWSTR pszObjName);
_generated\210\Windows.Win32.IOleObject.g.cs (147)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleObject*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT SetClientSite(IOleObject* pThis, winmdroot.System.Ole.IOleClientSite* pClientSite) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 87 public unsafe winmdroot.Foundation.HRESULT SetClientSite(winmdroot.System.Ole.IOleClientSite* pClientSite) 89 return ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Ole.IOleClientSite* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleObject*)Unsafe.AsPointer(ref this), pClientSite); 95 private static winmdroot.Foundation.HRESULT GetClientSite(IOleObject* pThis, winmdroot.System.Ole.IOleClientSite** ppClientSite) 99 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 108 return (winmdroot.Foundation.HRESULT)ex.HResult; 119 public unsafe winmdroot.Foundation.HRESULT GetClientSite(winmdroot.System.Ole.IOleClientSite** ppClientSite) 121 return ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Ole.IOleClientSite** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleObject*)Unsafe.AsPointer(ref this), ppClientSite); 140 private static winmdroot.Foundation.HRESULT SetHostNames(IOleObject* pThis, winmdroot.Foundation.PCWSTR szContainerApp, winmdroot.Foundation.PCWSTR szContainerObj) 144 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 169 ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleObject*)Unsafe.AsPointer(ref this), szContainerApp, szContainerObj).ThrowOnFailure(); 175 private static winmdroot.Foundation.HRESULT Close(IOleObject* pThis, uint dwSaveOption) 179 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 188 return (winmdroot.Foundation.HRESULT)ex.HResult; 208 ((delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleObject*)Unsafe.AsPointer(ref this), dwSaveOption).ThrowOnFailure(); 214 private static winmdroot.Foundation.HRESULT SetMoniker(IOleObject* pThis, uint dwWhichMoniker, winmdroot.System.Com.IMoniker* pmk) 218 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 227 return (winmdroot.Foundation.HRESULT)ex.HResult; 244 ((delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleObject*)Unsafe.AsPointer(ref this), dwWhichMoniker, pmk).ThrowOnFailure(); 250 private static winmdroot.Foundation.HRESULT GetMoniker(IOleObject* pThis, uint dwAssign, uint dwWhichMoniker, winmdroot.System.Com.IMoniker** ppmk) 254 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 263 return (winmdroot.Foundation.HRESULT)ex.HResult; 279 ((delegate *unmanaged [Stdcall]<IOleObject*,uint ,uint ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleObject*)Unsafe.AsPointer(ref this), dwAssign, dwWhichMoniker, ppmk).ThrowOnFailure(); 285 private static winmdroot.Foundation.HRESULT InitFromData(IOleObject* pThis, winmdroot.System.Com.IDataObject* pDataObject, winmdroot.Foundation.BOOL fCreation, uint dwReserved) 289 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 298 return (winmdroot.Foundation.HRESULT)ex.HResult; 316 ((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(); 322 private static winmdroot.Foundation.HRESULT GetClipboardData(IOleObject* pThis, uint dwReserved, winmdroot.System.Com.IDataObject** ppDataObject) 326 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 335 return (winmdroot.Foundation.HRESULT)ex.HResult; 352 ((delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.System.Com.IDataObject** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IOleObject*)Unsafe.AsPointer(ref this), dwReserved, ppDataObject).ThrowOnFailure(); 357 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) 363 winmdroot.Foundation.HRESULT __result = this.DoVerb(iVerb, lpmsgLocal, pActiveSite, lindex, hwndParent, lprcPosRectLocal); 372 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) 376 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 385 return (winmdroot.Foundation.HRESULT)ex.HResult; 405 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) 407 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); 413 private static winmdroot.Foundation.HRESULT EnumVerbs(IOleObject* pThis, winmdroot.System.Ole.IEnumOLEVERB** ppEnumOleVerb) 417 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 426 return (winmdroot.Foundation.HRESULT)ex.HResult; 441 ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Ole.IEnumOLEVERB** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IOleObject*)Unsafe.AsPointer(ref this), ppEnumOleVerb).ThrowOnFailure(); 447 private static winmdroot.Foundation.HRESULT Update(IOleObject* pThis) 451 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 460 return (winmdroot.Foundation.HRESULT)ex.HResult; 475 ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IOleObject*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 481 private static winmdroot.Foundation.HRESULT IsUpToDate(IOleObject* pThis) 485 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 494 return (winmdroot.Foundation.HRESULT)ex.HResult; 510 ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IOleObject*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 526 private static winmdroot.Foundation.HRESULT GetUserClassID(IOleObject* pThis, global::System.Guid* pClsid) 530 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 539 return (winmdroot.Foundation.HRESULT)ex.HResult; 552 ((delegate *unmanaged [Stdcall]<IOleObject*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IOleObject*)Unsafe.AsPointer(ref this), pClsid).ThrowOnFailure(); 568 private static winmdroot.Foundation.HRESULT GetUserType(IOleObject* pThis, uint dwFormOfType, winmdroot.Foundation.PWSTR* pszUserType) 572 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 581 return (winmdroot.Foundation.HRESULT)ex.HResult; 599 ((delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IOleObject*)Unsafe.AsPointer(ref this), dwFormOfType, pszUserType).ThrowOnFailure(); 604 internal unsafe winmdroot.Foundation.HRESULT SetExtent(winmdroot.System.Com.DVASPECT dwDrawAspect, in winmdroot.Foundation.SIZE psizel) 608 winmdroot.Foundation.HRESULT __result = this.SetExtent(dwDrawAspect, psizelLocal); 616 private static winmdroot.Foundation.HRESULT SetExtent(IOleObject* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, winmdroot.Foundation.SIZE* psizel) 620 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 629 return (winmdroot.Foundation.HRESULT)ex.HResult; 644 public unsafe winmdroot.Foundation.HRESULT SetExtent(winmdroot.System.Com.DVASPECT dwDrawAspect, winmdroot.Foundation.SIZE* psizel) 646 return ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.DVASPECT ,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IOleObject*)Unsafe.AsPointer(ref this), dwDrawAspect, psizel); 651 internal unsafe winmdroot.Foundation.HRESULT GetExtent(winmdroot.System.Com.DVASPECT dwDrawAspect, out winmdroot.Foundation.SIZE psizel) 655 winmdroot.Foundation.HRESULT __result = this.GetExtent(dwDrawAspect, psizelLocal); 663 private static winmdroot.Foundation.HRESULT GetExtent(IOleObject* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, winmdroot.Foundation.SIZE* psizel) 667 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 676 return (winmdroot.Foundation.HRESULT)ex.HResult; 691 public unsafe winmdroot.Foundation.HRESULT GetExtent(winmdroot.System.Com.DVASPECT dwDrawAspect, winmdroot.Foundation.SIZE* psizel) 693 return ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.DVASPECT ,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IOleObject*)Unsafe.AsPointer(ref this), dwDrawAspect, psizel); 709 private static winmdroot.Foundation.HRESULT Advise(IOleObject* pThis, winmdroot.System.Com.IAdviseSink* pAdvSink, uint* pdwConnection) 713 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 722 return (winmdroot.Foundation.HRESULT)ex.HResult; 739 ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.IAdviseSink* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IOleObject*)Unsafe.AsPointer(ref this), pAdvSink, pdwConnection).ThrowOnFailure(); 745 private static winmdroot.Foundation.HRESULT Unadvise(IOleObject* pThis, uint dwConnection) 749 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 758 return (winmdroot.Foundation.HRESULT)ex.HResult; 771 ((delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IOleObject*)Unsafe.AsPointer(ref this), dwConnection).ThrowOnFailure(); 777 private static winmdroot.Foundation.HRESULT EnumAdvise(IOleObject* pThis, winmdroot.System.Com.IEnumSTATDATA** ppenumAdvise) 781 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 790 return (winmdroot.Foundation.HRESULT)ex.HResult; 806 ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IOleObject*)Unsafe.AsPointer(ref this), ppenumAdvise).ThrowOnFailure(); 811 internal unsafe winmdroot.Foundation.HRESULT GetMiscStatus(winmdroot.System.Com.DVASPECT dwAspect, out winmdroot.System.Ole.OLEMISC pdwStatus) 815 winmdroot.Foundation.HRESULT __result = this.GetMiscStatus(dwAspect, pdwStatusLocal); 823 private static winmdroot.Foundation.HRESULT GetMiscStatus(IOleObject* pThis, winmdroot.System.Com.DVASPECT dwAspect, winmdroot.System.Ole.OLEMISC* pdwStatus) 827 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 836 return (winmdroot.Foundation.HRESULT)ex.HResult; 853 public unsafe winmdroot.Foundation.HRESULT GetMiscStatus(winmdroot.System.Com.DVASPECT dwAspect, winmdroot.System.Ole.OLEMISC* pdwStatus) 855 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); 861 private static winmdroot.Foundation.HRESULT SetColorScheme(IOleObject* pThis, winmdroot.Graphics.Gdi.LOGPALETTE* pLogpal) 865 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 874 return (winmdroot.Foundation.HRESULT)ex.HResult; 887 ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.Graphics.Gdi.LOGPALETTE* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IOleObject*)Unsafe.AsPointer(ref this), pLogpal).ThrowOnFailure(); 890 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 896 var hr = this.QueryInterface(&guid, &pv); 913 internal delegate *unmanaged [Stdcall]<IOleObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 919 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Ole.IOleClientSite* ,winmdroot.Foundation.HRESULT> SetClientSite_4; 921 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Ole.IOleClientSite** ,winmdroot.Foundation.HRESULT> GetClientSite_5; 923 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetHostNames_6; 925 internal delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.Foundation.HRESULT> Close_7; 927 internal delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT> SetMoniker_8; 929 internal delegate *unmanaged [Stdcall]<IOleObject*,uint ,uint ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> GetMoniker_9; 931 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.BOOL ,uint ,winmdroot.Foundation.HRESULT> InitFromData_10; 933 internal delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.System.Com.IDataObject** ,winmdroot.Foundation.HRESULT> GetClipboardData_11; 935 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; 937 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Ole.IEnumOLEVERB** ,winmdroot.Foundation.HRESULT> EnumVerbs_13; 939 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.Foundation.HRESULT> Update_14; 941 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.Foundation.HRESULT> IsUpToDate_15; 943 internal delegate *unmanaged [Stdcall]<IOleObject*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetUserClassID_16; 945 internal delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT> GetUserType_17; 947 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.DVASPECT ,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT> SetExtent_18; 949 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.DVASPECT ,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT> GetExtent_19; 951 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.IAdviseSink* ,uint* ,winmdroot.Foundation.HRESULT> Advise_20; 953 internal delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.Foundation.HRESULT> Unadvise_21; 955 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.HRESULT> EnumAdvise_22; 957 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.DVASPECT ,winmdroot.System.Ole.OLEMISC* ,winmdroot.Foundation.HRESULT> GetMiscStatus_23; 959 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.Graphics.Gdi.LOGPALETTE* ,winmdroot.Foundation.HRESULT> SetColorScheme_24; 1006 unsafe winmdroot.Foundation.HRESULT SetClientSite(winmdroot.System.Ole.IOleClientSite* pClientSite); 1009 unsafe winmdroot.Foundation.HRESULT GetClientSite(winmdroot.System.Ole.IOleClientSite** ppClientSite); 1012winmdroot.Foundation.HRESULT SetHostNames(winmdroot.Foundation.PCWSTR szContainerApp, winmdroot.Foundation.PCWSTR szContainerObj); 1015winmdroot.Foundation.HRESULT Close(uint dwSaveOption); 1018 unsafe winmdroot.Foundation.HRESULT SetMoniker(uint dwWhichMoniker, winmdroot.System.Com.IMoniker* pmk); 1021 unsafe winmdroot.Foundation.HRESULT GetMoniker(uint dwAssign, uint dwWhichMoniker, winmdroot.System.Com.IMoniker** ppmk); 1024 unsafe winmdroot.Foundation.HRESULT InitFromData(winmdroot.System.Com.IDataObject* pDataObject, winmdroot.Foundation.BOOL fCreation, uint dwReserved); 1027 unsafe winmdroot.Foundation.HRESULT GetClipboardData(uint dwReserved, winmdroot.System.Com.IDataObject** ppDataObject); 1030 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); 1033 unsafe winmdroot.Foundation.HRESULT EnumVerbs(winmdroot.System.Ole.IEnumOLEVERB** ppEnumOleVerb); 1036winmdroot.Foundation.HRESULT Update(); 1039winmdroot.Foundation.HRESULT IsUpToDate(); 1042 unsafe winmdroot.Foundation.HRESULT GetUserClassID(global::System.Guid* pClsid); 1045 unsafe winmdroot.Foundation.HRESULT GetUserType(uint dwFormOfType, winmdroot.Foundation.PWSTR* pszUserType); 1048 unsafe winmdroot.Foundation.HRESULT SetExtent(winmdroot.System.Com.DVASPECT dwDrawAspect, winmdroot.Foundation.SIZE* psizel); 1051 unsafe winmdroot.Foundation.HRESULT GetExtent(winmdroot.System.Com.DVASPECT dwDrawAspect, winmdroot.Foundation.SIZE* psizel); 1054 unsafe winmdroot.Foundation.HRESULT Advise(winmdroot.System.Com.IAdviseSink* pAdvSink, uint* pdwConnection); 1057winmdroot.Foundation.HRESULT Unadvise(uint dwConnection); 1060 unsafe winmdroot.Foundation.HRESULT EnumAdvise(winmdroot.System.Com.IEnumSTATDATA** ppenumAdvise); 1063 unsafe winmdroot.Foundation.HRESULT GetMiscStatus(winmdroot.System.Com.DVASPECT dwAspect, winmdroot.System.Ole.OLEMISC* pdwStatus); 1066 unsafe winmdroot.Foundation.HRESULT SetColorScheme(winmdroot.Graphics.Gdi.LOGPALETTE* pLogpal);
_generated\211\Windows.Win32.IOleParentUndoUnit.g.cs (61)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT Do(IOleParentUndoUnit* pThis, winmdroot.System.Ole.IOleUndoManager* pUndoManager) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 79 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleUndoManager* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pUndoManager).ThrowOnFailure(); 95 private static winmdroot.Foundation.HRESULT GetDescription(IOleParentUndoUnit* pThis, winmdroot.Foundation.BSTR* pBstr) 99 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 108 return (winmdroot.Foundation.HRESULT)ex.HResult; 114 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pBstr).ThrowOnFailure(); 133 private static winmdroot.Foundation.HRESULT GetUnitType(IOleParentUndoUnit* pThis, global::System.Guid* pClsid, int* plID) 137 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 146 return (winmdroot.Foundation.HRESULT)ex.HResult; 152 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,global::System.Guid* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pClsid, plID).ThrowOnFailure(); 158 private static winmdroot.Foundation.HRESULT OnNextAdd(IOleParentUndoUnit* pThis) 162 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 171 return (winmdroot.Foundation.HRESULT)ex.HResult; 177 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 183 private static winmdroot.Foundation.HRESULT Open(IOleParentUndoUnit* pThis, winmdroot.System.Ole.IOleParentUndoUnit* pPUU) 187 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 196 return (winmdroot.Foundation.HRESULT)ex.HResult; 209 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleParentUndoUnit* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pPUU).ThrowOnFailure(); 215 private static winmdroot.Foundation.HRESULT Close(IOleParentUndoUnit* pThis, winmdroot.System.Ole.IOleParentUndoUnit* pPUU, winmdroot.Foundation.BOOL fCommit) 219 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 228 return (winmdroot.Foundation.HRESULT)ex.HResult; 245 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleParentUndoUnit* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pPUU, fCommit).ThrowOnFailure(); 251 private static winmdroot.Foundation.HRESULT Add(IOleParentUndoUnit* pThis, winmdroot.System.Ole.IOleUndoUnit* pUU) 255 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 264 return (winmdroot.Foundation.HRESULT)ex.HResult; 274 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pUU).ThrowOnFailure(); 280 private static winmdroot.Foundation.HRESULT FindUnit(IOleParentUndoUnit* pThis, winmdroot.System.Ole.IOleUndoUnit* pUU) 284 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 293 return (winmdroot.Foundation.HRESULT)ex.HResult; 303 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pUU).ThrowOnFailure(); 319 private static winmdroot.Foundation.HRESULT GetParentState(IOleParentUndoUnit* pThis, uint* pdwState) 323 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 332 return (winmdroot.Foundation.HRESULT)ex.HResult; 345 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pdwState).ThrowOnFailure(); 348 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 354 var hr = this.QueryInterface(&guid, &pv); 371 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 377 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleUndoManager* ,winmdroot.Foundation.HRESULT> Do_4; 379 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDescription_5; 381 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,global::System.Guid* ,int* ,winmdroot.Foundation.HRESULT> GetUnitType_6; 383 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.Foundation.HRESULT> OnNextAdd_7; 385 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleParentUndoUnit* ,winmdroot.Foundation.HRESULT> Open_8; 387 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleParentUndoUnit* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Close_9; 389 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT> Add_10; 391 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT> FindUnit_11; 393 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,uint* ,winmdroot.Foundation.HRESULT> GetParentState_12; 428 unsafe new winmdroot.Foundation.HRESULT Do(winmdroot.System.Ole.IOleUndoManager* pUndoManager); 431 unsafe new winmdroot.Foundation.HRESULT GetDescription(winmdroot.Foundation.BSTR* pBstr); 434 unsafe new winmdroot.Foundation.HRESULT GetUnitType(global::System.Guid* pClsid, int* plID); 437 new winmdroot.Foundation.HRESULT OnNextAdd(); 440 unsafe winmdroot.Foundation.HRESULT Open(winmdroot.System.Ole.IOleParentUndoUnit* pPUU); 443 unsafe winmdroot.Foundation.HRESULT Close(winmdroot.System.Ole.IOleParentUndoUnit* pPUU, winmdroot.Foundation.BOOL fCommit); 446 unsafe winmdroot.Foundation.HRESULT Add(winmdroot.System.Ole.IOleUndoUnit* pUU); 449 unsafe winmdroot.Foundation.HRESULT FindUnit(winmdroot.System.Ole.IOleUndoUnit* pUU); 452 unsafe winmdroot.Foundation.HRESULT GetParentState(uint* pdwState);
_generated\212\Windows.Win32.IOleUndoManager.g.cs (80)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleUndoManager*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleUndoManager*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT Open(IOleUndoManager* pThis, winmdroot.System.Ole.IOleParentUndoUnit* pPUU) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 86 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleParentUndoUnit* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleUndoManager*)Unsafe.AsPointer(ref this), pPUU).ThrowOnFailure(); 92 private static winmdroot.Foundation.HRESULT Close(IOleUndoManager* pThis, winmdroot.System.Ole.IOleParentUndoUnit* pPUU, winmdroot.Foundation.BOOL fCommit) 96 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 120 public unsafe winmdroot.Foundation.HRESULT Close(winmdroot.System.Ole.IOleParentUndoUnit* pPUU, winmdroot.Foundation.BOOL fCommit) 122 return ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleParentUndoUnit* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleUndoManager*)Unsafe.AsPointer(ref this), pPUU, fCommit); 128 private static winmdroot.Foundation.HRESULT Add(IOleUndoManager* pThis, winmdroot.System.Ole.IOleUndoUnit* pUU) 132 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 141 return (winmdroot.Foundation.HRESULT)ex.HResult; 154 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleUndoManager*)Unsafe.AsPointer(ref this), pUU).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT GetOpenParentState(IOleUndoManager* pThis, uint* pdwState) 174 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 183 return (winmdroot.Foundation.HRESULT)ex.HResult; 197 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleUndoManager*)Unsafe.AsPointer(ref this), pdwState).ThrowOnFailure(); 203 private static winmdroot.Foundation.HRESULT DiscardFrom(IOleUndoManager* pThis, winmdroot.System.Ole.IOleUndoUnit* pUU) 207 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 216 return (winmdroot.Foundation.HRESULT)ex.HResult; 232 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleUndoManager*)Unsafe.AsPointer(ref this), pUU).ThrowOnFailure(); 238 private static winmdroot.Foundation.HRESULT UndoTo(IOleUndoManager* pThis, winmdroot.System.Ole.IOleUndoUnit* pUU) 242 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 251 return (winmdroot.Foundation.HRESULT)ex.HResult; 268 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleUndoManager*)Unsafe.AsPointer(ref this), pUU).ThrowOnFailure(); 274 private static winmdroot.Foundation.HRESULT RedoTo(IOleUndoManager* pThis, winmdroot.System.Ole.IOleUndoUnit* pUU) 278 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 287 return (winmdroot.Foundation.HRESULT)ex.HResult; 303 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOleUndoManager*)Unsafe.AsPointer(ref this), pUU).ThrowOnFailure(); 309 private static winmdroot.Foundation.HRESULT EnumUndoable(IOleUndoManager* pThis, winmdroot.System.Ole.IEnumOleUndoUnits** ppEnum) 313 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 322 return (winmdroot.Foundation.HRESULT)ex.HResult; 338 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IEnumOleUndoUnits** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IOleUndoManager*)Unsafe.AsPointer(ref this), ppEnum).ThrowOnFailure(); 344 private static winmdroot.Foundation.HRESULT EnumRedoable(IOleUndoManager* pThis, winmdroot.System.Ole.IEnumOleUndoUnits** ppEnum) 348 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 357 return (winmdroot.Foundation.HRESULT)ex.HResult; 373 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IEnumOleUndoUnits** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IOleUndoManager*)Unsafe.AsPointer(ref this), ppEnum).ThrowOnFailure(); 389 private static winmdroot.Foundation.HRESULT GetLastUndoDescription(IOleUndoManager* pThis, winmdroot.Foundation.BSTR* pBstr) 393 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 402 return (winmdroot.Foundation.HRESULT)ex.HResult; 415 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IOleUndoManager*)Unsafe.AsPointer(ref this), pBstr).ThrowOnFailure(); 431 private static winmdroot.Foundation.HRESULT GetLastRedoDescription(IOleUndoManager* pThis, winmdroot.Foundation.BSTR* pBstr) 435 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 444 return (winmdroot.Foundation.HRESULT)ex.HResult; 457 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IOleUndoManager*)Unsafe.AsPointer(ref this), pBstr).ThrowOnFailure(); 463 private static winmdroot.Foundation.HRESULT Enable(IOleUndoManager* pThis, winmdroot.Foundation.BOOL fEnable) 467 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 476 return (winmdroot.Foundation.HRESULT)ex.HResult; 492 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IOleUndoManager*)Unsafe.AsPointer(ref this), fEnable).ThrowOnFailure(); 495 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 501 var hr = this.QueryInterface(&guid, &pv); 518 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 524 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleParentUndoUnit* ,winmdroot.Foundation.HRESULT> Open_4; 526 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleParentUndoUnit* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Close_5; 528 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT> Add_6; 530 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,uint* ,winmdroot.Foundation.HRESULT> GetOpenParentState_7; 532 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT> DiscardFrom_8; 534 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT> UndoTo_9; 536 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT> RedoTo_10; 538 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IEnumOleUndoUnits** ,winmdroot.Foundation.HRESULT> EnumUndoable_11; 540 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IEnumOleUndoUnits** ,winmdroot.Foundation.HRESULT> EnumRedoable_12; 542 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetLastUndoDescription_13; 544 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetLastRedoDescription_14; 546 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Enable_15; 584 unsafe winmdroot.Foundation.HRESULT Open(winmdroot.System.Ole.IOleParentUndoUnit* pPUU); 587 unsafe winmdroot.Foundation.HRESULT Close(winmdroot.System.Ole.IOleParentUndoUnit* pPUU, winmdroot.Foundation.BOOL fCommit); 590 unsafe winmdroot.Foundation.HRESULT Add(winmdroot.System.Ole.IOleUndoUnit* pUU); 593 unsafe winmdroot.Foundation.HRESULT GetOpenParentState(uint* pdwState); 596 unsafe winmdroot.Foundation.HRESULT DiscardFrom(winmdroot.System.Ole.IOleUndoUnit* pUU); 599 unsafe winmdroot.Foundation.HRESULT UndoTo(winmdroot.System.Ole.IOleUndoUnit* pUU); 602 unsafe winmdroot.Foundation.HRESULT RedoTo(winmdroot.System.Ole.IOleUndoUnit* pUU); 605 unsafe winmdroot.Foundation.HRESULT EnumUndoable(winmdroot.System.Ole.IEnumOleUndoUnits** ppEnum); 608 unsafe winmdroot.Foundation.HRESULT EnumRedoable(winmdroot.System.Ole.IEnumOleUndoUnits** ppEnum); 611 unsafe winmdroot.Foundation.HRESULT GetLastUndoDescription(winmdroot.Foundation.BSTR* pBstr); 614 unsafe winmdroot.Foundation.HRESULT GetLastRedoDescription(winmdroot.Foundation.BSTR* pBstr); 617winmdroot.Foundation.HRESULT Enable(winmdroot.Foundation.BOOL fEnable);
_generated\213\Windows.Win32.IOleUndoUnit.g.cs (31)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleUndoUnit*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleUndoUnit*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT Do(IOleUndoUnit* pThis, winmdroot.System.Ole.IOleUndoManager* pUndoManager) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 86 ((delegate *unmanaged [Stdcall]<IOleUndoUnit*,winmdroot.System.Ole.IOleUndoManager* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleUndoUnit*)Unsafe.AsPointer(ref this), pUndoManager).ThrowOnFailure(); 102 private static winmdroot.Foundation.HRESULT GetDescription(IOleUndoUnit* pThis, winmdroot.Foundation.BSTR* pBstr) 106 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 115 return (winmdroot.Foundation.HRESULT)ex.HResult; 128 ((delegate *unmanaged [Stdcall]<IOleUndoUnit*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleUndoUnit*)Unsafe.AsPointer(ref this), pBstr).ThrowOnFailure(); 147 private static winmdroot.Foundation.HRESULT GetUnitType(IOleUndoUnit* pThis, global::System.Guid* pClsid, int* plID) 151 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 160 return (winmdroot.Foundation.HRESULT)ex.HResult; 174 ((delegate *unmanaged [Stdcall]<IOleUndoUnit*,global::System.Guid* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleUndoUnit*)Unsafe.AsPointer(ref this), pClsid, plID).ThrowOnFailure(); 180 private static winmdroot.Foundation.HRESULT OnNextAdd(IOleUndoUnit* pThis) 184 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 193 return (winmdroot.Foundation.HRESULT)ex.HResult; 205 ((delegate *unmanaged [Stdcall]<IOleUndoUnit*,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleUndoUnit*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 208 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 214 var hr = this.QueryInterface(&guid, &pv); 231 internal delegate *unmanaged [Stdcall]<IOleUndoUnit*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 237 internal delegate *unmanaged [Stdcall]<IOleUndoUnit*,winmdroot.System.Ole.IOleUndoManager* ,winmdroot.Foundation.HRESULT> Do_4; 239 internal delegate *unmanaged [Stdcall]<IOleUndoUnit*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDescription_5; 241 internal delegate *unmanaged [Stdcall]<IOleUndoUnit*,global::System.Guid* ,int* ,winmdroot.Foundation.HRESULT> GetUnitType_6; 243 internal delegate *unmanaged [Stdcall]<IOleUndoUnit*,winmdroot.Foundation.HRESULT> OnNextAdd_7; 273 unsafe winmdroot.Foundation.HRESULT Do(winmdroot.System.Ole.IOleUndoManager* pUndoManager); 276 unsafe winmdroot.Foundation.HRESULT GetDescription(winmdroot.Foundation.BSTR* pBstr); 279 unsafe winmdroot.Foundation.HRESULT GetUnitType(global::System.Guid* pClsid, int* plID); 282winmdroot.Foundation.HRESULT OnNextAdd();
_generated\214\Windows.Win32.IOleWindow.g.cs (23)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IOleWindow*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleWindow*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT GetWindow(out winmdroot.Foundation.HWND phwnd) 63 winmdroot.Foundation.HRESULT __result = this.GetWindow(phwndLocal); 71 private static winmdroot.Foundation.HRESULT GetWindow(IOleWindow* pThis, winmdroot.Foundation.HWND* phwnd) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 99 public unsafe winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd) 101 return ((delegate *unmanaged [Stdcall]<IOleWindow*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleWindow*)Unsafe.AsPointer(ref this), phwnd); 107 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IOleWindow* pThis, winmdroot.Foundation.BOOL fEnterMode) 111 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 120 return (winmdroot.Foundation.HRESULT)ex.HResult; 135 public winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode) 137 return ((delegate *unmanaged [Stdcall]<IOleWindow*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleWindow*)Unsafe.AsPointer(ref this), fEnterMode); 140 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 146 var hr = this.QueryInterface(&guid, &pv); 163 internal delegate *unmanaged [Stdcall]<IOleWindow*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 169 internal delegate *unmanaged [Stdcall]<IOleWindow*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> GetWindow_4; 171 internal delegate *unmanaged [Stdcall]<IOleWindow*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_5; 199 unsafe winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd); 202winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode);
_generated\215\Windows.Win32.IOmHistory.g.cs (42)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IOmHistory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOmHistory*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IOmHistory*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOmHistory*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IOmHistory*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOmHistory*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT get_length(IOmHistory* pThis, short* p) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 ((delegate *unmanaged [Stdcall]<IOmHistory*,short* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOmHistory*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 180 private static winmdroot.Foundation.HRESULT back(IOmHistory* pThis, winmdroot.System.Variant.VARIANT* pvargdistance) 184 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 193 return (winmdroot.Foundation.HRESULT)ex.HResult; 199 ((delegate *unmanaged [Stdcall]<IOmHistory*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOmHistory*)Unsafe.AsPointer(ref this), pvargdistance).ThrowOnFailure(); 215 private static winmdroot.Foundation.HRESULT forward(IOmHistory* pThis, winmdroot.System.Variant.VARIANT* pvargdistance) 219 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 228 return (winmdroot.Foundation.HRESULT)ex.HResult; 234 ((delegate *unmanaged [Stdcall]<IOmHistory*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOmHistory*)Unsafe.AsPointer(ref this), pvargdistance).ThrowOnFailure(); 239 internal unsafe winmdroot.Foundation.HRESULT go(in winmdroot.System.Variant.VARIANT pvargdistance) 243 winmdroot.Foundation.HRESULT __result = this.go(pvargdistanceLocal); 251 private static winmdroot.Foundation.HRESULT go(IOmHistory* pThis, winmdroot.System.Variant.VARIANT* pvargdistance) 255 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 264 return (winmdroot.Foundation.HRESULT)ex.HResult; 268 public unsafe winmdroot.Foundation.HRESULT go(winmdroot.System.Variant.VARIANT* pvargdistance) 270 return ((delegate *unmanaged [Stdcall]<IOmHistory*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IOmHistory*)Unsafe.AsPointer(ref this), pvargdistance); 273 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 279 var hr = this.QueryInterface(&guid, &pv); 296 internal delegate *unmanaged [Stdcall]<IOmHistory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 302 internal delegate *unmanaged [Stdcall]<IOmHistory*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 304 internal delegate *unmanaged [Stdcall]<IOmHistory*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 306 internal delegate *unmanaged [Stdcall]<IOmHistory*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 308 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; 310 internal delegate *unmanaged [Stdcall]<IOmHistory*,short* ,winmdroot.Foundation.HRESULT> get_length_8; 312 internal delegate *unmanaged [Stdcall]<IOmHistory*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> back_9; 314 internal delegate *unmanaged [Stdcall]<IOmHistory*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> forward_10; 316 internal delegate *unmanaged [Stdcall]<IOmHistory*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> go_11; 350 unsafe winmdroot.Foundation.HRESULT back(winmdroot.System.Variant.VARIANT* pvargdistance); 353 unsafe winmdroot.Foundation.HRESULT forward(winmdroot.System.Variant.VARIANT* pvargdistance); 356 unsafe winmdroot.Foundation.HRESULT go(winmdroot.System.Variant.VARIANT* pvargdistance);
_generated\216\Windows.Win32.IOmNavigator.g.cs (135)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IOmNavigator*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOmNavigator*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IOmNavigator*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOmNavigator*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IOmNavigator*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOmNavigator*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT get_appCodeName(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return winmdroot.Foundation.HRESULT.S_OK; 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT get_appName(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 174 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 201 private static winmdroot.Foundation.HRESULT get_appVersion(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 205 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 211 return winmdroot.Foundation.HRESULT.S_OK; 215 return (winmdroot.Foundation.HRESULT)ex.HResult; 224 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 232 private static winmdroot.Foundation.HRESULT get_userAgent(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 236 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 242 return winmdroot.Foundation.HRESULT.S_OK; 246 return (winmdroot.Foundation.HRESULT)ex.HResult; 255 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 263 private static winmdroot.Foundation.HRESULT javaEnabled(IOmNavigator* pThis, winmdroot.Foundation.VARIANT_BOOL* enabled) 267 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 276 return (winmdroot.Foundation.HRESULT)ex.HResult; 283 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IOmNavigator*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 290 private static winmdroot.Foundation.HRESULT taintEnabled(IOmNavigator* pThis, winmdroot.Foundation.VARIANT_BOOL* enabled) 294 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 303 return (winmdroot.Foundation.HRESULT)ex.HResult; 310 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IOmNavigator*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 317 private static winmdroot.Foundation.HRESULT get_mimeTypes(IOmNavigator* pThis, winmdroot.Web.MsHtml.IHTMLMimeTypesCollection** p) 321 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 327 return winmdroot.Foundation.HRESULT.S_OK; 331 return (winmdroot.Foundation.HRESULT)ex.HResult; 340 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Web.MsHtml.IHTMLMimeTypesCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 348 private static winmdroot.Foundation.HRESULT get_plugins(IOmNavigator* pThis, winmdroot.Web.MsHtml.IHTMLPluginsCollection** p) 352 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 358 return winmdroot.Foundation.HRESULT.S_OK; 362 return (winmdroot.Foundation.HRESULT)ex.HResult; 371 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Web.MsHtml.IHTMLPluginsCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 379 private static winmdroot.Foundation.HRESULT get_cookieEnabled(IOmNavigator* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 383 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 389 return winmdroot.Foundation.HRESULT.S_OK; 393 return (winmdroot.Foundation.HRESULT)ex.HResult; 402 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 410 private static winmdroot.Foundation.HRESULT get_opsProfile(IOmNavigator* pThis, winmdroot.Web.MsHtml.IHTMLOpsProfile** p) 414 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 420 return winmdroot.Foundation.HRESULT.S_OK; 424 return (winmdroot.Foundation.HRESULT)ex.HResult; 433 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Web.MsHtml.IHTMLOpsProfile** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 441 private static winmdroot.Foundation.HRESULT toString(IOmNavigator* pThis, winmdroot.Foundation.BSTR* @string) 445 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 454 return (winmdroot.Foundation.HRESULT)ex.HResult; 461 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IOmNavigator*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 468 private static winmdroot.Foundation.HRESULT get_cpuClass(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 472 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 478 return winmdroot.Foundation.HRESULT.S_OK; 482 return (winmdroot.Foundation.HRESULT)ex.HResult; 491 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 499 private static winmdroot.Foundation.HRESULT get_systemLanguage(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 503 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 509 return winmdroot.Foundation.HRESULT.S_OK; 513 return (winmdroot.Foundation.HRESULT)ex.HResult; 522 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 530 private static winmdroot.Foundation.HRESULT get_browserLanguage(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 534 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 540 return winmdroot.Foundation.HRESULT.S_OK; 544 return (winmdroot.Foundation.HRESULT)ex.HResult; 553 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 561 private static winmdroot.Foundation.HRESULT get_userLanguage(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 565 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 571 return winmdroot.Foundation.HRESULT.S_OK; 575 return (winmdroot.Foundation.HRESULT)ex.HResult; 584 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 592 private static winmdroot.Foundation.HRESULT get_platform(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 596 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 602 return winmdroot.Foundation.HRESULT.S_OK; 606 return (winmdroot.Foundation.HRESULT)ex.HResult; 615 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 623 private static winmdroot.Foundation.HRESULT get_appMinorVersion(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 627 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 633 return winmdroot.Foundation.HRESULT.S_OK; 637 return (winmdroot.Foundation.HRESULT)ex.HResult; 646 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 654 private static winmdroot.Foundation.HRESULT get_connectionSpeed(IOmNavigator* pThis, int* p) 658 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 664 return winmdroot.Foundation.HRESULT.S_OK; 668 return (winmdroot.Foundation.HRESULT)ex.HResult; 677 ((delegate *unmanaged [Stdcall]<IOmNavigator*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 685 private static winmdroot.Foundation.HRESULT get_onLine(IOmNavigator* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 689 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 695 return winmdroot.Foundation.HRESULT.S_OK; 699 return (winmdroot.Foundation.HRESULT)ex.HResult; 708 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 716 private static winmdroot.Foundation.HRESULT get_userProfile(IOmNavigator* pThis, winmdroot.Web.MsHtml.IHTMLOpsProfile** p) 720 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 726 return winmdroot.Foundation.HRESULT.S_OK; 730 return (winmdroot.Foundation.HRESULT)ex.HResult; 739 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Web.MsHtml.IHTMLOpsProfile** ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 744 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 750 var hr = this.QueryInterface(&guid, &pv); 767 internal delegate *unmanaged [Stdcall]<IOmNavigator*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 773 internal delegate *unmanaged [Stdcall]<IOmNavigator*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 775 internal delegate *unmanaged [Stdcall]<IOmNavigator*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 777 internal delegate *unmanaged [Stdcall]<IOmNavigator*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 779 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; 781 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_appCodeName_8; 783 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_appName_9; 785 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_appVersion_10; 787 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_userAgent_11; 789 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> javaEnabled_12; 791 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> taintEnabled_13; 793 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Web.MsHtml.IHTMLMimeTypesCollection** ,winmdroot.Foundation.HRESULT> get_mimeTypes_14; 795 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Web.MsHtml.IHTMLPluginsCollection** ,winmdroot.Foundation.HRESULT> get_plugins_15; 797 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_cookieEnabled_16; 799 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Web.MsHtml.IHTMLOpsProfile** ,winmdroot.Foundation.HRESULT> get_opsProfile_17; 801 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_18; 803 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cpuClass_19; 805 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_systemLanguage_20; 807 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_browserLanguage_21; 809 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_userLanguage_22; 811 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_platform_23; 813 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_appMinorVersion_24; 815 internal delegate *unmanaged [Stdcall]<IOmNavigator*,int* ,winmdroot.Foundation.HRESULT> get_connectionSpeed_25; 817 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_onLine_26; 819 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Web.MsHtml.IHTMLOpsProfile** ,winmdroot.Foundation.HRESULT> get_userProfile_27; 884 unsafe winmdroot.Foundation.HRESULT javaEnabled(winmdroot.Foundation.VARIANT_BOOL* enabled); 887 unsafe winmdroot.Foundation.HRESULT taintEnabled(winmdroot.Foundation.VARIANT_BOOL* enabled); 910 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* @string);
_generated\217\Windows.Win32.IParseDisplayName.g.cs (13)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IParseDisplayName*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IParseDisplayName*)Unsafe.AsPointer(ref this), riid, ppvObject); 70 private static winmdroot.Foundation.HRESULT ParseDisplayName(IParseDisplayName* pThis, winmdroot.System.Com.IBindCtx* pbc, winmdroot.Foundation.PWSTR pszDisplayName, uint* pchEaten, winmdroot.System.Com.IMoniker** ppmkOut) 74 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 102 ((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(); 105 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 111 var hr = this.QueryInterface(&guid, &pv); 128 internal delegate *unmanaged [Stdcall]<IParseDisplayName*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 134 internal delegate *unmanaged [Stdcall]<IParseDisplayName*,winmdroot.System.Com.IBindCtx* ,winmdroot.Foundation.PWSTR ,uint* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> ParseDisplayName_4; 161 unsafe winmdroot.Foundation.HRESULT ParseDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.Foundation.PWSTR pszDisplayName, uint* pchEaten, winmdroot.System.Com.IMoniker** ppmkOut);
_generated\218\Windows.Win32.IPerPropertyBrowsing.g.cs (43)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPerPropertyBrowsing*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT GetDisplayString(int dispID, out winmdroot.Foundation.BSTR pBstr) 63 winmdroot.Foundation.HRESULT __result = this.GetDisplayString(dispID, pBstrLocal); 71 private static winmdroot.Foundation.HRESULT GetDisplayString(IPerPropertyBrowsing* pThis, int dispID, winmdroot.Foundation.BSTR* pBstr) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 98 public unsafe winmdroot.Foundation.HRESULT GetDisplayString(int dispID, winmdroot.Foundation.BSTR* pBstr) 100 return ((delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPerPropertyBrowsing*)Unsafe.AsPointer(ref this), dispID, pBstr); 105 internal unsafe winmdroot.Foundation.HRESULT MapPropertyToPage(int dispID, out global::System.Guid pClsid) 109 winmdroot.Foundation.HRESULT __result = this.MapPropertyToPage(dispID, pClsidLocal); 117 private static winmdroot.Foundation.HRESULT MapPropertyToPage(IPerPropertyBrowsing* pThis, int dispID, global::System.Guid* pClsid) 121 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 130 return (winmdroot.Foundation.HRESULT)ex.HResult; 142 public unsafe winmdroot.Foundation.HRESULT MapPropertyToPage(int dispID, global::System.Guid* pClsid) 144 return ((delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPerPropertyBrowsing*)Unsafe.AsPointer(ref this), dispID, pClsid); 149 internal unsafe winmdroot.Foundation.HRESULT GetPredefinedStrings(int dispID, out winmdroot.System.Ole.CALPOLESTR pCaStringsOut, out winmdroot.System.Ole.CADWORD pCaCookiesOut) 155 winmdroot.Foundation.HRESULT __result = this.GetPredefinedStrings(dispID, pCaStringsOutLocal, pCaCookiesOutLocal); 164 private static winmdroot.Foundation.HRESULT GetPredefinedStrings(IPerPropertyBrowsing* pThis, int dispID, winmdroot.System.Ole.CALPOLESTR* pCaStringsOut, winmdroot.System.Ole.CADWORD* pCaCookiesOut) 168 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 177 return (winmdroot.Foundation.HRESULT)ex.HResult; 195 public unsafe winmdroot.Foundation.HRESULT GetPredefinedStrings(int dispID, winmdroot.System.Ole.CALPOLESTR* pCaStringsOut, winmdroot.System.Ole.CADWORD* pCaCookiesOut) 197 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); 202 internal unsafe winmdroot.Foundation.HRESULT GetPredefinedValue(int dispID, uint dwCookie, out winmdroot.System.Variant.VARIANT pVarOut) 206 winmdroot.Foundation.HRESULT __result = this.GetPredefinedValue(dispID, dwCookie, pVarOutLocal); 214 private static winmdroot.Foundation.HRESULT GetPredefinedValue(IPerPropertyBrowsing* pThis, int dispID, uint dwCookie, winmdroot.System.Variant.VARIANT* pVarOut) 218 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 227 return (winmdroot.Foundation.HRESULT)ex.HResult; 243 public unsafe winmdroot.Foundation.HRESULT GetPredefinedValue(int dispID, uint dwCookie, winmdroot.System.Variant.VARIANT* pVarOut) 245 return ((delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,uint ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IPerPropertyBrowsing*)Unsafe.AsPointer(ref this), dispID, dwCookie, pVarOut); 248 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 254 var hr = this.QueryInterface(&guid, &pv); 271 internal delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 277 internal delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDisplayString_4; 279 internal delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,global::System.Guid* ,winmdroot.Foundation.HRESULT> MapPropertyToPage_5; 281 internal delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,winmdroot.System.Ole.CALPOLESTR* ,winmdroot.System.Ole.CADWORD* ,winmdroot.Foundation.HRESULT> GetPredefinedStrings_6; 283 internal delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,uint ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetPredefinedValue_7; 313 unsafe winmdroot.Foundation.HRESULT GetDisplayString(int dispID, winmdroot.Foundation.BSTR* pBstr); 316 unsafe winmdroot.Foundation.HRESULT MapPropertyToPage(int dispID, global::System.Guid* pClsid); 319 unsafe winmdroot.Foundation.HRESULT GetPredefinedStrings(int dispID, winmdroot.System.Ole.CALPOLESTR* pCaStringsOut, winmdroot.System.Ole.CADWORD* pCaCookiesOut); 322 unsafe winmdroot.Foundation.HRESULT GetPredefinedValue(int dispID, uint dwCookie, winmdroot.System.Variant.VARIANT* pVarOut);
_generated\219\Windows.Win32.IPersistPropertyBag.g.cs (34)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IPersistPropertyBag*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPersistPropertyBag*)Unsafe.AsPointer(ref this), riid, ppvObject); 69 private static winmdroot.Foundation.HRESULT GetClassID(IPersistPropertyBag* pThis, global::System.Guid* pClassID) 73 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 82 return (winmdroot.Foundation.HRESULT)ex.HResult; 88 ((delegate *unmanaged [Stdcall]<IPersistPropertyBag*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPersistPropertyBag*)Unsafe.AsPointer(ref this), pClassID).ThrowOnFailure(); 94 private static winmdroot.Foundation.HRESULT InitNew(IPersistPropertyBag* pThis) 98 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 return (winmdroot.Foundation.HRESULT)ex.HResult; 114 public winmdroot.Foundation.HRESULT InitNew() 116 return ((delegate *unmanaged [Stdcall]<IPersistPropertyBag*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPersistPropertyBag*)Unsafe.AsPointer(ref this)); 122 private static winmdroot.Foundation.HRESULT Load(IPersistPropertyBag* pThis, winmdroot.System.Com.StructuredStorage.IPropertyBag* pPropBag, winmdroot.System.Com.IErrorLog* pErrorLog) 126 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 135 return (winmdroot.Foundation.HRESULT)ex.HResult; 147 public unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.StructuredStorage.IPropertyBag* pPropBag, winmdroot.System.Com.IErrorLog* pErrorLog) 149 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); 155 private static winmdroot.Foundation.HRESULT Save(IPersistPropertyBag* pThis, winmdroot.System.Com.StructuredStorage.IPropertyBag* pPropBag, winmdroot.Foundation.BOOL fClearDirty, winmdroot.Foundation.BOOL fSaveAllProperties) 159 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 168 return (winmdroot.Foundation.HRESULT)ex.HResult; 181 public unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.StructuredStorage.IPropertyBag* pPropBag, winmdroot.Foundation.BOOL fClearDirty, winmdroot.Foundation.BOOL fSaveAllProperties) 183 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); 186 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 192 var hr = this.QueryInterface(&guid, &pv); 209 internal delegate *unmanaged [Stdcall]<IPersistPropertyBag*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 215 internal delegate *unmanaged [Stdcall]<IPersistPropertyBag*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetClassID_4; 217 internal delegate *unmanaged [Stdcall]<IPersistPropertyBag*,winmdroot.Foundation.HRESULT> InitNew_5; 219 internal delegate *unmanaged [Stdcall]<IPersistPropertyBag*,winmdroot.System.Com.StructuredStorage.IPropertyBag* ,winmdroot.System.Com.IErrorLog* ,winmdroot.Foundation.HRESULT> Load_6; 221 internal delegate *unmanaged [Stdcall]<IPersistPropertyBag*,winmdroot.System.Com.StructuredStorage.IPropertyBag* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Save_7; 250 unsafe new winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID); 253winmdroot.Foundation.HRESULT InitNew(); 256 unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.StructuredStorage.IPropertyBag* pPropBag, winmdroot.System.Com.IErrorLog* pErrorLog); 259 unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.StructuredStorage.IPropertyBag* pPropBag, winmdroot.Foundation.BOOL fClearDirty, winmdroot.Foundation.BOOL fSaveAllProperties);
_generated\220\Windows.Win32.IPersistStorage.g.cs (55)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IPersistStorage*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPersistStorage*)Unsafe.AsPointer(ref this), riid, ppvObject); 70 private static winmdroot.Foundation.HRESULT GetClassID(IPersistStorage* pThis, global::System.Guid* pClassID) 74 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 ((delegate *unmanaged [Stdcall]<IPersistStorage*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPersistStorage*)Unsafe.AsPointer(ref this), pClassID).ThrowOnFailure(); 95 private static winmdroot.Foundation.HRESULT IsDirty(IPersistStorage* pThis) 99 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 108 return (winmdroot.Foundation.HRESULT)ex.HResult; 118 public winmdroot.Foundation.HRESULT IsDirty() 120 return ((delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPersistStorage*)Unsafe.AsPointer(ref this)); 126 private static winmdroot.Foundation.HRESULT InitNew(IPersistStorage* pThis, winmdroot.System.Com.StructuredStorage.IStorage* pStg) 130 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 139 return (winmdroot.Foundation.HRESULT)ex.HResult; 154 public unsafe winmdroot.Foundation.HRESULT InitNew(winmdroot.System.Com.StructuredStorage.IStorage* pStg) 156 return ((delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IPersistStorage*)Unsafe.AsPointer(ref this), pStg); 162 private static winmdroot.Foundation.HRESULT Load(IPersistStorage* pThis, winmdroot.System.Com.StructuredStorage.IStorage* pStg) 166 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 175 return (winmdroot.Foundation.HRESULT)ex.HResult; 190 public unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.StructuredStorage.IStorage* pStg) 192 return ((delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IPersistStorage*)Unsafe.AsPointer(ref this), pStg); 198 private static winmdroot.Foundation.HRESULT Save(IPersistStorage* pThis, winmdroot.System.Com.StructuredStorage.IStorage* pStgSave, winmdroot.Foundation.BOOL fSameAsLoad) 202 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 211 return (winmdroot.Foundation.HRESULT)ex.HResult; 230 public unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.StructuredStorage.IStorage* pStgSave, winmdroot.Foundation.BOOL fSameAsLoad) 232 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); 238 private static winmdroot.Foundation.HRESULT SaveCompleted(IPersistStorage* pThis, winmdroot.System.Com.StructuredStorage.IStorage* pStgNew) 242 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 251 return (winmdroot.Foundation.HRESULT)ex.HResult; 265 public unsafe winmdroot.Foundation.HRESULT SaveCompleted(winmdroot.System.Com.StructuredStorage.IStorage* pStgNew) 267 return ((delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IPersistStorage*)Unsafe.AsPointer(ref this), pStgNew); 273 private static winmdroot.Foundation.HRESULT HandsOffStorage(IPersistStorage* pThis) 277 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 286 return (winmdroot.Foundation.HRESULT)ex.HResult; 296 public winmdroot.Foundation.HRESULT HandsOffStorage() 298 return ((delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IPersistStorage*)Unsafe.AsPointer(ref this)); 301 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 307 var hr = this.QueryInterface(&guid, &pv); 324 internal delegate *unmanaged [Stdcall]<IPersistStorage*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 330 internal delegate *unmanaged [Stdcall]<IPersistStorage*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetClassID_4; 332 internal delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.Foundation.HRESULT> IsDirty_5; 334 internal delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT> InitNew_6; 336 internal delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT> Load_7; 338 internal delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Save_8; 340 internal delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT> SaveCompleted_9; 342 internal delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.Foundation.HRESULT> HandsOffStorage_10; 375 unsafe new winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID); 378winmdroot.Foundation.HRESULT IsDirty(); 381 unsafe winmdroot.Foundation.HRESULT InitNew(winmdroot.System.Com.StructuredStorage.IStorage* pStg); 384 unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.StructuredStorage.IStorage* pStg); 387 unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.StructuredStorage.IStorage* pStgSave, winmdroot.Foundation.BOOL fSameAsLoad); 390 unsafe winmdroot.Foundation.HRESULT SaveCompleted(winmdroot.System.Com.StructuredStorage.IStorage* pStgNew); 393winmdroot.Foundation.HRESULT HandsOffStorage();
_generated\221\Windows.Win32.IPersistStreamInit.g.cs (47)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IPersistStreamInit*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPersistStreamInit*)Unsafe.AsPointer(ref this), riid, ppvObject); 70 private static winmdroot.Foundation.HRESULT GetClassID(IPersistStreamInit* pThis, global::System.Guid* pClassID) 74 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 ((delegate *unmanaged [Stdcall]<IPersistStreamInit*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPersistStreamInit*)Unsafe.AsPointer(ref this), pClassID).ThrowOnFailure(); 95 private static winmdroot.Foundation.HRESULT IsDirty(IPersistStreamInit* pThis) 99 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 108 return (winmdroot.Foundation.HRESULT)ex.HResult; 118 public winmdroot.Foundation.HRESULT IsDirty() 120 return ((delegate *unmanaged [Stdcall]<IPersistStreamInit*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPersistStreamInit*)Unsafe.AsPointer(ref this)); 126 private static winmdroot.Foundation.HRESULT Load(IPersistStreamInit* pThis, winmdroot.System.Com.IStream* pStm) 130 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 139 return (winmdroot.Foundation.HRESULT)ex.HResult; 153 public unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.IStream* pStm) 155 return ((delegate *unmanaged [Stdcall]<IPersistStreamInit*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IPersistStreamInit*)Unsafe.AsPointer(ref this), pStm); 161 private static winmdroot.Foundation.HRESULT Save(IPersistStreamInit* pThis, winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty) 165 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 174 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]<IPersistStreamInit*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IPersistStreamInit*)Unsafe.AsPointer(ref this), pStm, fClearDirty); 207 private static winmdroot.Foundation.HRESULT GetSizeMax(IPersistStreamInit* pThis, ulong* pCbSize) 211 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 220 return (winmdroot.Foundation.HRESULT)ex.HResult; 233 ((delegate *unmanaged [Stdcall]<IPersistStreamInit*,ulong* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IPersistStreamInit*)Unsafe.AsPointer(ref this), pCbSize).ThrowOnFailure(); 239 private static winmdroot.Foundation.HRESULT InitNew(IPersistStreamInit* pThis) 243 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 252 return (winmdroot.Foundation.HRESULT)ex.HResult; 262 public winmdroot.Foundation.HRESULT InitNew() 264 return ((delegate *unmanaged [Stdcall]<IPersistStreamInit*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IPersistStreamInit*)Unsafe.AsPointer(ref this)); 267 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 273 var hr = this.QueryInterface(&guid, &pv); 290 internal delegate *unmanaged [Stdcall]<IPersistStreamInit*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 296 internal delegate *unmanaged [Stdcall]<IPersistStreamInit*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetClassID_4; 298 internal delegate *unmanaged [Stdcall]<IPersistStreamInit*,winmdroot.Foundation.HRESULT> IsDirty_5; 300 internal delegate *unmanaged [Stdcall]<IPersistStreamInit*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.HRESULT> Load_6; 302 internal delegate *unmanaged [Stdcall]<IPersistStreamInit*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Save_7; 304 internal delegate *unmanaged [Stdcall]<IPersistStreamInit*,ulong* ,winmdroot.Foundation.HRESULT> GetSizeMax_8; 306 internal delegate *unmanaged [Stdcall]<IPersistStreamInit*,winmdroot.Foundation.HRESULT> InitNew_9; 338 unsafe new winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID); 341winmdroot.Foundation.HRESULT IsDirty(); 344 unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.IStream* pStm); 347 unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty); 350 unsafe winmdroot.Foundation.HRESULT GetSizeMax(ulong* pCbSize); 353winmdroot.Foundation.HRESULT InitNew();
_generated\222\Windows.Win32.IPropertyBag.g.cs (22)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IPropertyBag*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPropertyBag*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 internal unsafe winmdroot.Foundation.HRESULT Read(string pszPropName, ref winmdroot.System.Variant.VARIANT pVar, winmdroot.System.Com.IErrorLog* pErrorLog) 64 winmdroot.Foundation.HRESULT __result = this.Read(pszPropNameLocal, pVarLocal, pErrorLog); 73 private static winmdroot.Foundation.HRESULT Read(IPropertyBag* pThis, winmdroot.Foundation.PCWSTR pszPropName, winmdroot.System.Variant.VARIANT* pVar, winmdroot.System.Com.IErrorLog* pErrorLog) 77 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 86 return (winmdroot.Foundation.HRESULT)ex.HResult; 99 public unsafe winmdroot.Foundation.HRESULT Read(winmdroot.Foundation.PCWSTR pszPropName, winmdroot.System.Variant.VARIANT* pVar, winmdroot.System.Com.IErrorLog* pErrorLog) 101 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); 120 private static winmdroot.Foundation.HRESULT Write(IPropertyBag* pThis, winmdroot.Foundation.PCWSTR pszPropName, winmdroot.System.Variant.VARIANT* pVar) 124 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 133 return (winmdroot.Foundation.HRESULT)ex.HResult; 147 ((delegate *unmanaged [Stdcall]<IPropertyBag*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPropertyBag*)Unsafe.AsPointer(ref this), pszPropName, pVar).ThrowOnFailure(); 150 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 156 var hr = this.QueryInterface(&guid, &pv); 173 internal delegate *unmanaged [Stdcall]<IPropertyBag*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 179 internal delegate *unmanaged [Stdcall]<IPropertyBag*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.IErrorLog* ,winmdroot.Foundation.HRESULT> Read_4; 181 internal delegate *unmanaged [Stdcall]<IPropertyBag*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Write_5; 208 unsafe winmdroot.Foundation.HRESULT Read(winmdroot.Foundation.PCWSTR pszPropName, winmdroot.System.Variant.VARIANT* pVar, winmdroot.System.Com.IErrorLog* pErrorLog); 211 unsafe winmdroot.Foundation.HRESULT Write(winmdroot.Foundation.PCWSTR pszPropName, winmdroot.System.Variant.VARIANT* pVar);
_generated\223\Windows.Win32.IPropertyDescriptionList.g.cs (19)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IPropertyDescriptionList*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPropertyDescriptionList*)Unsafe.AsPointer(ref this), riid, ppvObject); 70 private static winmdroot.Foundation.HRESULT GetCount(IPropertyDescriptionList* pThis, uint* pcElem) 74 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 100 ((delegate *unmanaged [Stdcall]<IPropertyDescriptionList*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPropertyDescriptionList*)Unsafe.AsPointer(ref this), pcElem).ThrowOnFailure(); 119 private static winmdroot.Foundation.HRESULT GetAt(IPropertyDescriptionList* pThis, uint iElem, global::System.Guid* riid, void** ppv) 123 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 132 return (winmdroot.Foundation.HRESULT)ex.HResult; 155 ((delegate *unmanaged [Stdcall]<IPropertyDescriptionList*,uint ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPropertyDescriptionList*)Unsafe.AsPointer(ref this), iElem, riid, ppv).ThrowOnFailure(); 158 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 164 var hr = this.QueryInterface(&guid, &pv); 181 internal delegate *unmanaged [Stdcall]<IPropertyDescriptionList*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 187 internal delegate *unmanaged [Stdcall]<IPropertyDescriptionList*,uint* ,winmdroot.Foundation.HRESULT> GetCount_4; 189 internal delegate *unmanaged [Stdcall]<IPropertyDescriptionList*,uint ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> GetAt_5; 217 unsafe winmdroot.Foundation.HRESULT GetCount(uint* pcElem); 220 unsafe winmdroot.Foundation.HRESULT GetAt(uint iElem, global::System.Guid* riid, void** ppv);
_generated\224\Windows.Win32.IPropertyNotifySink.g.cs (21)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IPropertyNotifySink*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPropertyNotifySink*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT OnChanged(IPropertyNotifySink* pThis, int dispID) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 81 public winmdroot.Foundation.HRESULT OnChanged(int dispID) 83 return ((delegate *unmanaged [Stdcall]<IPropertyNotifySink*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPropertyNotifySink*)Unsafe.AsPointer(ref this), dispID); 89 private static winmdroot.Foundation.HRESULT OnRequestEdit(IPropertyNotifySink* pThis, int dispID) 93 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 102 return (winmdroot.Foundation.HRESULT)ex.HResult; 117 public winmdroot.Foundation.HRESULT OnRequestEdit(int dispID) 119 return ((delegate *unmanaged [Stdcall]<IPropertyNotifySink*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPropertyNotifySink*)Unsafe.AsPointer(ref this), dispID); 122 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 128 var hr = this.QueryInterface(&guid, &pv); 145 internal delegate *unmanaged [Stdcall]<IPropertyNotifySink*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 151 internal delegate *unmanaged [Stdcall]<IPropertyNotifySink*,int ,winmdroot.Foundation.HRESULT> OnChanged_4; 153 internal delegate *unmanaged [Stdcall]<IPropertyNotifySink*,int ,winmdroot.Foundation.HRESULT> OnRequestEdit_5; 181winmdroot.Foundation.HRESULT OnChanged(int dispID); 184winmdroot.Foundation.HRESULT OnRequestEdit(int dispID);
_generated\225\Windows.Win32.IPropertyStore.g.cs (37)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IPropertyStore*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPropertyStore*)Unsafe.AsPointer(ref this), riid, ppvObject); 69 private static winmdroot.Foundation.HRESULT GetCount(IPropertyStore* pThis, uint* cProps) 73 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 82 return (winmdroot.Foundation.HRESULT)ex.HResult; 95 ((delegate *unmanaged [Stdcall]<IPropertyStore*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPropertyStore*)Unsafe.AsPointer(ref this), cProps).ThrowOnFailure(); 111 private static winmdroot.Foundation.HRESULT GetAt(IPropertyStore* pThis, uint iProp, winmdroot.Foundation.PROPERTYKEY* pkey) 115 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return (winmdroot.Foundation.HRESULT)ex.HResult; 135 ((delegate *unmanaged [Stdcall]<IPropertyStore*,uint ,winmdroot.Foundation.PROPERTYKEY* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPropertyStore*)Unsafe.AsPointer(ref this), iProp, pkey).ThrowOnFailure(); 154 private static winmdroot.Foundation.HRESULT GetValue(IPropertyStore* pThis, winmdroot.Foundation.PROPERTYKEY* key, winmdroot.System.Com.StructuredStorage.PROPVARIANT* pv) 158 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 167 return (winmdroot.Foundation.HRESULT)ex.HResult; 180 ((delegate *unmanaged [Stdcall]<IPropertyStore*,winmdroot.Foundation.PROPERTYKEY* ,winmdroot.System.Com.StructuredStorage.PROPVARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IPropertyStore*)Unsafe.AsPointer(ref this), key, pv).ThrowOnFailure(); 199 private static winmdroot.Foundation.HRESULT SetValue(IPropertyStore* pThis, winmdroot.Foundation.PROPERTYKEY* key, winmdroot.System.Com.StructuredStorage.PROPVARIANT* propvar) 203 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 212 return (winmdroot.Foundation.HRESULT)ex.HResult; 229 ((delegate *unmanaged [Stdcall]<IPropertyStore*,winmdroot.Foundation.PROPERTYKEY* ,winmdroot.System.Com.StructuredStorage.PROPVARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IPropertyStore*)Unsafe.AsPointer(ref this), key, propvar).ThrowOnFailure(); 235 private static winmdroot.Foundation.HRESULT Commit(IPropertyStore* pThis) 239 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 248 return (winmdroot.Foundation.HRESULT)ex.HResult; 263 ((delegate *unmanaged [Stdcall]<IPropertyStore*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IPropertyStore*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 266 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 272 var hr = this.QueryInterface(&guid, &pv); 289 internal delegate *unmanaged [Stdcall]<IPropertyStore*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 295 internal delegate *unmanaged [Stdcall]<IPropertyStore*,uint* ,winmdroot.Foundation.HRESULT> GetCount_4; 297 internal delegate *unmanaged [Stdcall]<IPropertyStore*,uint ,winmdroot.Foundation.PROPERTYKEY* ,winmdroot.Foundation.HRESULT> GetAt_5; 299 internal delegate *unmanaged [Stdcall]<IPropertyStore*,winmdroot.Foundation.PROPERTYKEY* ,winmdroot.System.Com.StructuredStorage.PROPVARIANT* ,winmdroot.Foundation.HRESULT> GetValue_6; 301 internal delegate *unmanaged [Stdcall]<IPropertyStore*,winmdroot.Foundation.PROPERTYKEY* ,winmdroot.System.Com.StructuredStorage.PROPVARIANT* ,winmdroot.Foundation.HRESULT> SetValue_7; 303 internal delegate *unmanaged [Stdcall]<IPropertyStore*,winmdroot.Foundation.HRESULT> Commit_8; 333 unsafe winmdroot.Foundation.HRESULT GetCount(uint* cProps); 336 unsafe winmdroot.Foundation.HRESULT GetAt(uint iProp, winmdroot.Foundation.PROPERTYKEY* pkey); 339 unsafe winmdroot.Foundation.HRESULT GetValue(winmdroot.Foundation.PROPERTYKEY* key, winmdroot.System.Com.StructuredStorage.PROPVARIANT* pv); 342 unsafe winmdroot.Foundation.HRESULT SetValue(winmdroot.Foundation.PROPERTYKEY* key, winmdroot.System.Com.StructuredStorage.PROPVARIANT* propvar); 345winmdroot.Foundation.HRESULT Commit();
_generated\226\Windows.Win32.IProvideClassInfo.g.cs (14)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IProvideClassInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IProvideClassInfo*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT GetClassInfo(IProvideClassInfo* pThis, winmdroot.System.Com.ITypeInfo** ppTI) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 87 public unsafe winmdroot.Foundation.HRESULT GetClassInfo(winmdroot.System.Com.ITypeInfo** ppTI) 89 return ((delegate *unmanaged [Stdcall]<IProvideClassInfo*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IProvideClassInfo*)Unsafe.AsPointer(ref this), ppTI); 92 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 98 var hr = this.QueryInterface(&guid, &pv); 115 internal delegate *unmanaged [Stdcall]<IProvideClassInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 121 internal delegate *unmanaged [Stdcall]<IProvideClassInfo*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetClassInfo_4; 148 unsafe winmdroot.Foundation.HRESULT GetClassInfo(winmdroot.System.Com.ITypeInfo** ppTI);
_generated\227\Windows.Win32.IProvideClassInfo2.g.cs (19)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IProvideClassInfo2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IProvideClassInfo2*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT GetClassInfo(IProvideClassInfo2* pThis, winmdroot.System.Com.ITypeInfo** ppTI) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 79 ((delegate *unmanaged [Stdcall]<IProvideClassInfo2*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IProvideClassInfo2*)Unsafe.AsPointer(ref this), ppTI).ThrowOnFailure(); 95 private static winmdroot.Foundation.HRESULT GetGUID(IProvideClassInfo2* pThis, uint dwGuidKind, global::System.Guid* pGUID) 99 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 108 return (winmdroot.Foundation.HRESULT)ex.HResult; 121 ((delegate *unmanaged [Stdcall]<IProvideClassInfo2*,uint ,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IProvideClassInfo2*)Unsafe.AsPointer(ref this), dwGuidKind, pGUID).ThrowOnFailure(); 124 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 130 var hr = this.QueryInterface(&guid, &pv); 147 internal delegate *unmanaged [Stdcall]<IProvideClassInfo2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 153 internal delegate *unmanaged [Stdcall]<IProvideClassInfo2*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetClassInfo_4; 155 internal delegate *unmanaged [Stdcall]<IProvideClassInfo2*,uint ,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetGUID_5; 183 unsafe new winmdroot.Foundation.HRESULT GetClassInfo(winmdroot.System.Com.ITypeInfo** ppTI); 186 unsafe winmdroot.Foundation.HRESULT GetGUID(uint dwGuidKind, global::System.Guid* pGUID);
_generated\228\Windows.Win32.IProvideMultipleClassInfo.g.cs (37)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IProvideMultipleClassInfo*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT GetClassInfo(IProvideMultipleClassInfo* pThis, winmdroot.System.Com.ITypeInfo** ppTI) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 79 ((delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IProvideMultipleClassInfo*)Unsafe.AsPointer(ref this), ppTI).ThrowOnFailure(); 95 private static winmdroot.Foundation.HRESULT GetGUID(IProvideMultipleClassInfo* pThis, uint dwGuidKind, global::System.Guid* pGUID) 99 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 108 return (winmdroot.Foundation.HRESULT)ex.HResult; 114 ((delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,uint ,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IProvideMultipleClassInfo*)Unsafe.AsPointer(ref this), dwGuidKind, pGUID).ThrowOnFailure(); 119 internal unsafe winmdroot.Foundation.HRESULT GetMultiTypeInfoCount(out uint pcti) 123 winmdroot.Foundation.HRESULT __result = this.GetMultiTypeInfoCount(pctiLocal); 131 private static winmdroot.Foundation.HRESULT GetMultiTypeInfoCount(IProvideMultipleClassInfo* pThis, uint* pcti) 135 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 144 return (winmdroot.Foundation.HRESULT)ex.HResult; 154 public unsafe winmdroot.Foundation.HRESULT GetMultiTypeInfoCount(uint* pcti) 156 return ((delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IProvideMultipleClassInfo*)Unsafe.AsPointer(ref this), pcti); 161 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) 171 winmdroot.Foundation.HRESULT __result = this.GetInfoOfIndex(iti, dwFlags, pptiCoClass, pdwTIFlagsLocal, pcdispidReservedLocal, piidPrimaryLocal, piidSourceLocal); 182 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) 186 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 195 return (winmdroot.Foundation.HRESULT)ex.HResult; 211 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) 213 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); 216 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 222 var hr = this.QueryInterface(&guid, &pv); 239 internal delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 245 internal delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetClassInfo_4; 247 internal delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,uint ,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetGUID_5; 249 internal delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,uint* ,winmdroot.Foundation.HRESULT> GetMultiTypeInfoCount_6; 251 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; 281 unsafe new winmdroot.Foundation.HRESULT GetClassInfo(winmdroot.System.Com.ITypeInfo** ppTI); 284 unsafe new winmdroot.Foundation.HRESULT GetGUID(uint dwGuidKind, global::System.Guid* pGUID); 287 unsafe winmdroot.Foundation.HRESULT GetMultiTypeInfoCount(uint* pcti); 290 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);
_generated\229\Windows.Win32.IQuickActivate.g.cs (34)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IQuickActivate*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IQuickActivate*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT QuickActivate(in winmdroot.System.Ole.QACONTAINER pQaContainer, ref winmdroot.System.Ole.QACONTROL pQaControl) 65 winmdroot.Foundation.HRESULT __result = this.QuickActivate(pQaContainerLocal, pQaControlLocal); 74 private static winmdroot.Foundation.HRESULT QuickActivate(IQuickActivate* pThis, winmdroot.System.Ole.QACONTAINER* pQaContainer, winmdroot.System.Ole.QACONTROL* pQaControl) 78 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 87 return (winmdroot.Foundation.HRESULT)ex.HResult; 99 public unsafe winmdroot.Foundation.HRESULT QuickActivate(winmdroot.System.Ole.QACONTAINER* pQaContainer, winmdroot.System.Ole.QACONTROL* pQaControl) 101 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); 106 internal unsafe winmdroot.Foundation.HRESULT SetContentExtent(in winmdroot.Foundation.SIZE pSizel) 110 winmdroot.Foundation.HRESULT __result = this.SetContentExtent(pSizelLocal); 118 private static winmdroot.Foundation.HRESULT SetContentExtent(IQuickActivate* pThis, winmdroot.Foundation.SIZE* pSizel) 122 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 131 return (winmdroot.Foundation.HRESULT)ex.HResult; 141 public unsafe winmdroot.Foundation.HRESULT SetContentExtent(winmdroot.Foundation.SIZE* pSizel) 143 return ((delegate *unmanaged [Stdcall]<IQuickActivate*,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IQuickActivate*)Unsafe.AsPointer(ref this), pSizel); 148 internal unsafe winmdroot.Foundation.HRESULT GetContentExtent(out winmdroot.Foundation.SIZE pSizel) 152 winmdroot.Foundation.HRESULT __result = this.GetContentExtent(pSizelLocal); 160 private static winmdroot.Foundation.HRESULT GetContentExtent(IQuickActivate* pThis, winmdroot.Foundation.SIZE* pSizel) 164 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 173 return (winmdroot.Foundation.HRESULT)ex.HResult; 186 public unsafe winmdroot.Foundation.HRESULT GetContentExtent(winmdroot.Foundation.SIZE* pSizel) 188 return ((delegate *unmanaged [Stdcall]<IQuickActivate*,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IQuickActivate*)Unsafe.AsPointer(ref this), pSizel); 191 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 197 var hr = this.QueryInterface(&guid, &pv); 214 internal delegate *unmanaged [Stdcall]<IQuickActivate*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 220 internal delegate *unmanaged [Stdcall]<IQuickActivate*,winmdroot.System.Ole.QACONTAINER* ,winmdroot.System.Ole.QACONTROL* ,winmdroot.Foundation.HRESULT> QuickActivate_4; 222 internal delegate *unmanaged [Stdcall]<IQuickActivate*,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT> SetContentExtent_5; 224 internal delegate *unmanaged [Stdcall]<IQuickActivate*,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT> GetContentExtent_6; 253 unsafe winmdroot.Foundation.HRESULT QuickActivate(winmdroot.System.Ole.QACONTAINER* pQaContainer, winmdroot.System.Ole.QACONTROL* pQaControl); 256 unsafe winmdroot.Foundation.HRESULT SetContentExtent(winmdroot.Foundation.SIZE* pSizel); 259 unsafe winmdroot.Foundation.HRESULT GetContentExtent(winmdroot.Foundation.SIZE* pSizel);
_generated\230\Windows.Win32.IRangeValueProvider.g.cs (67)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IRangeValueProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRangeValueProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT SetValue(IRangeValueProvider* pThis, double val) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 88 ((delegate *unmanaged [Stdcall]<IRangeValueProvider*,double ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IRangeValueProvider*)Unsafe.AsPointer(ref this), val).ThrowOnFailure(); 93 internal unsafe winmdroot.Foundation.HRESULT get_Value(out double pRetVal) 97 winmdroot.Foundation.HRESULT __result = this.get_Value(pRetValLocal); 105 private static winmdroot.Foundation.HRESULT get_Value(IRangeValueProvider* pThis, double* pRetVal) 109 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 118 return (winmdroot.Foundation.HRESULT)ex.HResult; 126 public unsafe winmdroot.Foundation.HRESULT get_Value(double* pRetVal) 128 return ((delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IRangeValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 133 internal unsafe winmdroot.Foundation.HRESULT get_IsReadOnly(out winmdroot.Foundation.BOOL pRetVal) 137 winmdroot.Foundation.HRESULT __result = this.get_IsReadOnly(pRetValLocal); 145 private static winmdroot.Foundation.HRESULT get_IsReadOnly(IRangeValueProvider* pThis, winmdroot.Foundation.BOOL* pRetVal) 149 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 158 return (winmdroot.Foundation.HRESULT)ex.HResult; 166 public unsafe winmdroot.Foundation.HRESULT get_IsReadOnly(winmdroot.Foundation.BOOL* pRetVal) 168 return ((delegate *unmanaged [Stdcall]<IRangeValueProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IRangeValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 173 internal unsafe winmdroot.Foundation.HRESULT get_Maximum(out double pRetVal) 177 winmdroot.Foundation.HRESULT __result = this.get_Maximum(pRetValLocal); 185 private static winmdroot.Foundation.HRESULT get_Maximum(IRangeValueProvider* pThis, double* pRetVal) 189 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 198 return (winmdroot.Foundation.HRESULT)ex.HResult; 204 public unsafe winmdroot.Foundation.HRESULT get_Maximum(double* pRetVal) 206 return ((delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IRangeValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 211 internal unsafe winmdroot.Foundation.HRESULT get_Minimum(out double pRetVal) 215 winmdroot.Foundation.HRESULT __result = this.get_Minimum(pRetValLocal); 223 private static winmdroot.Foundation.HRESULT get_Minimum(IRangeValueProvider* pThis, double* pRetVal) 227 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 236 return (winmdroot.Foundation.HRESULT)ex.HResult; 242 public unsafe winmdroot.Foundation.HRESULT get_Minimum(double* pRetVal) 244 return ((delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IRangeValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 249 internal unsafe winmdroot.Foundation.HRESULT get_LargeChange(out double pRetVal) 253 winmdroot.Foundation.HRESULT __result = this.get_LargeChange(pRetValLocal); 261 private static winmdroot.Foundation.HRESULT get_LargeChange(IRangeValueProvider* pThis, double* pRetVal) 265 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 274 return (winmdroot.Foundation.HRESULT)ex.HResult; 285 public unsafe winmdroot.Foundation.HRESULT get_LargeChange(double* pRetVal) 287 return ((delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IRangeValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 292 internal unsafe winmdroot.Foundation.HRESULT get_SmallChange(out double pRetVal) 296 winmdroot.Foundation.HRESULT __result = this.get_SmallChange(pRetValLocal); 304 private static winmdroot.Foundation.HRESULT get_SmallChange(IRangeValueProvider* pThis, double* pRetVal) 308 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 317 return (winmdroot.Foundation.HRESULT)ex.HResult; 328 public unsafe winmdroot.Foundation.HRESULT get_SmallChange(double* pRetVal) 330 return ((delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IRangeValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 333 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 339 var hr = this.QueryInterface(&guid, &pv); 356 internal delegate *unmanaged [Stdcall]<IRangeValueProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 362 internal delegate *unmanaged [Stdcall]<IRangeValueProvider*,double ,winmdroot.Foundation.HRESULT> SetValue_4; 364 internal delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT> get_Value_5; 366 internal delegate *unmanaged [Stdcall]<IRangeValueProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_IsReadOnly_6; 368 internal delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT> get_Maximum_7; 370 internal delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT> get_Minimum_8; 372 internal delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT> get_LargeChange_9; 374 internal delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT> get_SmallChange_10; 407winmdroot.Foundation.HRESULT SetValue(double val); 410 unsafe winmdroot.Foundation.HRESULT get_Value(double* pRetVal); 413 unsafe winmdroot.Foundation.HRESULT get_IsReadOnly(winmdroot.Foundation.BOOL* pRetVal); 416 unsafe winmdroot.Foundation.HRESULT get_Maximum(double* pRetVal); 419 unsafe winmdroot.Foundation.HRESULT get_Minimum(double* pRetVal); 422 unsafe winmdroot.Foundation.HRESULT get_LargeChange(double* pRetVal); 425 unsafe winmdroot.Foundation.HRESULT get_SmallChange(double* pRetVal);
_generated\231\Windows.Win32.IRawElementProviderFragment.g.cs (55)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRawElementProviderFragment*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT Navigate(IRawElementProviderFragment* pThis, winmdroot.UI.Accessibility.NavigateDirection direction, winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 public unsafe winmdroot.Foundation.HRESULT Navigate(winmdroot.UI.Accessibility.NavigateDirection direction, winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal) 91 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); 96 internal unsafe winmdroot.Foundation.HRESULT GetRuntimeId(out winmdroot.System.Com.SAFEARRAY* pRetVal) 100 winmdroot.Foundation.HRESULT __result = this.GetRuntimeId(pRetValLocal); 108 private static winmdroot.Foundation.HRESULT GetRuntimeId(IRawElementProviderFragment* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 112 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 121 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 public unsafe winmdroot.Foundation.HRESULT GetRuntimeId(winmdroot.System.Com.SAFEARRAY** pRetVal) 139 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IRawElementProviderFragment*)Unsafe.AsPointer(ref this), pRetVal); 144 internal unsafe winmdroot.Foundation.HRESULT get_BoundingRectangle(out winmdroot.UI.Accessibility.UiaRect pRetVal) 148 winmdroot.Foundation.HRESULT __result = this.get_BoundingRectangle(pRetValLocal); 156 private static winmdroot.Foundation.HRESULT get_BoundingRectangle(IRawElementProviderFragment* pThis, winmdroot.UI.Accessibility.UiaRect* pRetVal) 160 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 169 return (winmdroot.Foundation.HRESULT)ex.HResult; 178 public unsafe winmdroot.Foundation.HRESULT get_BoundingRectangle(winmdroot.UI.Accessibility.UiaRect* pRetVal) 180 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.UI.Accessibility.UiaRect* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IRawElementProviderFragment*)Unsafe.AsPointer(ref this), pRetVal); 185 internal unsafe winmdroot.Foundation.HRESULT GetEmbeddedFragmentRoots(out winmdroot.System.Com.SAFEARRAY* pRetVal) 189 winmdroot.Foundation.HRESULT __result = this.GetEmbeddedFragmentRoots(pRetValLocal); 197 private static winmdroot.Foundation.HRESULT GetEmbeddedFragmentRoots(IRawElementProviderFragment* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 201 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 210 return (winmdroot.Foundation.HRESULT)ex.HResult; 226 public unsafe winmdroot.Foundation.HRESULT GetEmbeddedFragmentRoots(winmdroot.System.Com.SAFEARRAY** pRetVal) 228 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IRawElementProviderFragment*)Unsafe.AsPointer(ref this), pRetVal); 234 private static winmdroot.Foundation.HRESULT SetFocus(IRawElementProviderFragment* pThis) 238 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 247 return (winmdroot.Foundation.HRESULT)ex.HResult; 259 public winmdroot.Foundation.HRESULT SetFocus() 261 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IRawElementProviderFragment*)Unsafe.AsPointer(ref this)); 267 private static winmdroot.Foundation.HRESULT get_FragmentRoot(IRawElementProviderFragment* pThis, winmdroot.UI.Accessibility.IRawElementProviderFragmentRoot** pRetVal) 271 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 280 return (winmdroot.Foundation.HRESULT)ex.HResult; 289 public unsafe winmdroot.Foundation.HRESULT get_FragmentRoot(winmdroot.UI.Accessibility.IRawElementProviderFragmentRoot** pRetVal) 291 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.UI.Accessibility.IRawElementProviderFragmentRoot** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IRawElementProviderFragment*)Unsafe.AsPointer(ref this), pRetVal); 294 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 300 var hr = this.QueryInterface(&guid, &pv); 317 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 323 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.UI.Accessibility.NavigateDirection ,winmdroot.UI.Accessibility.IRawElementProviderFragment** ,winmdroot.Foundation.HRESULT> Navigate_4; 325 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetRuntimeId_5; 327 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.UI.Accessibility.UiaRect* ,winmdroot.Foundation.HRESULT> get_BoundingRectangle_6; 329 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetEmbeddedFragmentRoots_7; 331 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.Foundation.HRESULT> SetFocus_8; 333 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.UI.Accessibility.IRawElementProviderFragmentRoot** ,winmdroot.Foundation.HRESULT> get_FragmentRoot_9; 365 unsafe winmdroot.Foundation.HRESULT Navigate(winmdroot.UI.Accessibility.NavigateDirection direction, winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal); 368 unsafe winmdroot.Foundation.HRESULT GetRuntimeId(winmdroot.System.Com.SAFEARRAY** pRetVal); 371 unsafe winmdroot.Foundation.HRESULT get_BoundingRectangle(winmdroot.UI.Accessibility.UiaRect* pRetVal); 374 unsafe winmdroot.Foundation.HRESULT GetEmbeddedFragmentRoots(winmdroot.System.Com.SAFEARRAY** pRetVal); 377winmdroot.Foundation.HRESULT SetFocus(); 380 unsafe winmdroot.Foundation.HRESULT get_FragmentRoot(winmdroot.UI.Accessibility.IRawElementProviderFragmentRoot** pRetVal);
_generated\232\Windows.Win32.IRawElementProviderFragmentRoot.g.cs (21)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragmentRoot*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRawElementProviderFragmentRoot*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT ElementProviderFromPoint(IRawElementProviderFragmentRoot* pThis, double x, double y, winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 97 public unsafe winmdroot.Foundation.HRESULT ElementProviderFromPoint(double x, double y, winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal) 99 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragmentRoot*,double ,double ,winmdroot.UI.Accessibility.IRawElementProviderFragment** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IRawElementProviderFragmentRoot*)Unsafe.AsPointer(ref this), x, y, pRetVal); 105 private static winmdroot.Foundation.HRESULT GetFocus(IRawElementProviderFragmentRoot* pThis, winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal) 109 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 118 return (winmdroot.Foundation.HRESULT)ex.HResult; 133 public unsafe winmdroot.Foundation.HRESULT GetFocus(winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal) 135 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragmentRoot*,winmdroot.UI.Accessibility.IRawElementProviderFragment** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IRawElementProviderFragmentRoot*)Unsafe.AsPointer(ref this), pRetVal); 138 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 144 var hr = this.QueryInterface(&guid, &pv); 161 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragmentRoot*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 167 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragmentRoot*,double ,double ,winmdroot.UI.Accessibility.IRawElementProviderFragment** ,winmdroot.Foundation.HRESULT> ElementProviderFromPoint_4; 169 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragmentRoot*,winmdroot.UI.Accessibility.IRawElementProviderFragment** ,winmdroot.Foundation.HRESULT> GetFocus_5; 197 unsafe winmdroot.Foundation.HRESULT ElementProviderFromPoint(double x, double y, winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal); 200 unsafe winmdroot.Foundation.HRESULT GetFocus(winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal);
_generated\233\Windows.Win32.IRawElementProviderHwndOverride.g.cs (14)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IRawElementProviderHwndOverride*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRawElementProviderHwndOverride*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT GetOverrideProviderForHwnd(IRawElementProviderHwndOverride* pThis, winmdroot.Foundation.HWND hwnd, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 93 public unsafe winmdroot.Foundation.HRESULT GetOverrideProviderForHwnd(winmdroot.Foundation.HWND hwnd, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 95 return ((delegate *unmanaged [Stdcall]<IRawElementProviderHwndOverride*,winmdroot.Foundation.HWND ,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IRawElementProviderHwndOverride*)Unsafe.AsPointer(ref this), hwnd, pRetVal); 98 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 104 var hr = this.QueryInterface(&guid, &pv); 121 internal delegate *unmanaged [Stdcall]<IRawElementProviderHwndOverride*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 127 internal delegate *unmanaged [Stdcall]<IRawElementProviderHwndOverride*,winmdroot.Foundation.HWND ,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT> GetOverrideProviderForHwnd_4; 154 unsafe winmdroot.Foundation.HRESULT GetOverrideProviderForHwnd(winmdroot.Foundation.HWND hwnd, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal);
_generated\234\Windows.Win32.IRawElementProviderSimple.g.cs (39)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRawElementProviderSimple*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT get_ProviderOptions(out winmdroot.UI.Accessibility.ProviderOptions pRetVal) 63 winmdroot.Foundation.HRESULT __result = this.get_ProviderOptions(pRetValLocal); 71 private static winmdroot.Foundation.HRESULT get_ProviderOptions(IRawElementProviderSimple* pThis, winmdroot.UI.Accessibility.ProviderOptions* pRetVal) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 93 public unsafe winmdroot.Foundation.HRESULT get_ProviderOptions(winmdroot.UI.Accessibility.ProviderOptions* pRetVal) 95 return ((delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,winmdroot.UI.Accessibility.ProviderOptions* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IRawElementProviderSimple*)Unsafe.AsPointer(ref this), pRetVal); 101 private static winmdroot.Foundation.HRESULT GetPatternProvider(IRawElementProviderSimple* pThis, winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, winmdroot.System.Com.IUnknown** pRetVal) 105 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 114 return (winmdroot.Foundation.HRESULT)ex.HResult; 133 public unsafe winmdroot.Foundation.HRESULT GetPatternProvider(winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, winmdroot.System.Com.IUnknown** pRetVal) 135 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); 140 internal unsafe winmdroot.Foundation.HRESULT GetPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, out winmdroot.System.Variant.VARIANT pRetVal) 144 winmdroot.Foundation.HRESULT __result = this.GetPropertyValue(propertyId, pRetValLocal); 152 private static winmdroot.Foundation.HRESULT GetPropertyValue(IRawElementProviderSimple* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* pRetVal) 156 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 165 return (winmdroot.Foundation.HRESULT)ex.HResult; 187 public unsafe winmdroot.Foundation.HRESULT GetPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* pRetVal) 189 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); 195 private static winmdroot.Foundation.HRESULT get_HostRawElementProvider(IRawElementProviderSimple* pThis, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 199 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 208 return (winmdroot.Foundation.HRESULT)ex.HResult; 217 public unsafe winmdroot.Foundation.HRESULT get_HostRawElementProvider(winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 219 return ((delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IRawElementProviderSimple*)Unsafe.AsPointer(ref this), pRetVal); 222 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 228 var hr = this.QueryInterface(&guid, &pv); 245 internal delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 251 internal delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,winmdroot.UI.Accessibility.ProviderOptions* ,winmdroot.Foundation.HRESULT> get_ProviderOptions_4; 253 internal delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> GetPatternProvider_5; 255 internal delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetPropertyValue_6; 257 internal delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT> get_HostRawElementProvider_7; 287 unsafe winmdroot.Foundation.HRESULT get_ProviderOptions(winmdroot.UI.Accessibility.ProviderOptions* pRetVal); 290 unsafe winmdroot.Foundation.HRESULT GetPatternProvider(winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, winmdroot.System.Com.IUnknown** pRetVal); 293 unsafe winmdroot.Foundation.HRESULT GetPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* pRetVal); 296 unsafe winmdroot.Foundation.HRESULT get_HostRawElementProvider(winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal);
_generated\235\Windows.Win32.IRichEditOle.g.cs (93)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IRichEditOle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRichEditOle*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT GetClientSite(IRichEditOle* pThis, winmdroot.System.Ole.IOleClientSite** lplpolesite) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 90 ((delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.System.Ole.IOleClientSite** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IRichEditOle*)Unsafe.AsPointer(ref this), lplpolesite).ThrowOnFailure(); 100 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 130 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 166 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) 170 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 179 return (winmdroot.Foundation.HRESULT)ex.HResult; 201 ((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(); 217 private static winmdroot.Foundation.HRESULT InsertObject(IRichEditOle* pThis, winmdroot.UI.Controls.RichEdit.REOBJECT* lpreobject) 221 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 230 return (winmdroot.Foundation.HRESULT)ex.HResult; 245 ((delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.UI.Controls.RichEdit.REOBJECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IRichEditOle*)Unsafe.AsPointer(ref this), lpreobject).ThrowOnFailure(); 264 private static winmdroot.Foundation.HRESULT ConvertObject(IRichEditOle* pThis, int iob, global::System.Guid* rclsidNew, winmdroot.Foundation.PCSTR lpstrUserTypeNew) 268 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 277 return (winmdroot.Foundation.HRESULT)ex.HResult; 302 ((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(); 321 private static winmdroot.Foundation.HRESULT ActivateAs(IRichEditOle* pThis, global::System.Guid* rclsid, global::System.Guid* rclsidAs) 325 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 334 return (winmdroot.Foundation.HRESULT)ex.HResult; 355 ((delegate *unmanaged [Stdcall]<IRichEditOle*,global::System.Guid* ,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IRichEditOle*)Unsafe.AsPointer(ref this), rclsid, rclsidAs).ThrowOnFailure(); 374 private static winmdroot.Foundation.HRESULT SetHostNames(IRichEditOle* pThis, winmdroot.Foundation.PCSTR lpstrContainerApp, winmdroot.Foundation.PCSTR lpstrContainerObj) 378 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 387 return (winmdroot.Foundation.HRESULT)ex.HResult; 408 ((delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.Foundation.PCSTR ,winmdroot.Foundation.PCSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IRichEditOle*)Unsafe.AsPointer(ref this), lpstrContainerApp, lpstrContainerObj).ThrowOnFailure(); 414 private static winmdroot.Foundation.HRESULT SetLinkAvailable(IRichEditOle* pThis, int iob, winmdroot.Foundation.BOOL fAvailable) 418 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 427 return (winmdroot.Foundation.HRESULT)ex.HResult; 448 ((delegate *unmanaged [Stdcall]<IRichEditOle*,int ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IRichEditOle*)Unsafe.AsPointer(ref this), iob, fAvailable).ThrowOnFailure(); 454 private static winmdroot.Foundation.HRESULT SetDvaspect(IRichEditOle* pThis, int iob, uint dvaspect) 458 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 467 return (winmdroot.Foundation.HRESULT)ex.HResult; 488 ((delegate *unmanaged [Stdcall]<IRichEditOle*,int ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IRichEditOle*)Unsafe.AsPointer(ref this), iob, dvaspect).ThrowOnFailure(); 494 private static winmdroot.Foundation.HRESULT HandsOffStorage(IRichEditOle* pThis, int iob) 498 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 507 return (winmdroot.Foundation.HRESULT)ex.HResult; 524 ((delegate *unmanaged [Stdcall]<IRichEditOle*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IRichEditOle*)Unsafe.AsPointer(ref this), iob).ThrowOnFailure(); 530 private static winmdroot.Foundation.HRESULT SaveCompleted(IRichEditOle* pThis, int iob, winmdroot.System.Com.StructuredStorage.IStorage* lpstg) 534 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 543 return (winmdroot.Foundation.HRESULT)ex.HResult; 564 ((delegate *unmanaged [Stdcall]<IRichEditOle*,int ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IRichEditOle*)Unsafe.AsPointer(ref this), iob, lpstg).ThrowOnFailure(); 570 private static winmdroot.Foundation.HRESULT InPlaceDeactivate(IRichEditOle* pThis) 574 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 583 return (winmdroot.Foundation.HRESULT)ex.HResult; 596 ((delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IRichEditOle*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 602 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IRichEditOle* pThis, winmdroot.Foundation.BOOL fEnterMode) 606 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 615 return (winmdroot.Foundation.HRESULT)ex.HResult; 632 ((delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IRichEditOle*)Unsafe.AsPointer(ref this), fEnterMode).ThrowOnFailure(); 648 private static winmdroot.Foundation.HRESULT GetClipboardData(IRichEditOle* pThis, winmdroot.UI.Controls.RichEdit.CHARRANGE* lpchrg, uint reco, winmdroot.System.Com.IDataObject** lplpdataobj) 652 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 661 return (winmdroot.Foundation.HRESULT)ex.HResult; 687 ((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(); 693 private static winmdroot.Foundation.HRESULT ImportDataObject(IRichEditOle* pThis, winmdroot.System.Com.IDataObject* lpdataobj, ushort cf, winmdroot.Foundation.HGLOBAL hMetaPict) 697 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 706 return (winmdroot.Foundation.HRESULT)ex.HResult; 732 ((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(); 735 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 741 var hr = this.QueryInterface(&guid, &pv); 758 internal delegate *unmanaged [Stdcall]<IRichEditOle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 764 internal delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.System.Ole.IOleClientSite** ,winmdroot.Foundation.HRESULT> GetClientSite_4; 770 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; 772 internal delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.UI.Controls.RichEdit.REOBJECT* ,winmdroot.Foundation.HRESULT> InsertObject_8; 774 internal delegate *unmanaged [Stdcall]<IRichEditOle*,int ,global::System.Guid* ,winmdroot.Foundation.PCSTR ,winmdroot.Foundation.HRESULT> ConvertObject_9; 776 internal delegate *unmanaged [Stdcall]<IRichEditOle*,global::System.Guid* ,global::System.Guid* ,winmdroot.Foundation.HRESULT> ActivateAs_10; 778 internal delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.Foundation.PCSTR ,winmdroot.Foundation.PCSTR ,winmdroot.Foundation.HRESULT> SetHostNames_11; 780 internal delegate *unmanaged [Stdcall]<IRichEditOle*,int ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> SetLinkAvailable_12; 782 internal delegate *unmanaged [Stdcall]<IRichEditOle*,int ,uint ,winmdroot.Foundation.HRESULT> SetDvaspect_13; 784 internal delegate *unmanaged [Stdcall]<IRichEditOle*,int ,winmdroot.Foundation.HRESULT> HandsOffStorage_14; 786 internal delegate *unmanaged [Stdcall]<IRichEditOle*,int ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT> SaveCompleted_15; 788 internal delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.Foundation.HRESULT> InPlaceDeactivate_16; 790 internal delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_17; 792 internal delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.UI.Controls.RichEdit.CHARRANGE* ,uint ,winmdroot.System.Com.IDataObject** ,winmdroot.Foundation.HRESULT> GetClipboardData_18; 794 internal delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.System.Com.IDataObject* ,ushort ,winmdroot.Foundation.HGLOBAL ,winmdroot.Foundation.HRESULT> ImportDataObject_19; 836 unsafe winmdroot.Foundation.HRESULT GetClientSite(winmdroot.System.Ole.IOleClientSite** lplpolesite); 845 unsafe winmdroot.Foundation.HRESULT GetObject(int iob, winmdroot.UI.Controls.RichEdit.REOBJECT* lpreobject, winmdroot.UI.Controls.RichEdit.RICH_EDIT_GET_OBJECT_FLAGS dwFlags); 848 unsafe winmdroot.Foundation.HRESULT InsertObject(winmdroot.UI.Controls.RichEdit.REOBJECT* lpreobject); 851 unsafe winmdroot.Foundation.HRESULT ConvertObject(int iob, global::System.Guid* rclsidNew, winmdroot.Foundation.PCSTR lpstrUserTypeNew); 854 unsafe winmdroot.Foundation.HRESULT ActivateAs(global::System.Guid* rclsid, global::System.Guid* rclsidAs); 857winmdroot.Foundation.HRESULT SetHostNames(winmdroot.Foundation.PCSTR lpstrContainerApp, winmdroot.Foundation.PCSTR lpstrContainerObj); 860winmdroot.Foundation.HRESULT SetLinkAvailable(int iob, winmdroot.Foundation.BOOL fAvailable); 863winmdroot.Foundation.HRESULT SetDvaspect(int iob, uint dvaspect); 866winmdroot.Foundation.HRESULT HandsOffStorage(int iob); 869 unsafe winmdroot.Foundation.HRESULT SaveCompleted(int iob, winmdroot.System.Com.StructuredStorage.IStorage* lpstg); 872winmdroot.Foundation.HRESULT InPlaceDeactivate(); 875winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode); 878 unsafe winmdroot.Foundation.HRESULT GetClipboardData(winmdroot.UI.Controls.RichEdit.CHARRANGE* lpchrg, uint reco, winmdroot.System.Com.IDataObject** lplpdataobj); 881 unsafe winmdroot.Foundation.HRESULT ImportDataObject(winmdroot.System.Com.IDataObject* lpdataobj, ushort cf, winmdroot.Foundation.HGLOBAL hMetaPict);
_generated\236\Windows.Win32.IRichEditOleCallback.g.cs (89)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IRichEditOleCallback*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRichEditOleCallback*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT GetNewStorage(IRichEditOleCallback* pThis, winmdroot.System.Com.StructuredStorage.IStorage** lplpstg) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 87 public unsafe winmdroot.Foundation.HRESULT GetNewStorage(winmdroot.System.Com.StructuredStorage.IStorage** lplpstg) 89 return ((delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.System.Com.StructuredStorage.IStorage** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IRichEditOleCallback*)Unsafe.AsPointer(ref this), lplpstg); 94 internal unsafe winmdroot.Foundation.HRESULT GetInPlaceContext(winmdroot.System.Ole.IOleInPlaceFrame** lplpFrame, winmdroot.System.Ole.IOleInPlaceUIWindow** lplpDoc, ref winmdroot.System.Ole.OLEINPLACEFRAMEINFO lpFrameInfo) 98 winmdroot.Foundation.HRESULT __result = this.GetInPlaceContext(lplpFrame, lplpDoc, lpFrameInfoLocal); 106 private static winmdroot.Foundation.HRESULT GetInPlaceContext(IRichEditOleCallback* pThis, winmdroot.System.Ole.IOleInPlaceFrame** lplpFrame, winmdroot.System.Ole.IOleInPlaceUIWindow** lplpDoc, winmdroot.System.Ole.OLEINPLACEFRAMEINFO* lpFrameInfo) 110 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 119 return (winmdroot.Foundation.HRESULT)ex.HResult; 143 public unsafe winmdroot.Foundation.HRESULT GetInPlaceContext(winmdroot.System.Ole.IOleInPlaceFrame** lplpFrame, winmdroot.System.Ole.IOleInPlaceUIWindow** lplpDoc, winmdroot.System.Ole.OLEINPLACEFRAMEINFO* lpFrameInfo) 145 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); 151 private static winmdroot.Foundation.HRESULT ShowContainerUI(IRichEditOleCallback* pThis, winmdroot.Foundation.BOOL fShow) 155 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 164 return (winmdroot.Foundation.HRESULT)ex.HResult; 181 public winmdroot.Foundation.HRESULT ShowContainerUI(winmdroot.Foundation.BOOL fShow) 183 return ((delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IRichEditOleCallback*)Unsafe.AsPointer(ref this), fShow); 188 internal unsafe winmdroot.Foundation.HRESULT QueryInsertObject(ref global::System.Guid lpclsid, winmdroot.System.Com.StructuredStorage.IStorage* lpstg, int cp) 192 winmdroot.Foundation.HRESULT __result = this.QueryInsertObject(lpclsidLocal, lpstg, cp); 200 private static winmdroot.Foundation.HRESULT QueryInsertObject(IRichEditOleCallback* pThis, global::System.Guid* lpclsid, winmdroot.System.Com.StructuredStorage.IStorage* lpstg, int cp) 204 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 213 return (winmdroot.Foundation.HRESULT)ex.HResult; 237 public unsafe winmdroot.Foundation.HRESULT QueryInsertObject(global::System.Guid* lpclsid, winmdroot.System.Com.StructuredStorage.IStorage* lpstg, int cp) 239 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); 245 private static winmdroot.Foundation.HRESULT DeleteObject(IRichEditOleCallback* pThis, winmdroot.System.Ole.IOleObject* lpoleobj) 249 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 258 return (winmdroot.Foundation.HRESULT)ex.HResult; 273 public unsafe winmdroot.Foundation.HRESULT DeleteObject(winmdroot.System.Ole.IOleObject* lpoleobj) 275 return ((delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.System.Ole.IOleObject* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IRichEditOleCallback*)Unsafe.AsPointer(ref this), lpoleobj); 280 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) 284 winmdroot.Foundation.HRESULT __result = this.QueryAcceptData(lpdataobj, lpcfFormatLocal, reco, fReally, hMetaPict); 292 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) 296 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 305 return (winmdroot.Foundation.HRESULT)ex.HResult; 335 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) 337 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); 343 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IRichEditOleCallback* pThis, winmdroot.Foundation.BOOL fEnterMode) 347 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 356 return (winmdroot.Foundation.HRESULT)ex.HResult; 372 public winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode) 374 return ((delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IRichEditOleCallback*)Unsafe.AsPointer(ref this), fEnterMode); 379 internal unsafe winmdroot.Foundation.HRESULT GetClipboardData(ref winmdroot.UI.Controls.RichEdit.CHARRANGE lpchrg, uint reco, winmdroot.System.Com.IDataObject** lplpdataobj) 383 winmdroot.Foundation.HRESULT __result = this.GetClipboardData(lpchrgLocal, reco, lplpdataobj); 391 private static winmdroot.Foundation.HRESULT GetClipboardData(IRichEditOleCallback* pThis, winmdroot.UI.Controls.RichEdit.CHARRANGE* lpchrg, uint reco, winmdroot.System.Com.IDataObject** lplpdataobj) 395 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 404 return (winmdroot.Foundation.HRESULT)ex.HResult; 429 public unsafe winmdroot.Foundation.HRESULT GetClipboardData(winmdroot.UI.Controls.RichEdit.CHARRANGE* lpchrg, uint reco, winmdroot.System.Com.IDataObject** lplpdataobj) 431 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); 436 internal unsafe winmdroot.Foundation.HRESULT GetDragDropEffect(winmdroot.Foundation.BOOL fDrag, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, ref winmdroot.System.Ole.DROPEFFECT pdwEffect) 440 winmdroot.Foundation.HRESULT __result = this.GetDragDropEffect(fDrag, grfKeyState, pdwEffectLocal); 448 private static winmdroot.Foundation.HRESULT GetDragDropEffect(IRichEditOleCallback* pThis, winmdroot.Foundation.BOOL fDrag, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.System.Ole.DROPEFFECT* pdwEffect) 452 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 461 return (winmdroot.Foundation.HRESULT)ex.HResult; 484 public unsafe winmdroot.Foundation.HRESULT GetDragDropEffect(winmdroot.Foundation.BOOL fDrag, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.System.Ole.DROPEFFECT* pdwEffect) 486 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); 491 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) 497 winmdroot.Foundation.HRESULT __result = this.GetContextMenu(seltype, lpoleobj, lpchrgLocal, lphmenuLocal); 506 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) 510 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 519 return (winmdroot.Foundation.HRESULT)ex.HResult; 542 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) 544 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); 547 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 553 var hr = this.QueryInterface(&guid, &pv); 570 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 576 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.System.Com.StructuredStorage.IStorage** ,winmdroot.Foundation.HRESULT> GetNewStorage_4; 578 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.System.Ole.IOleInPlaceFrame** ,winmdroot.System.Ole.IOleInPlaceUIWindow** ,winmdroot.System.Ole.OLEINPLACEFRAMEINFO* ,winmdroot.Foundation.HRESULT> GetInPlaceContext_5; 580 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ShowContainerUI_6; 582 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,global::System.Guid* ,winmdroot.System.Com.StructuredStorage.IStorage* ,int ,winmdroot.Foundation.HRESULT> QueryInsertObject_7; 584 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.System.Ole.IOleObject* ,winmdroot.Foundation.HRESULT> DeleteObject_8; 586 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; 588 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_10; 590 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.UI.Controls.RichEdit.CHARRANGE* ,uint ,winmdroot.System.Com.IDataObject** ,winmdroot.Foundation.HRESULT> GetClipboardData_11; 592 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.Foundation.BOOL ,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.System.Ole.DROPEFFECT* ,winmdroot.Foundation.HRESULT> GetDragDropEffect_12; 594 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; 630 unsafe winmdroot.Foundation.HRESULT GetNewStorage(winmdroot.System.Com.StructuredStorage.IStorage** lplpstg); 633 unsafe winmdroot.Foundation.HRESULT GetInPlaceContext(winmdroot.System.Ole.IOleInPlaceFrame** lplpFrame, winmdroot.System.Ole.IOleInPlaceUIWindow** lplpDoc, winmdroot.System.Ole.OLEINPLACEFRAMEINFO* lpFrameInfo); 636winmdroot.Foundation.HRESULT ShowContainerUI(winmdroot.Foundation.BOOL fShow); 639 unsafe winmdroot.Foundation.HRESULT QueryInsertObject(global::System.Guid* lpclsid, winmdroot.System.Com.StructuredStorage.IStorage* lpstg, int cp); 642 unsafe winmdroot.Foundation.HRESULT DeleteObject(winmdroot.System.Ole.IOleObject* lpoleobj); 645 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); 648winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode); 651 unsafe winmdroot.Foundation.HRESULT GetClipboardData(winmdroot.UI.Controls.RichEdit.CHARRANGE* lpchrg, uint reco, winmdroot.System.Com.IDataObject** lplpdataobj); 654 unsafe winmdroot.Foundation.HRESULT GetDragDropEffect(winmdroot.Foundation.BOOL fDrag, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.System.Ole.DROPEFFECT* pdwEffect); 657 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);
_generated\237\Windows.Win32.IScrollItemProvider.g.cs (13)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IScrollItemProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IScrollItemProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT ScrollIntoView(IScrollItemProvider* pThis) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 87 ((delegate *unmanaged [Stdcall]<IScrollItemProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IScrollItemProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 90 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 96 var hr = this.QueryInterface(&guid, &pv); 113 internal delegate *unmanaged [Stdcall]<IScrollItemProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 119 internal delegate *unmanaged [Stdcall]<IScrollItemProvider*,winmdroot.Foundation.HRESULT> ScrollIntoView_4; 146winmdroot.Foundation.HRESULT ScrollIntoView();
_generated\238\Windows.Win32.IScrollProvider.g.cs (55)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IScrollProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IScrollProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT Scroll(IScrollProvider* pThis, winmdroot.UI.Accessibility.ScrollAmount horizontalAmount, winmdroot.UI.Accessibility.ScrollAmount verticalAmount) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 86 ((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(); 92 private static winmdroot.Foundation.HRESULT SetScrollPercent(IScrollProvider* pThis, double horizontalPercent, double verticalPercent) 96 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 127 ((delegate *unmanaged [Stdcall]<IScrollProvider*,double ,double ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IScrollProvider*)Unsafe.AsPointer(ref this), horizontalPercent, verticalPercent).ThrowOnFailure(); 133 private static winmdroot.Foundation.HRESULT get_HorizontalScrollPercent(IScrollProvider* pThis, double* pRetVal) 137 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 143 return winmdroot.Foundation.HRESULT.S_OK; 147 return (winmdroot.Foundation.HRESULT)ex.HResult; 158 ((delegate *unmanaged [Stdcall]<IScrollProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IScrollProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 166 private static winmdroot.Foundation.HRESULT get_VerticalScrollPercent(IScrollProvider* pThis, double* pRetVal) 170 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 176 return winmdroot.Foundation.HRESULT.S_OK; 180 return (winmdroot.Foundation.HRESULT)ex.HResult; 191 ((delegate *unmanaged [Stdcall]<IScrollProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IScrollProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 199 private static winmdroot.Foundation.HRESULT get_HorizontalViewSize(IScrollProvider* pThis, double* pRetVal) 203 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 209 return winmdroot.Foundation.HRESULT.S_OK; 213 return (winmdroot.Foundation.HRESULT)ex.HResult; 226 ((delegate *unmanaged [Stdcall]<IScrollProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IScrollProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 234 private static winmdroot.Foundation.HRESULT get_VerticalViewSize(IScrollProvider* pThis, double* pRetVal) 238 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 244 return winmdroot.Foundation.HRESULT.S_OK; 248 return (winmdroot.Foundation.HRESULT)ex.HResult; 261 ((delegate *unmanaged [Stdcall]<IScrollProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IScrollProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 269 private static winmdroot.Foundation.HRESULT get_HorizontallyScrollable(IScrollProvider* pThis, winmdroot.Foundation.BOOL* pRetVal) 273 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 279 return winmdroot.Foundation.HRESULT.S_OK; 283 return (winmdroot.Foundation.HRESULT)ex.HResult; 297 ((delegate *unmanaged [Stdcall]<IScrollProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IScrollProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 305 private static winmdroot.Foundation.HRESULT get_VerticallyScrollable(IScrollProvider* pThis, winmdroot.Foundation.BOOL* pRetVal) 309 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 315 return winmdroot.Foundation.HRESULT.S_OK; 319 return (winmdroot.Foundation.HRESULT)ex.HResult; 333 ((delegate *unmanaged [Stdcall]<IScrollProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IScrollProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 338 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 344 var hr = this.QueryInterface(&guid, &pv); 361 internal delegate *unmanaged [Stdcall]<IScrollProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 367 internal delegate *unmanaged [Stdcall]<IScrollProvider*,winmdroot.UI.Accessibility.ScrollAmount ,winmdroot.UI.Accessibility.ScrollAmount ,winmdroot.Foundation.HRESULT> Scroll_4; 369 internal delegate *unmanaged [Stdcall]<IScrollProvider*,double ,double ,winmdroot.Foundation.HRESULT> SetScrollPercent_5; 371 internal delegate *unmanaged [Stdcall]<IScrollProvider*,double* ,winmdroot.Foundation.HRESULT> get_HorizontalScrollPercent_6; 373 internal delegate *unmanaged [Stdcall]<IScrollProvider*,double* ,winmdroot.Foundation.HRESULT> get_VerticalScrollPercent_7; 375 internal delegate *unmanaged [Stdcall]<IScrollProvider*,double* ,winmdroot.Foundation.HRESULT> get_HorizontalViewSize_8; 377 internal delegate *unmanaged [Stdcall]<IScrollProvider*,double* ,winmdroot.Foundation.HRESULT> get_VerticalViewSize_9; 379 internal delegate *unmanaged [Stdcall]<IScrollProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_HorizontallyScrollable_10; 381 internal delegate *unmanaged [Stdcall]<IScrollProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_VerticallyScrollable_11; 415winmdroot.Foundation.HRESULT Scroll(winmdroot.UI.Accessibility.ScrollAmount horizontalAmount, winmdroot.UI.Accessibility.ScrollAmount verticalAmount); 418winmdroot.Foundation.HRESULT SetScrollPercent(double horizontalPercent, double verticalPercent);
_generated\239\Windows.Win32.ISelectionItemProvider.g.cs (41)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ISelectionItemProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ISelectionItemProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT Select(ISelectionItemProvider* pThis) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 84 ((delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ISelectionItemProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 90 private static winmdroot.Foundation.HRESULT AddToSelection(ISelectionItemProvider* pThis) 94 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 103 return (winmdroot.Foundation.HRESULT)ex.HResult; 117 ((delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ISelectionItemProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 123 private static winmdroot.Foundation.HRESULT RemoveFromSelection(ISelectionItemProvider* pThis) 127 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 136 return (winmdroot.Foundation.HRESULT)ex.HResult; 150 ((delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ISelectionItemProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 155 internal unsafe winmdroot.Foundation.HRESULT get_IsSelected(out winmdroot.Foundation.BOOL pRetVal) 159 winmdroot.Foundation.HRESULT __result = this.get_IsSelected(pRetValLocal); 167 private static winmdroot.Foundation.HRESULT get_IsSelected(ISelectionItemProvider* pThis, winmdroot.Foundation.BOOL* pRetVal) 171 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return (winmdroot.Foundation.HRESULT)ex.HResult; 188 public unsafe winmdroot.Foundation.HRESULT get_IsSelected(winmdroot.Foundation.BOOL* pRetVal) 190 return ((delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ISelectionItemProvider*)Unsafe.AsPointer(ref this), pRetVal); 196 private static winmdroot.Foundation.HRESULT get_SelectionContainer(ISelectionItemProvider* pThis, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 200 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 217 public unsafe winmdroot.Foundation.HRESULT get_SelectionContainer(winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 219 return ((delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ISelectionItemProvider*)Unsafe.AsPointer(ref this), pRetVal); 222 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 228 var hr = this.QueryInterface(&guid, &pv); 245 internal delegate *unmanaged [Stdcall]<ISelectionItemProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 251 internal delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.Foundation.HRESULT> Select_4; 253 internal delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.Foundation.HRESULT> AddToSelection_5; 255 internal delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.Foundation.HRESULT> RemoveFromSelection_6; 257 internal delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_IsSelected_7; 259 internal delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT> get_SelectionContainer_8; 290winmdroot.Foundation.HRESULT Select(); 293winmdroot.Foundation.HRESULT AddToSelection(); 296winmdroot.Foundation.HRESULT RemoveFromSelection(); 299 unsafe winmdroot.Foundation.HRESULT get_IsSelected(winmdroot.Foundation.BOOL* pRetVal); 302 unsafe winmdroot.Foundation.HRESULT get_SelectionContainer(winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal);
_generated\240\Windows.Win32.ISelectionProvider.g.cs (31)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ISelectionProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ISelectionProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT GetSelection(ISelectionProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 87 ((delegate *unmanaged [Stdcall]<ISelectionProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ISelectionProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 93 internal unsafe winmdroot.Foundation.HRESULT get_CanSelectMultiple(out winmdroot.Foundation.BOOL pRetVal) 97 winmdroot.Foundation.HRESULT __result = this.get_CanSelectMultiple(pRetValLocal); 105 private static winmdroot.Foundation.HRESULT get_CanSelectMultiple(ISelectionProvider* pThis, winmdroot.Foundation.BOOL* pRetVal) 109 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 118 return (winmdroot.Foundation.HRESULT)ex.HResult; 127 public unsafe winmdroot.Foundation.HRESULT get_CanSelectMultiple(winmdroot.Foundation.BOOL* pRetVal) 129 return ((delegate *unmanaged [Stdcall]<ISelectionProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ISelectionProvider*)Unsafe.AsPointer(ref this), pRetVal); 134 internal unsafe winmdroot.Foundation.HRESULT get_IsSelectionRequired(out winmdroot.Foundation.BOOL pRetVal) 138 winmdroot.Foundation.HRESULT __result = this.get_IsSelectionRequired(pRetValLocal); 146 private static winmdroot.Foundation.HRESULT get_IsSelectionRequired(ISelectionProvider* pThis, winmdroot.Foundation.BOOL* pRetVal) 150 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 159 return (winmdroot.Foundation.HRESULT)ex.HResult; 168 public unsafe winmdroot.Foundation.HRESULT get_IsSelectionRequired(winmdroot.Foundation.BOOL* pRetVal) 170 return ((delegate *unmanaged [Stdcall]<ISelectionProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ISelectionProvider*)Unsafe.AsPointer(ref this), pRetVal); 173 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 179 var hr = this.QueryInterface(&guid, &pv); 196 internal delegate *unmanaged [Stdcall]<ISelectionProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 202 internal delegate *unmanaged [Stdcall]<ISelectionProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetSelection_4; 204 internal delegate *unmanaged [Stdcall]<ISelectionProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CanSelectMultiple_5; 206 internal delegate *unmanaged [Stdcall]<ISelectionProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_IsSelectionRequired_6; 235 unsafe winmdroot.Foundation.HRESULT GetSelection(winmdroot.System.Com.SAFEARRAY** pRetVal); 238 unsafe winmdroot.Foundation.HRESULT get_CanSelectMultiple(winmdroot.Foundation.BOOL* pRetVal); 241 unsafe winmdroot.Foundation.HRESULT get_IsSelectionRequired(winmdroot.Foundation.BOOL* pRetVal);
_generated\241\Windows.Win32.IShellFolder.g.cs (71)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IShellFolder*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IShellFolder*)Unsafe.AsPointer(ref this), riid, ppvObject); 72 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) 76 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 85 return (winmdroot.Foundation.HRESULT)ex.HResult; 129 ((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(); 135 private static winmdroot.Foundation.HRESULT EnumObjects(IShellFolder* pThis, winmdroot.Foundation.HWND hwnd, uint grfFlags, winmdroot.UI.Shell.IEnumIDList** ppenumIDList) 139 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 148 return (winmdroot.Foundation.HRESULT)ex.HResult; 172 public unsafe winmdroot.Foundation.HRESULT EnumObjects(winmdroot.Foundation.HWND hwnd, uint grfFlags, winmdroot.UI.Shell.IEnumIDList** ppenumIDList) 174 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); 196 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) 200 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 240 ((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(); 262 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) 266 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 275 return (winmdroot.Foundation.HRESULT)ex.HResult; 302 ((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(); 307 internal unsafe winmdroot.Foundation.HRESULT CompareIDs(winmdroot.Foundation.LPARAM lParam, in winmdroot.UI.Shell.Common.ITEMIDLIST pidl1, in winmdroot.UI.Shell.Common.ITEMIDLIST pidl2) 313 winmdroot.Foundation.HRESULT __result = this.CompareIDs(lParam, pidl1Local, pidl2Local); 322 private static winmdroot.Foundation.HRESULT CompareIDs(IShellFolder* pThis, winmdroot.Foundation.LPARAM lParam, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl1, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl2) 326 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 335 return (winmdroot.Foundation.HRESULT)ex.HResult; 363 public unsafe winmdroot.Foundation.HRESULT CompareIDs(winmdroot.Foundation.LPARAM lParam, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl1, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl2) 365 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); 384 private static winmdroot.Foundation.HRESULT CreateViewObject(IShellFolder* pThis, winmdroot.Foundation.HWND hwndOwner, global::System.Guid* riid, void** ppv) 388 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 397 return (winmdroot.Foundation.HRESULT)ex.HResult; 425 ((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(); 441 private static winmdroot.Foundation.HRESULT GetAttributesOf(IShellFolder* pThis, uint cidl, winmdroot.UI.Shell.Common.ITEMIDLIST** apidl, uint* rgfInOut) 445 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 454 return (winmdroot.Foundation.HRESULT)ex.HResult; 482 ((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(); 500 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) 504 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 513 return (winmdroot.Foundation.HRESULT)ex.HResult; 552 ((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(); 571 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) 575 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 584 return (winmdroot.Foundation.HRESULT)ex.HResult; 610 ((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(); 644 private static winmdroot.Foundation.HRESULT SetNameOf(IShellFolder* pThis, [Optional] 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) 648 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 657 return (winmdroot.Foundation.HRESULT)ex.HResult; 693 ((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(); 696 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 702 var hr = this.QueryInterface(&guid, &pv); 719 internal delegate *unmanaged [Stdcall]<IShellFolder*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 725 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; 727 internal delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.Foundation.HWND ,uint ,winmdroot.UI.Shell.IEnumIDList** ,winmdroot.Foundation.HRESULT> EnumObjects_5; 729 internal delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.System.Com.IBindCtx* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> BindToObject_6; 731 internal delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.System.Com.IBindCtx* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> BindToStorage_7; 733 internal delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.Foundation.LPARAM ,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.Foundation.HRESULT> CompareIDs_8; 735 internal delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.Foundation.HWND ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> CreateViewObject_9; 737 internal delegate *unmanaged [Stdcall]<IShellFolder*,uint ,winmdroot.UI.Shell.Common.ITEMIDLIST** ,uint* ,winmdroot.Foundation.HRESULT> GetAttributesOf_10; 739 internal delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.Foundation.HWND ,uint ,winmdroot.UI.Shell.Common.ITEMIDLIST** ,global::System.Guid* ,uint* ,void** ,winmdroot.Foundation.HRESULT> GetUIObjectOf_11; 741 internal delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.UI.Shell.SHGDNF ,winmdroot.UI.Shell.Common.STRRET* ,winmdroot.Foundation.HRESULT> GetDisplayNameOf_12; 743 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; 779 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); 782 unsafe winmdroot.Foundation.HRESULT EnumObjects(winmdroot.Foundation.HWND hwnd, uint grfFlags, winmdroot.UI.Shell.IEnumIDList** ppenumIDList); 785 unsafe winmdroot.Foundation.HRESULT BindToObject(winmdroot.UI.Shell.Common.ITEMIDLIST* pidl, winmdroot.System.Com.IBindCtx* pbc, global::System.Guid* riid, void** ppv); 788 unsafe winmdroot.Foundation.HRESULT BindToStorage(winmdroot.UI.Shell.Common.ITEMIDLIST* pidl, winmdroot.System.Com.IBindCtx* pbc, global::System.Guid* riid, void** ppv); 791 unsafe winmdroot.Foundation.HRESULT CompareIDs(winmdroot.Foundation.LPARAM lParam, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl1, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl2); 794 unsafe winmdroot.Foundation.HRESULT CreateViewObject(winmdroot.Foundation.HWND hwndOwner, global::System.Guid* riid, void** ppv); 797 unsafe winmdroot.Foundation.HRESULT GetAttributesOf(uint cidl, winmdroot.UI.Shell.Common.ITEMIDLIST** apidl, uint* rgfInOut); 800 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); 803 unsafe winmdroot.Foundation.HRESULT GetDisplayNameOf(winmdroot.UI.Shell.Common.ITEMIDLIST* pidl, winmdroot.UI.Shell.SHGDNF uFlags, winmdroot.UI.Shell.Common.STRRET* pName); 806 unsafe winmdroot.Foundation.HRESULT SetNameOf([Optional] 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);
_generated\242\Windows.Win32.IShellItem.g.cs (37)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IShellItem*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IShellItem*)Unsafe.AsPointer(ref this), riid, ppvObject); 76 private static winmdroot.Foundation.HRESULT BindToHandler(IShellItem* pThis, winmdroot.System.Com.IBindCtx* pbc, global::System.Guid* bhid, global::System.Guid* riid, void** ppv) 80 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 89 return (winmdroot.Foundation.HRESULT)ex.HResult; 115 ((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(); 121 private static winmdroot.Foundation.HRESULT GetParent(IShellItem* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 125 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 134 return (winmdroot.Foundation.HRESULT)ex.HResult; 151 ((delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IShellItem*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 167 private static winmdroot.Foundation.HRESULT GetDisplayName(IShellItem* pThis, winmdroot.UI.Shell.SIGDN sigdnName, winmdroot.Foundation.PWSTR* ppszName) 171 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return (winmdroot.Foundation.HRESULT)ex.HResult; 199 ((delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.UI.Shell.SIGDN ,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IShellItem*)Unsafe.AsPointer(ref this), sigdnName, ppszName).ThrowOnFailure(); 215 private static winmdroot.Foundation.HRESULT GetAttributes(IShellItem* pThis, winmdroot.System.SystemServices.SFGAO_FLAGS sfgaoMask, winmdroot.System.SystemServices.SFGAO_FLAGS* psfgaoAttribs) 219 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 228 return (winmdroot.Foundation.HRESULT)ex.HResult; 249 ((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(); 265 private static winmdroot.Foundation.HRESULT Compare(IShellItem* pThis, winmdroot.UI.Shell.IShellItem* psi, uint hint, int* piOrder) 269 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 278 return (winmdroot.Foundation.HRESULT)ex.HResult; 306 ((delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.UI.Shell.IShellItem* ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IShellItem*)Unsafe.AsPointer(ref this), psi, hint, piOrder).ThrowOnFailure(); 309 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 315 var hr = this.QueryInterface(&guid, &pv); 332 internal delegate *unmanaged [Stdcall]<IShellItem*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 338 internal delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.System.Com.IBindCtx* ,global::System.Guid* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> BindToHandler_4; 340 internal delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetParent_5; 342 internal delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.UI.Shell.SIGDN ,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT> GetDisplayName_6; 344 internal delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.System.SystemServices.SFGAO_FLAGS ,winmdroot.System.SystemServices.SFGAO_FLAGS* ,winmdroot.Foundation.HRESULT> GetAttributes_7; 346 internal delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.UI.Shell.IShellItem* ,uint ,int* ,winmdroot.Foundation.HRESULT> Compare_8; 377 unsafe winmdroot.Foundation.HRESULT BindToHandler(winmdroot.System.Com.IBindCtx* pbc, global::System.Guid* bhid, global::System.Guid* riid, void** ppv); 380 unsafe winmdroot.Foundation.HRESULT GetParent(winmdroot.UI.Shell.IShellItem** ppsi); 383 unsafe winmdroot.Foundation.HRESULT GetDisplayName(winmdroot.UI.Shell.SIGDN sigdnName, winmdroot.Foundation.PWSTR* ppszName); 386 unsafe winmdroot.Foundation.HRESULT GetAttributes(winmdroot.System.SystemServices.SFGAO_FLAGS sfgaoMask, winmdroot.System.SystemServices.SFGAO_FLAGS* psfgaoAttribs); 389 unsafe winmdroot.Foundation.HRESULT Compare(winmdroot.UI.Shell.IShellItem* psi, uint hint, int* piOrder);
_generated\243\Windows.Win32.IShellItemArray.g.cs (49)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IShellItemArray*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IShellItemArray*)Unsafe.AsPointer(ref this), riid, ppvObject); 76 private static winmdroot.Foundation.HRESULT BindToHandler(IShellItemArray* pThis, winmdroot.System.Com.IBindCtx* pbc, global::System.Guid* bhid, global::System.Guid* riid, void** ppvOut) 80 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 89 return (winmdroot.Foundation.HRESULT)ex.HResult; 115 ((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(); 134 private static winmdroot.Foundation.HRESULT GetPropertyStore(IShellItemArray* pThis, winmdroot.UI.Shell.PropertiesSystem.GETPROPERTYSTOREFLAGS flags, global::System.Guid* riid, void** ppv) 138 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 147 return (winmdroot.Foundation.HRESULT)ex.HResult; 174 ((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(); 196 private static winmdroot.Foundation.HRESULT GetPropertyDescriptionList(IShellItemArray* pThis, winmdroot.Foundation.PROPERTYKEY* keyType, global::System.Guid* riid, void** ppv) 200 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 237 ((delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.Foundation.PROPERTYKEY* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IShellItemArray*)Unsafe.AsPointer(ref this), keyType, riid, ppv).ThrowOnFailure(); 253 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) 257 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 266 return (winmdroot.Foundation.HRESULT)ex.HResult; 289 ((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(); 305 private static winmdroot.Foundation.HRESULT GetCount(IShellItemArray* pThis, uint* pdwNumItems) 309 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 318 return (winmdroot.Foundation.HRESULT)ex.HResult; 335 ((delegate *unmanaged [Stdcall]<IShellItemArray*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IShellItemArray*)Unsafe.AsPointer(ref this), pdwNumItems).ThrowOnFailure(); 341 private static winmdroot.Foundation.HRESULT GetItemAt(IShellItemArray* pThis, uint dwIndex, winmdroot.UI.Shell.IShellItem** ppsi) 345 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 354 return (winmdroot.Foundation.HRESULT)ex.HResult; 373 ((delegate *unmanaged [Stdcall]<IShellItemArray*,uint ,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IShellItemArray*)Unsafe.AsPointer(ref this), dwIndex, ppsi).ThrowOnFailure(); 379 private static winmdroot.Foundation.HRESULT EnumItems(IShellItemArray* pThis, winmdroot.UI.Shell.IEnumShellItems** ppenumShellItems) 383 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 392 return (winmdroot.Foundation.HRESULT)ex.HResult; 409 ((delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.UI.Shell.IEnumShellItems** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IShellItemArray*)Unsafe.AsPointer(ref this), ppenumShellItems).ThrowOnFailure(); 412 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 418 var hr = this.QueryInterface(&guid, &pv); 435 internal delegate *unmanaged [Stdcall]<IShellItemArray*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 441 internal delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.System.Com.IBindCtx* ,global::System.Guid* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> BindToHandler_4; 443 internal delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.UI.Shell.PropertiesSystem.GETPROPERTYSTOREFLAGS ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> GetPropertyStore_5; 445 internal delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.Foundation.PROPERTYKEY* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> GetPropertyDescriptionList_6; 447 internal delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.UI.Shell.SIATTRIBFLAGS ,winmdroot.System.SystemServices.SFGAO_FLAGS ,winmdroot.System.SystemServices.SFGAO_FLAGS* ,winmdroot.Foundation.HRESULT> GetAttributes_7; 449 internal delegate *unmanaged [Stdcall]<IShellItemArray*,uint* ,winmdroot.Foundation.HRESULT> GetCount_8; 451 internal delegate *unmanaged [Stdcall]<IShellItemArray*,uint ,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetItemAt_9; 453 internal delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.UI.Shell.IEnumShellItems** ,winmdroot.Foundation.HRESULT> EnumItems_10; 486 unsafe winmdroot.Foundation.HRESULT BindToHandler(winmdroot.System.Com.IBindCtx* pbc, global::System.Guid* bhid, global::System.Guid* riid, void** ppvOut); 489 unsafe winmdroot.Foundation.HRESULT GetPropertyStore(winmdroot.UI.Shell.PropertiesSystem.GETPROPERTYSTOREFLAGS flags, global::System.Guid* riid, void** ppv); 492 unsafe winmdroot.Foundation.HRESULT GetPropertyDescriptionList(winmdroot.Foundation.PROPERTYKEY* keyType, global::System.Guid* riid, void** ppv); 495 unsafe winmdroot.Foundation.HRESULT GetAttributes(winmdroot.UI.Shell.SIATTRIBFLAGS AttribFlags, winmdroot.System.SystemServices.SFGAO_FLAGS sfgaoMask, winmdroot.System.SystemServices.SFGAO_FLAGS* psfgaoAttribs); 498 unsafe winmdroot.Foundation.HRESULT GetCount(uint* pdwNumItems); 501 unsafe winmdroot.Foundation.HRESULT GetItemAt(uint dwIndex, winmdroot.UI.Shell.IShellItem** ppsi); 504 unsafe winmdroot.Foundation.HRESULT EnumItems(winmdroot.UI.Shell.IEnumShellItems** ppenumShellItems);
_generated\244\Windows.Win32.IShellItemFilter.g.cs (19)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IShellItemFilter*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IShellItemFilter*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT IncludeItem(IShellItemFilter* pThis, winmdroot.UI.Shell.IShellItem* psi) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 88 ((delegate *unmanaged [Stdcall]<IShellItemFilter*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IShellItemFilter*)Unsafe.AsPointer(ref this), psi).ThrowOnFailure(); 104 private static winmdroot.Foundation.HRESULT GetEnumFlagsForItem(IShellItemFilter* pThis, winmdroot.UI.Shell.IShellItem* psi, uint* pgrfFlags) 108 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 117 return (winmdroot.Foundation.HRESULT)ex.HResult; 138 ((delegate *unmanaged [Stdcall]<IShellItemFilter*,winmdroot.UI.Shell.IShellItem* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IShellItemFilter*)Unsafe.AsPointer(ref this), psi, pgrfFlags).ThrowOnFailure(); 141 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 147 var hr = this.QueryInterface(&guid, &pv); 164 internal delegate *unmanaged [Stdcall]<IShellItemFilter*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 170 internal delegate *unmanaged [Stdcall]<IShellItemFilter*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> IncludeItem_4; 172 internal delegate *unmanaged [Stdcall]<IShellItemFilter*,winmdroot.UI.Shell.IShellItem* ,uint* ,winmdroot.Foundation.HRESULT> GetEnumFlagsForItem_5; 200 unsafe winmdroot.Foundation.HRESULT IncludeItem(winmdroot.UI.Shell.IShellItem* psi); 203 unsafe winmdroot.Foundation.HRESULT GetEnumFlagsForItem(winmdroot.UI.Shell.IShellItem* psi, uint* pgrfFlags);
_generated\245\Windows.Win32.ISimpleFrameSite.g.cs (19)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ISimpleFrameSite*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ISimpleFrameSite*)Unsafe.AsPointer(ref this), riid, ppvObject); 73 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) 77 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 86 return (winmdroot.Foundation.HRESULT)ex.HResult; 104 ((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(); 120 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) 124 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 133 return (winmdroot.Foundation.HRESULT)ex.HResult; 153 ((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(); 156 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 162 var hr = this.QueryInterface(&guid, &pv); 179 internal delegate *unmanaged [Stdcall]<ISimpleFrameSite*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 185 internal delegate *unmanaged [Stdcall]<ISimpleFrameSite*,winmdroot.Foundation.HWND ,uint ,winmdroot.Foundation.WPARAM ,winmdroot.Foundation.LPARAM ,winmdroot.Foundation.LRESULT* ,uint* ,winmdroot.Foundation.HRESULT> PreMessageFilter_4; 187 internal delegate *unmanaged [Stdcall]<ISimpleFrameSite*,winmdroot.Foundation.HWND ,uint ,winmdroot.Foundation.WPARAM ,winmdroot.Foundation.LPARAM ,winmdroot.Foundation.LRESULT* ,uint ,winmdroot.Foundation.HRESULT> PostMessageFilter_5; 215 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); 218 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);
_generated\246\Windows.Win32.ISpecifyPropertyPages.g.cs (16)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ISpecifyPropertyPages*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ISpecifyPropertyPages*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 internal unsafe winmdroot.Foundation.HRESULT GetPages(out winmdroot.System.Ole.CAUUID pPages) 63 winmdroot.Foundation.HRESULT __result = this.GetPages(pPagesLocal); 71 private static winmdroot.Foundation.HRESULT GetPages(ISpecifyPropertyPages* pThis, winmdroot.System.Ole.CAUUID* pPages) 75 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 98 public unsafe winmdroot.Foundation.HRESULT GetPages(winmdroot.System.Ole.CAUUID* pPages) 100 return ((delegate *unmanaged [Stdcall]<ISpecifyPropertyPages*,winmdroot.System.Ole.CAUUID* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ISpecifyPropertyPages*)Unsafe.AsPointer(ref this), pPages); 103 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 109 var hr = this.QueryInterface(&guid, &pv); 126 internal delegate *unmanaged [Stdcall]<ISpecifyPropertyPages*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 132 internal delegate *unmanaged [Stdcall]<ISpecifyPropertyPages*,winmdroot.System.Ole.CAUUID* ,winmdroot.Foundation.HRESULT> GetPages_4; 159 unsafe winmdroot.Foundation.HRESULT GetPages(winmdroot.System.Ole.CAUUID* pPages);
_generated\247\Windows.Win32.ISupportErrorInfo.g.cs (16)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<ISupportErrorInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ISupportErrorInfo*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 internal unsafe winmdroot.Foundation.HRESULT InterfaceSupportsErrorInfo(in global::System.Guid riid) 62 winmdroot.Foundation.HRESULT __result = this.InterfaceSupportsErrorInfo(riidLocal); 70 private static winmdroot.Foundation.HRESULT InterfaceSupportsErrorInfo(ISupportErrorInfo* pThis, global::System.Guid* riid) 74 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 100 public unsafe winmdroot.Foundation.HRESULT InterfaceSupportsErrorInfo(global::System.Guid* riid) 102 return ((delegate *unmanaged [Stdcall]<ISupportErrorInfo*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ISupportErrorInfo*)Unsafe.AsPointer(ref this), riid); 105 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 111 var hr = this.QueryInterface(&guid, &pv); 128 internal delegate *unmanaged [Stdcall]<ISupportErrorInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 134 internal delegate *unmanaged [Stdcall]<ISupportErrorInfo*,global::System.Guid* ,winmdroot.Foundation.HRESULT> InterfaceSupportsErrorInfo_4; 160 unsafe winmdroot.Foundation.HRESULT InterfaceSupportsErrorInfo(global::System.Guid* riid);
_generated\248\Windows.Win32.ITableItemProvider.g.cs (19)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ITableItemProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITableItemProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT GetRowHeaderItems(ITableItemProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 87 ((delegate *unmanaged [Stdcall]<ITableItemProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITableItemProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 94 private static winmdroot.Foundation.HRESULT GetColumnHeaderItems(ITableItemProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 98 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 return (winmdroot.Foundation.HRESULT)ex.HResult; 121 ((delegate *unmanaged [Stdcall]<ITableItemProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITableItemProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 125 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 131 var hr = this.QueryInterface(&guid, &pv); 148 internal delegate *unmanaged [Stdcall]<ITableItemProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 154 internal delegate *unmanaged [Stdcall]<ITableItemProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetRowHeaderItems_4; 156 internal delegate *unmanaged [Stdcall]<ITableItemProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetColumnHeaderItems_5; 184 unsafe winmdroot.Foundation.HRESULT GetRowHeaderItems(winmdroot.System.Com.SAFEARRAY** pRetVal); 187 unsafe winmdroot.Foundation.HRESULT GetColumnHeaderItems(winmdroot.System.Com.SAFEARRAY** pRetVal);
_generated\249\Windows.Win32.ITableProvider.g.cs (28)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ITableProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITableProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT GetRowHeaders(ITableProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 87 ((delegate *unmanaged [Stdcall]<ITableProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITableProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 94 private static winmdroot.Foundation.HRESULT GetColumnHeaders(ITableProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 98 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 return (winmdroot.Foundation.HRESULT)ex.HResult; 121 ((delegate *unmanaged [Stdcall]<ITableProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITableProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 127 internal unsafe winmdroot.Foundation.HRESULT get_RowOrColumnMajor(out winmdroot.UI.Accessibility.RowOrColumnMajor pRetVal) 131 winmdroot.Foundation.HRESULT __result = this.get_RowOrColumnMajor(pRetValLocal); 139 private static winmdroot.Foundation.HRESULT get_RowOrColumnMajor(ITableProvider* pThis, winmdroot.UI.Accessibility.RowOrColumnMajor* pRetVal) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 160 public unsafe winmdroot.Foundation.HRESULT get_RowOrColumnMajor(winmdroot.UI.Accessibility.RowOrColumnMajor* pRetVal) 162 return ((delegate *unmanaged [Stdcall]<ITableProvider*,winmdroot.UI.Accessibility.RowOrColumnMajor* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ITableProvider*)Unsafe.AsPointer(ref this), pRetVal); 165 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 171 var hr = this.QueryInterface(&guid, &pv); 188 internal delegate *unmanaged [Stdcall]<ITableProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 194 internal delegate *unmanaged [Stdcall]<ITableProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetRowHeaders_4; 196 internal delegate *unmanaged [Stdcall]<ITableProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetColumnHeaders_5; 198 internal delegate *unmanaged [Stdcall]<ITableProvider*,winmdroot.UI.Accessibility.RowOrColumnMajor* ,winmdroot.Foundation.HRESULT> get_RowOrColumnMajor_6; 227 unsafe winmdroot.Foundation.HRESULT GetRowHeaders(winmdroot.System.Com.SAFEARRAY** pRetVal); 230 unsafe winmdroot.Foundation.HRESULT GetColumnHeaders(winmdroot.System.Com.SAFEARRAY** pRetVal); 233 unsafe winmdroot.Foundation.HRESULT get_RowOrColumnMajor(winmdroot.UI.Accessibility.RowOrColumnMajor* pRetVal);
_generated\251\Windows.Win32.ITextDocument.g.cs (130)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ITextDocument*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextDocument*)Unsafe.AsPointer(ref this), riid, ppvObject); 69 ((delegate *unmanaged [Stdcall]<ITextDocument*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextDocument*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 74 ((delegate *unmanaged [Stdcall]<ITextDocument*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextDocument*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 95 ((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(); 134 ((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(); 150 private static winmdroot.Foundation.HRESULT GetName(ITextDocument* pThis, winmdroot.Foundation.BSTR* pName) 154 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 181 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextDocument*)Unsafe.AsPointer(ref this), pName).ThrowOnFailure(); 187 private static winmdroot.Foundation.HRESULT GetSelection(ITextDocument* pThis, winmdroot.UI.Controls.RichEdit.ITextSelection** ppSel) 191 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 200 return (winmdroot.Foundation.HRESULT)ex.HResult; 218 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.UI.Controls.RichEdit.ITextSelection** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextDocument*)Unsafe.AsPointer(ref this), ppSel).ThrowOnFailure(); 234 private static winmdroot.Foundation.HRESULT GetStoryCount(ITextDocument* pThis, int* pCount) 238 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 247 return (winmdroot.Foundation.HRESULT)ex.HResult; 266 ((delegate *unmanaged [Stdcall]<ITextDocument*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITextDocument*)Unsafe.AsPointer(ref this), pCount).ThrowOnFailure(); 272 private static winmdroot.Foundation.HRESULT GetStoryRanges(ITextDocument* pThis, winmdroot.UI.Controls.RichEdit.ITextStoryRanges** ppStories) 276 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 285 return (winmdroot.Foundation.HRESULT)ex.HResult; 301 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.UI.Controls.RichEdit.ITextStoryRanges** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITextDocument*)Unsafe.AsPointer(ref this), ppStories).ThrowOnFailure(); 317 private static winmdroot.Foundation.HRESULT GetSaved(ITextDocument* pThis, int* pValue) 321 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 330 return (winmdroot.Foundation.HRESULT)ex.HResult; 346 ((delegate *unmanaged [Stdcall]<ITextDocument*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((ITextDocument*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 352 private static winmdroot.Foundation.HRESULT SetSaved(ITextDocument* pThis, winmdroot.UI.Controls.RichEdit.tomConstants Value) 356 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 365 return (winmdroot.Foundation.HRESULT)ex.HResult; 382 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.UI.Controls.RichEdit.tomConstants ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ITextDocument*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 398 private static winmdroot.Foundation.HRESULT GetDefaultTabStop(ITextDocument* pThis, float* pValue) 402 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 411 return (winmdroot.Foundation.HRESULT)ex.HResult; 426 ((delegate *unmanaged [Stdcall]<ITextDocument*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ITextDocument*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 432 private static winmdroot.Foundation.HRESULT SetDefaultTabStop(ITextDocument* pThis, float Value) 436 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 445 return (winmdroot.Foundation.HRESULT)ex.HResult; 463 ((delegate *unmanaged [Stdcall]<ITextDocument*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((ITextDocument*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 469 private static winmdroot.Foundation.HRESULT New(ITextDocument* pThis) 473 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 482 return (winmdroot.Foundation.HRESULT)ex.HResult; 493 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.HRESULT>)lpVtbl[15])((ITextDocument*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 509 private static winmdroot.Foundation.HRESULT Open(ITextDocument* pThis, winmdroot.System.Variant.VARIANT* pVar, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int CodePage) 513 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 522 return (winmdroot.Foundation.HRESULT)ex.HResult; 553 ((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(); 569 private static winmdroot.Foundation.HRESULT Save(ITextDocument* pThis, winmdroot.System.Variant.VARIANT* pVar, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int CodePage) 573 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 582 return (winmdroot.Foundation.HRESULT)ex.HResult; 609 ((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(); 625 private static winmdroot.Foundation.HRESULT Freeze(ITextDocument* pThis, int* pCount) 629 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 638 return (winmdroot.Foundation.HRESULT)ex.HResult; 653 ((delegate *unmanaged [Stdcall]<ITextDocument*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((ITextDocument*)Unsafe.AsPointer(ref this), pCount).ThrowOnFailure(); 669 private static winmdroot.Foundation.HRESULT Unfreeze(ITextDocument* pThis, int* pCount) 673 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 682 return (winmdroot.Foundation.HRESULT)ex.HResult; 700 ((delegate *unmanaged [Stdcall]<ITextDocument*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((ITextDocument*)Unsafe.AsPointer(ref this), pCount).ThrowOnFailure(); 706 private static winmdroot.Foundation.HRESULT BeginEditCollection(ITextDocument* pThis) 710 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 719 return (winmdroot.Foundation.HRESULT)ex.HResult; 734 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.HRESULT>)lpVtbl[20])((ITextDocument*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 740 private static winmdroot.Foundation.HRESULT EndEditCollection(ITextDocument* pThis) 744 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 753 return (winmdroot.Foundation.HRESULT)ex.HResult; 765 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.HRESULT>)lpVtbl[21])((ITextDocument*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 781 private static winmdroot.Foundation.HRESULT Undo(ITextDocument* pThis, int Count, int* pCount) 785 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 794 return (winmdroot.Foundation.HRESULT)ex.HResult; 815 ((delegate *unmanaged [Stdcall]<ITextDocument*,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((ITextDocument*)Unsafe.AsPointer(ref this), Count, pCount).ThrowOnFailure(); 831 private static winmdroot.Foundation.HRESULT Redo(ITextDocument* pThis, int Count, int* pCount) 835 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 844 return (winmdroot.Foundation.HRESULT)ex.HResult; 866 ((delegate *unmanaged [Stdcall]<ITextDocument*,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((ITextDocument*)Unsafe.AsPointer(ref this), Count, pCount).ThrowOnFailure(); 872 private static winmdroot.Foundation.HRESULT Range(ITextDocument* pThis, int cpActive, int cpAnchor, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange) 876 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 885 return (winmdroot.Foundation.HRESULT)ex.HResult; 909 public unsafe winmdroot.Foundation.HRESULT Range(int cpActive, int cpAnchor, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange) 911 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); 917 private static winmdroot.Foundation.HRESULT RangeFromPoint(ITextDocument* pThis, int x, int y, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange) 921 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 930 return (winmdroot.Foundation.HRESULT)ex.HResult; 956 ((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(); 959 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 965 var hr = this.QueryInterface(&guid, &pv); 982 internal delegate *unmanaged [Stdcall]<ITextDocument*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 988 internal delegate *unmanaged [Stdcall]<ITextDocument*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 990 internal delegate *unmanaged [Stdcall]<ITextDocument*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 992 internal delegate *unmanaged [Stdcall]<ITextDocument*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 994 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; 996 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetName_8; 998 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.UI.Controls.RichEdit.ITextSelection** ,winmdroot.Foundation.HRESULT> GetSelection_9; 1000 internal delegate *unmanaged [Stdcall]<ITextDocument*,int* ,winmdroot.Foundation.HRESULT> GetStoryCount_10; 1002 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.UI.Controls.RichEdit.ITextStoryRanges** ,winmdroot.Foundation.HRESULT> GetStoryRanges_11; 1004 internal delegate *unmanaged [Stdcall]<ITextDocument*,int* ,winmdroot.Foundation.HRESULT> GetSaved_12; 1006 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.UI.Controls.RichEdit.tomConstants ,winmdroot.Foundation.HRESULT> SetSaved_13; 1008 internal delegate *unmanaged [Stdcall]<ITextDocument*,float* ,winmdroot.Foundation.HRESULT> GetDefaultTabStop_14; 1010 internal delegate *unmanaged [Stdcall]<ITextDocument*,float ,winmdroot.Foundation.HRESULT> SetDefaultTabStop_15; 1012 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.HRESULT> New_16; 1014 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.System.Variant.VARIANT* ,winmdroot.UI.Controls.RichEdit.tomConstants ,int ,winmdroot.Foundation.HRESULT> Open_17; 1016 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.System.Variant.VARIANT* ,winmdroot.UI.Controls.RichEdit.tomConstants ,int ,winmdroot.Foundation.HRESULT> Save_18; 1018 internal delegate *unmanaged [Stdcall]<ITextDocument*,int* ,winmdroot.Foundation.HRESULT> Freeze_19; 1020 internal delegate *unmanaged [Stdcall]<ITextDocument*,int* ,winmdroot.Foundation.HRESULT> Unfreeze_20; 1022 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.HRESULT> BeginEditCollection_21; 1024 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.HRESULT> EndEditCollection_22; 1026 internal delegate *unmanaged [Stdcall]<ITextDocument*,int ,int* ,winmdroot.Foundation.HRESULT> Undo_23; 1028 internal delegate *unmanaged [Stdcall]<ITextDocument*,int ,int* ,winmdroot.Foundation.HRESULT> Redo_24; 1030 internal delegate *unmanaged [Stdcall]<ITextDocument*,int ,int ,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT> Range_25; 1032 internal delegate *unmanaged [Stdcall]<ITextDocument*,int ,int ,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT> RangeFromPoint_26; 1077 unsafe winmdroot.Foundation.HRESULT GetName(winmdroot.Foundation.BSTR* pName); 1080 unsafe winmdroot.Foundation.HRESULT GetSelection(winmdroot.UI.Controls.RichEdit.ITextSelection** ppSel); 1083 unsafe winmdroot.Foundation.HRESULT GetStoryCount(int* pCount); 1086 unsafe winmdroot.Foundation.HRESULT GetStoryRanges(winmdroot.UI.Controls.RichEdit.ITextStoryRanges** ppStories); 1089 unsafe winmdroot.Foundation.HRESULT GetSaved(int* pValue); 1092winmdroot.Foundation.HRESULT SetSaved(winmdroot.UI.Controls.RichEdit.tomConstants Value); 1095 unsafe winmdroot.Foundation.HRESULT GetDefaultTabStop(float* pValue); 1098winmdroot.Foundation.HRESULT SetDefaultTabStop(float Value); 1101winmdroot.Foundation.HRESULT New(); 1104 unsafe winmdroot.Foundation.HRESULT Open(winmdroot.System.Variant.VARIANT* pVar, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int CodePage); 1107 unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Variant.VARIANT* pVar, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int CodePage); 1110 unsafe winmdroot.Foundation.HRESULT Freeze(int* pCount); 1113 unsafe winmdroot.Foundation.HRESULT Unfreeze(int* pCount); 1116winmdroot.Foundation.HRESULT BeginEditCollection(); 1119winmdroot.Foundation.HRESULT EndEditCollection(); 1122 unsafe winmdroot.Foundation.HRESULT Undo(int Count, int* pCount); 1125 unsafe winmdroot.Foundation.HRESULT Redo(int Count, int* pCount); 1128 unsafe winmdroot.Foundation.HRESULT Range(int cpActive, int cpAnchor, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange); 1131 unsafe winmdroot.Foundation.HRESULT RangeFromPoint(int x, int y, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange);
_generated\252\Windows.Win32.ITextFont.g.cs (345)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ITextFont*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextFont*)Unsafe.AsPointer(ref this), riid, ppvObject); 69 ((delegate *unmanaged [Stdcall]<ITextFont*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextFont*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 74 ((delegate *unmanaged [Stdcall]<ITextFont*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextFont*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 95 ((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(); 134 ((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(); 140 private static winmdroot.Foundation.HRESULT GetDuplicate(ITextFont* pThis, winmdroot.UI.Controls.RichEdit.ITextFont** ppFont) 144 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 172 ((delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.UI.Controls.RichEdit.ITextFont** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextFont*)Unsafe.AsPointer(ref this), ppFont).ThrowOnFailure(); 178 private static winmdroot.Foundation.HRESULT SetDuplicate(ITextFont* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextFont* pFont) 182 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 191 return (winmdroot.Foundation.HRESULT)ex.HResult; 210 ((delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.UI.Controls.RichEdit.ITextFont* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextFont*)Unsafe.AsPointer(ref this), pFont).ThrowOnFailure(); 226 private static winmdroot.Foundation.HRESULT CanChange(ITextFont* pThis, int* pValue) 230 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 239 return (winmdroot.Foundation.HRESULT)ex.HResult; 255 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 271 private static winmdroot.Foundation.HRESULT IsEqual(ITextFont* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextFont* pFont, int* pValue) 275 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 284 return (winmdroot.Foundation.HRESULT)ex.HResult; 303 ((delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.UI.Controls.RichEdit.ITextFont* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITextFont*)Unsafe.AsPointer(ref this), pFont, pValue).ThrowOnFailure(); 309 private static winmdroot.Foundation.HRESULT Reset(ITextFont* pThis, winmdroot.UI.Controls.RichEdit.tomConstants Value) 313 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 322 return (winmdroot.Foundation.HRESULT)ex.HResult; 338 ((delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.UI.Controls.RichEdit.tomConstants ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 354 private static winmdroot.Foundation.HRESULT GetStyle(ITextFont* pThis, int* pValue) 358 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 367 return (winmdroot.Foundation.HRESULT)ex.HResult; 383 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 389 private static winmdroot.Foundation.HRESULT SetStyle(ITextFont* pThis, int Value) 393 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 402 return (winmdroot.Foundation.HRESULT)ex.HResult; 418 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 434 private static winmdroot.Foundation.HRESULT GetAllCaps(ITextFont* pThis, int* pValue) 438 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 447 return (winmdroot.Foundation.HRESULT)ex.HResult; 464 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 470 private static winmdroot.Foundation.HRESULT SetAllCaps(ITextFont* pThis, int Value) 474 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 483 return (winmdroot.Foundation.HRESULT)ex.HResult; 502 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 518 private static winmdroot.Foundation.HRESULT GetAnimation(ITextFont* pThis, int* pValue) 522 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 531 return (winmdroot.Foundation.HRESULT)ex.HResult; 550 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 556 private static winmdroot.Foundation.HRESULT SetAnimation(ITextFont* pThis, int Value) 560 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 569 return (winmdroot.Foundation.HRESULT)ex.HResult; 584 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 600 private static winmdroot.Foundation.HRESULT GetBackColor(ITextFont* pThis, int* pValue) 604 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 613 return (winmdroot.Foundation.HRESULT)ex.HResult; 628 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 634 private static winmdroot.Foundation.HRESULT SetBackColor(ITextFont* pThis, int Value) 638 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 647 return (winmdroot.Foundation.HRESULT)ex.HResult; 667 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 683 private static winmdroot.Foundation.HRESULT GetBold(ITextFont* pThis, int* pValue) 687 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 696 return (winmdroot.Foundation.HRESULT)ex.HResult; 713 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 719 private static winmdroot.Foundation.HRESULT SetBold(ITextFont* pThis, int Value) 723 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 732 return (winmdroot.Foundation.HRESULT)ex.HResult; 751 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 767 private static winmdroot.Foundation.HRESULT GetEmboss(ITextFont* pThis, int* pValue) 771 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 780 return (winmdroot.Foundation.HRESULT)ex.HResult; 797 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 803 private static winmdroot.Foundation.HRESULT SetEmboss(ITextFont* pThis, int Value) 807 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 816 return (winmdroot.Foundation.HRESULT)ex.HResult; 835 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 851 private static winmdroot.Foundation.HRESULT GetForeColor(ITextFont* pThis, int* pValue) 855 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 864 return (winmdroot.Foundation.HRESULT)ex.HResult; 879 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 885 private static winmdroot.Foundation.HRESULT SetForeColor(ITextFont* pThis, int Value) 889 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 898 return (winmdroot.Foundation.HRESULT)ex.HResult; 918 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 934 private static winmdroot.Foundation.HRESULT GetHidden(ITextFont* pThis, int* pValue) 938 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 947 return (winmdroot.Foundation.HRESULT)ex.HResult; 964 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 970 private static winmdroot.Foundation.HRESULT SetHidden(ITextFont* pThis, int Value) 974 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 983 return (winmdroot.Foundation.HRESULT)ex.HResult; 1002 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1018 private static winmdroot.Foundation.HRESULT GetEngrave(ITextFont* pThis, int* pValue) 1022 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1031 return (winmdroot.Foundation.HRESULT)ex.HResult; 1048 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1054 private static winmdroot.Foundation.HRESULT SetEngrave(ITextFont* pThis, int Value) 1058 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1067 return (winmdroot.Foundation.HRESULT)ex.HResult; 1086 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1102 private static winmdroot.Foundation.HRESULT GetItalic(ITextFont* pThis, int* pValue) 1106 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1115 return (winmdroot.Foundation.HRESULT)ex.HResult; 1134 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1140 private static winmdroot.Foundation.HRESULT SetItalic(ITextFont* pThis, int Value) 1144 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1153 return (winmdroot.Foundation.HRESULT)ex.HResult; 1172 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1188 private static winmdroot.Foundation.HRESULT GetKerning(ITextFont* pThis, float* pValue) 1192 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1201 return (winmdroot.Foundation.HRESULT)ex.HResult; 1220 ((delegate *unmanaged [Stdcall]<ITextFont*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1226 private static winmdroot.Foundation.HRESULT SetKerning(ITextFont* pThis, float Value) 1230 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1239 return (winmdroot.Foundation.HRESULT)ex.HResult; 1255 ((delegate *unmanaged [Stdcall]<ITextFont*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1271 private static winmdroot.Foundation.HRESULT GetLanguageID(ITextFont* pThis, int* pValue) 1275 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1284 return (winmdroot.Foundation.HRESULT)ex.HResult; 1300 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1306 private static winmdroot.Foundation.HRESULT SetLanguageID(ITextFont* pThis, int Value) 1310 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1319 return (winmdroot.Foundation.HRESULT)ex.HResult; 1339 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1355 private static winmdroot.Foundation.HRESULT GetName(ITextFont* pThis, winmdroot.Foundation.BSTR* pbstr) 1359 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1368 return (winmdroot.Foundation.HRESULT)ex.HResult; 1386 ((delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((ITextFont*)Unsafe.AsPointer(ref this), pbstr).ThrowOnFailure(); 1392 private static winmdroot.Foundation.HRESULT SetName(ITextFont* pThis, winmdroot.Foundation.BSTR bstr) 1396 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1405 return (winmdroot.Foundation.HRESULT)ex.HResult; 1423 ((delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((ITextFont*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 1439 private static winmdroot.Foundation.HRESULT GetOutline(ITextFont* pThis, int* pValue) 1443 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1452 return (winmdroot.Foundation.HRESULT)ex.HResult; 1469 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1475 private static winmdroot.Foundation.HRESULT SetOutline(ITextFont* pThis, int Value) 1479 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1488 return (winmdroot.Foundation.HRESULT)ex.HResult; 1507 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1523 private static winmdroot.Foundation.HRESULT GetPosition(ITextFont* pThis, float* pValue) 1527 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1536 return (winmdroot.Foundation.HRESULT)ex.HResult; 1552 ((delegate *unmanaged [Stdcall]<ITextFont*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1558 private static winmdroot.Foundation.HRESULT SetPosition(ITextFont* pThis, float Value) 1562 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1571 return (winmdroot.Foundation.HRESULT)ex.HResult; 1587 ((delegate *unmanaged [Stdcall]<ITextFont*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1603 private static winmdroot.Foundation.HRESULT GetProtected(ITextFont* pThis, int* pValue) 1607 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1616 return (winmdroot.Foundation.HRESULT)ex.HResult; 1633 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1639 private static winmdroot.Foundation.HRESULT SetProtected(ITextFont* pThis, int Value) 1643 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1652 return (winmdroot.Foundation.HRESULT)ex.HResult; 1669 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1685 private static winmdroot.Foundation.HRESULT GetShadow(ITextFont* pThis, int* pValue) 1689 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1698 return (winmdroot.Foundation.HRESULT)ex.HResult; 1715 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1721 private static winmdroot.Foundation.HRESULT SetShadow(ITextFont* pThis, int Value) 1725 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1734 return (winmdroot.Foundation.HRESULT)ex.HResult; 1753 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1769 private static winmdroot.Foundation.HRESULT GetSize(ITextFont* pThis, float* pValue) 1773 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1782 return (winmdroot.Foundation.HRESULT)ex.HResult; 1800 ((delegate *unmanaged [Stdcall]<ITextFont*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1806 private static winmdroot.Foundation.HRESULT SetSize(ITextFont* pThis, float Value) 1810 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1819 return (winmdroot.Foundation.HRESULT)ex.HResult; 1837 ((delegate *unmanaged [Stdcall]<ITextFont*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1853 private static winmdroot.Foundation.HRESULT GetSmallCaps(ITextFont* pThis, int* pValue) 1857 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1866 return (winmdroot.Foundation.HRESULT)ex.HResult; 1883 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1889 private static winmdroot.Foundation.HRESULT SetSmallCaps(ITextFont* pThis, int Value) 1893 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1902 return (winmdroot.Foundation.HRESULT)ex.HResult; 1921 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1937 private static winmdroot.Foundation.HRESULT GetSpacing(ITextFont* pThis, float* pValue) 1941 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1950 return (winmdroot.Foundation.HRESULT)ex.HResult; 1966 ((delegate *unmanaged [Stdcall]<ITextFont*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1972 private static winmdroot.Foundation.HRESULT SetSpacing(ITextFont* pThis, float Value) 1976 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1985 return (winmdroot.Foundation.HRESULT)ex.HResult; 2001 ((delegate *unmanaged [Stdcall]<ITextFont*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 2017 private static winmdroot.Foundation.HRESULT GetStrikeThrough(ITextFont* pThis, int* pValue) 2021 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2030 return (winmdroot.Foundation.HRESULT)ex.HResult; 2047 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 2053 private static winmdroot.Foundation.HRESULT SetStrikeThrough(ITextFont* pThis, int Value) 2057 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2066 return (winmdroot.Foundation.HRESULT)ex.HResult; 2085 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 2101 private static winmdroot.Foundation.HRESULT GetSubscript(ITextFont* pThis, int* pValue) 2105 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2114 return (winmdroot.Foundation.HRESULT)ex.HResult; 2131 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 2137 private static winmdroot.Foundation.HRESULT SetSubscript(ITextFont* pThis, int Value) 2141 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2150 return (winmdroot.Foundation.HRESULT)ex.HResult; 2169 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 2185 private static winmdroot.Foundation.HRESULT GetSuperscript(ITextFont* pThis, int* pValue) 2189 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2198 return (winmdroot.Foundation.HRESULT)ex.HResult; 2215 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 2221 private static winmdroot.Foundation.HRESULT SetSuperscript(ITextFont* pThis, int Value) 2225 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2234 return (winmdroot.Foundation.HRESULT)ex.HResult; 2253 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 2269 private static winmdroot.Foundation.HRESULT GetUnderline(ITextFont* pThis, int* pValue) 2273 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2282 return (winmdroot.Foundation.HRESULT)ex.HResult; 2297 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 2303 private static winmdroot.Foundation.HRESULT SetUnderline(ITextFont* pThis, int Value) 2307 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2316 return (winmdroot.Foundation.HRESULT)ex.HResult; 2331 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 2347 private static winmdroot.Foundation.HRESULT GetWeight(ITextFont* pThis, int* pValue) 2351 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2360 return (winmdroot.Foundation.HRESULT)ex.HResult; 2379 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 2385 private static winmdroot.Foundation.HRESULT SetWeight(ITextFont* pThis, int Value) 2389 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2398 return (winmdroot.Foundation.HRESULT)ex.HResult; 2417 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 2420 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2426 var hr = this.QueryInterface(&guid, &pv); 2443 internal delegate *unmanaged [Stdcall]<ITextFont*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2449 internal delegate *unmanaged [Stdcall]<ITextFont*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2451 internal delegate *unmanaged [Stdcall]<ITextFont*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2453 internal delegate *unmanaged [Stdcall]<ITextFont*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2455 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; 2457 internal delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.UI.Controls.RichEdit.ITextFont** ,winmdroot.Foundation.HRESULT> GetDuplicate_8; 2459 internal delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.UI.Controls.RichEdit.ITextFont* ,winmdroot.Foundation.HRESULT> SetDuplicate_9; 2461 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> CanChange_10; 2463 internal delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.UI.Controls.RichEdit.ITextFont* ,int* ,winmdroot.Foundation.HRESULT> IsEqual_11; 2465 internal delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.UI.Controls.RichEdit.tomConstants ,winmdroot.Foundation.HRESULT> Reset_12; 2467 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetStyle_13; 2469 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetStyle_14; 2471 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetAllCaps_15; 2473 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetAllCaps_16; 2475 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetAnimation_17; 2477 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetAnimation_18; 2479 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetBackColor_19; 2481 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetBackColor_20; 2483 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetBold_21; 2485 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetBold_22; 2487 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetEmboss_23; 2489 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetEmboss_24; 2491 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetForeColor_25; 2493 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetForeColor_26; 2495 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetHidden_27; 2497 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetHidden_28; 2499 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetEngrave_29; 2501 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetEngrave_30; 2503 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetItalic_31; 2505 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetItalic_32; 2507 internal delegate *unmanaged [Stdcall]<ITextFont*,float* ,winmdroot.Foundation.HRESULT> GetKerning_33; 2509 internal delegate *unmanaged [Stdcall]<ITextFont*,float ,winmdroot.Foundation.HRESULT> SetKerning_34; 2511 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetLanguageID_35; 2513 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetLanguageID_36; 2515 internal delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetName_37; 2517 internal delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> SetName_38; 2519 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetOutline_39; 2521 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetOutline_40; 2523 internal delegate *unmanaged [Stdcall]<ITextFont*,float* ,winmdroot.Foundation.HRESULT> GetPosition_41; 2525 internal delegate *unmanaged [Stdcall]<ITextFont*,float ,winmdroot.Foundation.HRESULT> SetPosition_42; 2527 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetProtected_43; 2529 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetProtected_44; 2531 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetShadow_45; 2533 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetShadow_46; 2535 internal delegate *unmanaged [Stdcall]<ITextFont*,float* ,winmdroot.Foundation.HRESULT> GetSize_47; 2537 internal delegate *unmanaged [Stdcall]<ITextFont*,float ,winmdroot.Foundation.HRESULT> SetSize_48; 2539 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetSmallCaps_49; 2541 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetSmallCaps_50; 2543 internal delegate *unmanaged [Stdcall]<ITextFont*,float* ,winmdroot.Foundation.HRESULT> GetSpacing_51; 2545 internal delegate *unmanaged [Stdcall]<ITextFont*,float ,winmdroot.Foundation.HRESULT> SetSpacing_52; 2547 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetStrikeThrough_53; 2549 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetStrikeThrough_54; 2551 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetSubscript_55; 2553 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetSubscript_56; 2555 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetSuperscript_57; 2557 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetSuperscript_58; 2559 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetUnderline_59; 2561 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetUnderline_60; 2563 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetWeight_61; 2565 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetWeight_62; 2646 unsafe winmdroot.Foundation.HRESULT GetDuplicate(winmdroot.UI.Controls.RichEdit.ITextFont** ppFont); 2649 unsafe winmdroot.Foundation.HRESULT SetDuplicate([Optional] winmdroot.UI.Controls.RichEdit.ITextFont* pFont); 2652 unsafe winmdroot.Foundation.HRESULT CanChange(int* pValue); 2655 unsafe winmdroot.Foundation.HRESULT IsEqual([Optional] winmdroot.UI.Controls.RichEdit.ITextFont* pFont, int* pValue); 2658winmdroot.Foundation.HRESULT Reset(winmdroot.UI.Controls.RichEdit.tomConstants Value); 2661 unsafe winmdroot.Foundation.HRESULT GetStyle(int* pValue); 2664winmdroot.Foundation.HRESULT SetStyle(int Value); 2667 unsafe winmdroot.Foundation.HRESULT GetAllCaps(int* pValue); 2670winmdroot.Foundation.HRESULT SetAllCaps(int Value); 2673 unsafe winmdroot.Foundation.HRESULT GetAnimation(int* pValue); 2676winmdroot.Foundation.HRESULT SetAnimation(int Value); 2679 unsafe winmdroot.Foundation.HRESULT GetBackColor(int* pValue); 2682winmdroot.Foundation.HRESULT SetBackColor(int Value); 2685 unsafe winmdroot.Foundation.HRESULT GetBold(int* pValue); 2688winmdroot.Foundation.HRESULT SetBold(int Value); 2691 unsafe winmdroot.Foundation.HRESULT GetEmboss(int* pValue); 2694winmdroot.Foundation.HRESULT SetEmboss(int Value); 2697 unsafe winmdroot.Foundation.HRESULT GetForeColor(int* pValue); 2700winmdroot.Foundation.HRESULT SetForeColor(int Value); 2703 unsafe winmdroot.Foundation.HRESULT GetHidden(int* pValue); 2706winmdroot.Foundation.HRESULT SetHidden(int Value); 2709 unsafe winmdroot.Foundation.HRESULT GetEngrave(int* pValue); 2712winmdroot.Foundation.HRESULT SetEngrave(int Value); 2715 unsafe winmdroot.Foundation.HRESULT GetItalic(int* pValue); 2718winmdroot.Foundation.HRESULT SetItalic(int Value); 2721 unsafe winmdroot.Foundation.HRESULT GetKerning(float* pValue); 2724winmdroot.Foundation.HRESULT SetKerning(float Value); 2727 unsafe winmdroot.Foundation.HRESULT GetLanguageID(int* pValue); 2730winmdroot.Foundation.HRESULT SetLanguageID(int Value); 2733 unsafe winmdroot.Foundation.HRESULT GetName(winmdroot.Foundation.BSTR* pbstr); 2736winmdroot.Foundation.HRESULT SetName(winmdroot.Foundation.BSTR bstr); 2739 unsafe winmdroot.Foundation.HRESULT GetOutline(int* pValue); 2742winmdroot.Foundation.HRESULT SetOutline(int Value); 2745 unsafe winmdroot.Foundation.HRESULT GetPosition(float* pValue); 2748winmdroot.Foundation.HRESULT SetPosition(float Value); 2751 unsafe winmdroot.Foundation.HRESULT GetProtected(int* pValue); 2754winmdroot.Foundation.HRESULT SetProtected(int Value); 2757 unsafe winmdroot.Foundation.HRESULT GetShadow(int* pValue); 2760winmdroot.Foundation.HRESULT SetShadow(int Value); 2763 unsafe winmdroot.Foundation.HRESULT GetSize(float* pValue); 2766winmdroot.Foundation.HRESULT SetSize(float Value); 2769 unsafe winmdroot.Foundation.HRESULT GetSmallCaps(int* pValue); 2772winmdroot.Foundation.HRESULT SetSmallCaps(int Value); 2775 unsafe winmdroot.Foundation.HRESULT GetSpacing(float* pValue); 2778winmdroot.Foundation.HRESULT SetSpacing(float Value); 2781 unsafe winmdroot.Foundation.HRESULT GetStrikeThrough(int* pValue); 2784winmdroot.Foundation.HRESULT SetStrikeThrough(int Value); 2787 unsafe winmdroot.Foundation.HRESULT GetSubscript(int* pValue); 2790winmdroot.Foundation.HRESULT SetSubscript(int Value); 2793 unsafe winmdroot.Foundation.HRESULT GetSuperscript(int* pValue); 2796winmdroot.Foundation.HRESULT SetSuperscript(int Value); 2799 unsafe winmdroot.Foundation.HRESULT GetUnderline(int* pValue); 2802winmdroot.Foundation.HRESULT SetUnderline(int Value); 2805 unsafe winmdroot.Foundation.HRESULT GetWeight(int* pValue); 2808winmdroot.Foundation.HRESULT SetWeight(int Value);
_generated\253\Windows.Win32.ITextPara.g.cs (303)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ITextPara*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextPara*)Unsafe.AsPointer(ref this), riid, ppvObject); 69 ((delegate *unmanaged [Stdcall]<ITextPara*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextPara*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 74 ((delegate *unmanaged [Stdcall]<ITextPara*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextPara*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 95 ((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(); 134 ((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(); 140 private static winmdroot.Foundation.HRESULT GetDuplicate(ITextPara* pThis, winmdroot.UI.Controls.RichEdit.ITextPara** ppPara) 144 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 171 ((delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.ITextPara** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextPara*)Unsafe.AsPointer(ref this), ppPara).ThrowOnFailure(); 177 private static winmdroot.Foundation.HRESULT SetDuplicate(ITextPara* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextPara* pPara) 181 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 190 return (winmdroot.Foundation.HRESULT)ex.HResult; 206 ((delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.ITextPara* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextPara*)Unsafe.AsPointer(ref this), pPara).ThrowOnFailure(); 222 private static winmdroot.Foundation.HRESULT CanChange(ITextPara* pThis, int* pValue) 226 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 235 return (winmdroot.Foundation.HRESULT)ex.HResult; 250 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 266 private static winmdroot.Foundation.HRESULT IsEqual(ITextPara* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextPara* pPara, int* pValue) 270 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 279 return (winmdroot.Foundation.HRESULT)ex.HResult; 300 ((delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.ITextPara* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITextPara*)Unsafe.AsPointer(ref this), pPara, pValue).ThrowOnFailure(); 306 private static winmdroot.Foundation.HRESULT Reset(ITextPara* pThis, int Value) 310 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 319 return (winmdroot.Foundation.HRESULT)ex.HResult; 338 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 354 private static winmdroot.Foundation.HRESULT GetStyle(ITextPara* pThis, int* pValue) 358 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 367 return (winmdroot.Foundation.HRESULT)ex.HResult; 387 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 393 private static winmdroot.Foundation.HRESULT SetStyle(ITextPara* pThis, int Value) 397 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 406 return (winmdroot.Foundation.HRESULT)ex.HResult; 424 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 440 private static winmdroot.Foundation.HRESULT GetAlignment(ITextPara* pThis, int* pValue) 444 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 453 return (winmdroot.Foundation.HRESULT)ex.HResult; 468 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 474 private static winmdroot.Foundation.HRESULT SetAlignment(ITextPara* pThis, int Value) 478 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 487 return (winmdroot.Foundation.HRESULT)ex.HResult; 505 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 521 private static winmdroot.Foundation.HRESULT GetHyphenation(ITextPara* pThis, winmdroot.UI.Controls.RichEdit.tomConstants* pValue) 525 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 534 return (winmdroot.Foundation.HRESULT)ex.HResult; 547 ((delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.tomConstants* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 553 private static winmdroot.Foundation.HRESULT SetHyphenation(ITextPara* pThis, int Value) 557 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 566 return (winmdroot.Foundation.HRESULT)ex.HResult; 585 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 601 private static winmdroot.Foundation.HRESULT GetFirstLineIndent(ITextPara* pThis, float* pValue) 605 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 614 return (winmdroot.Foundation.HRESULT)ex.HResult; 633 ((delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 649 private static winmdroot.Foundation.HRESULT GetKeepTogether(ITextPara* pThis, winmdroot.UI.Controls.RichEdit.tomConstants* pValue) 653 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 662 return (winmdroot.Foundation.HRESULT)ex.HResult; 675 ((delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.tomConstants* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 681 private static winmdroot.Foundation.HRESULT SetKeepTogether(ITextPara* pThis, int Value) 685 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 694 return (winmdroot.Foundation.HRESULT)ex.HResult; 711 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 727 private static winmdroot.Foundation.HRESULT GetKeepWithNext(ITextPara* pThis, winmdroot.UI.Controls.RichEdit.tomConstants* pValue) 731 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 740 return (winmdroot.Foundation.HRESULT)ex.HResult; 753 ((delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.tomConstants* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 759 private static winmdroot.Foundation.HRESULT SetKeepWithNext(ITextPara* pThis, int Value) 763 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 772 return (winmdroot.Foundation.HRESULT)ex.HResult; 789 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 805 private static winmdroot.Foundation.HRESULT GetLeftIndent(ITextPara* pThis, float* pValue) 809 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 818 return (winmdroot.Foundation.HRESULT)ex.HResult; 837 ((delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 853 private static winmdroot.Foundation.HRESULT GetLineSpacing(ITextPara* pThis, float* pValue) 857 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 866 return (winmdroot.Foundation.HRESULT)ex.HResult; 884 ((delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 900 private static winmdroot.Foundation.HRESULT GetLineSpacingRule(ITextPara* pThis, int* pValue) 904 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 913 return (winmdroot.Foundation.HRESULT)ex.HResult; 928 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 944 private static winmdroot.Foundation.HRESULT GetListAlignment(ITextPara* pThis, int* pValue) 948 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 957 return (winmdroot.Foundation.HRESULT)ex.HResult; 970 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 976 private static winmdroot.Foundation.HRESULT SetListAlignment(ITextPara* pThis, int Value) 980 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 989 return (winmdroot.Foundation.HRESULT)ex.HResult; 1007 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1023 private static winmdroot.Foundation.HRESULT GetListLevelIndex(ITextPara* pThis, int* pValue) 1027 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1036 return (winmdroot.Foundation.HRESULT)ex.HResult; 1056 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1062 private static winmdroot.Foundation.HRESULT SetListLevelIndex(ITextPara* pThis, int Value) 1066 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1075 return (winmdroot.Foundation.HRESULT)ex.HResult; 1091 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1107 private static winmdroot.Foundation.HRESULT GetListStart(ITextPara* pThis, int* pValue) 1111 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1120 return (winmdroot.Foundation.HRESULT)ex.HResult; 1136 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1142 private static winmdroot.Foundation.HRESULT SetListStart(ITextPara* pThis, int Value) 1146 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1155 return (winmdroot.Foundation.HRESULT)ex.HResult; 1171 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1187 private static winmdroot.Foundation.HRESULT GetListTab(ITextPara* pThis, float* pValue) 1191 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1200 return (winmdroot.Foundation.HRESULT)ex.HResult; 1216 ((delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1222 private static winmdroot.Foundation.HRESULT SetListTab(ITextPara* pThis, float Value) 1226 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1235 return (winmdroot.Foundation.HRESULT)ex.HResult; 1253 ((delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1269 private static winmdroot.Foundation.HRESULT GetListType(ITextPara* pThis, int* pValue) 1273 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1282 return (winmdroot.Foundation.HRESULT)ex.HResult; 1300 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1306 private static winmdroot.Foundation.HRESULT SetListType(ITextPara* pThis, int Value) 1310 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1319 return (winmdroot.Foundation.HRESULT)ex.HResult; 1337 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1353 private static winmdroot.Foundation.HRESULT GetNoLineNumber(ITextPara* pThis, int* pValue) 1357 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1366 return (winmdroot.Foundation.HRESULT)ex.HResult; 1379 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1385 private static winmdroot.Foundation.HRESULT SetNoLineNumber(ITextPara* pThis, int Value) 1389 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1398 return (winmdroot.Foundation.HRESULT)ex.HResult; 1418 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1434 private static winmdroot.Foundation.HRESULT GetPageBreakBefore(ITextPara* pThis, int* pValue) 1438 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1447 return (winmdroot.Foundation.HRESULT)ex.HResult; 1462 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1468 private static winmdroot.Foundation.HRESULT SetPageBreakBefore(ITextPara* pThis, int Value) 1472 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1481 return (winmdroot.Foundation.HRESULT)ex.HResult; 1494 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1510 private static winmdroot.Foundation.HRESULT GetRightIndent(ITextPara* pThis, float* pValue) 1514 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1523 return (winmdroot.Foundation.HRESULT)ex.HResult; 1541 ((delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1547 private static winmdroot.Foundation.HRESULT SetRightIndent(ITextPara* pThis, float Value) 1551 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1560 return (winmdroot.Foundation.HRESULT)ex.HResult; 1578 ((delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1584 private static winmdroot.Foundation.HRESULT SetIndents(ITextPara* pThis, float First, float Left, float Right) 1588 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1597 return (winmdroot.Foundation.HRESULT)ex.HResult; 1621 ((delegate *unmanaged [Stdcall]<ITextPara*,float ,float ,float ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((ITextPara*)Unsafe.AsPointer(ref this), First, Left, Right).ThrowOnFailure(); 1627 private static winmdroot.Foundation.HRESULT SetLineSpacing(ITextPara* pThis, int Rule, float Spacing) 1631 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1640 return (winmdroot.Foundation.HRESULT)ex.HResult; 1660 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,float ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((ITextPara*)Unsafe.AsPointer(ref this), Rule, Spacing).ThrowOnFailure(); 1676 private static winmdroot.Foundation.HRESULT GetSpaceAfter(ITextPara* pThis, float* pValue) 1680 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1689 return (winmdroot.Foundation.HRESULT)ex.HResult; 1707 ((delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1713 private static winmdroot.Foundation.HRESULT SetSpaceAfter(ITextPara* pThis, float Value) 1717 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1726 return (winmdroot.Foundation.HRESULT)ex.HResult; 1744 ((delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1760 private static winmdroot.Foundation.HRESULT GetSpaceBefore(ITextPara* pThis, float* pValue) 1764 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1773 return (winmdroot.Foundation.HRESULT)ex.HResult; 1791 ((delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1797 private static winmdroot.Foundation.HRESULT SetSpaceBefore(ITextPara* pThis, float Value) 1801 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1810 return (winmdroot.Foundation.HRESULT)ex.HResult; 1828 ((delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1844 private static winmdroot.Foundation.HRESULT GetWidowControl(ITextPara* pThis, int* pValue) 1848 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1857 return (winmdroot.Foundation.HRESULT)ex.HResult; 1870 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1876 private static winmdroot.Foundation.HRESULT SetWidowControl(ITextPara* pThis, int Value) 1880 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1889 return (winmdroot.Foundation.HRESULT)ex.HResult; 1909 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1925 private static winmdroot.Foundation.HRESULT GetTabCount(ITextPara* pThis, int* pCount) 1929 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1938 return (winmdroot.Foundation.HRESULT)ex.HResult; 1954 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((ITextPara*)Unsafe.AsPointer(ref this), pCount).ThrowOnFailure(); 1960 private static winmdroot.Foundation.HRESULT AddTab(ITextPara* pThis, float tbPos, int tbAlign, int tbLeader) 1964 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1973 return (winmdroot.Foundation.HRESULT)ex.HResult; 1999 ((delegate *unmanaged [Stdcall]<ITextPara*,float ,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((ITextPara*)Unsafe.AsPointer(ref this), tbPos, tbAlign, tbLeader).ThrowOnFailure(); 2005 private static winmdroot.Foundation.HRESULT ClearAllTabs(ITextPara* pThis) 2009 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2018 return (winmdroot.Foundation.HRESULT)ex.HResult; 2032 ((delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.Foundation.HRESULT>)lpVtbl[52])((ITextPara*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 2038 private static winmdroot.Foundation.HRESULT DeleteTab(ITextPara* pThis, float tbPos) 2042 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2051 return (winmdroot.Foundation.HRESULT)ex.HResult; 2069 ((delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((ITextPara*)Unsafe.AsPointer(ref this), tbPos).ThrowOnFailure(); 2091 private static winmdroot.Foundation.HRESULT GetTab(ITextPara* pThis, int iTab, float* ptbPos, int* ptbAlign, int* ptbLeader) 2095 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2104 return (winmdroot.Foundation.HRESULT)ex.HResult; 2136 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,float* ,int* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((ITextPara*)Unsafe.AsPointer(ref this), iTab, ptbPos, ptbAlign, ptbLeader).ThrowOnFailure(); 2139 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2145 var hr = this.QueryInterface(&guid, &pv); 2162 internal delegate *unmanaged [Stdcall]<ITextPara*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2168 internal delegate *unmanaged [Stdcall]<ITextPara*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2170 internal delegate *unmanaged [Stdcall]<ITextPara*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2172 internal delegate *unmanaged [Stdcall]<ITextPara*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2174 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; 2176 internal delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.ITextPara** ,winmdroot.Foundation.HRESULT> GetDuplicate_8; 2178 internal delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.ITextPara* ,winmdroot.Foundation.HRESULT> SetDuplicate_9; 2180 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> CanChange_10; 2182 internal delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.ITextPara* ,int* ,winmdroot.Foundation.HRESULT> IsEqual_11; 2184 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> Reset_12; 2186 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetStyle_13; 2188 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetStyle_14; 2190 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetAlignment_15; 2192 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetAlignment_16; 2194 internal delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.tomConstants* ,winmdroot.Foundation.HRESULT> GetHyphenation_17; 2196 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetHyphenation_18; 2198 internal delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT> GetFirstLineIndent_19; 2200 internal delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.tomConstants* ,winmdroot.Foundation.HRESULT> GetKeepTogether_20; 2202 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetKeepTogether_21; 2204 internal delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.tomConstants* ,winmdroot.Foundation.HRESULT> GetKeepWithNext_22; 2206 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetKeepWithNext_23; 2208 internal delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT> GetLeftIndent_24; 2210 internal delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT> GetLineSpacing_25; 2212 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetLineSpacingRule_26; 2214 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetListAlignment_27; 2216 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetListAlignment_28; 2218 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetListLevelIndex_29; 2220 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetListLevelIndex_30; 2222 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetListStart_31; 2224 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetListStart_32; 2226 internal delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT> GetListTab_33; 2228 internal delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT> SetListTab_34; 2230 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetListType_35; 2232 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetListType_36; 2234 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetNoLineNumber_37; 2236 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetNoLineNumber_38; 2238 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetPageBreakBefore_39; 2240 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetPageBreakBefore_40; 2242 internal delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT> GetRightIndent_41; 2244 internal delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT> SetRightIndent_42; 2246 internal delegate *unmanaged [Stdcall]<ITextPara*,float ,float ,float ,winmdroot.Foundation.HRESULT> SetIndents_43; 2248 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,float ,winmdroot.Foundation.HRESULT> SetLineSpacing_44; 2250 internal delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT> GetSpaceAfter_45; 2252 internal delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT> SetSpaceAfter_46; 2254 internal delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT> GetSpaceBefore_47; 2256 internal delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT> SetSpaceBefore_48; 2258 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetWidowControl_49; 2260 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetWidowControl_50; 2262 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetTabCount_51; 2264 internal delegate *unmanaged [Stdcall]<ITextPara*,float ,int ,int ,winmdroot.Foundation.HRESULT> AddTab_52; 2266 internal delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.Foundation.HRESULT> ClearAllTabs_53; 2268 internal delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT> DeleteTab_54; 2270 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,float* ,int* ,int* ,winmdroot.Foundation.HRESULT> GetTab_55; 2344 unsafe winmdroot.Foundation.HRESULT GetDuplicate(winmdroot.UI.Controls.RichEdit.ITextPara** ppPara); 2347 unsafe winmdroot.Foundation.HRESULT SetDuplicate([Optional] winmdroot.UI.Controls.RichEdit.ITextPara* pPara); 2350 unsafe winmdroot.Foundation.HRESULT CanChange(int* pValue); 2353 unsafe winmdroot.Foundation.HRESULT IsEqual([Optional] winmdroot.UI.Controls.RichEdit.ITextPara* pPara, int* pValue); 2356winmdroot.Foundation.HRESULT Reset(int Value); 2359 unsafe winmdroot.Foundation.HRESULT GetStyle(int* pValue); 2362winmdroot.Foundation.HRESULT SetStyle(int Value); 2365 unsafe winmdroot.Foundation.HRESULT GetAlignment(int* pValue); 2368winmdroot.Foundation.HRESULT SetAlignment(int Value); 2371 unsafe winmdroot.Foundation.HRESULT GetHyphenation(winmdroot.UI.Controls.RichEdit.tomConstants* pValue); 2374winmdroot.Foundation.HRESULT SetHyphenation(int Value); 2377 unsafe winmdroot.Foundation.HRESULT GetFirstLineIndent(float* pValue); 2380 unsafe winmdroot.Foundation.HRESULT GetKeepTogether(winmdroot.UI.Controls.RichEdit.tomConstants* pValue); 2383winmdroot.Foundation.HRESULT SetKeepTogether(int Value); 2386 unsafe winmdroot.Foundation.HRESULT GetKeepWithNext(winmdroot.UI.Controls.RichEdit.tomConstants* pValue); 2389winmdroot.Foundation.HRESULT SetKeepWithNext(int Value); 2392 unsafe winmdroot.Foundation.HRESULT GetLeftIndent(float* pValue); 2395 unsafe winmdroot.Foundation.HRESULT GetLineSpacing(float* pValue); 2398 unsafe winmdroot.Foundation.HRESULT GetLineSpacingRule(int* pValue); 2401 unsafe winmdroot.Foundation.HRESULT GetListAlignment(int* pValue); 2404winmdroot.Foundation.HRESULT SetListAlignment(int Value); 2407 unsafe winmdroot.Foundation.HRESULT GetListLevelIndex(int* pValue); 2410winmdroot.Foundation.HRESULT SetListLevelIndex(int Value); 2413 unsafe winmdroot.Foundation.HRESULT GetListStart(int* pValue); 2416winmdroot.Foundation.HRESULT SetListStart(int Value); 2419 unsafe winmdroot.Foundation.HRESULT GetListTab(float* pValue); 2422winmdroot.Foundation.HRESULT SetListTab(float Value); 2425 unsafe winmdroot.Foundation.HRESULT GetListType(int* pValue); 2428winmdroot.Foundation.HRESULT SetListType(int Value); 2431 unsafe winmdroot.Foundation.HRESULT GetNoLineNumber(int* pValue); 2434winmdroot.Foundation.HRESULT SetNoLineNumber(int Value); 2437 unsafe winmdroot.Foundation.HRESULT GetPageBreakBefore(int* pValue); 2440winmdroot.Foundation.HRESULT SetPageBreakBefore(int Value); 2443 unsafe winmdroot.Foundation.HRESULT GetRightIndent(float* pValue); 2446winmdroot.Foundation.HRESULT SetRightIndent(float Value); 2449winmdroot.Foundation.HRESULT SetIndents(float First, float Left, float Right); 2452winmdroot.Foundation.HRESULT SetLineSpacing(int Rule, float Spacing); 2455 unsafe winmdroot.Foundation.HRESULT GetSpaceAfter(float* pValue); 2458winmdroot.Foundation.HRESULT SetSpaceAfter(float Value); 2461 unsafe winmdroot.Foundation.HRESULT GetSpaceBefore(float* pValue); 2464winmdroot.Foundation.HRESULT SetSpaceBefore(float Value); 2467 unsafe winmdroot.Foundation.HRESULT GetWidowControl(int* pValue); 2470winmdroot.Foundation.HRESULT SetWidowControl(int Value); 2473 unsafe winmdroot.Foundation.HRESULT GetTabCount(int* pCount); 2476winmdroot.Foundation.HRESULT AddTab(float tbPos, int tbAlign, int tbLeader); 2479winmdroot.Foundation.HRESULT ClearAllTabs(); 2482winmdroot.Foundation.HRESULT DeleteTab(float tbPos); 2485 unsafe winmdroot.Foundation.HRESULT GetTab(int iTab, float* ptbPos, int* ptbAlign, int* ptbLeader);
_generated\254\Windows.Win32.ITextProvider.g.cs (43)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ITextProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT GetSelection(ITextProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 ((delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 96 private static winmdroot.Foundation.HRESULT GetVisibleRanges(ITextProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 100 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 109 return (winmdroot.Foundation.HRESULT)ex.HResult; 125 ((delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 132 private static winmdroot.Foundation.HRESULT RangeFromChild(ITextProvider* pThis, winmdroot.UI.Accessibility.IRawElementProviderSimple* childElement, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 136 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 145 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((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(); 168 private static winmdroot.Foundation.HRESULT RangeFromPoint(ITextProvider* pThis, winmdroot.UI.Accessibility.UiaPoint point, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 172 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 181 return (winmdroot.Foundation.HRESULT)ex.HResult; 201 ((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(); 208 private static winmdroot.Foundation.HRESULT get_DocumentRange(ITextProvider* pThis, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 212 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 218 return winmdroot.Foundation.HRESULT.S_OK; 222 return (winmdroot.Foundation.HRESULT)ex.HResult; 233 ((delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 241 private static winmdroot.Foundation.HRESULT get_SupportedTextSelection(ITextProvider* pThis, winmdroot.UI.Accessibility.SupportedTextSelection* pRetVal) 245 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 251 return winmdroot.Foundation.HRESULT.S_OK; 255 return (winmdroot.Foundation.HRESULT)ex.HResult; 269 ((delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.SupportedTextSelection* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 274 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 280 var hr = this.QueryInterface(&guid, &pv); 297 internal delegate *unmanaged [Stdcall]<ITextProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 303 internal delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetSelection_4; 305 internal delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetVisibleRanges_5; 307 internal delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.IRawElementProviderSimple* ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> RangeFromChild_6; 309 internal delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.UiaPoint ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> RangeFromPoint_7; 311 internal delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> get_DocumentRange_8; 313 internal delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.SupportedTextSelection* ,winmdroot.Foundation.HRESULT> get_SupportedTextSelection_9; 345 unsafe winmdroot.Foundation.HRESULT GetSelection(winmdroot.System.Com.SAFEARRAY** pRetVal); 348 unsafe winmdroot.Foundation.HRESULT GetVisibleRanges(winmdroot.System.Com.SAFEARRAY** pRetVal); 351 unsafe winmdroot.Foundation.HRESULT RangeFromChild(winmdroot.UI.Accessibility.IRawElementProviderSimple* childElement, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal); 354 unsafe winmdroot.Foundation.HRESULT RangeFromPoint(winmdroot.UI.Accessibility.UiaPoint point, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal);
_generated\255\Windows.Win32.ITextProvider2.g.cs (55)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ITextProvider2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextProvider2*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT GetSelection(ITextProvider2* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 80 ((delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextProvider2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 87 private static winmdroot.Foundation.HRESULT GetVisibleRanges(ITextProvider2* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 91 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 100 return (winmdroot.Foundation.HRESULT)ex.HResult; 107 ((delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextProvider2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT RangeFromChild(ITextProvider2* pThis, winmdroot.UI.Accessibility.IRawElementProviderSimple* childElement, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 118 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 134 ((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(); 141 private static winmdroot.Foundation.HRESULT RangeFromPoint(ITextProvider2* pThis, winmdroot.UI.Accessibility.UiaPoint point, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 145 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 154 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((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(); 168 private static winmdroot.Foundation.HRESULT get_DocumentRange(ITextProvider2* pThis, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 172 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 178 return winmdroot.Foundation.HRESULT.S_OK; 182 return (winmdroot.Foundation.HRESULT)ex.HResult; 191 ((delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextProvider2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 199 private static winmdroot.Foundation.HRESULT get_SupportedTextSelection(ITextProvider2* pThis, winmdroot.UI.Accessibility.SupportedTextSelection* pRetVal) 203 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 209 return winmdroot.Foundation.HRESULT.S_OK; 213 return (winmdroot.Foundation.HRESULT)ex.HResult; 222 ((delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.SupportedTextSelection* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextProvider2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT RangeFromAnnotation(ITextProvider2* pThis, winmdroot.UI.Accessibility.IRawElementProviderSimple* annotationElement, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 234 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 243 return (winmdroot.Foundation.HRESULT)ex.HResult; 261 ((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(); 279 private static winmdroot.Foundation.HRESULT GetCaretRange(ITextProvider2* pThis, winmdroot.Foundation.BOOL* isActive, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 283 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 292 return (winmdroot.Foundation.HRESULT)ex.HResult; 311 ((delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.Foundation.BOOL* ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITextProvider2*)Unsafe.AsPointer(ref this), isActive, &__retVal).ThrowOnFailure(); 315 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 321 var hr = this.QueryInterface(&guid, &pv); 338 internal delegate *unmanaged [Stdcall]<ITextProvider2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 344 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetSelection_4; 346 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetVisibleRanges_5; 348 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.IRawElementProviderSimple* ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> RangeFromChild_6; 350 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.UiaPoint ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> RangeFromPoint_7; 352 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> get_DocumentRange_8; 354 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.SupportedTextSelection* ,winmdroot.Foundation.HRESULT> get_SupportedTextSelection_9; 356 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.IRawElementProviderSimple* ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> RangeFromAnnotation_10; 358 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.Foundation.BOOL* ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> GetCaretRange_11; 392 unsafe new winmdroot.Foundation.HRESULT GetSelection(winmdroot.System.Com.SAFEARRAY** pRetVal); 395 unsafe new winmdroot.Foundation.HRESULT GetVisibleRanges(winmdroot.System.Com.SAFEARRAY** pRetVal); 398 unsafe new winmdroot.Foundation.HRESULT RangeFromChild(winmdroot.UI.Accessibility.IRawElementProviderSimple* childElement, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal); 401 unsafe new winmdroot.Foundation.HRESULT RangeFromPoint(winmdroot.UI.Accessibility.UiaPoint point, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal); 414 unsafe winmdroot.Foundation.HRESULT RangeFromAnnotation(winmdroot.UI.Accessibility.IRawElementProviderSimple* annotationElement, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal); 417 unsafe winmdroot.Foundation.HRESULT GetCaretRange(winmdroot.Foundation.BOOL* isActive, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal);
_generated\256\Windows.Win32.ITextRange.g.cs (331)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ITextRange*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextRange*)Unsafe.AsPointer(ref this), riid, ppvObject); 69 ((delegate *unmanaged [Stdcall]<ITextRange*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextRange*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 74 ((delegate *unmanaged [Stdcall]<ITextRange*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextRange*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 95 ((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(); 134 ((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(); 139 internal unsafe winmdroot.Foundation.HRESULT GetText(out winmdroot.Foundation.BSTR pbstr) 143 winmdroot.Foundation.HRESULT __result = this.GetText(pbstrLocal); 151 private static winmdroot.Foundation.HRESULT GetText(ITextRange* pThis, winmdroot.Foundation.BSTR* pbstr) 155 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 164 return (winmdroot.Foundation.HRESULT)ex.HResult; 182 public unsafe winmdroot.Foundation.HRESULT GetText(winmdroot.Foundation.BSTR* pbstr) 184 return ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextRange*)Unsafe.AsPointer(ref this), pbstr); 190 private static winmdroot.Foundation.HRESULT SetText(ITextRange* pThis, winmdroot.Foundation.BSTR bstr) 194 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 203 return (winmdroot.Foundation.HRESULT)ex.HResult; 222 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextRange*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 238 private static winmdroot.Foundation.HRESULT GetChar(ITextRange* pThis, int* pChar) 242 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 251 return (winmdroot.Foundation.HRESULT)ex.HResult; 271 ((delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITextRange*)Unsafe.AsPointer(ref this), pChar).ThrowOnFailure(); 277 private static winmdroot.Foundation.HRESULT SetChar(ITextRange* pThis, int Char) 281 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 290 return (winmdroot.Foundation.HRESULT)ex.HResult; 311 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITextRange*)Unsafe.AsPointer(ref this), Char).ThrowOnFailure(); 317 private static winmdroot.Foundation.HRESULT GetDuplicate(ITextRange* pThis, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange) 321 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 330 return (winmdroot.Foundation.HRESULT)ex.HResult; 349 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((ITextRange*)Unsafe.AsPointer(ref this), ppRange).ThrowOnFailure(); 355 private static winmdroot.Foundation.HRESULT GetFormattedText(ITextRange* pThis, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange) 359 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 368 return (winmdroot.Foundation.HRESULT)ex.HResult; 388 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ITextRange*)Unsafe.AsPointer(ref this), ppRange).ThrowOnFailure(); 394 private static winmdroot.Foundation.HRESULT SetFormattedText(ITextRange* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange) 398 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 407 return (winmdroot.Foundation.HRESULT)ex.HResult; 426 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ITextRange*)Unsafe.AsPointer(ref this), pRange).ThrowOnFailure(); 442 private static winmdroot.Foundation.HRESULT GetStart(ITextRange* pThis, int* pcpFirst) 446 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 455 return (winmdroot.Foundation.HRESULT)ex.HResult; 472 ((delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((ITextRange*)Unsafe.AsPointer(ref this), pcpFirst).ThrowOnFailure(); 478 private static winmdroot.Foundation.HRESULT SetStart(ITextRange* pThis, int cpFirst) 482 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 491 return (winmdroot.Foundation.HRESULT)ex.HResult; 510 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((ITextRange*)Unsafe.AsPointer(ref this), cpFirst).ThrowOnFailure(); 526 private static winmdroot.Foundation.HRESULT GetEnd(ITextRange* pThis, int* pcpLim) 530 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 539 return (winmdroot.Foundation.HRESULT)ex.HResult; 557 ((delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((ITextRange*)Unsafe.AsPointer(ref this), pcpLim).ThrowOnFailure(); 563 private static winmdroot.Foundation.HRESULT SetEnd(ITextRange* pThis, int cpLim) 567 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 576 return (winmdroot.Foundation.HRESULT)ex.HResult; 595 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((ITextRange*)Unsafe.AsPointer(ref this), cpLim).ThrowOnFailure(); 601 private static winmdroot.Foundation.HRESULT GetFont(ITextRange* pThis, winmdroot.UI.Controls.RichEdit.ITextFont** ppFont) 605 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 614 return (winmdroot.Foundation.HRESULT)ex.HResult; 629 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextFont** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((ITextRange*)Unsafe.AsPointer(ref this), ppFont).ThrowOnFailure(); 635 private static winmdroot.Foundation.HRESULT SetFont(ITextRange* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextFont* pFont) 639 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 648 return (winmdroot.Foundation.HRESULT)ex.HResult; 664 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextFont* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((ITextRange*)Unsafe.AsPointer(ref this), pFont).ThrowOnFailure(); 670 private static winmdroot.Foundation.HRESULT GetPara(ITextRange* pThis, winmdroot.UI.Controls.RichEdit.ITextPara** ppPara) 674 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 683 return (winmdroot.Foundation.HRESULT)ex.HResult; 698 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextPara** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((ITextRange*)Unsafe.AsPointer(ref this), ppPara).ThrowOnFailure(); 704 private static winmdroot.Foundation.HRESULT SetPara(ITextRange* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextPara* pPara) 708 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 717 return (winmdroot.Foundation.HRESULT)ex.HResult; 735 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextPara* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((ITextRange*)Unsafe.AsPointer(ref this), pPara).ThrowOnFailure(); 751 private static winmdroot.Foundation.HRESULT GetStoryLength(ITextRange* pThis, int* pCount) 755 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 764 return (winmdroot.Foundation.HRESULT)ex.HResult; 781 ((delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((ITextRange*)Unsafe.AsPointer(ref this), pCount).ThrowOnFailure(); 797 private static winmdroot.Foundation.HRESULT GetStoryType(ITextRange* pThis, int* pValue) 801 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 810 return (winmdroot.Foundation.HRESULT)ex.HResult; 824 ((delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((ITextRange*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 830 private static winmdroot.Foundation.HRESULT Collapse(ITextRange* pThis, int bStart) 834 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 843 return (winmdroot.Foundation.HRESULT)ex.HResult; 861 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((ITextRange*)Unsafe.AsPointer(ref this), bStart).ThrowOnFailure(); 877 private static winmdroot.Foundation.HRESULT Expand(ITextRange* pThis, int Unit, int* pDelta) 881 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 890 return (winmdroot.Foundation.HRESULT)ex.HResult; 910 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((ITextRange*)Unsafe.AsPointer(ref this), Unit, pDelta).ThrowOnFailure(); 926 private static winmdroot.Foundation.HRESULT GetIndex(ITextRange* pThis, int Unit, int* pIndex) 930 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 939 return (winmdroot.Foundation.HRESULT)ex.HResult; 962 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((ITextRange*)Unsafe.AsPointer(ref this), Unit, pIndex).ThrowOnFailure(); 968 private static winmdroot.Foundation.HRESULT SetIndex(ITextRange* pThis, int Unit, int Index, int Extend) 972 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 981 return (winmdroot.Foundation.HRESULT)ex.HResult; 1005 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((ITextRange*)Unsafe.AsPointer(ref this), Unit, Index, Extend).ThrowOnFailure(); 1011 private static winmdroot.Foundation.HRESULT SetRange(ITextRange* pThis, int cpAnchor, int cpActive) 1015 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1024 return (winmdroot.Foundation.HRESULT)ex.HResult; 1047 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((ITextRange*)Unsafe.AsPointer(ref this), cpAnchor, cpActive).ThrowOnFailure(); 1063 private static winmdroot.Foundation.HRESULT InRange(ITextRange* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue) 1067 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1076 return (winmdroot.Foundation.HRESULT)ex.HResult; 1099 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((ITextRange*)Unsafe.AsPointer(ref this), pRange, pValue).ThrowOnFailure(); 1115 private static winmdroot.Foundation.HRESULT InStory(ITextRange* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue) 1119 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1128 return (winmdroot.Foundation.HRESULT)ex.HResult; 1149 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((ITextRange*)Unsafe.AsPointer(ref this), pRange, pValue).ThrowOnFailure(); 1165 private static winmdroot.Foundation.HRESULT IsEqual(ITextRange* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue) 1169 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1178 return (winmdroot.Foundation.HRESULT)ex.HResult; 1200 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((ITextRange*)Unsafe.AsPointer(ref this), pRange, pValue).ThrowOnFailure(); 1206 private static winmdroot.Foundation.HRESULT Select(ITextRange* pThis) 1210 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1219 return (winmdroot.Foundation.HRESULT)ex.HResult; 1233 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.HRESULT>)lpVtbl[32])((ITextRange*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 1238 internal unsafe winmdroot.Foundation.HRESULT StartOf(int Unit, int Extend, out int pDelta) 1242 winmdroot.Foundation.HRESULT __result = this.StartOf(Unit, Extend, pDeltaLocal); 1250 private static winmdroot.Foundation.HRESULT StartOf(ITextRange* pThis, int Unit, int Extend, int* pDelta) 1254 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1263 return (winmdroot.Foundation.HRESULT)ex.HResult; 1285 public unsafe winmdroot.Foundation.HRESULT StartOf(int Unit, int Extend, int* pDelta) 1287 return ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((ITextRange*)Unsafe.AsPointer(ref this), Unit, Extend, pDelta); 1292 internal unsafe winmdroot.Foundation.HRESULT EndOf(int Unit, int Extend, out int pDelta) 1296 winmdroot.Foundation.HRESULT __result = this.EndOf(Unit, Extend, pDeltaLocal); 1304 private static winmdroot.Foundation.HRESULT EndOf(ITextRange* pThis, int Unit, int Extend, int* pDelta) 1308 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1317 return (winmdroot.Foundation.HRESULT)ex.HResult; 1341 public unsafe winmdroot.Foundation.HRESULT EndOf(int Unit, int Extend, int* pDelta) 1343 return ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((ITextRange*)Unsafe.AsPointer(ref this), Unit, Extend, pDelta); 1359 private static winmdroot.Foundation.HRESULT Move(ITextRange* pThis, int Unit, int Count, int* pDelta) 1363 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1372 return (winmdroot.Foundation.HRESULT)ex.HResult; 1400 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((ITextRange*)Unsafe.AsPointer(ref this), Unit, Count, pDelta).ThrowOnFailure(); 1416 private static winmdroot.Foundation.HRESULT MoveStart(ITextRange* pThis, int Unit, int Count, int* pDelta) 1420 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1429 return (winmdroot.Foundation.HRESULT)ex.HResult; 1456 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((ITextRange*)Unsafe.AsPointer(ref this), Unit, Count, pDelta).ThrowOnFailure(); 1472 private static winmdroot.Foundation.HRESULT MoveEnd(ITextRange* pThis, int Unit, int Count, int* pDelta) 1476 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1485 return (winmdroot.Foundation.HRESULT)ex.HResult; 1512 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((ITextRange*)Unsafe.AsPointer(ref this), Unit, Count, pDelta).ThrowOnFailure(); 1531 private static winmdroot.Foundation.HRESULT MoveWhile(ITextRange* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1535 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1544 return (winmdroot.Foundation.HRESULT)ex.HResult; 1573 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((ITextRange*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1592 private static winmdroot.Foundation.HRESULT MoveStartWhile(ITextRange* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1596 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1605 return (winmdroot.Foundation.HRESULT)ex.HResult; 1632 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((ITextRange*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1651 private static winmdroot.Foundation.HRESULT MoveEndWhile(ITextRange* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1655 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1664 return (winmdroot.Foundation.HRESULT)ex.HResult; 1691 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((ITextRange*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1710 private static winmdroot.Foundation.HRESULT MoveUntil(ITextRange* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1714 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1723 return (winmdroot.Foundation.HRESULT)ex.HResult; 1752 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((ITextRange*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1771 private static winmdroot.Foundation.HRESULT MoveStartUntil(ITextRange* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1775 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1784 return (winmdroot.Foundation.HRESULT)ex.HResult; 1811 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((ITextRange*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1830 private static winmdroot.Foundation.HRESULT MoveEndUntil(ITextRange* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1834 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1843 return (winmdroot.Foundation.HRESULT)ex.HResult; 1870 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((ITextRange*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1886 private static winmdroot.Foundation.HRESULT FindText(ITextRange* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1890 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1899 return (winmdroot.Foundation.HRESULT)ex.HResult; 1930 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((ITextRange*)Unsafe.AsPointer(ref this), bstr, Count, Flags, pLength).ThrowOnFailure(); 1946 private static winmdroot.Foundation.HRESULT FindTextStart(ITextRange* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1950 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1959 return (winmdroot.Foundation.HRESULT)ex.HResult; 1987 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((ITextRange*)Unsafe.AsPointer(ref this), bstr, Count, Flags, pLength).ThrowOnFailure(); 2003 private static winmdroot.Foundation.HRESULT FindTextEnd(ITextRange* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 2007 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2016 return (winmdroot.Foundation.HRESULT)ex.HResult; 2044 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((ITextRange*)Unsafe.AsPointer(ref this), bstr, Count, Flags, pLength).ThrowOnFailure(); 2060 private static winmdroot.Foundation.HRESULT Delete(ITextRange* pThis, int Unit, int Count, int* pDelta) 2064 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2073 return (winmdroot.Foundation.HRESULT)ex.HResult; 2101 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((ITextRange*)Unsafe.AsPointer(ref this), Unit, Count, pDelta).ThrowOnFailure(); 2117 private static winmdroot.Foundation.HRESULT Cut(ITextRange* pThis, winmdroot.System.Variant.VARIANT* pVar) 2121 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2130 return (winmdroot.Foundation.HRESULT)ex.HResult; 2150 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((ITextRange*)Unsafe.AsPointer(ref this), pVar).ThrowOnFailure(); 2166 private static winmdroot.Foundation.HRESULT Copy(ITextRange* pThis, winmdroot.System.Variant.VARIANT* pVar) 2170 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2179 return (winmdroot.Foundation.HRESULT)ex.HResult; 2199 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((ITextRange*)Unsafe.AsPointer(ref this), pVar).ThrowOnFailure(); 2215 private static winmdroot.Foundation.HRESULT Paste(ITextRange* pThis, winmdroot.System.Variant.VARIANT* pVar, int Format) 2219 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2228 return (winmdroot.Foundation.HRESULT)ex.HResult; 2249 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((ITextRange*)Unsafe.AsPointer(ref this), pVar, Format).ThrowOnFailure(); 2268 private static winmdroot.Foundation.HRESULT CanPaste(ITextRange* pThis, winmdroot.System.Variant.VARIANT* pVar, int Format, int* pValue) 2272 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2281 return (winmdroot.Foundation.HRESULT)ex.HResult; 2309 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((ITextRange*)Unsafe.AsPointer(ref this), pVar, Format, pValue).ThrowOnFailure(); 2325 private static winmdroot.Foundation.HRESULT CanEdit(ITextRange* pThis, int* pValue) 2329 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2338 return (winmdroot.Foundation.HRESULT)ex.HResult; 2353 ((delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((ITextRange*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 2359 private static winmdroot.Foundation.HRESULT ChangeCase(ITextRange* pThis, winmdroot.UI.Controls.RichEdit.tomConstants Type) 2363 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2372 return (winmdroot.Foundation.HRESULT)ex.HResult; 2390 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.tomConstants ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((ITextRange*)Unsafe.AsPointer(ref this), Type).ThrowOnFailure(); 2409 private static winmdroot.Foundation.HRESULT GetPoint(ITextRange* pThis, winmdroot.UI.Controls.RichEdit.tomConstants Type, int* px, int* py) 2413 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2422 return (winmdroot.Foundation.HRESULT)ex.HResult; 2446 ((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(); 2452 private static winmdroot.Foundation.HRESULT SetPoint(ITextRange* pThis, int x, int y, winmdroot.UI.Controls.RichEdit.tomConstants Type, int Extend) 2456 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2465 return (winmdroot.Foundation.HRESULT)ex.HResult; 2494 ((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(); 2500 private static winmdroot.Foundation.HRESULT ScrollIntoView(ITextRange* pThis, int Value) 2504 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2513 return (winmdroot.Foundation.HRESULT)ex.HResult; 2529 public winmdroot.Foundation.HRESULT ScrollIntoView(int Value) 2531 return ((delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((ITextRange*)Unsafe.AsPointer(ref this), Value); 2537 private static winmdroot.Foundation.HRESULT GetEmbeddedObject(ITextRange* pThis, winmdroot.System.Com.IUnknown** ppObject) 2541 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2550 return (winmdroot.Foundation.HRESULT)ex.HResult; 2566 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((ITextRange*)Unsafe.AsPointer(ref this), ppObject).ThrowOnFailure(); 2569 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2575 var hr = this.QueryInterface(&guid, &pv); 2592 internal delegate *unmanaged [Stdcall]<ITextRange*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2598 internal delegate *unmanaged [Stdcall]<ITextRange*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2600 internal delegate *unmanaged [Stdcall]<ITextRange*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2602 internal delegate *unmanaged [Stdcall]<ITextRange*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2604 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; 2606 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetText_8; 2608 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> SetText_9; 2610 internal delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT> GetChar_10; 2612 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT> SetChar_11; 2614 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT> GetDuplicate_12; 2616 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT> GetFormattedText_13; 2618 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange* ,winmdroot.Foundation.HRESULT> SetFormattedText_14; 2620 internal delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT> GetStart_15; 2622 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT> SetStart_16; 2624 internal delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT> GetEnd_17; 2626 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT> SetEnd_18; 2628 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextFont** ,winmdroot.Foundation.HRESULT> GetFont_19; 2630 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextFont* ,winmdroot.Foundation.HRESULT> SetFont_20; 2632 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextPara** ,winmdroot.Foundation.HRESULT> GetPara_21; 2634 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextPara* ,winmdroot.Foundation.HRESULT> SetPara_22; 2636 internal delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT> GetStoryLength_23; 2638 internal delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT> GetStoryType_24; 2640 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT> Collapse_25; 2642 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int* ,winmdroot.Foundation.HRESULT> Expand_26; 2644 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int* ,winmdroot.Foundation.HRESULT> GetIndex_27; 2646 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int ,winmdroot.Foundation.HRESULT> SetIndex_28; 2648 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,winmdroot.Foundation.HRESULT> SetRange_29; 2650 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT> InRange_30; 2652 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT> InStory_31; 2654 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT> IsEqual_32; 2656 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.HRESULT> Select_33; 2658 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT> StartOf_34; 2660 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT> EndOf_35; 2662 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT> Move_36; 2664 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT> MoveStart_37; 2666 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT> MoveEnd_38; 2668 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveWhile_39; 2670 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveStartWhile_40; 2672 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveEndWhile_41; 2674 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveUntil_42; 2676 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveStartUntil_43; 2678 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveEndUntil_44; 2680 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindText_45; 2682 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindTextStart_46; 2684 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindTextEnd_47; 2686 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT> Delete_48; 2688 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Cut_49; 2690 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Copy_50; 2692 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,winmdroot.Foundation.HRESULT> Paste_51; 2694 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> CanPaste_52; 2696 internal delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT> CanEdit_53; 2698 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.tomConstants ,winmdroot.Foundation.HRESULT> ChangeCase_54; 2700 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,int* ,winmdroot.Foundation.HRESULT> GetPoint_55; 2702 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int ,winmdroot.Foundation.HRESULT> SetPoint_56; 2704 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT> ScrollIntoView_57; 2706 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> GetEmbeddedObject_58; 2783 unsafe winmdroot.Foundation.HRESULT GetText(winmdroot.Foundation.BSTR* pbstr); 2786winmdroot.Foundation.HRESULT SetText(winmdroot.Foundation.BSTR bstr); 2789 unsafe winmdroot.Foundation.HRESULT GetChar(int* pChar); 2792winmdroot.Foundation.HRESULT SetChar(int Char); 2795 unsafe winmdroot.Foundation.HRESULT GetDuplicate(winmdroot.UI.Controls.RichEdit.ITextRange** ppRange); 2798 unsafe winmdroot.Foundation.HRESULT GetFormattedText(winmdroot.UI.Controls.RichEdit.ITextRange** ppRange); 2801 unsafe winmdroot.Foundation.HRESULT SetFormattedText([Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange); 2804 unsafe winmdroot.Foundation.HRESULT GetStart(int* pcpFirst); 2807winmdroot.Foundation.HRESULT SetStart(int cpFirst); 2810 unsafe winmdroot.Foundation.HRESULT GetEnd(int* pcpLim); 2813winmdroot.Foundation.HRESULT SetEnd(int cpLim); 2816 unsafe winmdroot.Foundation.HRESULT GetFont(winmdroot.UI.Controls.RichEdit.ITextFont** ppFont); 2819 unsafe winmdroot.Foundation.HRESULT SetFont([Optional] winmdroot.UI.Controls.RichEdit.ITextFont* pFont); 2822 unsafe winmdroot.Foundation.HRESULT GetPara(winmdroot.UI.Controls.RichEdit.ITextPara** ppPara); 2825 unsafe winmdroot.Foundation.HRESULT SetPara([Optional] winmdroot.UI.Controls.RichEdit.ITextPara* pPara); 2828 unsafe winmdroot.Foundation.HRESULT GetStoryLength(int* pCount); 2831 unsafe winmdroot.Foundation.HRESULT GetStoryType(int* pValue); 2834winmdroot.Foundation.HRESULT Collapse(int bStart); 2837 unsafe winmdroot.Foundation.HRESULT Expand(int Unit, int* pDelta); 2840 unsafe winmdroot.Foundation.HRESULT GetIndex(int Unit, int* pIndex); 2843winmdroot.Foundation.HRESULT SetIndex(int Unit, int Index, int Extend); 2846winmdroot.Foundation.HRESULT SetRange(int cpAnchor, int cpActive); 2849 unsafe winmdroot.Foundation.HRESULT InRange([Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue); 2852 unsafe winmdroot.Foundation.HRESULT InStory([Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue); 2855 unsafe winmdroot.Foundation.HRESULT IsEqual([Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue); 2858winmdroot.Foundation.HRESULT Select(); 2861 unsafe winmdroot.Foundation.HRESULT StartOf(int Unit, int Extend, int* pDelta); 2864 unsafe winmdroot.Foundation.HRESULT EndOf(int Unit, int Extend, int* pDelta); 2867 unsafe winmdroot.Foundation.HRESULT Move(int Unit, int Count, int* pDelta); 2870 unsafe winmdroot.Foundation.HRESULT MoveStart(int Unit, int Count, int* pDelta); 2873 unsafe winmdroot.Foundation.HRESULT MoveEnd(int Unit, int Count, int* pDelta); 2876 unsafe winmdroot.Foundation.HRESULT MoveWhile(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2879 unsafe winmdroot.Foundation.HRESULT MoveStartWhile(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2882 unsafe winmdroot.Foundation.HRESULT MoveEndWhile(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2885 unsafe winmdroot.Foundation.HRESULT MoveUntil(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2888 unsafe winmdroot.Foundation.HRESULT MoveStartUntil(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2891 unsafe winmdroot.Foundation.HRESULT MoveEndUntil(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2894 unsafe winmdroot.Foundation.HRESULT FindText(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2897 unsafe winmdroot.Foundation.HRESULT FindTextStart(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2900 unsafe winmdroot.Foundation.HRESULT FindTextEnd(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2903 unsafe winmdroot.Foundation.HRESULT Delete(int Unit, int Count, int* pDelta); 2906 unsafe winmdroot.Foundation.HRESULT Cut(winmdroot.System.Variant.VARIANT* pVar); 2909 unsafe winmdroot.Foundation.HRESULT Copy(winmdroot.System.Variant.VARIANT* pVar); 2912 unsafe winmdroot.Foundation.HRESULT Paste(winmdroot.System.Variant.VARIANT* pVar, int Format); 2915 unsafe winmdroot.Foundation.HRESULT CanPaste(winmdroot.System.Variant.VARIANT* pVar, int Format, int* pValue); 2918 unsafe winmdroot.Foundation.HRESULT CanEdit(int* pValue); 2921winmdroot.Foundation.HRESULT ChangeCase(winmdroot.UI.Controls.RichEdit.tomConstants Type); 2924 unsafe winmdroot.Foundation.HRESULT GetPoint(winmdroot.UI.Controls.RichEdit.tomConstants Type, int* px, int* py); 2927winmdroot.Foundation.HRESULT SetPoint(int x, int y, winmdroot.UI.Controls.RichEdit.tomConstants Type, int Extend); 2930winmdroot.Foundation.HRESULT ScrollIntoView(int Value); 2933 unsafe winmdroot.Foundation.HRESULT GetEmbeddedObject(winmdroot.System.Com.IUnknown** ppObject);
_generated\257\Windows.Win32.ITextRangeProvider.g.cs (115)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextRangeProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT Clone(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextRangeProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 92 private static winmdroot.Foundation.HRESULT Compare(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.ITextRangeProvider* range, winmdroot.Foundation.BOOL* pRetVal) 96 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 121 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.ITextRangeProvider* ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextRangeProvider*)Unsafe.AsPointer(ref this), range, &__retVal).ThrowOnFailure(); 128 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) 132 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 141 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 ((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(); 169 private static winmdroot.Foundation.HRESULT ExpandToEnclosingUnit(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.TextUnit unit) 173 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 182 return (winmdroot.Foundation.HRESULT)ex.HResult; 202 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextUnit ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ITextRangeProvider*)Unsafe.AsPointer(ref this), unit).ThrowOnFailure(); 208 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) 212 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 221 return (winmdroot.Foundation.HRESULT)ex.HResult; 245 ((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(); 252 private static winmdroot.Foundation.HRESULT FindText(ITextRangeProvider* pThis, winmdroot.Foundation.BSTR text, winmdroot.Foundation.BOOL backward, winmdroot.Foundation.BOOL ignoreCase, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 256 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 265 return (winmdroot.Foundation.HRESULT)ex.HResult; 289 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.BOOL ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextRangeProvider*)Unsafe.AsPointer(ref this), text, backward, ignoreCase, &__retVal).ThrowOnFailure(); 296 private static winmdroot.Foundation.HRESULT GetAttributeValue(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.UIA_TEXTATTRIBUTE_ID attributeId, winmdroot.System.Variant.VARIANT* pRetVal) 300 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 309 return (winmdroot.Foundation.HRESULT)ex.HResult; 325 ((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(); 332 private static winmdroot.Foundation.HRESULT GetBoundingRectangles(ITextRangeProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 336 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 345 return (winmdroot.Foundation.HRESULT)ex.HResult; 359 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITextRangeProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 366 private static winmdroot.Foundation.HRESULT GetEnclosingElement(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 370 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 379 return (winmdroot.Foundation.HRESULT)ex.HResult; 391 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((ITextRangeProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 398 private static winmdroot.Foundation.HRESULT GetText(ITextRangeProvider* pThis, int maxLength, winmdroot.Foundation.BSTR* pRetVal) 402 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 411 return (winmdroot.Foundation.HRESULT)ex.HResult; 430 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ITextRangeProvider*)Unsafe.AsPointer(ref this), maxLength, &__retVal).ThrowOnFailure(); 437 private static winmdroot.Foundation.HRESULT Move(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.TextUnit unit, int count, int* pRetVal) 441 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 450 return (winmdroot.Foundation.HRESULT)ex.HResult; 472 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextUnit ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ITextRangeProvider*)Unsafe.AsPointer(ref this), unit, count, &__retVal).ThrowOnFailure(); 479 private static winmdroot.Foundation.HRESULT MoveEndpointByUnit(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.TextPatternRangeEndpoint endpoint, winmdroot.UI.Accessibility.TextUnit unit, int count, int* pRetVal) 483 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 492 return (winmdroot.Foundation.HRESULT)ex.HResult; 512 ((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(); 519 private static winmdroot.Foundation.HRESULT MoveEndpointByRange(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.TextPatternRangeEndpoint endpoint, winmdroot.UI.Accessibility.ITextRangeProvider* targetRange, winmdroot.UI.Accessibility.TextPatternRangeEndpoint targetEndpoint) 523 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 532 return (winmdroot.Foundation.HRESULT)ex.HResult; 547 ((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(); 553 private static winmdroot.Foundation.HRESULT Select(ITextRangeProvider* pThis) 557 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 566 return (winmdroot.Foundation.HRESULT)ex.HResult; 577 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[16])((ITextRangeProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 583 private static winmdroot.Foundation.HRESULT AddToSelection(ITextRangeProvider* pThis) 587 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 596 return (winmdroot.Foundation.HRESULT)ex.HResult; 611 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[17])((ITextRangeProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 617 private static winmdroot.Foundation.HRESULT RemoveFromSelection(ITextRangeProvider* pThis) 621 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 630 return (winmdroot.Foundation.HRESULT)ex.HResult; 645 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[18])((ITextRangeProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 651 private static winmdroot.Foundation.HRESULT ScrollIntoView(ITextRangeProvider* pThis, winmdroot.Foundation.BOOL alignToTop) 655 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 664 return (winmdroot.Foundation.HRESULT)ex.HResult; 682 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((ITextRangeProvider*)Unsafe.AsPointer(ref this), alignToTop).ThrowOnFailure(); 688 private static winmdroot.Foundation.HRESULT GetChildren(ITextRangeProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 692 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 701 return (winmdroot.Foundation.HRESULT)ex.HResult; 713 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((ITextRangeProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 717 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 723 var hr = this.QueryInterface(&guid, &pv); 740 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 746 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> Clone_4; 748 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.ITextRangeProvider* ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> Compare_5; 750 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextPatternRangeEndpoint ,winmdroot.UI.Accessibility.ITextRangeProvider* ,winmdroot.UI.Accessibility.TextPatternRangeEndpoint ,int* ,winmdroot.Foundation.HRESULT> CompareEndpoints_6; 752 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextUnit ,winmdroot.Foundation.HRESULT> ExpandToEnclosingUnit_7; 754 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; 756 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.BOOL ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> FindText_9; 758 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.UIA_TEXTATTRIBUTE_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetAttributeValue_10; 760 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetBoundingRectangles_11; 762 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT> GetEnclosingElement_12; 764 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetText_13; 766 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextUnit ,int ,int* ,winmdroot.Foundation.HRESULT> Move_14; 768 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextPatternRangeEndpoint ,winmdroot.UI.Accessibility.TextUnit ,int ,int* ,winmdroot.Foundation.HRESULT> MoveEndpointByUnit_15; 770 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextPatternRangeEndpoint ,winmdroot.UI.Accessibility.ITextRangeProvider* ,winmdroot.UI.Accessibility.TextPatternRangeEndpoint ,winmdroot.Foundation.HRESULT> MoveEndpointByRange_16; 772 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.HRESULT> Select_17; 774 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.HRESULT> AddToSelection_18; 776 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.HRESULT> RemoveFromSelection_19; 778 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ScrollIntoView_20; 780 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetChildren_21; 824 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal); 827 unsafe winmdroot.Foundation.HRESULT Compare(winmdroot.UI.Accessibility.ITextRangeProvider* range, winmdroot.Foundation.BOOL* pRetVal); 830 unsafe winmdroot.Foundation.HRESULT CompareEndpoints(winmdroot.UI.Accessibility.TextPatternRangeEndpoint endpoint, winmdroot.UI.Accessibility.ITextRangeProvider* targetRange, winmdroot.UI.Accessibility.TextPatternRangeEndpoint targetEndpoint, int* pRetVal); 833winmdroot.Foundation.HRESULT ExpandToEnclosingUnit(winmdroot.UI.Accessibility.TextUnit unit); 836 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); 839 unsafe winmdroot.Foundation.HRESULT FindText(winmdroot.Foundation.BSTR text, winmdroot.Foundation.BOOL backward, winmdroot.Foundation.BOOL ignoreCase, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal); 842 unsafe winmdroot.Foundation.HRESULT GetAttributeValue(winmdroot.UI.Accessibility.UIA_TEXTATTRIBUTE_ID attributeId, winmdroot.System.Variant.VARIANT* pRetVal); 845 unsafe winmdroot.Foundation.HRESULT GetBoundingRectangles(winmdroot.System.Com.SAFEARRAY** pRetVal); 848 unsafe winmdroot.Foundation.HRESULT GetEnclosingElement(winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal); 851 unsafe winmdroot.Foundation.HRESULT GetText(int maxLength, winmdroot.Foundation.BSTR* pRetVal); 854 unsafe winmdroot.Foundation.HRESULT Move(winmdroot.UI.Accessibility.TextUnit unit, int count, int* pRetVal); 857 unsafe winmdroot.Foundation.HRESULT MoveEndpointByUnit(winmdroot.UI.Accessibility.TextPatternRangeEndpoint endpoint, winmdroot.UI.Accessibility.TextUnit unit, int count, int* pRetVal); 860 unsafe winmdroot.Foundation.HRESULT MoveEndpointByRange(winmdroot.UI.Accessibility.TextPatternRangeEndpoint endpoint, winmdroot.UI.Accessibility.ITextRangeProvider* targetRange, winmdroot.UI.Accessibility.TextPatternRangeEndpoint targetEndpoint); 863winmdroot.Foundation.HRESULT Select(); 866winmdroot.Foundation.HRESULT AddToSelection(); 869winmdroot.Foundation.HRESULT RemoveFromSelection(); 872winmdroot.Foundation.HRESULT ScrollIntoView(winmdroot.Foundation.BOOL alignToTop); 875 unsafe winmdroot.Foundation.HRESULT GetChildren(winmdroot.System.Com.SAFEARRAY** pRetVal);
_generated\258\Windows.Win32.ITextSelection.g.cs (381)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ITextSelection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextSelection*)Unsafe.AsPointer(ref this), riid, ppvObject); 69 ((delegate *unmanaged [Stdcall]<ITextSelection*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextSelection*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 74 ((delegate *unmanaged [Stdcall]<ITextSelection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextSelection*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 95 ((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(); 134 ((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(); 150 private static winmdroot.Foundation.HRESULT GetText(ITextSelection* pThis, winmdroot.Foundation.BSTR* pbstr) 154 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 169 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextSelection*)Unsafe.AsPointer(ref this), pbstr).ThrowOnFailure(); 175 private static winmdroot.Foundation.HRESULT SetText(ITextSelection* pThis, winmdroot.Foundation.BSTR bstr) 179 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 188 return (winmdroot.Foundation.HRESULT)ex.HResult; 194 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextSelection*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 210 private static winmdroot.Foundation.HRESULT GetChar(ITextSelection* pThis, int* pChar) 214 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 223 return (winmdroot.Foundation.HRESULT)ex.HResult; 229 ((delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITextSelection*)Unsafe.AsPointer(ref this), pChar).ThrowOnFailure(); 235 private static winmdroot.Foundation.HRESULT SetChar(ITextSelection* pThis, int Char) 239 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 248 return (winmdroot.Foundation.HRESULT)ex.HResult; 254 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITextSelection*)Unsafe.AsPointer(ref this), Char).ThrowOnFailure(); 260 private static winmdroot.Foundation.HRESULT GetDuplicate(ITextSelection* pThis, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange) 264 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 273 return (winmdroot.Foundation.HRESULT)ex.HResult; 279 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((ITextSelection*)Unsafe.AsPointer(ref this), ppRange).ThrowOnFailure(); 285 private static winmdroot.Foundation.HRESULT GetFormattedText(ITextSelection* pThis, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange) 289 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 298 return (winmdroot.Foundation.HRESULT)ex.HResult; 304 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ITextSelection*)Unsafe.AsPointer(ref this), ppRange).ThrowOnFailure(); 310 private static winmdroot.Foundation.HRESULT SetFormattedText(ITextSelection* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange) 314 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 323 return (winmdroot.Foundation.HRESULT)ex.HResult; 329 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ITextSelection*)Unsafe.AsPointer(ref this), pRange).ThrowOnFailure(); 345 private static winmdroot.Foundation.HRESULT GetStart(ITextSelection* pThis, int* pcpFirst) 349 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 358 return (winmdroot.Foundation.HRESULT)ex.HResult; 364 ((delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((ITextSelection*)Unsafe.AsPointer(ref this), pcpFirst).ThrowOnFailure(); 370 private static winmdroot.Foundation.HRESULT SetStart(ITextSelection* pThis, int cpFirst) 374 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 383 return (winmdroot.Foundation.HRESULT)ex.HResult; 389 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((ITextSelection*)Unsafe.AsPointer(ref this), cpFirst).ThrowOnFailure(); 405 private static winmdroot.Foundation.HRESULT GetEnd(ITextSelection* pThis, int* pcpLim) 409 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 418 return (winmdroot.Foundation.HRESULT)ex.HResult; 424 ((delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((ITextSelection*)Unsafe.AsPointer(ref this), pcpLim).ThrowOnFailure(); 430 private static winmdroot.Foundation.HRESULT SetEnd(ITextSelection* pThis, int cpLim) 434 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 443 return (winmdroot.Foundation.HRESULT)ex.HResult; 449 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((ITextSelection*)Unsafe.AsPointer(ref this), cpLim).ThrowOnFailure(); 455 private static winmdroot.Foundation.HRESULT GetFont(ITextSelection* pThis, winmdroot.UI.Controls.RichEdit.ITextFont** ppFont) 459 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 468 return (winmdroot.Foundation.HRESULT)ex.HResult; 474 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextFont** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((ITextSelection*)Unsafe.AsPointer(ref this), ppFont).ThrowOnFailure(); 480 private static winmdroot.Foundation.HRESULT SetFont(ITextSelection* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextFont* pFont) 484 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 493 return (winmdroot.Foundation.HRESULT)ex.HResult; 499 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextFont* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((ITextSelection*)Unsafe.AsPointer(ref this), pFont).ThrowOnFailure(); 505 private static winmdroot.Foundation.HRESULT GetPara(ITextSelection* pThis, winmdroot.UI.Controls.RichEdit.ITextPara** ppPara) 509 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 518 return (winmdroot.Foundation.HRESULT)ex.HResult; 524 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextPara** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((ITextSelection*)Unsafe.AsPointer(ref this), ppPara).ThrowOnFailure(); 530 private static winmdroot.Foundation.HRESULT SetPara(ITextSelection* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextPara* pPara) 534 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 543 return (winmdroot.Foundation.HRESULT)ex.HResult; 549 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextPara* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((ITextSelection*)Unsafe.AsPointer(ref this), pPara).ThrowOnFailure(); 565 private static winmdroot.Foundation.HRESULT GetStoryLength(ITextSelection* pThis, int* pCount) 569 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 578 return (winmdroot.Foundation.HRESULT)ex.HResult; 584 ((delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((ITextSelection*)Unsafe.AsPointer(ref this), pCount).ThrowOnFailure(); 600 private static winmdroot.Foundation.HRESULT GetStoryType(ITextSelection* pThis, int* pValue) 604 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 613 return (winmdroot.Foundation.HRESULT)ex.HResult; 619 ((delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((ITextSelection*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 625 private static winmdroot.Foundation.HRESULT Collapse(ITextSelection* pThis, int bStart) 629 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 638 return (winmdroot.Foundation.HRESULT)ex.HResult; 644 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((ITextSelection*)Unsafe.AsPointer(ref this), bStart).ThrowOnFailure(); 660 private static winmdroot.Foundation.HRESULT Expand(ITextSelection* pThis, int Unit, int* pDelta) 664 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 673 return (winmdroot.Foundation.HRESULT)ex.HResult; 679 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, pDelta).ThrowOnFailure(); 695 private static winmdroot.Foundation.HRESULT GetIndex(ITextSelection* pThis, int Unit, int* pIndex) 699 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 708 return (winmdroot.Foundation.HRESULT)ex.HResult; 714 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, pIndex).ThrowOnFailure(); 720 private static winmdroot.Foundation.HRESULT SetIndex(ITextSelection* pThis, int Unit, int Index, int Extend) 724 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 733 return (winmdroot.Foundation.HRESULT)ex.HResult; 739 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Index, Extend).ThrowOnFailure(); 745 private static winmdroot.Foundation.HRESULT SetRange(ITextSelection* pThis, int cpAnchor, int cpActive) 749 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 758 return (winmdroot.Foundation.HRESULT)ex.HResult; 764 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((ITextSelection*)Unsafe.AsPointer(ref this), cpAnchor, cpActive).ThrowOnFailure(); 780 private static winmdroot.Foundation.HRESULT InRange(ITextSelection* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue) 784 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 793 return (winmdroot.Foundation.HRESULT)ex.HResult; 799 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((ITextSelection*)Unsafe.AsPointer(ref this), pRange, pValue).ThrowOnFailure(); 815 private static winmdroot.Foundation.HRESULT InStory(ITextSelection* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue) 819 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 828 return (winmdroot.Foundation.HRESULT)ex.HResult; 834 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((ITextSelection*)Unsafe.AsPointer(ref this), pRange, pValue).ThrowOnFailure(); 850 private static winmdroot.Foundation.HRESULT IsEqual(ITextSelection* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue) 854 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 863 return (winmdroot.Foundation.HRESULT)ex.HResult; 869 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((ITextSelection*)Unsafe.AsPointer(ref this), pRange, pValue).ThrowOnFailure(); 875 private static winmdroot.Foundation.HRESULT Select(ITextSelection* pThis) 879 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 888 return (winmdroot.Foundation.HRESULT)ex.HResult; 894 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.HRESULT>)lpVtbl[32])((ITextSelection*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 910 private static winmdroot.Foundation.HRESULT StartOf(ITextSelection* pThis, int Unit, int Extend, int* pDelta) 914 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 923 return (winmdroot.Foundation.HRESULT)ex.HResult; 929 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Extend, pDelta).ThrowOnFailure(); 945 private static winmdroot.Foundation.HRESULT EndOf(ITextSelection* pThis, int Unit, int Extend, int* pDelta) 949 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 958 return (winmdroot.Foundation.HRESULT)ex.HResult; 964 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Extend, pDelta).ThrowOnFailure(); 980 private static winmdroot.Foundation.HRESULT Move(ITextSelection* pThis, int Unit, int Count, int* pDelta) 984 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 993 return (winmdroot.Foundation.HRESULT)ex.HResult; 999 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Count, pDelta).ThrowOnFailure(); 1015 private static winmdroot.Foundation.HRESULT MoveStart(ITextSelection* pThis, int Unit, int Count, int* pDelta) 1019 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1028 return (winmdroot.Foundation.HRESULT)ex.HResult; 1034 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Count, pDelta).ThrowOnFailure(); 1050 private static winmdroot.Foundation.HRESULT MoveEnd(ITextSelection* pThis, int Unit, int Count, int* pDelta) 1054 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1063 return (winmdroot.Foundation.HRESULT)ex.HResult; 1069 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Count, pDelta).ThrowOnFailure(); 1088 private static winmdroot.Foundation.HRESULT MoveWhile(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1092 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1101 return (winmdroot.Foundation.HRESULT)ex.HResult; 1107 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((ITextSelection*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1126 private static winmdroot.Foundation.HRESULT MoveStartWhile(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1130 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1139 return (winmdroot.Foundation.HRESULT)ex.HResult; 1145 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((ITextSelection*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1164 private static winmdroot.Foundation.HRESULT MoveEndWhile(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1168 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1177 return (winmdroot.Foundation.HRESULT)ex.HResult; 1183 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((ITextSelection*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1202 private static winmdroot.Foundation.HRESULT MoveUntil(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1206 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1215 return (winmdroot.Foundation.HRESULT)ex.HResult; 1221 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((ITextSelection*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1240 private static winmdroot.Foundation.HRESULT MoveStartUntil(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1244 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1253 return (winmdroot.Foundation.HRESULT)ex.HResult; 1259 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((ITextSelection*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1278 private static winmdroot.Foundation.HRESULT MoveEndUntil(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1282 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1291 return (winmdroot.Foundation.HRESULT)ex.HResult; 1297 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((ITextSelection*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1313 private static winmdroot.Foundation.HRESULT FindText(ITextSelection* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1317 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1326 return (winmdroot.Foundation.HRESULT)ex.HResult; 1332 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((ITextSelection*)Unsafe.AsPointer(ref this), bstr, Count, Flags, pLength).ThrowOnFailure(); 1348 private static winmdroot.Foundation.HRESULT FindTextStart(ITextSelection* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1352 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1361 return (winmdroot.Foundation.HRESULT)ex.HResult; 1367 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((ITextSelection*)Unsafe.AsPointer(ref this), bstr, Count, Flags, pLength).ThrowOnFailure(); 1383 private static winmdroot.Foundation.HRESULT FindTextEnd(ITextSelection* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1387 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1396 return (winmdroot.Foundation.HRESULT)ex.HResult; 1402 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((ITextSelection*)Unsafe.AsPointer(ref this), bstr, Count, Flags, pLength).ThrowOnFailure(); 1418 private static winmdroot.Foundation.HRESULT Delete(ITextSelection* pThis, int Unit, int Count, int* pDelta) 1422 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1431 return (winmdroot.Foundation.HRESULT)ex.HResult; 1437 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Count, pDelta).ThrowOnFailure(); 1453 private static winmdroot.Foundation.HRESULT Cut(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* pVar) 1457 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1466 return (winmdroot.Foundation.HRESULT)ex.HResult; 1472 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((ITextSelection*)Unsafe.AsPointer(ref this), pVar).ThrowOnFailure(); 1488 private static winmdroot.Foundation.HRESULT Copy(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* pVar) 1492 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1501 return (winmdroot.Foundation.HRESULT)ex.HResult; 1507 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((ITextSelection*)Unsafe.AsPointer(ref this), pVar).ThrowOnFailure(); 1523 private static winmdroot.Foundation.HRESULT Paste(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* pVar, int Format) 1527 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1536 return (winmdroot.Foundation.HRESULT)ex.HResult; 1542 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((ITextSelection*)Unsafe.AsPointer(ref this), pVar, Format).ThrowOnFailure(); 1561 private static winmdroot.Foundation.HRESULT CanPaste(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* pVar, int Format, int* pValue) 1565 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1574 return (winmdroot.Foundation.HRESULT)ex.HResult; 1580 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((ITextSelection*)Unsafe.AsPointer(ref this), pVar, Format, pValue).ThrowOnFailure(); 1596 private static winmdroot.Foundation.HRESULT CanEdit(ITextSelection* pThis, int* pValue) 1600 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1609 return (winmdroot.Foundation.HRESULT)ex.HResult; 1615 ((delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((ITextSelection*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1621 private static winmdroot.Foundation.HRESULT ChangeCase(ITextSelection* pThis, winmdroot.UI.Controls.RichEdit.tomConstants Type) 1625 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1634 return (winmdroot.Foundation.HRESULT)ex.HResult; 1640 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.tomConstants ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((ITextSelection*)Unsafe.AsPointer(ref this), Type).ThrowOnFailure(); 1659 private static winmdroot.Foundation.HRESULT GetPoint(ITextSelection* pThis, winmdroot.UI.Controls.RichEdit.tomConstants Type, int* px, int* py) 1663 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1672 return (winmdroot.Foundation.HRESULT)ex.HResult; 1678 ((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(); 1684 private static winmdroot.Foundation.HRESULT SetPoint(ITextSelection* pThis, int x, int y, winmdroot.UI.Controls.RichEdit.tomConstants Type, int Extend) 1688 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1697 return (winmdroot.Foundation.HRESULT)ex.HResult; 1703 ((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(); 1709 private static winmdroot.Foundation.HRESULT ScrollIntoView(ITextSelection* pThis, int Value) 1713 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1722 return (winmdroot.Foundation.HRESULT)ex.HResult; 1728 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((ITextSelection*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1734 private static winmdroot.Foundation.HRESULT GetEmbeddedObject(ITextSelection* pThis, winmdroot.System.Com.IUnknown** ppObject) 1738 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1747 return (winmdroot.Foundation.HRESULT)ex.HResult; 1753 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((ITextSelection*)Unsafe.AsPointer(ref this), ppObject).ThrowOnFailure(); 1769 private static winmdroot.Foundation.HRESULT GetFlags(ITextSelection* pThis, int* pFlags) 1773 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1782 return (winmdroot.Foundation.HRESULT)ex.HResult; 1801 ((delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((ITextSelection*)Unsafe.AsPointer(ref this), pFlags).ThrowOnFailure(); 1807 private static winmdroot.Foundation.HRESULT SetFlags(ITextSelection* pThis, int Flags) 1811 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1820 return (winmdroot.Foundation.HRESULT)ex.HResult; 1842 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((ITextSelection*)Unsafe.AsPointer(ref this), Flags).ThrowOnFailure(); 1858 private static winmdroot.Foundation.HRESULT GetType(ITextSelection* pThis, int* pType) 1862 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1871 return (winmdroot.Foundation.HRESULT)ex.HResult; 1890 ((delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((ITextSelection*)Unsafe.AsPointer(ref this), pType).ThrowOnFailure(); 1906 private static winmdroot.Foundation.HRESULT MoveLeft(ITextSelection* pThis, int Unit, int Count, int Extend, int* pDelta) 1910 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1919 return (winmdroot.Foundation.HRESULT)ex.HResult; 1953 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Count, Extend, pDelta).ThrowOnFailure(); 1969 private static winmdroot.Foundation.HRESULT MoveRight(ITextSelection* pThis, int Unit, int Count, int Extend, int* pDelta) 1973 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1982 return (winmdroot.Foundation.HRESULT)ex.HResult; 2016 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Count, Extend, pDelta).ThrowOnFailure(); 2032 private static winmdroot.Foundation.HRESULT MoveUp(ITextSelection* pThis, int Unit, int Count, int Extend, int* pDelta) 2036 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2045 return (winmdroot.Foundation.HRESULT)ex.HResult; 2075 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Count, Extend, pDelta).ThrowOnFailure(); 2091 private static winmdroot.Foundation.HRESULT MoveDown(ITextSelection* pThis, int Unit, int Count, int Extend, int* pDelta) 2095 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2104 return (winmdroot.Foundation.HRESULT)ex.HResult; 2134 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Count, Extend, pDelta).ThrowOnFailure(); 2150 private static winmdroot.Foundation.HRESULT HomeKey(ITextSelection* pThis, winmdroot.UI.Controls.RichEdit.tomConstants Unit, int Extend, int* pDelta) 2154 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2163 return (winmdroot.Foundation.HRESULT)ex.HResult; 2187 ((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(); 2203 private static winmdroot.Foundation.HRESULT EndKey(ITextSelection* pThis, int Unit, int Extend, int* pDelta) 2207 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2216 return (winmdroot.Foundation.HRESULT)ex.HResult; 2245 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Extend, pDelta).ThrowOnFailure(); 2251 private static winmdroot.Foundation.HRESULT TypeText(ITextSelection* pThis, winmdroot.Foundation.BSTR bstr) 2255 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2264 return (winmdroot.Foundation.HRESULT)ex.HResult; 2283 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((ITextSelection*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 2286 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2292 var hr = this.QueryInterface(&guid, &pv); 2309 internal delegate *unmanaged [Stdcall]<ITextSelection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2315 internal delegate *unmanaged [Stdcall]<ITextSelection*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2317 internal delegate *unmanaged [Stdcall]<ITextSelection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2319 internal delegate *unmanaged [Stdcall]<ITextSelection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2321 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; 2323 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetText_8; 2325 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> SetText_9; 2327 internal delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT> GetChar_10; 2329 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT> SetChar_11; 2331 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT> GetDuplicate_12; 2333 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT> GetFormattedText_13; 2335 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange* ,winmdroot.Foundation.HRESULT> SetFormattedText_14; 2337 internal delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT> GetStart_15; 2339 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT> SetStart_16; 2341 internal delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT> GetEnd_17; 2343 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT> SetEnd_18; 2345 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextFont** ,winmdroot.Foundation.HRESULT> GetFont_19; 2347 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextFont* ,winmdroot.Foundation.HRESULT> SetFont_20; 2349 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextPara** ,winmdroot.Foundation.HRESULT> GetPara_21; 2351 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextPara* ,winmdroot.Foundation.HRESULT> SetPara_22; 2353 internal delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT> GetStoryLength_23; 2355 internal delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT> GetStoryType_24; 2357 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT> Collapse_25; 2359 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int* ,winmdroot.Foundation.HRESULT> Expand_26; 2361 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int* ,winmdroot.Foundation.HRESULT> GetIndex_27; 2363 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,winmdroot.Foundation.HRESULT> SetIndex_28; 2365 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,winmdroot.Foundation.HRESULT> SetRange_29; 2367 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT> InRange_30; 2369 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT> InStory_31; 2371 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT> IsEqual_32; 2373 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.HRESULT> Select_33; 2375 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT> StartOf_34; 2377 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT> EndOf_35; 2379 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT> Move_36; 2381 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT> MoveStart_37; 2383 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT> MoveEnd_38; 2385 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveWhile_39; 2387 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveStartWhile_40; 2389 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveEndWhile_41; 2391 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveUntil_42; 2393 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveStartUntil_43; 2395 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveEndUntil_44; 2397 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindText_45; 2399 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindTextStart_46; 2401 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindTextEnd_47; 2403 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT> Delete_48; 2405 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Cut_49; 2407 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Copy_50; 2409 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,winmdroot.Foundation.HRESULT> Paste_51; 2411 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> CanPaste_52; 2413 internal delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT> CanEdit_53; 2415 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.tomConstants ,winmdroot.Foundation.HRESULT> ChangeCase_54; 2417 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,int* ,winmdroot.Foundation.HRESULT> GetPoint_55; 2419 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int ,winmdroot.Foundation.HRESULT> SetPoint_56; 2421 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT> ScrollIntoView_57; 2423 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> GetEmbeddedObject_58; 2425 internal delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT> GetFlags_59; 2427 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT> SetFlags_60; 2429 internal delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT> GetType_61; 2431 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,int* ,winmdroot.Foundation.HRESULT> MoveLeft_62; 2433 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,int* ,winmdroot.Foundation.HRESULT> MoveRight_63; 2435 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,int* ,winmdroot.Foundation.HRESULT> MoveUp_64; 2437 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,int* ,winmdroot.Foundation.HRESULT> MoveDown_65; 2439 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.tomConstants ,int ,int* ,winmdroot.Foundation.HRESULT> HomeKey_66; 2441 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT> EndKey_67; 2443 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> TypeText_68; 2530 unsafe new winmdroot.Foundation.HRESULT GetText(winmdroot.Foundation.BSTR* pbstr); 2533 new winmdroot.Foundation.HRESULT SetText(winmdroot.Foundation.BSTR bstr); 2536 unsafe new winmdroot.Foundation.HRESULT GetChar(int* pChar); 2539 new winmdroot.Foundation.HRESULT SetChar(int Char); 2542 unsafe new winmdroot.Foundation.HRESULT GetDuplicate(winmdroot.UI.Controls.RichEdit.ITextRange** ppRange); 2545 unsafe new winmdroot.Foundation.HRESULT GetFormattedText(winmdroot.UI.Controls.RichEdit.ITextRange** ppRange); 2548 unsafe new winmdroot.Foundation.HRESULT SetFormattedText([Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange); 2551 unsafe new winmdroot.Foundation.HRESULT GetStart(int* pcpFirst); 2554 new winmdroot.Foundation.HRESULT SetStart(int cpFirst); 2557 unsafe new winmdroot.Foundation.HRESULT GetEnd(int* pcpLim); 2560 new winmdroot.Foundation.HRESULT SetEnd(int cpLim); 2563 unsafe new winmdroot.Foundation.HRESULT GetFont(winmdroot.UI.Controls.RichEdit.ITextFont** ppFont); 2566 unsafe new winmdroot.Foundation.HRESULT SetFont([Optional] winmdroot.UI.Controls.RichEdit.ITextFont* pFont); 2569 unsafe new winmdroot.Foundation.HRESULT GetPara(winmdroot.UI.Controls.RichEdit.ITextPara** ppPara); 2572 unsafe new winmdroot.Foundation.HRESULT SetPara([Optional] winmdroot.UI.Controls.RichEdit.ITextPara* pPara); 2575 unsafe new winmdroot.Foundation.HRESULT GetStoryLength(int* pCount); 2578 unsafe new winmdroot.Foundation.HRESULT GetStoryType(int* pValue); 2581 new winmdroot.Foundation.HRESULT Collapse(int bStart); 2584 unsafe new winmdroot.Foundation.HRESULT Expand(int Unit, int* pDelta); 2587 unsafe new winmdroot.Foundation.HRESULT GetIndex(int Unit, int* pIndex); 2590 new winmdroot.Foundation.HRESULT SetIndex(int Unit, int Index, int Extend); 2593 new winmdroot.Foundation.HRESULT SetRange(int cpAnchor, int cpActive); 2596 unsafe new winmdroot.Foundation.HRESULT InRange([Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue); 2599 unsafe new winmdroot.Foundation.HRESULT InStory([Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue); 2602 unsafe new winmdroot.Foundation.HRESULT IsEqual([Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue); 2605 new winmdroot.Foundation.HRESULT Select(); 2608 unsafe new winmdroot.Foundation.HRESULT StartOf(int Unit, int Extend, int* pDelta); 2611 unsafe new winmdroot.Foundation.HRESULT EndOf(int Unit, int Extend, int* pDelta); 2614 unsafe new winmdroot.Foundation.HRESULT Move(int Unit, int Count, int* pDelta); 2617 unsafe new winmdroot.Foundation.HRESULT MoveStart(int Unit, int Count, int* pDelta); 2620 unsafe new winmdroot.Foundation.HRESULT MoveEnd(int Unit, int Count, int* pDelta); 2623 unsafe new winmdroot.Foundation.HRESULT MoveWhile(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2626 unsafe new winmdroot.Foundation.HRESULT MoveStartWhile(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2629 unsafe new winmdroot.Foundation.HRESULT MoveEndWhile(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2632 unsafe new winmdroot.Foundation.HRESULT MoveUntil(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2635 unsafe new winmdroot.Foundation.HRESULT MoveStartUntil(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2638 unsafe new winmdroot.Foundation.HRESULT MoveEndUntil(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2641 unsafe new winmdroot.Foundation.HRESULT FindText(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2644 unsafe new winmdroot.Foundation.HRESULT FindTextStart(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2647 unsafe new winmdroot.Foundation.HRESULT FindTextEnd(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2650 unsafe new winmdroot.Foundation.HRESULT Delete(int Unit, int Count, int* pDelta); 2653 unsafe new winmdroot.Foundation.HRESULT Cut(winmdroot.System.Variant.VARIANT* pVar); 2656 unsafe new winmdroot.Foundation.HRESULT Copy(winmdroot.System.Variant.VARIANT* pVar); 2659 unsafe new winmdroot.Foundation.HRESULT Paste(winmdroot.System.Variant.VARIANT* pVar, int Format); 2662 unsafe new winmdroot.Foundation.HRESULT CanPaste(winmdroot.System.Variant.VARIANT* pVar, int Format, int* pValue); 2665 unsafe new winmdroot.Foundation.HRESULT CanEdit(int* pValue); 2668 new winmdroot.Foundation.HRESULT ChangeCase(winmdroot.UI.Controls.RichEdit.tomConstants Type); 2671 unsafe new winmdroot.Foundation.HRESULT GetPoint(winmdroot.UI.Controls.RichEdit.tomConstants Type, int* px, int* py); 2674 new winmdroot.Foundation.HRESULT SetPoint(int x, int y, winmdroot.UI.Controls.RichEdit.tomConstants Type, int Extend); 2677 new winmdroot.Foundation.HRESULT ScrollIntoView(int Value); 2680 unsafe new winmdroot.Foundation.HRESULT GetEmbeddedObject(winmdroot.System.Com.IUnknown** ppObject); 2683 unsafe winmdroot.Foundation.HRESULT GetFlags(int* pFlags); 2686winmdroot.Foundation.HRESULT SetFlags(int Flags); 2689 unsafe winmdroot.Foundation.HRESULT GetType(int* pType); 2692 unsafe winmdroot.Foundation.HRESULT MoveLeft(int Unit, int Count, int Extend, int* pDelta); 2695 unsafe winmdroot.Foundation.HRESULT MoveRight(int Unit, int Count, int Extend, int* pDelta); 2698 unsafe winmdroot.Foundation.HRESULT MoveUp(int Unit, int Count, int Extend, int* pDelta); 2701 unsafe winmdroot.Foundation.HRESULT MoveDown(int Unit, int Count, int Extend, int* pDelta); 2704 unsafe winmdroot.Foundation.HRESULT HomeKey(winmdroot.UI.Controls.RichEdit.tomConstants Unit, int Extend, int* pDelta); 2707 unsafe winmdroot.Foundation.HRESULT EndKey(int Unit, int Extend, int* pDelta); 2710winmdroot.Foundation.HRESULT TypeText(winmdroot.Foundation.BSTR bstr);
_generated\259\Windows.Win32.ITextStoryRanges.g.cs (33)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<ITextStoryRanges*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextStoryRanges*)Unsafe.AsPointer(ref this), riid, ppvObject); 69 ((delegate *unmanaged [Stdcall]<ITextStoryRanges*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextStoryRanges*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 74 ((delegate *unmanaged [Stdcall]<ITextStoryRanges*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextStoryRanges*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 95 ((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(); 134 ((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(); 140 private static winmdroot.Foundation.HRESULT _NewEnum(ITextStoryRanges* pThis, winmdroot.System.Com.IUnknown** ppunkEnum) 144 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 174 ((delegate *unmanaged [Stdcall]<ITextStoryRanges*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextStoryRanges*)Unsafe.AsPointer(ref this), ppunkEnum).ThrowOnFailure(); 180 private static winmdroot.Foundation.HRESULT Item(ITextStoryRanges* pThis, int Index, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange) 184 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 193 return (winmdroot.Foundation.HRESULT)ex.HResult; 215 ((delegate *unmanaged [Stdcall]<ITextStoryRanges*,int ,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextStoryRanges*)Unsafe.AsPointer(ref this), Index, ppRange).ThrowOnFailure(); 231 private static winmdroot.Foundation.HRESULT GetCount(ITextStoryRanges* pThis, int* pCount) 235 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 244 return (winmdroot.Foundation.HRESULT)ex.HResult; 261 ((delegate *unmanaged [Stdcall]<ITextStoryRanges*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITextStoryRanges*)Unsafe.AsPointer(ref this), pCount).ThrowOnFailure(); 264 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 270 var hr = this.QueryInterface(&guid, &pv); 287 internal delegate *unmanaged [Stdcall]<ITextStoryRanges*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 293 internal delegate *unmanaged [Stdcall]<ITextStoryRanges*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 295 internal delegate *unmanaged [Stdcall]<ITextStoryRanges*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 297 internal delegate *unmanaged [Stdcall]<ITextStoryRanges*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 299 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; 301 internal delegate *unmanaged [Stdcall]<ITextStoryRanges*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> _NewEnum_8; 303 internal delegate *unmanaged [Stdcall]<ITextStoryRanges*,int ,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT> Item_9; 305 internal delegate *unmanaged [Stdcall]<ITextStoryRanges*,int* ,winmdroot.Foundation.HRESULT> GetCount_10; 334 unsafe winmdroot.Foundation.HRESULT _NewEnum(winmdroot.System.Com.IUnknown** ppunkEnum); 337 unsafe winmdroot.Foundation.HRESULT Item(int Index, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange); 340 unsafe winmdroot.Foundation.HRESULT GetCount(int* pCount);
_generated\260\Windows.Win32.IToggleProvider.g.cs (22)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IToggleProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IToggleProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT Toggle(IToggleProvider* pThis) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 87 ((delegate *unmanaged [Stdcall]<IToggleProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IToggleProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 92 internal unsafe winmdroot.Foundation.HRESULT get_ToggleState(out winmdroot.UI.Accessibility.ToggleState pRetVal) 96 winmdroot.Foundation.HRESULT __result = this.get_ToggleState(pRetValLocal); 104 private static winmdroot.Foundation.HRESULT get_ToggleState(IToggleProvider* pThis, winmdroot.UI.Accessibility.ToggleState* pRetVal) 108 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 117 return (winmdroot.Foundation.HRESULT)ex.HResult; 126 public unsafe winmdroot.Foundation.HRESULT get_ToggleState(winmdroot.UI.Accessibility.ToggleState* pRetVal) 128 return ((delegate *unmanaged [Stdcall]<IToggleProvider*,winmdroot.UI.Accessibility.ToggleState* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IToggleProvider*)Unsafe.AsPointer(ref this), pRetVal); 131 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 137 var hr = this.QueryInterface(&guid, &pv); 154 internal delegate *unmanaged [Stdcall]<IToggleProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 160 internal delegate *unmanaged [Stdcall]<IToggleProvider*,winmdroot.Foundation.HRESULT> Toggle_4; 162 internal delegate *unmanaged [Stdcall]<IToggleProvider*,winmdroot.UI.Accessibility.ToggleState* ,winmdroot.Foundation.HRESULT> get_ToggleState_5; 190winmdroot.Foundation.HRESULT Toggle(); 193 unsafe winmdroot.Foundation.HRESULT get_ToggleState(winmdroot.UI.Accessibility.ToggleState* pRetVal);
_generated\261\Windows.Win32.IUIAutomation.g.cs (338)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IUIAutomation*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomation*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT CompareElements(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* el1, winmdroot.UI.Accessibility.IUIAutomationElement* el2, winmdroot.Foundation.BOOL* areSame) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 95 ((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(); 102 private static winmdroot.Foundation.HRESULT CompareRuntimeIds(IUIAutomation* pThis, winmdroot.System.Com.SAFEARRAY* runtimeId1, winmdroot.System.Com.SAFEARRAY* runtimeId2, winmdroot.Foundation.BOOL* areSame) 106 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 115 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 ((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(); 144 private static winmdroot.Foundation.HRESULT GetRootElement(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement** root) 148 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 157 return (winmdroot.Foundation.HRESULT)ex.HResult; 172 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IUIAutomation*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 179 private static winmdroot.Foundation.HRESULT ElementFromHandle(IUIAutomation* pThis, winmdroot.Foundation.HWND hwnd, winmdroot.UI.Accessibility.IUIAutomationElement** element) 183 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 192 return (winmdroot.Foundation.HRESULT)ex.HResult; 210 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.Foundation.HWND ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IUIAutomation*)Unsafe.AsPointer(ref this), hwnd, &__retVal).ThrowOnFailure(); 217 private static winmdroot.Foundation.HRESULT ElementFromPoint(IUIAutomation* pThis, global::System.Drawing.Point pt, winmdroot.UI.Accessibility.IUIAutomationElement** element) 221 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 230 return (winmdroot.Foundation.HRESULT)ex.HResult; 246 ((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(); 253 private static winmdroot.Foundation.HRESULT GetFocusedElement(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement** element) 257 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 266 return (winmdroot.Foundation.HRESULT)ex.HResult; 279 public unsafe winmdroot.Foundation.HRESULT GetFocusedElement(winmdroot.UI.Accessibility.IUIAutomationElement** element) 281 return ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IUIAutomation*)Unsafe.AsPointer(ref this), element); 287 private static winmdroot.Foundation.HRESULT GetRootElementBuildCache(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** root) 291 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 300 return (winmdroot.Foundation.HRESULT)ex.HResult; 319 ((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(); 326 private static winmdroot.Foundation.HRESULT ElementFromHandleBuildCache(IUIAutomation* pThis, winmdroot.Foundation.HWND hwnd, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** element) 330 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 339 return (winmdroot.Foundation.HRESULT)ex.HResult; 361 ((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(); 368 private static winmdroot.Foundation.HRESULT ElementFromPointBuildCache(IUIAutomation* pThis, global::System.Drawing.Point pt, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** element) 372 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 381 return (winmdroot.Foundation.HRESULT)ex.HResult; 403 ((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(); 410 private static winmdroot.Foundation.HRESULT GetFocusedElementBuildCache(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** element) 414 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 423 return (winmdroot.Foundation.HRESULT)ex.HResult; 441 ((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(); 448 private static winmdroot.Foundation.HRESULT CreateTreeWalker(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition* pCondition, winmdroot.UI.Accessibility.IUIAutomationTreeWalker** walker) 452 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 461 return (winmdroot.Foundation.HRESULT)ex.HResult; 479 ((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(); 486 private static winmdroot.Foundation.HRESULT get_ControlViewWalker(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationTreeWalker** walker) 490 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 496 return winmdroot.Foundation.HRESULT.S_OK; 500 return (winmdroot.Foundation.HRESULT)ex.HResult; 513 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationTreeWalker** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 521 private static winmdroot.Foundation.HRESULT get_ContentViewWalker(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationTreeWalker** walker) 525 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 531 return winmdroot.Foundation.HRESULT.S_OK; 535 return (winmdroot.Foundation.HRESULT)ex.HResult; 548 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationTreeWalker** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 556 private static winmdroot.Foundation.HRESULT get_RawViewWalker(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationTreeWalker** walker) 560 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 566 return winmdroot.Foundation.HRESULT.S_OK; 570 return (winmdroot.Foundation.HRESULT)ex.HResult; 583 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationTreeWalker** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 591 private static winmdroot.Foundation.HRESULT get_RawViewCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** condition) 595 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 601 return winmdroot.Foundation.HRESULT.S_OK; 605 return (winmdroot.Foundation.HRESULT)ex.HResult; 616 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 624 private static winmdroot.Foundation.HRESULT get_ControlViewCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** condition) 628 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 634 return winmdroot.Foundation.HRESULT.S_OK; 638 return (winmdroot.Foundation.HRESULT)ex.HResult; 651 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 659 private static winmdroot.Foundation.HRESULT get_ContentViewCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** condition) 663 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 669 return winmdroot.Foundation.HRESULT.S_OK; 673 return (winmdroot.Foundation.HRESULT)ex.HResult; 686 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 694 private static winmdroot.Foundation.HRESULT CreateCacheRequest(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCacheRequest** cacheRequest) 698 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 707 return (winmdroot.Foundation.HRESULT)ex.HResult; 719 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IUIAutomation*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 726 private static winmdroot.Foundation.HRESULT CreateTrueCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 730 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 739 return (winmdroot.Foundation.HRESULT)ex.HResult; 753 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IUIAutomation*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 760 private static winmdroot.Foundation.HRESULT CreateFalseCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 764 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 773 return (winmdroot.Foundation.HRESULT)ex.HResult; 785 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IUIAutomation*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 792 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) 796 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 805 return (winmdroot.Foundation.HRESULT)ex.HResult; 827 ((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(); 834 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) 838 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 847 return (winmdroot.Foundation.HRESULT)ex.HResult; 869 ((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(); 876 private static winmdroot.Foundation.HRESULT CreateAndCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition* condition1, winmdroot.UI.Accessibility.IUIAutomationCondition* condition2, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 880 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 889 return (winmdroot.Foundation.HRESULT)ex.HResult; 913 ((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(); 920 private static winmdroot.Foundation.HRESULT CreateAndConditionFromArray(IUIAutomation* pThis, winmdroot.System.Com.SAFEARRAY* conditions, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 924 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 933 return (winmdroot.Foundation.HRESULT)ex.HResult; 949 ((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(); 956 private static winmdroot.Foundation.HRESULT CreateAndConditionFromNativeArray(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** conditions, int conditionCount, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 960 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 969 return (winmdroot.Foundation.HRESULT)ex.HResult; 989 ((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(); 996 private static winmdroot.Foundation.HRESULT CreateOrCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition* condition1, winmdroot.UI.Accessibility.IUIAutomationCondition* condition2, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 1000 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1009 return (winmdroot.Foundation.HRESULT)ex.HResult; 1029 ((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(); 1036 private static winmdroot.Foundation.HRESULT CreateOrConditionFromArray(IUIAutomation* pThis, winmdroot.System.Com.SAFEARRAY* conditions, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 1040 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1049 return (winmdroot.Foundation.HRESULT)ex.HResult; 1065 ((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(); 1072 private static winmdroot.Foundation.HRESULT CreateOrConditionFromNativeArray(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** conditions, int conditionCount, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 1076 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1085 return (winmdroot.Foundation.HRESULT)ex.HResult; 1105 ((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(); 1112 private static winmdroot.Foundation.HRESULT CreateNotCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition* condition, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 1116 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1125 return (winmdroot.Foundation.HRESULT)ex.HResult; 1141 ((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(); 1148 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) 1152 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1161 return (winmdroot.Foundation.HRESULT)ex.HResult; 1188 ((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(); 1194 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) 1198 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1207 return (winmdroot.Foundation.HRESULT)ex.HResult; 1233 ((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(); 1248 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) 1252 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1261 return (winmdroot.Foundation.HRESULT)ex.HResult; 1296 ((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(); 1302 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) 1306 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1315 return (winmdroot.Foundation.HRESULT)ex.HResult; 1346 ((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(); 1352 private static winmdroot.Foundation.HRESULT RemovePropertyChangedEventHandler(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* handler) 1356 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1365 return (winmdroot.Foundation.HRESULT)ex.HResult; 1387 ((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(); 1393 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) 1397 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1406 return (winmdroot.Foundation.HRESULT)ex.HResult; 1429 ((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(); 1435 private static winmdroot.Foundation.HRESULT RemoveStructureChangedEventHandler(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationStructureChangedEventHandler* handler) 1439 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1448 return (winmdroot.Foundation.HRESULT)ex.HResult; 1470 ((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(); 1476 private static winmdroot.Foundation.HRESULT AddFocusChangedEventHandler(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationFocusChangedEventHandler* handler) 1480 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1489 return (winmdroot.Foundation.HRESULT)ex.HResult; 1511 ((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(); 1517 private static winmdroot.Foundation.HRESULT RemoveFocusChangedEventHandler(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationFocusChangedEventHandler* handler) 1521 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1530 return (winmdroot.Foundation.HRESULT)ex.HResult; 1548 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationFocusChangedEventHandler* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IUIAutomation*)Unsafe.AsPointer(ref this), handler).ThrowOnFailure(); 1554 private static winmdroot.Foundation.HRESULT RemoveAllEventHandlers(IUIAutomation* pThis) 1558 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1567 return (winmdroot.Foundation.HRESULT)ex.HResult; 1581 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IUIAutomation*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 1597 private static winmdroot.Foundation.HRESULT IntNativeArrayToSafeArray(IUIAutomation* pThis, int* array, int arrayCount, winmdroot.System.Com.SAFEARRAY** safeArray) 1601 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1610 return (winmdroot.Foundation.HRESULT)ex.HResult; 1632 ((delegate *unmanaged [Stdcall]<IUIAutomation*,int* ,int ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IUIAutomation*)Unsafe.AsPointer(ref this), array, arrayCount, &__retVal).ThrowOnFailure(); 1639 private static winmdroot.Foundation.HRESULT IntSafeArrayToNativeArray(IUIAutomation* pThis, winmdroot.System.Com.SAFEARRAY* intArray, int** array, int* arrayCount) 1643 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1652 return (winmdroot.Foundation.HRESULT)ex.HResult; 1674 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.SAFEARRAY* ,int** ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IUIAutomation*)Unsafe.AsPointer(ref this), intArray, array, &__retVal).ThrowOnFailure(); 1681 private static winmdroot.Foundation.HRESULT RectToVariant(IUIAutomation* pThis, winmdroot.Foundation.RECT rc, winmdroot.System.Variant.VARIANT* var) 1685 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1694 return (winmdroot.Foundation.HRESULT)ex.HResult; 1710 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.Foundation.RECT ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IUIAutomation*)Unsafe.AsPointer(ref this), rc, &__retVal).ThrowOnFailure(); 1717 private static winmdroot.Foundation.HRESULT VariantToRect(IUIAutomation* pThis, winmdroot.System.Variant.VARIANT var, winmdroot.Foundation.RECT* rc) 1721 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1730 return (winmdroot.Foundation.HRESULT)ex.HResult; 1748 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IUIAutomation*)Unsafe.AsPointer(ref this), var, &__retVal).ThrowOnFailure(); 1755 private static winmdroot.Foundation.HRESULT SafeArrayToRectNativeArray(IUIAutomation* pThis, winmdroot.System.Com.SAFEARRAY* rects, winmdroot.Foundation.RECT** rectArray, int* rectArrayCount) 1759 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1768 return (winmdroot.Foundation.HRESULT)ex.HResult; 1790 ((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(); 1797 private static winmdroot.Foundation.HRESULT CreateProxyFactoryEntry(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationProxyFactory* factory, winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry** factoryEntry) 1801 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1810 return (winmdroot.Foundation.HRESULT)ex.HResult; 1826 ((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(); 1833 private static winmdroot.Foundation.HRESULT get_ProxyFactoryMapping(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationProxyFactoryMapping** factoryMapping) 1837 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1843 return winmdroot.Foundation.HRESULT.S_OK; 1847 return (winmdroot.Foundation.HRESULT)ex.HResult; 1860 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationProxyFactoryMapping** ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1868 private static winmdroot.Foundation.HRESULT GetPropertyProgrammaticName(IUIAutomation* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID property, winmdroot.Foundation.BSTR* name) 1872 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1881 return (winmdroot.Foundation.HRESULT)ex.HResult; 1900 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IUIAutomation*)Unsafe.AsPointer(ref this), property, &__retVal).ThrowOnFailure(); 1907 private static winmdroot.Foundation.HRESULT GetPatternProgrammaticName(IUIAutomation* pThis, winmdroot.UI.Accessibility.UIA_PATTERN_ID pattern, winmdroot.Foundation.BSTR* name) 1911 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1920 return (winmdroot.Foundation.HRESULT)ex.HResult; 1939 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IUIAutomation*)Unsafe.AsPointer(ref this), pattern, &__retVal).ThrowOnFailure(); 1959 private static winmdroot.Foundation.HRESULT PollForPotentialSupportedPatterns(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* pElement, winmdroot.System.Com.SAFEARRAY** patternIds, winmdroot.System.Com.SAFEARRAY** patternNames) 1963 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1972 return (winmdroot.Foundation.HRESULT)ex.HResult; 1998 ((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(); 2017 private static winmdroot.Foundation.HRESULT PollForPotentialSupportedProperties(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* pElement, winmdroot.System.Com.SAFEARRAY** propertyIds, winmdroot.System.Com.SAFEARRAY** propertyNames) 2021 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2030 return (winmdroot.Foundation.HRESULT)ex.HResult; 2056 ((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(); 2062 private static winmdroot.Foundation.HRESULT CheckNotSupported(IUIAutomation* pThis, winmdroot.System.Variant.VARIANT value, winmdroot.Foundation.BOOL* isNotSupported) 2066 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2075 return (winmdroot.Foundation.HRESULT)ex.HResult; 2091 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IUIAutomation*)Unsafe.AsPointer(ref this), value, &__retVal).ThrowOnFailure(); 2098 private static winmdroot.Foundation.HRESULT get_ReservedNotSupportedValue(IUIAutomation* pThis, winmdroot.System.Com.IUnknown** notSupportedValue) 2102 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2108 return winmdroot.Foundation.HRESULT.S_OK; 2112 return (winmdroot.Foundation.HRESULT)ex.HResult; 2123 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2131 private static winmdroot.Foundation.HRESULT get_ReservedMixedAttributeValue(IUIAutomation* pThis, winmdroot.System.Com.IUnknown** mixedAttributeValue) 2135 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2141 return winmdroot.Foundation.HRESULT.S_OK; 2145 return (winmdroot.Foundation.HRESULT)ex.HResult; 2156 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2164 private static winmdroot.Foundation.HRESULT ElementFromIAccessible(IUIAutomation* pThis, winmdroot.UI.Accessibility.IAccessible* accessible, int childId, winmdroot.UI.Accessibility.IUIAutomationElement** element) 2168 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2177 return (winmdroot.Foundation.HRESULT)ex.HResult; 2200 ((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(); 2207 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) 2211 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2220 return (winmdroot.Foundation.HRESULT)ex.HResult; 2247 ((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(); 2251 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2257 var hr = this.QueryInterface(&guid, &pv); 2274 internal delegate *unmanaged [Stdcall]<IUIAutomation*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2280 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> CompareElements_4; 2282 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> CompareRuntimeIds_5; 2284 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetRootElement_6; 2286 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.Foundation.HWND ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> ElementFromHandle_7; 2288 internal delegate *unmanaged [Stdcall]<IUIAutomation*,global::System.Drawing.Point ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> ElementFromPoint_8; 2290 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetFocusedElement_9; 2292 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetRootElementBuildCache_10; 2294 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.Foundation.HWND ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> ElementFromHandleBuildCache_11; 2296 internal delegate *unmanaged [Stdcall]<IUIAutomation*,global::System.Drawing.Point ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> ElementFromPointBuildCache_12; 2298 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetFocusedElementBuildCache_13; 2300 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationTreeWalker** ,winmdroot.Foundation.HRESULT> CreateTreeWalker_14; 2302 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationTreeWalker** ,winmdroot.Foundation.HRESULT> get_ControlViewWalker_15; 2304 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationTreeWalker** ,winmdroot.Foundation.HRESULT> get_ContentViewWalker_16; 2306 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationTreeWalker** ,winmdroot.Foundation.HRESULT> get_RawViewWalker_17; 2308 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> get_RawViewCondition_18; 2310 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> get_ControlViewCondition_19; 2312 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> get_ContentViewCondition_20; 2314 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest** ,winmdroot.Foundation.HRESULT> CreateCacheRequest_21; 2316 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateTrueCondition_22; 2318 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateFalseCondition_23; 2320 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreatePropertyCondition_24; 2322 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; 2324 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateAndCondition_26; 2326 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateAndConditionFromArray_27; 2328 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,int ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateAndConditionFromNativeArray_28; 2330 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateOrCondition_29; 2332 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateOrConditionFromArray_30; 2334 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,int ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateOrConditionFromNativeArray_31; 2336 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateNotCondition_32; 2338 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; 2340 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_EVENT_ID ,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationEventHandler* ,winmdroot.Foundation.HRESULT> RemoveAutomationEventHandler_34; 2342 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; 2344 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; 2346 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* ,winmdroot.Foundation.HRESULT> RemovePropertyChangedEventHandler_37; 2348 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; 2350 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationStructureChangedEventHandler* ,winmdroot.Foundation.HRESULT> RemoveStructureChangedEventHandler_39; 2352 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationFocusChangedEventHandler* ,winmdroot.Foundation.HRESULT> AddFocusChangedEventHandler_40; 2354 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationFocusChangedEventHandler* ,winmdroot.Foundation.HRESULT> RemoveFocusChangedEventHandler_41; 2356 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.Foundation.HRESULT> RemoveAllEventHandlers_42; 2358 internal delegate *unmanaged [Stdcall]<IUIAutomation*,int* ,int ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> IntNativeArrayToSafeArray_43; 2360 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.SAFEARRAY* ,int** ,int* ,winmdroot.Foundation.HRESULT> IntSafeArrayToNativeArray_44; 2362 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.Foundation.RECT ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> RectToVariant_45; 2364 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> VariantToRect_46; 2366 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.RECT** ,int* ,winmdroot.Foundation.HRESULT> SafeArrayToRectNativeArray_47; 2368 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationProxyFactory* ,winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry** ,winmdroot.Foundation.HRESULT> CreateProxyFactoryEntry_48; 2370 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationProxyFactoryMapping** ,winmdroot.Foundation.HRESULT> get_ProxyFactoryMapping_49; 2372 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetPropertyProgrammaticName_50; 2374 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetPatternProgrammaticName_51; 2376 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> PollForPotentialSupportedPatterns_52; 2378 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> PollForPotentialSupportedProperties_53; 2380 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> CheckNotSupported_54; 2382 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> get_ReservedNotSupportedValue_55; 2384 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> get_ReservedMixedAttributeValue_56; 2386 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IAccessible* ,int ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> ElementFromIAccessible_57; 2388 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IAccessible* ,int ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> ElementFromIAccessibleBuildCache_58; 2469 unsafe winmdroot.Foundation.HRESULT CompareElements(winmdroot.UI.Accessibility.IUIAutomationElement* el1, winmdroot.UI.Accessibility.IUIAutomationElement* el2, winmdroot.Foundation.BOOL* areSame); 2472 unsafe winmdroot.Foundation.HRESULT CompareRuntimeIds(winmdroot.System.Com.SAFEARRAY* runtimeId1, winmdroot.System.Com.SAFEARRAY* runtimeId2, winmdroot.Foundation.BOOL* areSame); 2475 unsafe winmdroot.Foundation.HRESULT GetRootElement(winmdroot.UI.Accessibility.IUIAutomationElement** root); 2478 unsafe winmdroot.Foundation.HRESULT ElementFromHandle(winmdroot.Foundation.HWND hwnd, winmdroot.UI.Accessibility.IUIAutomationElement** element); 2481 unsafe winmdroot.Foundation.HRESULT ElementFromPoint(global::System.Drawing.Point pt, winmdroot.UI.Accessibility.IUIAutomationElement** element); 2484 unsafe winmdroot.Foundation.HRESULT GetFocusedElement(winmdroot.UI.Accessibility.IUIAutomationElement** element); 2487 unsafe winmdroot.Foundation.HRESULT GetRootElementBuildCache(winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** root); 2490 unsafe winmdroot.Foundation.HRESULT ElementFromHandleBuildCache(winmdroot.Foundation.HWND hwnd, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** element); 2493 unsafe winmdroot.Foundation.HRESULT ElementFromPointBuildCache(global::System.Drawing.Point pt, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** element); 2496 unsafe winmdroot.Foundation.HRESULT GetFocusedElementBuildCache(winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** element); 2499 unsafe winmdroot.Foundation.HRESULT CreateTreeWalker(winmdroot.UI.Accessibility.IUIAutomationCondition* pCondition, winmdroot.UI.Accessibility.IUIAutomationTreeWalker** walker); 2532 unsafe winmdroot.Foundation.HRESULT CreateCacheRequest(winmdroot.UI.Accessibility.IUIAutomationCacheRequest** cacheRequest); 2535 unsafe winmdroot.Foundation.HRESULT CreateTrueCondition(winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2538 unsafe winmdroot.Foundation.HRESULT CreateFalseCondition(winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2541 unsafe winmdroot.Foundation.HRESULT CreatePropertyCondition(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT value, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2544 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); 2547 unsafe winmdroot.Foundation.HRESULT CreateAndCondition(winmdroot.UI.Accessibility.IUIAutomationCondition* condition1, winmdroot.UI.Accessibility.IUIAutomationCondition* condition2, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2550 unsafe winmdroot.Foundation.HRESULT CreateAndConditionFromArray(winmdroot.System.Com.SAFEARRAY* conditions, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2553 unsafe winmdroot.Foundation.HRESULT CreateAndConditionFromNativeArray(winmdroot.UI.Accessibility.IUIAutomationCondition** conditions, int conditionCount, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2556 unsafe winmdroot.Foundation.HRESULT CreateOrCondition(winmdroot.UI.Accessibility.IUIAutomationCondition* condition1, winmdroot.UI.Accessibility.IUIAutomationCondition* condition2, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2559 unsafe winmdroot.Foundation.HRESULT CreateOrConditionFromArray(winmdroot.System.Com.SAFEARRAY* conditions, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2562 unsafe winmdroot.Foundation.HRESULT CreateOrConditionFromNativeArray(winmdroot.UI.Accessibility.IUIAutomationCondition** conditions, int conditionCount, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2565 unsafe winmdroot.Foundation.HRESULT CreateNotCondition(winmdroot.UI.Accessibility.IUIAutomationCondition* condition, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2568 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); 2571 unsafe winmdroot.Foundation.HRESULT RemoveAutomationEventHandler(winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationEventHandler* handler); 2574 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); 2577 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); 2580 unsafe winmdroot.Foundation.HRESULT RemovePropertyChangedEventHandler(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* handler); 2583 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); 2586 unsafe winmdroot.Foundation.HRESULT RemoveStructureChangedEventHandler(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationStructureChangedEventHandler* handler); 2589 unsafe winmdroot.Foundation.HRESULT AddFocusChangedEventHandler(winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationFocusChangedEventHandler* handler); 2592 unsafe winmdroot.Foundation.HRESULT RemoveFocusChangedEventHandler(winmdroot.UI.Accessibility.IUIAutomationFocusChangedEventHandler* handler); 2595winmdroot.Foundation.HRESULT RemoveAllEventHandlers(); 2598 unsafe winmdroot.Foundation.HRESULT IntNativeArrayToSafeArray(int* array, int arrayCount, winmdroot.System.Com.SAFEARRAY** safeArray); 2601 unsafe winmdroot.Foundation.HRESULT IntSafeArrayToNativeArray(winmdroot.System.Com.SAFEARRAY* intArray, int** array, int* arrayCount); 2604 unsafe winmdroot.Foundation.HRESULT RectToVariant(winmdroot.Foundation.RECT rc, winmdroot.System.Variant.VARIANT* var); 2607 unsafe winmdroot.Foundation.HRESULT VariantToRect(winmdroot.System.Variant.VARIANT var, winmdroot.Foundation.RECT* rc); 2610 unsafe winmdroot.Foundation.HRESULT SafeArrayToRectNativeArray(winmdroot.System.Com.SAFEARRAY* rects, winmdroot.Foundation.RECT** rectArray, int* rectArrayCount); 2613 unsafe winmdroot.Foundation.HRESULT CreateProxyFactoryEntry(winmdroot.UI.Accessibility.IUIAutomationProxyFactory* factory, winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry** factoryEntry); 2621 unsafe winmdroot.Foundation.HRESULT GetPropertyProgrammaticName(winmdroot.UI.Accessibility.UIA_PROPERTY_ID property, winmdroot.Foundation.BSTR* name); 2624 unsafe winmdroot.Foundation.HRESULT GetPatternProgrammaticName(winmdroot.UI.Accessibility.UIA_PATTERN_ID pattern, winmdroot.Foundation.BSTR* name); 2627 unsafe winmdroot.Foundation.HRESULT PollForPotentialSupportedPatterns(winmdroot.UI.Accessibility.IUIAutomationElement* pElement, winmdroot.System.Com.SAFEARRAY** patternIds, winmdroot.System.Com.SAFEARRAY** patternNames); 2630 unsafe winmdroot.Foundation.HRESULT PollForPotentialSupportedProperties(winmdroot.UI.Accessibility.IUIAutomationElement* pElement, winmdroot.System.Com.SAFEARRAY** propertyIds, winmdroot.System.Com.SAFEARRAY** propertyNames); 2633 unsafe winmdroot.Foundation.HRESULT CheckNotSupported(winmdroot.System.Variant.VARIANT value, winmdroot.Foundation.BOOL* isNotSupported); 2646 unsafe winmdroot.Foundation.HRESULT ElementFromIAccessible(winmdroot.UI.Accessibility.IAccessible* accessible, int childId, winmdroot.UI.Accessibility.IUIAutomationElement** element); 2649 unsafe winmdroot.Foundation.HRESULT ElementFromIAccessibleBuildCache(winmdroot.UI.Accessibility.IAccessible* accessible, int childId, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** element);
_generated\262\Windows.Win32.IUIAutomationCacheRequest.g.cs (61)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT AddProperty(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 90 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), propertyId).ThrowOnFailure(); 96 private static winmdroot.Foundation.HRESULT AddPattern(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId) 100 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 109 return (winmdroot.Foundation.HRESULT)ex.HResult; 124 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), patternId).ThrowOnFailure(); 130 private static winmdroot.Foundation.HRESULT Clone(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.IUIAutomationCacheRequest** clonedRequest) 134 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 143 return (winmdroot.Foundation.HRESULT)ex.HResult; 157 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 164 private static winmdroot.Foundation.HRESULT get_TreeScope(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.TreeScope* scope) 168 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 174 return winmdroot.Foundation.HRESULT.S_OK; 178 return (winmdroot.Foundation.HRESULT)ex.HResult; 189 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.TreeScope* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 194 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.TreeScope ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 201 private static winmdroot.Foundation.HRESULT put_TreeScope(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.TreeScope scope) 205 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 211 return winmdroot.Foundation.HRESULT.S_OK; 215 return (winmdroot.Foundation.HRESULT)ex.HResult; 222 private static winmdroot.Foundation.HRESULT get_TreeFilter(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** filter) 226 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 232 return winmdroot.Foundation.HRESULT.S_OK; 236 return (winmdroot.Foundation.HRESULT)ex.HResult; 249 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 254 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 261 private static winmdroot.Foundation.HRESULT put_TreeFilter(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition* filter) 265 winmdroot.Foundation.HRESULT __hr = winmdroot.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 get_AutomationElementMode(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.AutomationElementMode* mode) 286 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 292 return winmdroot.Foundation.HRESULT.S_OK; 296 return (winmdroot.Foundation.HRESULT)ex.HResult; 310 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.AutomationElementMode* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 315 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.AutomationElementMode ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 322 private static winmdroot.Foundation.HRESULT put_AutomationElementMode(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.AutomationElementMode mode) 326 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 332 return winmdroot.Foundation.HRESULT.S_OK; 336 return (winmdroot.Foundation.HRESULT)ex.HResult; 340 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 346 var hr = this.QueryInterface(&guid, &pv); 363 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 369 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.HRESULT> AddProperty_4; 371 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.Foundation.HRESULT> AddPattern_5; 373 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest** ,winmdroot.Foundation.HRESULT> Clone_6; 375 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.TreeScope* ,winmdroot.Foundation.HRESULT> get_TreeScope_7; 377 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.TreeScope ,winmdroot.Foundation.HRESULT> put_TreeScope_8; 379 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> get_TreeFilter_9; 381 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.Foundation.HRESULT> put_TreeFilter_10; 383 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.AutomationElementMode* ,winmdroot.Foundation.HRESULT> get_AutomationElementMode_11; 385 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.AutomationElementMode ,winmdroot.Foundation.HRESULT> put_AutomationElementMode_12; 420winmdroot.Foundation.HRESULT AddProperty(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId); 423winmdroot.Foundation.HRESULT AddPattern(winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId); 426 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.UI.Accessibility.IUIAutomationCacheRequest** clonedRequest);
_generated\263\Windows.Win32.IUIAutomationCondition.g.cs (7)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IUIAutomationCondition*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationCondition*)Unsafe.AsPointer(ref this), riid, ppvObject); 57 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 63 var hr = this.QueryInterface(&guid, &pv); 80 internal delegate *unmanaged [Stdcall]<IUIAutomationCondition*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1;
_generated\264\Windows.Win32.IUIAutomationElement.g.cs (509)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationElement*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT SetFocus(IUIAutomationElement* pThis) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 84 public winmdroot.Foundation.HRESULT SetFocus() 86 return ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationElement*)Unsafe.AsPointer(ref this)); 92 private static winmdroot.Foundation.HRESULT GetRuntimeId(IUIAutomationElement* pThis, winmdroot.System.Com.SAFEARRAY** runtimeId) 96 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 120 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 127 private static winmdroot.Foundation.HRESULT FindFirst(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCondition* condition, winmdroot.UI.Accessibility.IUIAutomationElement** found) 131 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 140 return (winmdroot.Foundation.HRESULT)ex.HResult; 159 ((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(); 166 private static winmdroot.Foundation.HRESULT FindAll(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCondition* condition, winmdroot.UI.Accessibility.IUIAutomationElementArray** found) 170 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 179 return (winmdroot.Foundation.HRESULT)ex.HResult; 198 ((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(); 205 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) 209 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 218 return (winmdroot.Foundation.HRESULT)ex.HResult; 241 ((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(); 248 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) 252 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 261 return (winmdroot.Foundation.HRESULT)ex.HResult; 284 ((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(); 291 private static winmdroot.Foundation.HRESULT BuildUpdatedCache(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** updatedElement) 295 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 304 return (winmdroot.Foundation.HRESULT)ex.HResult; 320 ((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(); 327 private static winmdroot.Foundation.HRESULT GetCurrentPropertyValue(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* retVal) 331 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 340 return (winmdroot.Foundation.HRESULT)ex.HResult; 356 ((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(); 363 private static winmdroot.Foundation.HRESULT GetCurrentPropertyValueEx(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue, winmdroot.System.Variant.VARIANT* retVal) 367 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 376 return (winmdroot.Foundation.HRESULT)ex.HResult; 399 ((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(); 406 private static winmdroot.Foundation.HRESULT GetCachedPropertyValue(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* retVal) 410 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 419 return (winmdroot.Foundation.HRESULT)ex.HResult; 435 ((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(); 442 private static winmdroot.Foundation.HRESULT GetCachedPropertyValueEx(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue, winmdroot.System.Variant.VARIANT* retVal) 446 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 455 return (winmdroot.Foundation.HRESULT)ex.HResult; 478 ((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(); 496 private static winmdroot.Foundation.HRESULT GetCurrentPatternAs(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, global::System.Guid* riid, void** patternObject) 500 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 509 return (winmdroot.Foundation.HRESULT)ex.HResult; 529 ((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(); 547 private static winmdroot.Foundation.HRESULT GetCachedPatternAs(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, global::System.Guid* riid, void** patternObject) 551 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 560 return (winmdroot.Foundation.HRESULT)ex.HResult; 580 ((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(); 587 private static winmdroot.Foundation.HRESULT GetCurrentPattern(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, winmdroot.System.Com.IUnknown** patternObject) 591 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 600 return (winmdroot.Foundation.HRESULT)ex.HResult; 619 ((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(); 626 private static winmdroot.Foundation.HRESULT GetCachedPattern(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, winmdroot.System.Com.IUnknown** patternObject) 630 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 639 return (winmdroot.Foundation.HRESULT)ex.HResult; 657 ((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(); 664 private static winmdroot.Foundation.HRESULT GetCachedParent(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElement** parent) 668 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 677 return (winmdroot.Foundation.HRESULT)ex.HResult; 691 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 698 private static winmdroot.Foundation.HRESULT GetCachedChildren(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElementArray** children) 702 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 711 return (winmdroot.Foundation.HRESULT)ex.HResult; 726 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 733 private static winmdroot.Foundation.HRESULT get_CurrentProcessId(IUIAutomationElement* pThis, int* retVal) 737 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 743 return winmdroot.Foundation.HRESULT.S_OK; 747 return (winmdroot.Foundation.HRESULT)ex.HResult; 760 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 768 private static winmdroot.Foundation.HRESULT get_CurrentControlType(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_CONTROLTYPE_ID* retVal) 772 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 778 return winmdroot.Foundation.HRESULT.S_OK; 782 return (winmdroot.Foundation.HRESULT)ex.HResult; 796 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_CONTROLTYPE_ID* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 804 private static winmdroot.Foundation.HRESULT get_CurrentLocalizedControlType(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 808 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 814 return winmdroot.Foundation.HRESULT.S_OK; 818 return (winmdroot.Foundation.HRESULT)ex.HResult; 831 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 838 internal unsafe winmdroot.Foundation.HRESULT get_CurrentName(out winmdroot.Foundation.BSTR retVal) 842 winmdroot.Foundation.HRESULT __result = this.get_CurrentName(retValLocal); 850 private static winmdroot.Foundation.HRESULT get_CurrentName(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 854 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 863 return (winmdroot.Foundation.HRESULT)ex.HResult; 869 public unsafe winmdroot.Foundation.HRESULT get_CurrentName(winmdroot.Foundation.BSTR* retVal) 871 return ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IUIAutomationElement*)Unsafe.AsPointer(ref this), retVal); 877 private static winmdroot.Foundation.HRESULT get_CurrentAcceleratorKey(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 881 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 887 return winmdroot.Foundation.HRESULT.S_OK; 891 return (winmdroot.Foundation.HRESULT)ex.HResult; 904 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 912 private static winmdroot.Foundation.HRESULT get_CurrentAccessKey(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 916 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 922 return winmdroot.Foundation.HRESULT.S_OK; 926 return (winmdroot.Foundation.HRESULT)ex.HResult; 937 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 945 private static winmdroot.Foundation.HRESULT get_CurrentHasKeyboardFocus(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 949 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 955 return winmdroot.Foundation.HRESULT.S_OK; 959 return (winmdroot.Foundation.HRESULT)ex.HResult; 972 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 980 private static winmdroot.Foundation.HRESULT get_CurrentIsKeyboardFocusable(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 984 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 990 return winmdroot.Foundation.HRESULT.S_OK; 994 return (winmdroot.Foundation.HRESULT)ex.HResult; 1007 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1015 private static winmdroot.Foundation.HRESULT get_CurrentIsEnabled(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 1019 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1025 return winmdroot.Foundation.HRESULT.S_OK; 1029 return (winmdroot.Foundation.HRESULT)ex.HResult; 1042 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1050 private static winmdroot.Foundation.HRESULT get_CurrentAutomationId(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1054 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1060 return winmdroot.Foundation.HRESULT.S_OK; 1064 return (winmdroot.Foundation.HRESULT)ex.HResult; 1075 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1083 private static winmdroot.Foundation.HRESULT get_CurrentClassName(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1087 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1093 return winmdroot.Foundation.HRESULT.S_OK; 1097 return (winmdroot.Foundation.HRESULT)ex.HResult; 1108 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1116 private static winmdroot.Foundation.HRESULT get_CurrentHelpText(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1120 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1126 return winmdroot.Foundation.HRESULT.S_OK; 1130 return (winmdroot.Foundation.HRESULT)ex.HResult; 1144 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1152 private static winmdroot.Foundation.HRESULT get_CurrentCulture(IUIAutomationElement* pThis, int* retVal) 1156 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1162 return winmdroot.Foundation.HRESULT.S_OK; 1166 return (winmdroot.Foundation.HRESULT)ex.HResult; 1179 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1187 private static winmdroot.Foundation.HRESULT get_CurrentIsControlElement(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 1191 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1197 return winmdroot.Foundation.HRESULT.S_OK; 1201 return (winmdroot.Foundation.HRESULT)ex.HResult; 1214 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1222 private static winmdroot.Foundation.HRESULT get_CurrentIsContentElement(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 1226 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1232 return winmdroot.Foundation.HRESULT.S_OK; 1236 return (winmdroot.Foundation.HRESULT)ex.HResult; 1247 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1255 private static winmdroot.Foundation.HRESULT get_CurrentIsPassword(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 1259 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1265 return winmdroot.Foundation.HRESULT.S_OK; 1269 return (winmdroot.Foundation.HRESULT)ex.HResult; 1280 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1288 private static winmdroot.Foundation.HRESULT get_CurrentNativeWindowHandle(IUIAutomationElement* pThis, winmdroot.Foundation.HWND* retVal) 1292 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1298 return winmdroot.Foundation.HRESULT.S_OK; 1302 return (winmdroot.Foundation.HRESULT)ex.HResult; 1315 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1323 private static winmdroot.Foundation.HRESULT get_CurrentItemType(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1327 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1333 return winmdroot.Foundation.HRESULT.S_OK; 1337 return (winmdroot.Foundation.HRESULT)ex.HResult; 1348 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1356 private static winmdroot.Foundation.HRESULT get_CurrentIsOffscreen(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 1360 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1366 return winmdroot.Foundation.HRESULT.S_OK; 1370 return (winmdroot.Foundation.HRESULT)ex.HResult; 1383 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1391 private static winmdroot.Foundation.HRESULT get_CurrentOrientation(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.OrientationType* retVal) 1395 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1401 return winmdroot.Foundation.HRESULT.S_OK; 1405 return (winmdroot.Foundation.HRESULT)ex.HResult; 1416 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.OrientationType* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1424 private static winmdroot.Foundation.HRESULT get_CurrentFrameworkId(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1428 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1434 return winmdroot.Foundation.HRESULT.S_OK; 1438 return (winmdroot.Foundation.HRESULT)ex.HResult; 1451 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1459 private static winmdroot.Foundation.HRESULT get_CurrentIsRequiredForForm(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 1463 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1469 return winmdroot.Foundation.HRESULT.S_OK; 1473 return (winmdroot.Foundation.HRESULT)ex.HResult; 1486 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1494 private static winmdroot.Foundation.HRESULT get_CurrentItemStatus(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1498 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1504 return winmdroot.Foundation.HRESULT.S_OK; 1508 return (winmdroot.Foundation.HRESULT)ex.HResult; 1519 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1526 internal unsafe winmdroot.Foundation.HRESULT get_CurrentBoundingRectangle(out winmdroot.Foundation.RECT retVal) 1530 winmdroot.Foundation.HRESULT __result = this.get_CurrentBoundingRectangle(retValLocal); 1538 private static winmdroot.Foundation.HRESULT get_CurrentBoundingRectangle(IUIAutomationElement* pThis, winmdroot.Foundation.RECT* retVal) 1542 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1551 return (winmdroot.Foundation.HRESULT)ex.HResult; 1559 public unsafe winmdroot.Foundation.HRESULT get_CurrentBoundingRectangle(winmdroot.Foundation.RECT* retVal) 1561 return ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IUIAutomationElement*)Unsafe.AsPointer(ref this), retVal); 1567 private static winmdroot.Foundation.HRESULT get_CurrentLabeledBy(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElement** retVal) 1571 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1577 return winmdroot.Foundation.HRESULT.S_OK; 1581 return (winmdroot.Foundation.HRESULT)ex.HResult; 1595 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1603 private static winmdroot.Foundation.HRESULT get_CurrentAriaRole(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1607 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1613 return winmdroot.Foundation.HRESULT.S_OK; 1617 return (winmdroot.Foundation.HRESULT)ex.HResult; 1630 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1638 private static winmdroot.Foundation.HRESULT get_CurrentAriaProperties(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1642 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1648 return winmdroot.Foundation.HRESULT.S_OK; 1652 return (winmdroot.Foundation.HRESULT)ex.HResult; 1665 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1673 private static winmdroot.Foundation.HRESULT get_CurrentIsDataValidForForm(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 1677 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1683 return winmdroot.Foundation.HRESULT.S_OK; 1687 return (winmdroot.Foundation.HRESULT)ex.HResult; 1700 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1708 private static winmdroot.Foundation.HRESULT get_CurrentControllerFor(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElementArray** retVal) 1712 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1718 return winmdroot.Foundation.HRESULT.S_OK; 1722 return (winmdroot.Foundation.HRESULT)ex.HResult; 1735 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1743 private static winmdroot.Foundation.HRESULT get_CurrentDescribedBy(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElementArray** retVal) 1747 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1753 return winmdroot.Foundation.HRESULT.S_OK; 1757 return (winmdroot.Foundation.HRESULT)ex.HResult; 1768 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1776 private static winmdroot.Foundation.HRESULT get_CurrentFlowsTo(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElementArray** retVal) 1780 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1786 return winmdroot.Foundation.HRESULT.S_OK; 1790 return (winmdroot.Foundation.HRESULT)ex.HResult; 1801 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1809 private static winmdroot.Foundation.HRESULT get_CurrentProviderDescription(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1813 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1819 return winmdroot.Foundation.HRESULT.S_OK; 1823 return (winmdroot.Foundation.HRESULT)ex.HResult; 1836 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1844 private static winmdroot.Foundation.HRESULT get_CachedProcessId(IUIAutomationElement* pThis, int* retVal) 1848 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1854 return winmdroot.Foundation.HRESULT.S_OK; 1858 return (winmdroot.Foundation.HRESULT)ex.HResult; 1871 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1879 private static winmdroot.Foundation.HRESULT get_CachedControlType(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_CONTROLTYPE_ID* retVal) 1883 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1889 return winmdroot.Foundation.HRESULT.S_OK; 1893 return (winmdroot.Foundation.HRESULT)ex.HResult; 1904 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_CONTROLTYPE_ID* ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1912 private static winmdroot.Foundation.HRESULT get_CachedLocalizedControlType(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1916 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1922 return winmdroot.Foundation.HRESULT.S_OK; 1926 return (winmdroot.Foundation.HRESULT)ex.HResult; 1939 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1947 private static winmdroot.Foundation.HRESULT get_CachedName(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1951 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1957 return winmdroot.Foundation.HRESULT.S_OK; 1961 return (winmdroot.Foundation.HRESULT)ex.HResult; 1972 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1980 private static winmdroot.Foundation.HRESULT get_CachedAcceleratorKey(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1984 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1990 return winmdroot.Foundation.HRESULT.S_OK; 1994 return (winmdroot.Foundation.HRESULT)ex.HResult; 2007 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2015 private static winmdroot.Foundation.HRESULT get_CachedAccessKey(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2019 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2025 return winmdroot.Foundation.HRESULT.S_OK; 2029 return (winmdroot.Foundation.HRESULT)ex.HResult; 2040 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2048 private static winmdroot.Foundation.HRESULT get_CachedHasKeyboardFocus(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2052 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2058 return winmdroot.Foundation.HRESULT.S_OK; 2062 return (winmdroot.Foundation.HRESULT)ex.HResult; 2075 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2083 private static winmdroot.Foundation.HRESULT get_CachedIsKeyboardFocusable(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2087 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2093 return winmdroot.Foundation.HRESULT.S_OK; 2097 return (winmdroot.Foundation.HRESULT)ex.HResult; 2110 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2118 private static winmdroot.Foundation.HRESULT get_CachedIsEnabled(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2122 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2128 return winmdroot.Foundation.HRESULT.S_OK; 2132 return (winmdroot.Foundation.HRESULT)ex.HResult; 2145 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2153 private static winmdroot.Foundation.HRESULT get_CachedAutomationId(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2157 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2163 return winmdroot.Foundation.HRESULT.S_OK; 2167 return (winmdroot.Foundation.HRESULT)ex.HResult; 2178 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2186 private static winmdroot.Foundation.HRESULT get_CachedClassName(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2190 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2196 return winmdroot.Foundation.HRESULT.S_OK; 2200 return (winmdroot.Foundation.HRESULT)ex.HResult; 2211 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2219 private static winmdroot.Foundation.HRESULT get_CachedHelpText(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2223 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2229 return winmdroot.Foundation.HRESULT.S_OK; 2233 return (winmdroot.Foundation.HRESULT)ex.HResult; 2247 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2255 private static winmdroot.Foundation.HRESULT get_CachedCulture(IUIAutomationElement* pThis, int* retVal) 2259 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2265 return winmdroot.Foundation.HRESULT.S_OK; 2269 return (winmdroot.Foundation.HRESULT)ex.HResult; 2282 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2290 private static winmdroot.Foundation.HRESULT get_CachedIsControlElement(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2294 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2300 return winmdroot.Foundation.HRESULT.S_OK; 2304 return (winmdroot.Foundation.HRESULT)ex.HResult; 2315 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2323 private static winmdroot.Foundation.HRESULT get_CachedIsContentElement(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2327 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2333 return winmdroot.Foundation.HRESULT.S_OK; 2337 return (winmdroot.Foundation.HRESULT)ex.HResult; 2348 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2356 private static winmdroot.Foundation.HRESULT get_CachedIsPassword(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2360 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2366 return winmdroot.Foundation.HRESULT.S_OK; 2370 return (winmdroot.Foundation.HRESULT)ex.HResult; 2381 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2389 private static winmdroot.Foundation.HRESULT get_CachedNativeWindowHandle(IUIAutomationElement* pThis, winmdroot.Foundation.HWND* retVal) 2393 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2399 return winmdroot.Foundation.HRESULT.S_OK; 2403 return (winmdroot.Foundation.HRESULT)ex.HResult; 2416 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2424 private static winmdroot.Foundation.HRESULT get_CachedItemType(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2428 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2434 return winmdroot.Foundation.HRESULT.S_OK; 2438 return (winmdroot.Foundation.HRESULT)ex.HResult; 2449 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2457 private static winmdroot.Foundation.HRESULT get_CachedIsOffscreen(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2461 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2467 return winmdroot.Foundation.HRESULT.S_OK; 2471 return (winmdroot.Foundation.HRESULT)ex.HResult; 2484 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2492 private static winmdroot.Foundation.HRESULT get_CachedOrientation(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.OrientationType* retVal) 2496 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2502 return winmdroot.Foundation.HRESULT.S_OK; 2506 return (winmdroot.Foundation.HRESULT)ex.HResult; 2517 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.OrientationType* ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2525 private static winmdroot.Foundation.HRESULT get_CachedFrameworkId(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2529 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2535 return winmdroot.Foundation.HRESULT.S_OK; 2539 return (winmdroot.Foundation.HRESULT)ex.HResult; 2552 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2560 private static winmdroot.Foundation.HRESULT get_CachedIsRequiredForForm(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2564 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2570 return winmdroot.Foundation.HRESULT.S_OK; 2574 return (winmdroot.Foundation.HRESULT)ex.HResult; 2587 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2595 private static winmdroot.Foundation.HRESULT get_CachedItemStatus(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2599 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2605 return winmdroot.Foundation.HRESULT.S_OK; 2609 return (winmdroot.Foundation.HRESULT)ex.HResult; 2620 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2628 private static winmdroot.Foundation.HRESULT get_CachedBoundingRectangle(IUIAutomationElement* pThis, winmdroot.Foundation.RECT* retVal) 2632 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2638 return winmdroot.Foundation.HRESULT.S_OK; 2642 return (winmdroot.Foundation.HRESULT)ex.HResult; 2655 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2663 private static winmdroot.Foundation.HRESULT get_CachedLabeledBy(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElement** retVal) 2667 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2673 return winmdroot.Foundation.HRESULT.S_OK; 2677 return (winmdroot.Foundation.HRESULT)ex.HResult; 2691 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2699 private static winmdroot.Foundation.HRESULT get_CachedAriaRole(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2703 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2709 return winmdroot.Foundation.HRESULT.S_OK; 2713 return (winmdroot.Foundation.HRESULT)ex.HResult; 2726 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2734 private static winmdroot.Foundation.HRESULT get_CachedAriaProperties(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2738 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2744 return winmdroot.Foundation.HRESULT.S_OK; 2748 return (winmdroot.Foundation.HRESULT)ex.HResult; 2761 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2769 private static winmdroot.Foundation.HRESULT get_CachedIsDataValidForForm(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2773 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2779 return winmdroot.Foundation.HRESULT.S_OK; 2783 return (winmdroot.Foundation.HRESULT)ex.HResult; 2796 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[79])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2804 private static winmdroot.Foundation.HRESULT get_CachedControllerFor(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElementArray** retVal) 2808 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2814 return winmdroot.Foundation.HRESULT.S_OK; 2818 return (winmdroot.Foundation.HRESULT)ex.HResult; 2831 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[80])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2839 private static winmdroot.Foundation.HRESULT get_CachedDescribedBy(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElementArray** retVal) 2843 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2849 return winmdroot.Foundation.HRESULT.S_OK; 2853 return (winmdroot.Foundation.HRESULT)ex.HResult; 2864 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2872 private static winmdroot.Foundation.HRESULT get_CachedFlowsTo(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElementArray** retVal) 2876 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2882 return winmdroot.Foundation.HRESULT.S_OK; 2886 return (winmdroot.Foundation.HRESULT)ex.HResult; 2897 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2905 private static winmdroot.Foundation.HRESULT get_CachedProviderDescription(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2909 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2915 return winmdroot.Foundation.HRESULT.S_OK; 2919 return (winmdroot.Foundation.HRESULT)ex.HResult; 2932 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2939 internal unsafe winmdroot.Foundation.HRESULT GetClickablePoint(out global::System.Drawing.Point clickable, out winmdroot.Foundation.BOOL gotClickable) 2945 winmdroot.Foundation.HRESULT __result = this.GetClickablePoint(clickableLocal, gotClickableLocal); 2954 private static winmdroot.Foundation.HRESULT GetClickablePoint(IUIAutomationElement* pThis, global::System.Drawing.Point* clickable, winmdroot.Foundation.BOOL* gotClickable) 2958 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2967 return (winmdroot.Foundation.HRESULT)ex.HResult; 2988 public unsafe winmdroot.Foundation.HRESULT GetClickablePoint(global::System.Drawing.Point* clickable, winmdroot.Foundation.BOOL* gotClickable) 2990 return ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,global::System.Drawing.Point* ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IUIAutomationElement*)Unsafe.AsPointer(ref this), clickable, gotClickable); 2993 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2999 var hr = this.QueryInterface(&guid, &pv); 3016 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 3022 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.HRESULT> SetFocus_4; 3024 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetRuntimeId_5; 3026 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> FindFirst_6; 3028 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> FindAll_7; 3030 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; 3032 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; 3034 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> BuildUpdatedCache_10; 3036 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetCurrentPropertyValue_11; 3038 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BOOL ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetCurrentPropertyValueEx_12; 3040 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetCachedPropertyValue_13; 3042 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BOOL ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetCachedPropertyValueEx_14; 3044 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> GetCurrentPatternAs_15; 3046 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> GetCachedPatternAs_16; 3048 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> GetCurrentPattern_17; 3050 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> GetCachedPattern_18; 3052 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetCachedParent_19; 3054 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> GetCachedChildren_20; 3056 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,int* ,winmdroot.Foundation.HRESULT> get_CurrentProcessId_21; 3058 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_CONTROLTYPE_ID* ,winmdroot.Foundation.HRESULT> get_CurrentControlType_22; 3060 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentLocalizedControlType_23; 3062 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentName_24; 3064 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentAcceleratorKey_25; 3066 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentAccessKey_26; 3068 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentHasKeyboardFocus_27; 3070 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentIsKeyboardFocusable_28; 3072 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentIsEnabled_29; 3074 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentAutomationId_30; 3076 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentClassName_31; 3078 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentHelpText_32; 3080 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,int* ,winmdroot.Foundation.HRESULT> get_CurrentCulture_33; 3082 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentIsControlElement_34; 3084 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentIsContentElement_35; 3086 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentIsPassword_36; 3088 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> get_CurrentNativeWindowHandle_37; 3090 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentItemType_38; 3092 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentIsOffscreen_39; 3094 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.OrientationType* ,winmdroot.Foundation.HRESULT> get_CurrentOrientation_40; 3096 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentFrameworkId_41; 3098 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentIsRequiredForForm_42; 3100 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentItemStatus_43; 3102 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> get_CurrentBoundingRectangle_44; 3104 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> get_CurrentLabeledBy_45; 3106 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentAriaRole_46; 3108 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentAriaProperties_47; 3110 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentIsDataValidForForm_48; 3112 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> get_CurrentControllerFor_49; 3114 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> get_CurrentDescribedBy_50; 3116 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> get_CurrentFlowsTo_51; 3118 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentProviderDescription_52; 3120 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,int* ,winmdroot.Foundation.HRESULT> get_CachedProcessId_53; 3122 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_CONTROLTYPE_ID* ,winmdroot.Foundation.HRESULT> get_CachedControlType_54; 3124 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedLocalizedControlType_55; 3126 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedName_56; 3128 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedAcceleratorKey_57; 3130 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedAccessKey_58; 3132 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedHasKeyboardFocus_59; 3134 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedIsKeyboardFocusable_60; 3136 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedIsEnabled_61; 3138 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedAutomationId_62; 3140 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedClassName_63; 3142 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedHelpText_64; 3144 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,int* ,winmdroot.Foundation.HRESULT> get_CachedCulture_65; 3146 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedIsControlElement_66; 3148 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedIsContentElement_67; 3150 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedIsPassword_68; 3152 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> get_CachedNativeWindowHandle_69; 3154 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedItemType_70; 3156 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedIsOffscreen_71; 3158 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.OrientationType* ,winmdroot.Foundation.HRESULT> get_CachedOrientation_72; 3160 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedFrameworkId_73; 3162 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedIsRequiredForForm_74; 3164 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedItemStatus_75; 3166 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> get_CachedBoundingRectangle_76; 3168 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> get_CachedLabeledBy_77; 3170 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedAriaRole_78; 3172 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedAriaProperties_79; 3174 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedIsDataValidForForm_80; 3176 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> get_CachedControllerFor_81; 3178 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> get_CachedDescribedBy_82; 3180 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> get_CachedFlowsTo_83; 3182 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedProviderDescription_84; 3184 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,global::System.Drawing.Point* ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> GetClickablePoint_85; 3292winmdroot.Foundation.HRESULT SetFocus(); 3295 unsafe winmdroot.Foundation.HRESULT GetRuntimeId(winmdroot.System.Com.SAFEARRAY** runtimeId); 3298 unsafe winmdroot.Foundation.HRESULT FindFirst(winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCondition* condition, winmdroot.UI.Accessibility.IUIAutomationElement** found); 3301 unsafe winmdroot.Foundation.HRESULT FindAll(winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCondition* condition, winmdroot.UI.Accessibility.IUIAutomationElementArray** found); 3304 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); 3307 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); 3310 unsafe winmdroot.Foundation.HRESULT BuildUpdatedCache(winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** updatedElement); 3313 unsafe winmdroot.Foundation.HRESULT GetCurrentPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* retVal); 3316 unsafe winmdroot.Foundation.HRESULT GetCurrentPropertyValueEx(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue, winmdroot.System.Variant.VARIANT* retVal); 3319 unsafe winmdroot.Foundation.HRESULT GetCachedPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* retVal); 3322 unsafe winmdroot.Foundation.HRESULT GetCachedPropertyValueEx(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue, winmdroot.System.Variant.VARIANT* retVal); 3325 unsafe winmdroot.Foundation.HRESULT GetCurrentPatternAs(winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, global::System.Guid* riid, void** patternObject); 3328 unsafe winmdroot.Foundation.HRESULT GetCachedPatternAs(winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, global::System.Guid* riid, void** patternObject); 3331 unsafe winmdroot.Foundation.HRESULT GetCurrentPattern(winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, winmdroot.System.Com.IUnknown** patternObject); 3334 unsafe winmdroot.Foundation.HRESULT GetCachedPattern(winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, winmdroot.System.Com.IUnknown** patternObject); 3337 unsafe winmdroot.Foundation.HRESULT GetCachedParent(winmdroot.UI.Accessibility.IUIAutomationElement** parent); 3340 unsafe winmdroot.Foundation.HRESULT GetCachedChildren(winmdroot.UI.Accessibility.IUIAutomationElementArray** children); 3358 unsafe winmdroot.Foundation.HRESULT get_CurrentName(winmdroot.Foundation.BSTR* retVal); 3456 unsafe winmdroot.Foundation.HRESULT get_CurrentBoundingRectangle(winmdroot.Foundation.RECT* retVal); 3659 unsafe winmdroot.Foundation.HRESULT GetClickablePoint(global::System.Drawing.Point* clickable, winmdroot.Foundation.BOOL* gotClickable);
_generated\265\Windows.Win32.IUIAutomationElementArray.g.cs (19)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IUIAutomationElementArray*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationElementArray*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT get_Length(IUIAutomationElementArray* pThis, int* length) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 70 return winmdroot.Foundation.HRESULT.S_OK; 74 return (winmdroot.Foundation.HRESULT)ex.HResult; 87 ((delegate *unmanaged [Stdcall]<IUIAutomationElementArray*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationElementArray*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 95 private static winmdroot.Foundation.HRESULT GetElement(IUIAutomationElementArray* pThis, int index, winmdroot.UI.Accessibility.IUIAutomationElement** element) 99 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 108 return (winmdroot.Foundation.HRESULT)ex.HResult; 126 ((delegate *unmanaged [Stdcall]<IUIAutomationElementArray*,int ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IUIAutomationElementArray*)Unsafe.AsPointer(ref this), index, &__retVal).ThrowOnFailure(); 130 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 136 var hr = this.QueryInterface(&guid, &pv); 153 internal delegate *unmanaged [Stdcall]<IUIAutomationElementArray*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 159 internal delegate *unmanaged [Stdcall]<IUIAutomationElementArray*,int* ,winmdroot.Foundation.HRESULT> get_Length_4; 161 internal delegate *unmanaged [Stdcall]<IUIAutomationElementArray*,int ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetElement_5; 194 unsafe winmdroot.Foundation.HRESULT GetElement(int index, winmdroot.UI.Accessibility.IUIAutomationElement** element);
_generated\266\Windows.Win32.IUIAutomationEventHandler.g.cs (13)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IUIAutomationEventHandler*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationEventHandler*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT HandleAutomationEvent(IUIAutomationEventHandler* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* sender, winmdroot.UI.Accessibility.UIA_EVENT_ID eventId) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 ((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(); 99 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 105 var hr = this.QueryInterface(&guid, &pv); 122 internal delegate *unmanaged [Stdcall]<IUIAutomationEventHandler*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 128 internal delegate *unmanaged [Stdcall]<IUIAutomationEventHandler*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.UIA_EVENT_ID ,winmdroot.Foundation.HRESULT> HandleAutomationEvent_4; 155 unsafe winmdroot.Foundation.HRESULT HandleAutomationEvent(winmdroot.UI.Accessibility.IUIAutomationElement* sender, winmdroot.UI.Accessibility.UIA_EVENT_ID eventId);
_generated\267\Windows.Win32.IUIAutomationFocusChangedEventHandler.g.cs (13)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IUIAutomationFocusChangedEventHandler*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationFocusChangedEventHandler*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT HandleFocusChangedEvent(IUIAutomationFocusChangedEventHandler* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* sender) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 92 ((delegate *unmanaged [Stdcall]<IUIAutomationFocusChangedEventHandler*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationFocusChangedEventHandler*)Unsafe.AsPointer(ref this), sender).ThrowOnFailure(); 95 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 101 var hr = this.QueryInterface(&guid, &pv); 118 internal delegate *unmanaged [Stdcall]<IUIAutomationFocusChangedEventHandler*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 124 internal delegate *unmanaged [Stdcall]<IUIAutomationFocusChangedEventHandler*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.Foundation.HRESULT> HandleFocusChangedEvent_4; 151 unsafe winmdroot.Foundation.HRESULT HandleFocusChangedEvent(winmdroot.UI.Accessibility.IUIAutomationElement* sender);
_generated\268\Windows.Win32.IUIAutomationPropertyChangedEventHandler.g.cs (13)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IUIAutomationPropertyChangedEventHandler*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationPropertyChangedEventHandler*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 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) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 100 ((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(); 103 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 109 var hr = this.QueryInterface(&guid, &pv); 126 internal delegate *unmanaged [Stdcall]<IUIAutomationPropertyChangedEventHandler*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 132 internal delegate *unmanaged [Stdcall]<IUIAutomationPropertyChangedEventHandler*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> HandlePropertyChangedEvent_4; 159 unsafe winmdroot.Foundation.HRESULT HandlePropertyChangedEvent(winmdroot.UI.Accessibility.IUIAutomationElement* sender, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT newValue);
_generated\269\Windows.Win32.IUIAutomationProxyFactory.g.cs (19)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationProxyFactory*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT CreateProvider(IUIAutomationProxyFactory* pThis, winmdroot.Foundation.HWND hwnd, int idObject, int idChild, winmdroot.UI.Accessibility.IRawElementProviderSimple** provider) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 97 ((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(); 104 private static winmdroot.Foundation.HRESULT get_ProxyFactoryId(IUIAutomationProxyFactory* pThis, winmdroot.Foundation.BSTR* factoryId) 108 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 114 return winmdroot.Foundation.HRESULT.S_OK; 118 return (winmdroot.Foundation.HRESULT)ex.HResult; 131 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactory*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IUIAutomationProxyFactory*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 136 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 142 var hr = this.QueryInterface(&guid, &pv); 159 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 165 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactory*,winmdroot.Foundation.HWND ,int ,int ,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT> CreateProvider_4; 167 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactory*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_ProxyFactoryId_5; 195 unsafe winmdroot.Foundation.HRESULT CreateProvider(winmdroot.Foundation.HWND hwnd, int idObject, int idChild, winmdroot.UI.Accessibility.IRawElementProviderSimple** provider);
_generated\270\Windows.Win32.IUIAutomationProxyFactoryEntry.g.cs (85)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT get_ProxyFactory(IUIAutomationProxyFactoryEntry* pThis, winmdroot.UI.Accessibility.IUIAutomationProxyFactory** factory) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 70 return winmdroot.Foundation.HRESULT.S_OK; 74 return (winmdroot.Foundation.HRESULT)ex.HResult; 87 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.UI.Accessibility.IUIAutomationProxyFactory** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 95 private static winmdroot.Foundation.HRESULT get_ClassName(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BSTR* className) 99 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 108 return (winmdroot.Foundation.HRESULT)ex.HResult; 119 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 126 private static winmdroot.Foundation.HRESULT get_ImageName(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BSTR* imageName) 130 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 139 return (winmdroot.Foundation.HRESULT)ex.HResult; 150 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 157 private static winmdroot.Foundation.HRESULT get_AllowSubstringMatch(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BOOL* allowSubstringMatch) 161 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 170 return (winmdroot.Foundation.HRESULT)ex.HResult; 183 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 188 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 195 private static winmdroot.Foundation.HRESULT get_CanCheckBaseClass(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BOOL* canCheckBaseClass) 199 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 208 return (winmdroot.Foundation.HRESULT)ex.HResult; 221 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 226 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 233 private static winmdroot.Foundation.HRESULT get_NeedsAdviseEvents(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BOOL* adviseEvents) 237 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 246 return (winmdroot.Foundation.HRESULT)ex.HResult; 259 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 264 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 281 private static winmdroot.Foundation.HRESULT put_ClassName(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.PCWSTR className) 285 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 294 return (winmdroot.Foundation.HRESULT)ex.HResult; 304 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), className).ThrowOnFailure(); 320 private static winmdroot.Foundation.HRESULT put_ImageName(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.PCWSTR imageName) 324 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 333 return (winmdroot.Foundation.HRESULT)ex.HResult; 343 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), imageName).ThrowOnFailure(); 349 private static winmdroot.Foundation.HRESULT put_AllowSubstringMatch(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BOOL allowSubstringMatch) 353 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 362 return (winmdroot.Foundation.HRESULT)ex.HResult; 369 private static winmdroot.Foundation.HRESULT put_CanCheckBaseClass(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BOOL canCheckBaseClass) 373 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 382 return (winmdroot.Foundation.HRESULT)ex.HResult; 389 private static winmdroot.Foundation.HRESULT put_NeedsAdviseEvents(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BOOL adviseEvents) 393 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 402 return (winmdroot.Foundation.HRESULT)ex.HResult; 409 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) 413 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 422 return (winmdroot.Foundation.HRESULT)ex.HResult; 445 ((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(); 451 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) 455 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 464 return (winmdroot.Foundation.HRESULT)ex.HResult; 486 ((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(); 490 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 496 var hr = this.QueryInterface(&guid, &pv); 513 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 519 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.UI.Accessibility.IUIAutomationProxyFactory** ,winmdroot.Foundation.HRESULT> get_ProxyFactory_4; 521 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_ClassName_5; 523 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_ImageName_6; 525 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_AllowSubstringMatch_7; 527 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CanCheckBaseClass_8; 529 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_NeedsAdviseEvents_9; 531 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> put_ClassName_10; 533 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> put_ImageName_11; 535 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> put_AllowSubstringMatch_12; 537 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> put_CanCheckBaseClass_13; 539 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> put_NeedsAdviseEvents_14; 541 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; 543 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; 587 unsafe winmdroot.Foundation.HRESULT get_ClassName(winmdroot.Foundation.BSTR* className); 590 unsafe winmdroot.Foundation.HRESULT get_ImageName(winmdroot.Foundation.BSTR* imageName); 593 unsafe winmdroot.Foundation.HRESULT get_AllowSubstringMatch(winmdroot.Foundation.BOOL* allowSubstringMatch); 596 unsafe winmdroot.Foundation.HRESULT get_CanCheckBaseClass(winmdroot.Foundation.BOOL* canCheckBaseClass); 599 unsafe winmdroot.Foundation.HRESULT get_NeedsAdviseEvents(winmdroot.Foundation.BOOL* adviseEvents); 602winmdroot.Foundation.HRESULT put_ClassName(winmdroot.Foundation.PCWSTR className); 605winmdroot.Foundation.HRESULT put_ImageName(winmdroot.Foundation.PCWSTR imageName); 608winmdroot.Foundation.HRESULT put_AllowSubstringMatch(winmdroot.Foundation.BOOL allowSubstringMatch); 611winmdroot.Foundation.HRESULT put_CanCheckBaseClass(winmdroot.Foundation.BOOL canCheckBaseClass); 614winmdroot.Foundation.HRESULT put_NeedsAdviseEvents(winmdroot.Foundation.BOOL adviseEvents); 617 unsafe winmdroot.Foundation.HRESULT SetWinEventsForAutomationEvent(winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Com.SAFEARRAY* winEvents); 620 unsafe winmdroot.Foundation.HRESULT GetWinEventsForAutomationEvent(winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Com.SAFEARRAY** winEvents);
_generated\271\Windows.Win32.IUIAutomationProxyFactoryMapping.g.cs (61)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT get_Count(IUIAutomationProxyFactoryMapping* pThis, uint* count) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 70 return winmdroot.Foundation.HRESULT.S_OK; 74 return (winmdroot.Foundation.HRESULT)ex.HResult; 87 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 95 private static winmdroot.Foundation.HRESULT GetTable(IUIAutomationProxyFactoryMapping* pThis, winmdroot.System.Com.SAFEARRAY** table) 99 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 108 return (winmdroot.Foundation.HRESULT)ex.HResult; 122 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 129 private static winmdroot.Foundation.HRESULT GetEntry(IUIAutomationProxyFactoryMapping* pThis, uint index, winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry** entry) 133 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 142 return (winmdroot.Foundation.HRESULT)ex.HResult; 160 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint ,winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this), index, &__retVal).ThrowOnFailure(); 167 private static winmdroot.Foundation.HRESULT SetTable(IUIAutomationProxyFactoryMapping* pThis, winmdroot.System.Com.SAFEARRAY* factoryList) 171 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return (winmdroot.Foundation.HRESULT)ex.HResult; 197 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this), factoryList).ThrowOnFailure(); 203 private static winmdroot.Foundation.HRESULT InsertEntries(IUIAutomationProxyFactoryMapping* pThis, uint before, winmdroot.System.Com.SAFEARRAY* factoryList) 207 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 216 return (winmdroot.Foundation.HRESULT)ex.HResult; 237 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint ,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this), before, factoryList).ThrowOnFailure(); 243 private static winmdroot.Foundation.HRESULT InsertEntry(IUIAutomationProxyFactoryMapping* pThis, uint before, winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry* factory) 247 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 256 return (winmdroot.Foundation.HRESULT)ex.HResult; 277 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint ,winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this), before, factory).ThrowOnFailure(); 283 private static winmdroot.Foundation.HRESULT RemoveEntry(IUIAutomationProxyFactoryMapping* pThis, uint index) 287 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 296 return (winmdroot.Foundation.HRESULT)ex.HResult; 313 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this), index).ThrowOnFailure(); 319 private static winmdroot.Foundation.HRESULT ClearTable(IUIAutomationProxyFactoryMapping* pThis) 323 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 332 return (winmdroot.Foundation.HRESULT)ex.HResult; 345 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 351 private static winmdroot.Foundation.HRESULT RestoreDefaultTable(IUIAutomationProxyFactoryMapping* pThis) 355 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 364 return (winmdroot.Foundation.HRESULT)ex.HResult; 377 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 380 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 386 var hr = this.QueryInterface(&guid, &pv); 403 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 409 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint* ,winmdroot.Foundation.HRESULT> get_Count_4; 411 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetTable_5; 413 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint ,winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry** ,winmdroot.Foundation.HRESULT> GetEntry_6; 415 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT> SetTable_7; 417 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint ,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT> InsertEntries_8; 419 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint ,winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry* ,winmdroot.Foundation.HRESULT> InsertEntry_9; 421 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint ,winmdroot.Foundation.HRESULT> RemoveEntry_10; 423 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,winmdroot.Foundation.HRESULT> ClearTable_11; 425 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,winmdroot.Foundation.HRESULT> RestoreDefaultTable_12; 465 unsafe winmdroot.Foundation.HRESULT GetTable(winmdroot.System.Com.SAFEARRAY** table); 468 unsafe winmdroot.Foundation.HRESULT GetEntry(uint index, winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry** entry); 471 unsafe winmdroot.Foundation.HRESULT SetTable(winmdroot.System.Com.SAFEARRAY* factoryList); 474 unsafe winmdroot.Foundation.HRESULT InsertEntries(uint before, winmdroot.System.Com.SAFEARRAY* factoryList); 477 unsafe winmdroot.Foundation.HRESULT InsertEntry(uint before, winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry* factory); 480winmdroot.Foundation.HRESULT RemoveEntry(uint index); 483winmdroot.Foundation.HRESULT ClearTable(); 486winmdroot.Foundation.HRESULT RestoreDefaultTable();
_generated\272\Windows.Win32.IUIAutomationStructureChangedEventHandler.g.cs (13)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IUIAutomationStructureChangedEventHandler*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationStructureChangedEventHandler*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT HandleStructureChangedEvent(IUIAutomationStructureChangedEventHandler* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* sender, winmdroot.UI.Accessibility.StructureChangeType changeType, winmdroot.System.Com.SAFEARRAY* runtimeId) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 ((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(); 99 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 105 var hr = this.QueryInterface(&guid, &pv); 122 internal delegate *unmanaged [Stdcall]<IUIAutomationStructureChangedEventHandler*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 128 internal delegate *unmanaged [Stdcall]<IUIAutomationStructureChangedEventHandler*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.StructureChangeType ,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT> HandleStructureChangedEvent_4; 155 unsafe winmdroot.Foundation.HRESULT HandleStructureChangedEvent(winmdroot.UI.Accessibility.IUIAutomationElement* sender, winmdroot.UI.Accessibility.StructureChangeType changeType, winmdroot.System.Com.SAFEARRAY* runtimeId);
_generated\273\Windows.Win32.IUIAutomationTreeWalker.g.cs (85)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationTreeWalker*)Unsafe.AsPointer(ref this), riid, ppvObject); 60 private static winmdroot.Foundation.HRESULT GetParentElement(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** parent) 64 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 73 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 ((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(); 96 private static winmdroot.Foundation.HRESULT GetFirstChildElement(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** first) 100 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 109 return (winmdroot.Foundation.HRESULT)ex.HResult; 128 ((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(); 135 private static winmdroot.Foundation.HRESULT GetLastChildElement(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** last) 139 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 148 return (winmdroot.Foundation.HRESULT)ex.HResult; 167 ((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(); 174 private static winmdroot.Foundation.HRESULT GetNextSiblingElement(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** next) 178 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 187 return (winmdroot.Foundation.HRESULT)ex.HResult; 206 ((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(); 213 private static winmdroot.Foundation.HRESULT GetPreviousSiblingElement(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** previous) 217 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 226 return (winmdroot.Foundation.HRESULT)ex.HResult; 245 ((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(); 252 private static winmdroot.Foundation.HRESULT NormalizeElement(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** normalized) 256 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 265 return (winmdroot.Foundation.HRESULT)ex.HResult; 284 ((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(); 291 private static winmdroot.Foundation.HRESULT GetParentElementBuildCache(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** parent) 295 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 304 return (winmdroot.Foundation.HRESULT)ex.HResult; 324 ((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(); 331 private static winmdroot.Foundation.HRESULT GetFirstChildElementBuildCache(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** first) 335 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 344 return (winmdroot.Foundation.HRESULT)ex.HResult; 367 ((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(); 374 private static winmdroot.Foundation.HRESULT GetLastChildElementBuildCache(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** last) 378 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 387 return (winmdroot.Foundation.HRESULT)ex.HResult; 410 ((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(); 417 private static winmdroot.Foundation.HRESULT GetNextSiblingElementBuildCache(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** next) 421 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 430 return (winmdroot.Foundation.HRESULT)ex.HResult; 453 ((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(); 460 private static winmdroot.Foundation.HRESULT GetPreviousSiblingElementBuildCache(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** previous) 464 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 473 return (winmdroot.Foundation.HRESULT)ex.HResult; 496 ((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(); 503 private static winmdroot.Foundation.HRESULT NormalizeElementBuildCache(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** normalized) 507 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 516 return (winmdroot.Foundation.HRESULT)ex.HResult; 540 ((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(); 547 private static winmdroot.Foundation.HRESULT get_Condition(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** condition) 551 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 557 return winmdroot.Foundation.HRESULT.S_OK; 561 return (winmdroot.Foundation.HRESULT)ex.HResult; 574 ((delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IUIAutomationTreeWalker*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 579 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 585 var hr = this.QueryInterface(&guid, &pv); 602 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 608 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetParentElement_4; 610 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetFirstChildElement_5; 612 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetLastChildElement_6; 614 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetNextSiblingElement_7; 616 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetPreviousSiblingElement_8; 618 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> NormalizeElement_9; 620 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetParentElementBuildCache_10; 622 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetFirstChildElementBuildCache_11; 624 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetLastChildElementBuildCache_12; 626 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetNextSiblingElementBuildCache_13; 628 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetPreviousSiblingElementBuildCache_14; 630 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> NormalizeElementBuildCache_15; 632 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> get_Condition_16; 671 unsafe winmdroot.Foundation.HRESULT GetParentElement(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** parent); 674 unsafe winmdroot.Foundation.HRESULT GetFirstChildElement(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** first); 677 unsafe winmdroot.Foundation.HRESULT GetLastChildElement(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** last); 680 unsafe winmdroot.Foundation.HRESULT GetNextSiblingElement(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** next); 683 unsafe winmdroot.Foundation.HRESULT GetPreviousSiblingElement(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** previous); 686 unsafe winmdroot.Foundation.HRESULT NormalizeElement(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** normalized); 689 unsafe winmdroot.Foundation.HRESULT GetParentElementBuildCache(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** parent); 692 unsafe winmdroot.Foundation.HRESULT GetFirstChildElementBuildCache(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** first); 695 unsafe winmdroot.Foundation.HRESULT GetLastChildElementBuildCache(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** last); 698 unsafe winmdroot.Foundation.HRESULT GetNextSiblingElementBuildCache(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** next); 701 unsafe winmdroot.Foundation.HRESULT GetPreviousSiblingElementBuildCache(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** previous); 704 unsafe winmdroot.Foundation.HRESULT NormalizeElementBuildCache(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** normalized);
_generated\274\Windows.Win32.IValueProvider.g.cs (31)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IValueProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IValueProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 70 private static winmdroot.Foundation.HRESULT SetValue(IValueProvider* pThis, winmdroot.Foundation.PCWSTR val) 74 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 102 ((delegate *unmanaged [Stdcall]<IValueProvider*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IValueProvider*)Unsafe.AsPointer(ref this), val).ThrowOnFailure(); 107 internal unsafe winmdroot.Foundation.HRESULT get_Value(out winmdroot.Foundation.BSTR pRetVal) 111 winmdroot.Foundation.HRESULT __result = this.get_Value(pRetValLocal); 119 private static winmdroot.Foundation.HRESULT get_Value(IValueProvider* pThis, winmdroot.Foundation.BSTR* pRetVal) 123 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 132 return (winmdroot.Foundation.HRESULT)ex.HResult; 143 public unsafe winmdroot.Foundation.HRESULT get_Value(winmdroot.Foundation.BSTR* pRetVal) 145 return ((delegate *unmanaged [Stdcall]<IValueProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 150 internal unsafe winmdroot.Foundation.HRESULT get_IsReadOnly(out winmdroot.Foundation.BOOL pRetVal) 154 winmdroot.Foundation.HRESULT __result = this.get_IsReadOnly(pRetValLocal); 162 private static winmdroot.Foundation.HRESULT get_IsReadOnly(IValueProvider* pThis, winmdroot.Foundation.BOOL* pRetVal) 166 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 175 return (winmdroot.Foundation.HRESULT)ex.HResult; 184 public unsafe winmdroot.Foundation.HRESULT get_IsReadOnly(winmdroot.Foundation.BOOL* pRetVal) 186 return ((delegate *unmanaged [Stdcall]<IValueProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 189 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 195 var hr = this.QueryInterface(&guid, &pv); 212 internal delegate *unmanaged [Stdcall]<IValueProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 218 internal delegate *unmanaged [Stdcall]<IValueProvider*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetValue_4; 220 internal delegate *unmanaged [Stdcall]<IValueProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Value_5; 222 internal delegate *unmanaged [Stdcall]<IValueProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_IsReadOnly_6; 251winmdroot.Foundation.HRESULT SetValue(winmdroot.Foundation.PCWSTR val); 254 unsafe winmdroot.Foundation.HRESULT get_Value(winmdroot.Foundation.BSTR* pRetVal); 257 unsafe winmdroot.Foundation.HRESULT get_IsReadOnly(winmdroot.Foundation.BOOL* pRetVal);
_generated\275\Windows.Win32.IVBFormat.g.cs (13)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IVBFormat*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IVBFormat*)Unsafe.AsPointer(ref this), riid, ppvObject); 72 private static winmdroot.Foundation.HRESULT Format(IVBFormat* pThis, winmdroot.System.Variant.VARIANT* vData, winmdroot.Foundation.BSTR bstrFormat, void* lpBuffer, ushort cb, int lcid, short sFirstDayOfWeek, ushort sFirstWeekOfYear, ushort* rcb) 76 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 85 return (winmdroot.Foundation.HRESULT)ex.HResult; 115 ((delegate *unmanaged [Stdcall]<IVBFormat*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.BSTR ,void* ,ushort ,int ,short ,ushort ,ushort* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IVBFormat*)Unsafe.AsPointer(ref this), vData, bstrFormat, lpBuffer, cb, lcid, sFirstDayOfWeek, sFirstWeekOfYear, rcb).ThrowOnFailure(); 118 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 124 var hr = this.QueryInterface(&guid, &pv); 141 internal delegate *unmanaged [Stdcall]<IVBFormat*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 147 internal delegate *unmanaged [Stdcall]<IVBFormat*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.BSTR ,void* ,ushort ,int ,short ,ushort ,ushort* ,winmdroot.Foundation.HRESULT> Format_4; 173 unsafe winmdroot.Foundation.HRESULT Format(winmdroot.System.Variant.VARIANT* vData, winmdroot.Foundation.BSTR bstrFormat, void* lpBuffer, ushort cb, int lcid, short sFirstDayOfWeek, ushort sFirstWeekOfYear, ushort* rcb);
_generated\276\Windows.Win32.IVBGetControl.g.cs (13)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IVBGetControl*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IVBGetControl*)Unsafe.AsPointer(ref this), riid, ppvObject); 59 private static winmdroot.Foundation.HRESULT EnumControls(IVBGetControl* pThis, uint dwOleContF, winmdroot.System.Ole.ENUM_CONTROLS_WHICH_FLAGS dwWhich, winmdroot.System.Com.IEnumUnknown** ppenumUnk) 63 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 72 return (winmdroot.Foundation.HRESULT)ex.HResult; 93 ((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(); 96 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 102 var hr = this.QueryInterface(&guid, &pv); 119 internal delegate *unmanaged [Stdcall]<IVBGetControl*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 125 internal delegate *unmanaged [Stdcall]<IVBGetControl*,uint ,winmdroot.System.Ole.ENUM_CONTROLS_WHICH_FLAGS ,winmdroot.System.Com.IEnumUnknown** ,winmdroot.Foundation.HRESULT> EnumControls_4; 151 unsafe winmdroot.Foundation.HRESULT EnumControls(uint dwOleContF, winmdroot.System.Ole.ENUM_CONTROLS_WHICH_FLAGS dwWhich, winmdroot.System.Com.IEnumUnknown** ppenumUnk);
_generated\277\Windows.Win32.IViewObject.g.cs (43)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IViewObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IViewObject*)Unsafe.AsPointer(ref this), riid, ppvObject); 69 private static winmdroot.Foundation.HRESULT Draw(IViewObject* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, [Optional] winmdroot.Graphics.Gdi.HDC hdcTargetDev, winmdroot.Graphics.Gdi.HDC hdcDraw, [Optional] winmdroot.Foundation.RECTL* lprcBounds, [Optional] winmdroot.Foundation.RECTL* lprcWBounds, [Optional] nint pfnContinue, nuint dwContinue) 73 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 82 return (winmdroot.Foundation.HRESULT)ex.HResult; 111 ((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(); 127 private static winmdroot.Foundation.HRESULT GetColorSet(IViewObject* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, [Optional] winmdroot.Graphics.Gdi.HDC hicTargetDev, winmdroot.Graphics.Gdi.LOGPALETTE** ppColorSet) 131 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 140 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((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(); 177 private static winmdroot.Foundation.HRESULT Freeze(IViewObject* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, uint* pdwFreeze) 181 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 190 return (winmdroot.Foundation.HRESULT)ex.HResult; 209 ((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(); 215 private static winmdroot.Foundation.HRESULT Unfreeze(IViewObject* pThis, uint dwFreeze) 219 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 228 return (winmdroot.Foundation.HRESULT)ex.HResult; 243 ((delegate *unmanaged [Stdcall]<IViewObject*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IViewObject*)Unsafe.AsPointer(ref this), dwFreeze).ThrowOnFailure(); 249 private static winmdroot.Foundation.HRESULT SetAdvise(IViewObject* pThis, winmdroot.System.Com.DVASPECT aspects, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink) 253 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 262 return (winmdroot.Foundation.HRESULT)ex.HResult; 284 ((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(); 309 private static winmdroot.Foundation.HRESULT GetAdvise(IViewObject* pThis, [Optional] uint* pAspects, [Optional] uint* pAdvf, winmdroot.System.Com.IAdviseSink** ppAdvSink) 313 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 322 return (winmdroot.Foundation.HRESULT)ex.HResult; 336 ((delegate *unmanaged [Stdcall]<IViewObject*,uint* ,uint* ,winmdroot.System.Com.IAdviseSink** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IViewObject*)Unsafe.AsPointer(ref this), pAspects, pAdvf, ppAdvSink).ThrowOnFailure(); 339 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 345 var hr = this.QueryInterface(&guid, &pv); 362 internal delegate *unmanaged [Stdcall]<IViewObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 368 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; 370 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; 372 internal delegate *unmanaged [Stdcall]<IViewObject*,winmdroot.System.Com.DVASPECT ,int ,void* ,uint* ,winmdroot.Foundation.HRESULT> Freeze_6; 374 internal delegate *unmanaged [Stdcall]<IViewObject*,uint ,winmdroot.Foundation.HRESULT> Unfreeze_7; 376 internal delegate *unmanaged [Stdcall]<IViewObject*,winmdroot.System.Com.DVASPECT ,uint ,winmdroot.System.Com.IAdviseSink* ,winmdroot.Foundation.HRESULT> SetAdvise_8; 378 internal delegate *unmanaged [Stdcall]<IViewObject*,uint* ,uint* ,winmdroot.System.Com.IAdviseSink** ,winmdroot.Foundation.HRESULT> GetAdvise_9; 410 unsafe winmdroot.Foundation.HRESULT Draw(winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, [Optional] winmdroot.Graphics.Gdi.HDC hdcTargetDev, winmdroot.Graphics.Gdi.HDC hdcDraw, [Optional] winmdroot.Foundation.RECTL* lprcBounds, [Optional] winmdroot.Foundation.RECTL* lprcWBounds, [Optional] nint pfnContinue, nuint dwContinue); 413 unsafe winmdroot.Foundation.HRESULT GetColorSet(winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, [Optional] winmdroot.Graphics.Gdi.HDC hicTargetDev, winmdroot.Graphics.Gdi.LOGPALETTE** ppColorSet); 416 unsafe winmdroot.Foundation.HRESULT Freeze(winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, uint* pdwFreeze); 419winmdroot.Foundation.HRESULT Unfreeze(uint dwFreeze); 422 unsafe winmdroot.Foundation.HRESULT SetAdvise(winmdroot.System.Com.DVASPECT aspects, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink); 425 unsafe winmdroot.Foundation.HRESULT GetAdvise([Optional] uint* pAspects, [Optional] uint* pAdvf, winmdroot.System.Com.IAdviseSink** ppAdvSink);
_generated\278\Windows.Win32.IViewObject2.g.cs (49)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IViewObject2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IViewObject2*)Unsafe.AsPointer(ref this), riid, ppvObject); 69 private static winmdroot.Foundation.HRESULT Draw(IViewObject2* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, [Optional] winmdroot.Graphics.Gdi.HDC hdcTargetDev, winmdroot.Graphics.Gdi.HDC hdcDraw, [Optional] winmdroot.Foundation.RECTL* lprcBounds, [Optional] winmdroot.Foundation.RECTL* lprcWBounds, [Optional] nint pfnContinue, nuint dwContinue) 73 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 82 return (winmdroot.Foundation.HRESULT)ex.HResult; 88 ((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(); 104 private static winmdroot.Foundation.HRESULT GetColorSet(IViewObject2* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, [Optional] winmdroot.Graphics.Gdi.HDC hicTargetDev, winmdroot.Graphics.Gdi.LOGPALETTE** ppColorSet) 108 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 117 return (winmdroot.Foundation.HRESULT)ex.HResult; 123 ((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(); 139 private static winmdroot.Foundation.HRESULT Freeze(IViewObject2* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, uint* pdwFreeze) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 158 ((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(); 164 private static winmdroot.Foundation.HRESULT Unfreeze(IViewObject2* pThis, uint dwFreeze) 168 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 177 return (winmdroot.Foundation.HRESULT)ex.HResult; 183 ((delegate *unmanaged [Stdcall]<IViewObject2*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IViewObject2*)Unsafe.AsPointer(ref this), dwFreeze).ThrowOnFailure(); 189 private static winmdroot.Foundation.HRESULT SetAdvise(IViewObject2* pThis, winmdroot.System.Com.DVASPECT aspects, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink) 193 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 202 return (winmdroot.Foundation.HRESULT)ex.HResult; 208 ((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(); 233 private static winmdroot.Foundation.HRESULT GetAdvise(IViewObject2* pThis, [Optional] uint* pAspects, [Optional] uint* pAdvf, winmdroot.System.Com.IAdviseSink** ppAdvSink) 237 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 246 return (winmdroot.Foundation.HRESULT)ex.HResult; 252 ((delegate *unmanaged [Stdcall]<IViewObject2*,uint* ,uint* ,winmdroot.System.Com.IAdviseSink** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IViewObject2*)Unsafe.AsPointer(ref this), pAspects, pAdvf, ppAdvSink).ThrowOnFailure(); 268 private static winmdroot.Foundation.HRESULT GetExtent(IViewObject2* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, winmdroot.System.Com.DVTARGETDEVICE* ptd, winmdroot.Foundation.SIZE* lpsizel) 272 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 281 return (winmdroot.Foundation.HRESULT)ex.HResult; 301 ((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(); 304 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 310 var hr = this.QueryInterface(&guid, &pv); 327 internal delegate *unmanaged [Stdcall]<IViewObject2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 333 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; 335 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; 337 internal delegate *unmanaged [Stdcall]<IViewObject2*,winmdroot.System.Com.DVASPECT ,int ,void* ,uint* ,winmdroot.Foundation.HRESULT> Freeze_6; 339 internal delegate *unmanaged [Stdcall]<IViewObject2*,uint ,winmdroot.Foundation.HRESULT> Unfreeze_7; 341 internal delegate *unmanaged [Stdcall]<IViewObject2*,winmdroot.System.Com.DVASPECT ,uint ,winmdroot.System.Com.IAdviseSink* ,winmdroot.Foundation.HRESULT> SetAdvise_8; 343 internal delegate *unmanaged [Stdcall]<IViewObject2*,uint* ,uint* ,winmdroot.System.Com.IAdviseSink** ,winmdroot.Foundation.HRESULT> GetAdvise_9; 345 internal delegate *unmanaged [Stdcall]<IViewObject2*,winmdroot.System.Com.DVASPECT ,int ,winmdroot.System.Com.DVTARGETDEVICE* ,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT> GetExtent_10; 378 unsafe new winmdroot.Foundation.HRESULT Draw(winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, [Optional] winmdroot.Graphics.Gdi.HDC hdcTargetDev, winmdroot.Graphics.Gdi.HDC hdcDraw, [Optional] winmdroot.Foundation.RECTL* lprcBounds, [Optional] winmdroot.Foundation.RECTL* lprcWBounds, [Optional] nint pfnContinue, nuint dwContinue); 381 unsafe new winmdroot.Foundation.HRESULT GetColorSet(winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, [Optional] winmdroot.Graphics.Gdi.HDC hicTargetDev, winmdroot.Graphics.Gdi.LOGPALETTE** ppColorSet); 384 unsafe new winmdroot.Foundation.HRESULT Freeze(winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, uint* pdwFreeze); 387 new winmdroot.Foundation.HRESULT Unfreeze(uint dwFreeze); 390 unsafe new winmdroot.Foundation.HRESULT SetAdvise(winmdroot.System.Com.DVASPECT aspects, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink); 393 unsafe new winmdroot.Foundation.HRESULT GetAdvise([Optional] uint* pAspects, [Optional] uint* pAdvf, winmdroot.System.Com.IAdviseSink** ppAdvSink); 396 unsafe winmdroot.Foundation.HRESULT GetExtent(winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, winmdroot.System.Com.DVTARGETDEVICE* ptd, winmdroot.Foundation.SIZE* lpsizel);
_generated\279\Windows.Win32.IWebBrowser.g.cs (175)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IWebBrowser*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IWebBrowser*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IWebBrowser*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IWebBrowser*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IWebBrowser*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IWebBrowser*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT GoBack(IWebBrowser* pThis) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 158 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IWebBrowser*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 164 private static winmdroot.Foundation.HRESULT GoForward(IWebBrowser* pThis) 168 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 177 return (winmdroot.Foundation.HRESULT)ex.HResult; 183 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IWebBrowser*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 189 private static winmdroot.Foundation.HRESULT GoHome(IWebBrowser* pThis) 193 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 202 return (winmdroot.Foundation.HRESULT)ex.HResult; 208 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IWebBrowser*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 214 private static winmdroot.Foundation.HRESULT GoSearch(IWebBrowser* pThis) 218 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 227 return (winmdroot.Foundation.HRESULT)ex.HResult; 233 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IWebBrowser*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 250 private static winmdroot.Foundation.HRESULT Navigate(IWebBrowser* pThis, winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT* Flags, [Optional] winmdroot.System.Variant.VARIANT* TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT* PostData, [Optional] winmdroot.System.Variant.VARIANT* Headers) 254 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 263 return (winmdroot.Foundation.HRESULT)ex.HResult; 269 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IWebBrowser*)Unsafe.AsPointer(ref this), URL, Flags, TargetFrameName, PostData, Headers).ThrowOnFailure(); 275 private static winmdroot.Foundation.HRESULT Refresh(IWebBrowser* pThis) 279 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 288 return (winmdroot.Foundation.HRESULT)ex.HResult; 294 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IWebBrowser*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 308 private static winmdroot.Foundation.HRESULT Refresh2(IWebBrowser* pThis, [Optional] winmdroot.System.Variant.VARIANT* Level) 312 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 321 return (winmdroot.Foundation.HRESULT)ex.HResult; 327 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IWebBrowser*)Unsafe.AsPointer(ref this), Level).ThrowOnFailure(); 333 private static winmdroot.Foundation.HRESULT Stop(IWebBrowser* pThis) 337 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 346 return (winmdroot.Foundation.HRESULT)ex.HResult; 352 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IWebBrowser*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 358 private static winmdroot.Foundation.HRESULT get_Application(IWebBrowser* pThis, winmdroot.System.Com.IDispatch** ppDisp) 362 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 368 return winmdroot.Foundation.HRESULT.S_OK; 372 return (winmdroot.Foundation.HRESULT)ex.HResult; 381 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 389 private static winmdroot.Foundation.HRESULT get_Parent(IWebBrowser* pThis, winmdroot.System.Com.IDispatch** ppDisp) 393 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 399 return winmdroot.Foundation.HRESULT.S_OK; 403 return (winmdroot.Foundation.HRESULT)ex.HResult; 412 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 420 private static winmdroot.Foundation.HRESULT get_Container(IWebBrowser* pThis, winmdroot.System.Com.IDispatch** ppDisp) 424 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 430 return winmdroot.Foundation.HRESULT.S_OK; 434 return (winmdroot.Foundation.HRESULT)ex.HResult; 443 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 451 private static winmdroot.Foundation.HRESULT get_Document(IWebBrowser* pThis, winmdroot.System.Com.IDispatch** ppDisp) 455 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 464 return (winmdroot.Foundation.HRESULT)ex.HResult; 468 public unsafe winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp) 470 return ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IWebBrowser*)Unsafe.AsPointer(ref this), ppDisp); 476 private static winmdroot.Foundation.HRESULT get_TopLevelContainer(IWebBrowser* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 480 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 486 return winmdroot.Foundation.HRESULT.S_OK; 490 return (winmdroot.Foundation.HRESULT)ex.HResult; 499 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 507 private static winmdroot.Foundation.HRESULT get_Type(IWebBrowser* pThis, winmdroot.Foundation.BSTR* Type) 511 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 517 return winmdroot.Foundation.HRESULT.S_OK; 521 return (winmdroot.Foundation.HRESULT)ex.HResult; 530 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 538 private static winmdroot.Foundation.HRESULT get_Left(IWebBrowser* pThis, int* pl) 542 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 548 return winmdroot.Foundation.HRESULT.S_OK; 552 return (winmdroot.Foundation.HRESULT)ex.HResult; 561 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 566 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IWebBrowser*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 573 private static winmdroot.Foundation.HRESULT put_Left(IWebBrowser* pThis, int Left) 577 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 583 return winmdroot.Foundation.HRESULT.S_OK; 587 return (winmdroot.Foundation.HRESULT)ex.HResult; 594 private static winmdroot.Foundation.HRESULT get_Top(IWebBrowser* pThis, int* pl) 598 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 604 return winmdroot.Foundation.HRESULT.S_OK; 608 return (winmdroot.Foundation.HRESULT)ex.HResult; 617 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 622 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IWebBrowser*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 629 private static winmdroot.Foundation.HRESULT put_Top(IWebBrowser* pThis, int Top) 633 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 639 return winmdroot.Foundation.HRESULT.S_OK; 643 return (winmdroot.Foundation.HRESULT)ex.HResult; 650 private static winmdroot.Foundation.HRESULT get_Width(IWebBrowser* pThis, int* pl) 654 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 660 return winmdroot.Foundation.HRESULT.S_OK; 664 return (winmdroot.Foundation.HRESULT)ex.HResult; 673 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 678 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IWebBrowser*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 685 private static winmdroot.Foundation.HRESULT put_Width(IWebBrowser* pThis, int Width) 689 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 695 return winmdroot.Foundation.HRESULT.S_OK; 699 return (winmdroot.Foundation.HRESULT)ex.HResult; 706 private static winmdroot.Foundation.HRESULT get_Height(IWebBrowser* pThis, int* pl) 710 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 716 return winmdroot.Foundation.HRESULT.S_OK; 720 return (winmdroot.Foundation.HRESULT)ex.HResult; 729 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 734 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IWebBrowser*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 741 private static winmdroot.Foundation.HRESULT put_Height(IWebBrowser* pThis, int Height) 745 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 751 return winmdroot.Foundation.HRESULT.S_OK; 755 return (winmdroot.Foundation.HRESULT)ex.HResult; 761 internal unsafe winmdroot.Foundation.HRESULT get_LocationName(out winmdroot.Foundation.BSTR LocationName) 765 winmdroot.Foundation.HRESULT __result = this.get_LocationName(LocationNameLocal); 773 private static winmdroot.Foundation.HRESULT get_LocationName(IWebBrowser* pThis, winmdroot.Foundation.BSTR* LocationName) 777 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 786 return (winmdroot.Foundation.HRESULT)ex.HResult; 790 public unsafe winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName) 792 return ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IWebBrowser*)Unsafe.AsPointer(ref this), LocationName); 797 internal unsafe winmdroot.Foundation.HRESULT get_LocationURL(out winmdroot.Foundation.BSTR LocationURL) 801 winmdroot.Foundation.HRESULT __result = this.get_LocationURL(LocationURLLocal); 809 private static winmdroot.Foundation.HRESULT get_LocationURL(IWebBrowser* pThis, winmdroot.Foundation.BSTR* LocationURL) 813 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 822 return (winmdroot.Foundation.HRESULT)ex.HResult; 826 public unsafe winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL) 828 return ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IWebBrowser*)Unsafe.AsPointer(ref this), LocationURL); 833 internal unsafe winmdroot.Foundation.HRESULT get_Busy(out winmdroot.Foundation.VARIANT_BOOL pBool) 837 winmdroot.Foundation.HRESULT __result = this.get_Busy(pBoolLocal); 845 private static winmdroot.Foundation.HRESULT get_Busy(IWebBrowser* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 849 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 858 return (winmdroot.Foundation.HRESULT)ex.HResult; 862 public unsafe winmdroot.Foundation.HRESULT get_Busy(winmdroot.Foundation.VARIANT_BOOL* pBool) 864 return ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IWebBrowser*)Unsafe.AsPointer(ref this), pBool); 867 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 873 var hr = this.QueryInterface(&guid, &pv); 890 internal delegate *unmanaged [Stdcall]<IWebBrowser*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 896 internal delegate *unmanaged [Stdcall]<IWebBrowser*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 898 internal delegate *unmanaged [Stdcall]<IWebBrowser*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 900 internal delegate *unmanaged [Stdcall]<IWebBrowser*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 902 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; 904 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT> GoBack_8; 906 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT> GoForward_9; 908 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT> GoHome_10; 910 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT> GoSearch_11; 912 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Navigate_12; 914 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT> Refresh_13; 916 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Refresh2_14; 918 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT> Stop_15; 920 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Application_16; 922 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Parent_17; 924 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Container_18; 926 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Document_19; 928 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_TopLevelContainer_20; 930 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Type_21; 932 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int* ,winmdroot.Foundation.HRESULT> get_Left_22; 934 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int ,winmdroot.Foundation.HRESULT> put_Left_23; 936 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int* ,winmdroot.Foundation.HRESULT> get_Top_24; 938 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int ,winmdroot.Foundation.HRESULT> put_Top_25; 940 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int* ,winmdroot.Foundation.HRESULT> get_Width_26; 942 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int ,winmdroot.Foundation.HRESULT> put_Width_27; 944 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int* ,winmdroot.Foundation.HRESULT> get_Height_28; 946 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int ,winmdroot.Foundation.HRESULT> put_Height_29; 948 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationName_30; 950 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationURL_31; 952 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_Busy_32; 1002winmdroot.Foundation.HRESULT GoBack(); 1005winmdroot.Foundation.HRESULT GoForward(); 1008winmdroot.Foundation.HRESULT GoHome(); 1011winmdroot.Foundation.HRESULT GoSearch(); 1014 unsafe winmdroot.Foundation.HRESULT Navigate(winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT* Flags, [Optional] winmdroot.System.Variant.VARIANT* TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT* PostData, [Optional] winmdroot.System.Variant.VARIANT* Headers); 1017winmdroot.Foundation.HRESULT Refresh(); 1020 unsafe winmdroot.Foundation.HRESULT Refresh2([Optional] winmdroot.System.Variant.VARIANT* Level); 1023winmdroot.Foundation.HRESULT Stop(); 1041 unsafe winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp); 1078 unsafe winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName); 1081 unsafe winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL); 1084 unsafe winmdroot.Foundation.HRESULT get_Busy(winmdroot.Foundation.VARIANT_BOOL* pBool);
_generated\280\Windows.Win32.IWebBrowser2.g.cs (440)
30 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 36 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 42 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 44 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IWebBrowser2*)Unsafe.AsPointer(ref this), riid, ppvObject); 69 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IWebBrowser2*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 85 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IWebBrowser2*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 106 ((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(); 145 ((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(); 151 private static winmdroot.Foundation.HRESULT GoBack(IWebBrowser2* pThis) 155 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 164 return (winmdroot.Foundation.HRESULT)ex.HResult; 168 public winmdroot.Foundation.HRESULT GoBack() 170 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IWebBrowser2*)Unsafe.AsPointer(ref this)); 176 private static winmdroot.Foundation.HRESULT GoForward(IWebBrowser2* pThis) 180 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 189 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 public winmdroot.Foundation.HRESULT GoForward() 195 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IWebBrowser2*)Unsafe.AsPointer(ref this)); 201 private static winmdroot.Foundation.HRESULT GoHome(IWebBrowser2* pThis) 205 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 214 return (winmdroot.Foundation.HRESULT)ex.HResult; 218 public winmdroot.Foundation.HRESULT GoHome() 220 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IWebBrowser2*)Unsafe.AsPointer(ref this)); 226 private static winmdroot.Foundation.HRESULT GoSearch(IWebBrowser2* pThis) 230 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 239 return (winmdroot.Foundation.HRESULT)ex.HResult; 243 public winmdroot.Foundation.HRESULT GoSearch() 245 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IWebBrowser2*)Unsafe.AsPointer(ref this)); 262 private static winmdroot.Foundation.HRESULT Navigate(IWebBrowser2* pThis, winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT* Flags, [Optional] winmdroot.System.Variant.VARIANT* TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT* PostData, [Optional] winmdroot.System.Variant.VARIANT* Headers) 266 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 275 return (winmdroot.Foundation.HRESULT)ex.HResult; 281 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IWebBrowser2*)Unsafe.AsPointer(ref this), URL, Flags, TargetFrameName, PostData, Headers).ThrowOnFailure(); 287 private static winmdroot.Foundation.HRESULT Refresh(IWebBrowser2* pThis) 291 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 300 return (winmdroot.Foundation.HRESULT)ex.HResult; 304 public winmdroot.Foundation.HRESULT Refresh() 306 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IWebBrowser2*)Unsafe.AsPointer(ref this)); 311 internal unsafe winmdroot.Foundation.HRESULT Refresh2([Optional] winmdroot.System.Variant.VARIANT? Level) 314 winmdroot.Foundation.HRESULT __result = this.Refresh2(Level.HasValue ? &LevelLocal : null); 321 private static winmdroot.Foundation.HRESULT Refresh2(IWebBrowser2* pThis, [Optional] winmdroot.System.Variant.VARIANT* Level) 325 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 334 return (winmdroot.Foundation.HRESULT)ex.HResult; 338 public unsafe winmdroot.Foundation.HRESULT Refresh2([Optional] winmdroot.System.Variant.VARIANT* Level) 340 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IWebBrowser2*)Unsafe.AsPointer(ref this), Level); 346 private static winmdroot.Foundation.HRESULT Stop(IWebBrowser2* pThis) 350 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 359 return (winmdroot.Foundation.HRESULT)ex.HResult; 363 public winmdroot.Foundation.HRESULT Stop() 365 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IWebBrowser2*)Unsafe.AsPointer(ref this)); 371 private static winmdroot.Foundation.HRESULT get_Application(IWebBrowser2* pThis, winmdroot.System.Com.IDispatch** ppDisp) 375 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 381 return winmdroot.Foundation.HRESULT.S_OK; 385 return (winmdroot.Foundation.HRESULT)ex.HResult; 394 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 402 private static winmdroot.Foundation.HRESULT get_Parent(IWebBrowser2* pThis, winmdroot.System.Com.IDispatch** ppDisp) 406 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 412 return winmdroot.Foundation.HRESULT.S_OK; 416 return (winmdroot.Foundation.HRESULT)ex.HResult; 425 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 433 private static winmdroot.Foundation.HRESULT get_Container(IWebBrowser2* pThis, winmdroot.System.Com.IDispatch** ppDisp) 437 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 443 return winmdroot.Foundation.HRESULT.S_OK; 447 return (winmdroot.Foundation.HRESULT)ex.HResult; 456 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 464 private static winmdroot.Foundation.HRESULT get_Document(IWebBrowser2* pThis, winmdroot.System.Com.IDispatch** ppDisp) 468 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 477 return (winmdroot.Foundation.HRESULT)ex.HResult; 481 public unsafe winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp) 483 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IWebBrowser2*)Unsafe.AsPointer(ref this), ppDisp); 489 private static winmdroot.Foundation.HRESULT get_TopLevelContainer(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 493 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 499 return winmdroot.Foundation.HRESULT.S_OK; 503 return (winmdroot.Foundation.HRESULT)ex.HResult; 512 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 520 private static winmdroot.Foundation.HRESULT get_Type(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* Type) 524 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 530 return winmdroot.Foundation.HRESULT.S_OK; 534 return (winmdroot.Foundation.HRESULT)ex.HResult; 543 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 551 private static winmdroot.Foundation.HRESULT get_Left(IWebBrowser2* pThis, int* pl) 555 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 561 return winmdroot.Foundation.HRESULT.S_OK; 565 return (winmdroot.Foundation.HRESULT)ex.HResult; 574 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 579 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 586 private static winmdroot.Foundation.HRESULT put_Left(IWebBrowser2* pThis, int Left) 590 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 596 return winmdroot.Foundation.HRESULT.S_OK; 600 return (winmdroot.Foundation.HRESULT)ex.HResult; 607 private static winmdroot.Foundation.HRESULT get_Top(IWebBrowser2* pThis, int* pl) 611 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 617 return winmdroot.Foundation.HRESULT.S_OK; 621 return (winmdroot.Foundation.HRESULT)ex.HResult; 630 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 635 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 642 private static winmdroot.Foundation.HRESULT put_Top(IWebBrowser2* pThis, int Top) 646 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 652 return winmdroot.Foundation.HRESULT.S_OK; 656 return (winmdroot.Foundation.HRESULT)ex.HResult; 663 private static winmdroot.Foundation.HRESULT get_Width(IWebBrowser2* pThis, int* pl) 667 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 673 return winmdroot.Foundation.HRESULT.S_OK; 677 return (winmdroot.Foundation.HRESULT)ex.HResult; 686 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 691 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 698 private static winmdroot.Foundation.HRESULT put_Width(IWebBrowser2* pThis, int Width) 702 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 708 return winmdroot.Foundation.HRESULT.S_OK; 712 return (winmdroot.Foundation.HRESULT)ex.HResult; 719 private static winmdroot.Foundation.HRESULT get_Height(IWebBrowser2* pThis, int* pl) 723 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 729 return winmdroot.Foundation.HRESULT.S_OK; 733 return (winmdroot.Foundation.HRESULT)ex.HResult; 742 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 747 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 754 private static winmdroot.Foundation.HRESULT put_Height(IWebBrowser2* pThis, int Height) 758 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 764 return winmdroot.Foundation.HRESULT.S_OK; 768 return (winmdroot.Foundation.HRESULT)ex.HResult; 774 internal unsafe winmdroot.Foundation.HRESULT get_LocationName(out winmdroot.Foundation.BSTR LocationName) 778 winmdroot.Foundation.HRESULT __result = this.get_LocationName(LocationNameLocal); 786 private static winmdroot.Foundation.HRESULT get_LocationName(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* LocationName) 790 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 799 return (winmdroot.Foundation.HRESULT)ex.HResult; 803 public unsafe winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName) 805 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IWebBrowser2*)Unsafe.AsPointer(ref this), LocationName); 810 internal unsafe winmdroot.Foundation.HRESULT get_LocationURL(out winmdroot.Foundation.BSTR LocationURL) 814 winmdroot.Foundation.HRESULT __result = this.get_LocationURL(LocationURLLocal); 822 private static winmdroot.Foundation.HRESULT get_LocationURL(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* LocationURL) 826 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 835 return (winmdroot.Foundation.HRESULT)ex.HResult; 839 public unsafe winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL) 841 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IWebBrowser2*)Unsafe.AsPointer(ref this), LocationURL); 846 internal unsafe winmdroot.Foundation.HRESULT get_Busy(out winmdroot.Foundation.VARIANT_BOOL pBool) 850 winmdroot.Foundation.HRESULT __result = this.get_Busy(pBoolLocal); 858 private static winmdroot.Foundation.HRESULT get_Busy(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 862 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 871 return (winmdroot.Foundation.HRESULT)ex.HResult; 875 public unsafe winmdroot.Foundation.HRESULT get_Busy(winmdroot.Foundation.VARIANT_BOOL* pBool) 877 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IWebBrowser2*)Unsafe.AsPointer(ref this), pBool); 883 private static winmdroot.Foundation.HRESULT Quit(IWebBrowser2* pThis) 887 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 896 return (winmdroot.Foundation.HRESULT)ex.HResult; 902 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IWebBrowser2*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 921 private static winmdroot.Foundation.HRESULT ClientToWindow(IWebBrowser2* pThis, int* pcx, int* pcy) 925 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 934 return (winmdroot.Foundation.HRESULT)ex.HResult; 940 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IWebBrowser2*)Unsafe.AsPointer(ref this), pcx, pcy).ThrowOnFailure(); 946 private static winmdroot.Foundation.HRESULT PutProperty(IWebBrowser2* pThis, winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT vtValue) 950 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 959 return (winmdroot.Foundation.HRESULT)ex.HResult; 965 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IWebBrowser2*)Unsafe.AsPointer(ref this), Property, vtValue).ThrowOnFailure(); 971 private static winmdroot.Foundation.HRESULT GetProperty(IWebBrowser2* pThis, winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT* pvtValue) 975 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 984 return (winmdroot.Foundation.HRESULT)ex.HResult; 991 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IWebBrowser2*)Unsafe.AsPointer(ref this), Property, &__retVal).ThrowOnFailure(); 998 private static winmdroot.Foundation.HRESULT get_Name(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* Name) 1002 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1008 return winmdroot.Foundation.HRESULT.S_OK; 1012 return (winmdroot.Foundation.HRESULT)ex.HResult; 1021 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1029 private static winmdroot.Foundation.HRESULT get_HWND(IWebBrowser2* pThis, winmdroot.Foundation.SHANDLE_PTR* pHWND) 1033 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1039 return winmdroot.Foundation.HRESULT.S_OK; 1043 return (winmdroot.Foundation.HRESULT)ex.HResult; 1054 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.SHANDLE_PTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1062 private static winmdroot.Foundation.HRESULT get_FullName(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* FullName) 1066 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1072 return winmdroot.Foundation.HRESULT.S_OK; 1076 return (winmdroot.Foundation.HRESULT)ex.HResult; 1085 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1093 private static winmdroot.Foundation.HRESULT get_Path(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* Path) 1097 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1103 return winmdroot.Foundation.HRESULT.S_OK; 1107 return (winmdroot.Foundation.HRESULT)ex.HResult; 1116 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1124 private static winmdroot.Foundation.HRESULT get_Visible(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 1128 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1134 return winmdroot.Foundation.HRESULT.S_OK; 1138 return (winmdroot.Foundation.HRESULT)ex.HResult; 1147 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1152 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1159 private static winmdroot.Foundation.HRESULT put_Visible(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL Value) 1163 winmdroot.Foundation.HRESULT __hr = winmdroot.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 get_StatusBar(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 1184 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1190 return winmdroot.Foundation.HRESULT.S_OK; 1194 return (winmdroot.Foundation.HRESULT)ex.HResult; 1203 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1208 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1215 private static winmdroot.Foundation.HRESULT put_StatusBar(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL Value) 1219 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1225 return winmdroot.Foundation.HRESULT.S_OK; 1229 return (winmdroot.Foundation.HRESULT)ex.HResult; 1236 private static winmdroot.Foundation.HRESULT get_StatusText(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* StatusText) 1240 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1246 return winmdroot.Foundation.HRESULT.S_OK; 1250 return (winmdroot.Foundation.HRESULT)ex.HResult; 1259 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1264 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1271 private static winmdroot.Foundation.HRESULT put_StatusText(IWebBrowser2* pThis, winmdroot.Foundation.BSTR StatusText) 1275 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1281 return winmdroot.Foundation.HRESULT.S_OK; 1285 return (winmdroot.Foundation.HRESULT)ex.HResult; 1292 private static winmdroot.Foundation.HRESULT get_ToolBar(IWebBrowser2* pThis, int* Value) 1296 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1302 return winmdroot.Foundation.HRESULT.S_OK; 1306 return (winmdroot.Foundation.HRESULT)ex.HResult; 1320 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1325 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1332 private static winmdroot.Foundation.HRESULT put_ToolBar(IWebBrowser2* pThis, int Value) 1336 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1342 return winmdroot.Foundation.HRESULT.S_OK; 1346 return (winmdroot.Foundation.HRESULT)ex.HResult; 1353 private static winmdroot.Foundation.HRESULT get_MenuBar(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* Value) 1357 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1363 return winmdroot.Foundation.HRESULT.S_OK; 1367 return (winmdroot.Foundation.HRESULT)ex.HResult; 1376 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1381 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1388 private static winmdroot.Foundation.HRESULT put_MenuBar(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL Value) 1392 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1398 return winmdroot.Foundation.HRESULT.S_OK; 1402 return (winmdroot.Foundation.HRESULT)ex.HResult; 1409 private static winmdroot.Foundation.HRESULT get_FullScreen(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pbFullScreen) 1413 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1419 return winmdroot.Foundation.HRESULT.S_OK; 1423 return (winmdroot.Foundation.HRESULT)ex.HResult; 1432 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1437 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1444 private static winmdroot.Foundation.HRESULT put_FullScreen(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL bFullScreen) 1448 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1454 return winmdroot.Foundation.HRESULT.S_OK; 1458 return (winmdroot.Foundation.HRESULT)ex.HResult; 1464 internal unsafe winmdroot.Foundation.HRESULT Navigate2(in 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) 1472 winmdroot.Foundation.HRESULT __result = this.Navigate2(URLLocal, Flags.HasValue ? &FlagsLocal : null, TargetFrameName.HasValue ? &TargetFrameNameLocal : null, PostData.HasValue ? &PostDataLocal : null, Headers.HasValue ? &HeadersLocal : null); 1480 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) 1484 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1493 return (winmdroot.Foundation.HRESULT)ex.HResult; 1497 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) 1499 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); 1505 private static winmdroot.Foundation.HRESULT QueryStatusWB(IWebBrowser2* pThis, winmdroot.System.Ole.OLECMDID cmdID, winmdroot.System.Ole.OLECMDF* pcmdf) 1509 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1518 return (winmdroot.Foundation.HRESULT)ex.HResult; 1525 ((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(); 1531 internal unsafe winmdroot.Foundation.HRESULT ExecWB(winmdroot.System.Ole.OLECMDID cmdID, winmdroot.System.Ole.OLECMDEXECOPT cmdexecopt, [Optional] winmdroot.System.Variant.VARIANT? pvaIn, ref winmdroot.System.Variant.VARIANT pvaOut) 1536 winmdroot.Foundation.HRESULT __result = this.ExecWB(cmdID, cmdexecopt, pvaIn.HasValue ? &pvaInLocal : null, pvaOutLocal); 1542 internal unsafe winmdroot.Foundation.HRESULT ExecWB(winmdroot.System.Ole.OLECMDID cmdID, winmdroot.System.Ole.OLECMDEXECOPT cmdexecopt, [Optional] winmdroot.System.Variant.VARIANT? pvaIn) 1545 winmdroot.Foundation.HRESULT __result = this.ExecWB(cmdID, cmdexecopt, pvaIn.HasValue ? &pvaInLocal : null, default(winmdroot.System.Variant.VARIANT* )); 1552 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) 1556 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1565 return (winmdroot.Foundation.HRESULT)ex.HResult; 1569 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) 1571 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); 1589 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) 1593 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1602 return (winmdroot.Foundation.HRESULT)ex.HResult; 1608 ((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(); 1613 internal unsafe winmdroot.Foundation.HRESULT get_ReadyState(out winmdroot.System.Ole.READYSTATE plReadyState) 1617 winmdroot.Foundation.HRESULT __result = this.get_ReadyState(plReadyStateLocal); 1625 private static winmdroot.Foundation.HRESULT get_ReadyState(IWebBrowser2* pThis, winmdroot.System.Ole.READYSTATE* plReadyState) 1629 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1638 return (winmdroot.Foundation.HRESULT)ex.HResult; 1642 public unsafe winmdroot.Foundation.HRESULT get_ReadyState(winmdroot.System.Ole.READYSTATE* plReadyState) 1644 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Ole.READYSTATE* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IWebBrowser2*)Unsafe.AsPointer(ref this), plReadyState); 1649 internal unsafe winmdroot.Foundation.HRESULT get_Offline(out winmdroot.Foundation.VARIANT_BOOL pbOffline) 1653 winmdroot.Foundation.HRESULT __result = this.get_Offline(pbOfflineLocal); 1661 private static winmdroot.Foundation.HRESULT get_Offline(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pbOffline) 1665 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1674 return (winmdroot.Foundation.HRESULT)ex.HResult; 1678 public unsafe winmdroot.Foundation.HRESULT get_Offline(winmdroot.Foundation.VARIANT_BOOL* pbOffline) 1680 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IWebBrowser2*)Unsafe.AsPointer(ref this), pbOffline); 1686 private static winmdroot.Foundation.HRESULT put_Offline(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL bOffline) 1690 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1696 return winmdroot.Foundation.HRESULT.S_OK; 1700 return (winmdroot.Foundation.HRESULT)ex.HResult; 1708 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1714 internal unsafe winmdroot.Foundation.HRESULT get_Silent(out winmdroot.Foundation.VARIANT_BOOL pbSilent) 1718 winmdroot.Foundation.HRESULT __result = this.get_Silent(pbSilentLocal); 1726 private static winmdroot.Foundation.HRESULT get_Silent(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pbSilent) 1730 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1739 return (winmdroot.Foundation.HRESULT)ex.HResult; 1743 public unsafe winmdroot.Foundation.HRESULT get_Silent(winmdroot.Foundation.VARIANT_BOOL* pbSilent) 1745 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IWebBrowser2*)Unsafe.AsPointer(ref this), pbSilent); 1751 private static winmdroot.Foundation.HRESULT put_Silent(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL bSilent) 1755 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1764 return (winmdroot.Foundation.HRESULT)ex.HResult; 1768 public winmdroot.Foundation.HRESULT put_Silent(winmdroot.Foundation.VARIANT_BOOL bSilent) 1770 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IWebBrowser2*)Unsafe.AsPointer(ref this), bSilent); 1776 private static winmdroot.Foundation.HRESULT get_RegisterAsBrowser(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pbRegister) 1780 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1786 return winmdroot.Foundation.HRESULT.S_OK; 1790 return (winmdroot.Foundation.HRESULT)ex.HResult; 1799 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1804 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1811 private static winmdroot.Foundation.HRESULT put_RegisterAsBrowser(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL bRegister) 1815 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1821 return winmdroot.Foundation.HRESULT.S_OK; 1825 return (winmdroot.Foundation.HRESULT)ex.HResult; 1831 internal unsafe winmdroot.Foundation.HRESULT get_RegisterAsDropTarget(out winmdroot.Foundation.VARIANT_BOOL pbRegister) 1835 winmdroot.Foundation.HRESULT __result = this.get_RegisterAsDropTarget(pbRegisterLocal); 1843 private static winmdroot.Foundation.HRESULT get_RegisterAsDropTarget(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pbRegister) 1847 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1856 return (winmdroot.Foundation.HRESULT)ex.HResult; 1860 public unsafe winmdroot.Foundation.HRESULT get_RegisterAsDropTarget(winmdroot.Foundation.VARIANT_BOOL* pbRegister) 1862 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IWebBrowser2*)Unsafe.AsPointer(ref this), pbRegister); 1868 private static winmdroot.Foundation.HRESULT put_RegisterAsDropTarget(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL bRegister) 1872 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1881 return (winmdroot.Foundation.HRESULT)ex.HResult; 1885 public winmdroot.Foundation.HRESULT put_RegisterAsDropTarget(winmdroot.Foundation.VARIANT_BOOL bRegister) 1887 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IWebBrowser2*)Unsafe.AsPointer(ref this), bRegister); 1893 private static winmdroot.Foundation.HRESULT get_TheaterMode(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pbRegister) 1897 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1903 return winmdroot.Foundation.HRESULT.S_OK; 1907 return (winmdroot.Foundation.HRESULT)ex.HResult; 1921 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1926 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1933 private static winmdroot.Foundation.HRESULT put_TheaterMode(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL bRegister) 1937 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1943 return winmdroot.Foundation.HRESULT.S_OK; 1947 return (winmdroot.Foundation.HRESULT)ex.HResult; 1954 private static winmdroot.Foundation.HRESULT get_AddressBar(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* Value) 1958 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1964 return winmdroot.Foundation.HRESULT.S_OK; 1968 return (winmdroot.Foundation.HRESULT)ex.HResult; 1977 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1982 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1989 private static winmdroot.Foundation.HRESULT put_AddressBar(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL Value) 1993 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1999 return winmdroot.Foundation.HRESULT.S_OK; 2003 return (winmdroot.Foundation.HRESULT)ex.HResult; 2010 private static winmdroot.Foundation.HRESULT get_Resizable(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* Value) 2014 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2020 return winmdroot.Foundation.HRESULT.S_OK; 2024 return (winmdroot.Foundation.HRESULT)ex.HResult; 2033 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2038 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2045 private static winmdroot.Foundation.HRESULT put_Resizable(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL Value) 2049 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 2055 return winmdroot.Foundation.HRESULT.S_OK; 2059 return (winmdroot.Foundation.HRESULT)ex.HResult; 2063 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2069 var hr = this.QueryInterface(&guid, &pv); 2086 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2092 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2094 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2096 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2098 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; 2100 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT> GoBack_8; 2102 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT> GoForward_9; 2104 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT> GoHome_10; 2106 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT> GoSearch_11; 2108 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Navigate_12; 2110 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT> Refresh_13; 2112 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Refresh2_14; 2114 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT> Stop_15; 2116 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Application_16; 2118 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Parent_17; 2120 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Container_18; 2122 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Document_19; 2124 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_TopLevelContainer_20; 2126 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Type_21; 2128 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT> get_Left_22; 2130 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT> put_Left_23; 2132 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT> get_Top_24; 2134 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT> put_Top_25; 2136 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT> get_Width_26; 2138 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT> put_Width_27; 2140 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT> get_Height_28; 2142 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT> put_Height_29; 2144 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationName_30; 2146 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationURL_31; 2148 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_Busy_32; 2150 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT> Quit_33; 2152 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,int* ,winmdroot.Foundation.HRESULT> ClientToWindow_34; 2154 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> PutProperty_35; 2156 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetProperty_36; 2158 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Name_37; 2160 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.SHANDLE_PTR* ,winmdroot.Foundation.HRESULT> get_HWND_38; 2162 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_FullName_39; 2164 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Path_40; 2166 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_Visible_41; 2168 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_Visible_42; 2170 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_StatusBar_43; 2172 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_StatusBar_44; 2174 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_StatusText_45; 2176 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_StatusText_46; 2178 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT> get_ToolBar_47; 2180 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT> put_ToolBar_48; 2182 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_MenuBar_49; 2184 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_MenuBar_50; 2186 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_FullScreen_51; 2188 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_FullScreen_52; 2190 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; 2192 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Ole.OLECMDID ,winmdroot.System.Ole.OLECMDF* ,winmdroot.Foundation.HRESULT> QueryStatusWB_54; 2194 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; 2196 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> ShowBrowserBar_56; 2198 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Ole.READYSTATE* ,winmdroot.Foundation.HRESULT> get_ReadyState_57; 2200 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_Offline_58; 2202 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_Offline_59; 2204 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_Silent_60; 2206 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_Silent_61; 2208 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_RegisterAsBrowser_62; 2210 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_RegisterAsBrowser_63; 2212 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_RegisterAsDropTarget_64; 2214 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_RegisterAsDropTarget_65; 2216 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_TheaterMode_66; 2218 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_TheaterMode_67; 2220 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_AddressBar_68; 2222 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_AddressBar_69; 2224 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_Resizable_70; 2226 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_Resizable_71; 2316 new winmdroot.Foundation.HRESULT GoBack(); 2319 new winmdroot.Foundation.HRESULT GoForward(); 2322 new winmdroot.Foundation.HRESULT GoHome(); 2325 new winmdroot.Foundation.HRESULT GoSearch(); 2328 unsafe new winmdroot.Foundation.HRESULT Navigate(winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT* Flags, [Optional] winmdroot.System.Variant.VARIANT* TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT* PostData, [Optional] winmdroot.System.Variant.VARIANT* Headers); 2331 new winmdroot.Foundation.HRESULT Refresh(); 2334 unsafe new winmdroot.Foundation.HRESULT Refresh2([Optional] winmdroot.System.Variant.VARIANT* Level); 2337 new winmdroot.Foundation.HRESULT Stop(); 2355 unsafe new winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp); 2392 unsafe new winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName); 2395 unsafe new winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL); 2398 unsafe new winmdroot.Foundation.HRESULT get_Busy(winmdroot.Foundation.VARIANT_BOOL* pBool); 2401 new winmdroot.Foundation.HRESULT Quit(); 2404 unsafe new winmdroot.Foundation.HRESULT ClientToWindow(int* pcx, int* pcy); 2407 new winmdroot.Foundation.HRESULT PutProperty(winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT vtValue); 2410 unsafe new winmdroot.Foundation.HRESULT GetProperty(winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT* pvtValue); 2469 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); 2472 unsafe winmdroot.Foundation.HRESULT QueryStatusWB(winmdroot.System.Ole.OLECMDID cmdID, winmdroot.System.Ole.OLECMDF* pcmdf); 2475 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); 2478 unsafe winmdroot.Foundation.HRESULT ShowBrowserBar(winmdroot.System.Variant.VARIANT* pvaClsid, [Optional] winmdroot.System.Variant.VARIANT* pvarShow, [Optional] winmdroot.System.Variant.VARIANT* pvarSize); 2481 unsafe winmdroot.Foundation.HRESULT get_ReadyState(winmdroot.System.Ole.READYSTATE* plReadyState); 2484 unsafe winmdroot.Foundation.HRESULT get_Offline(winmdroot.Foundation.VARIANT_BOOL* pbOffline); 2492 unsafe winmdroot.Foundation.HRESULT get_Silent(winmdroot.Foundation.VARIANT_BOOL* pbSilent); 2495winmdroot.Foundation.HRESULT put_Silent(winmdroot.Foundation.VARIANT_BOOL bSilent); 2504 unsafe winmdroot.Foundation.HRESULT get_RegisterAsDropTarget(winmdroot.Foundation.VARIANT_BOOL* pbRegister); 2507winmdroot.Foundation.HRESULT put_RegisterAsDropTarget(winmdroot.Foundation.VARIANT_BOOL bRegister);
_generated\281\Windows.Win32.IWebBrowserApp.g.cs (295)
29 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 41 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 43 return ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IWebBrowserApp*)Unsafe.AsPointer(ref this), riid, ppvObject); 68 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IWebBrowserApp*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 73 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IWebBrowserApp*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 94 ((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(); 133 ((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(); 139 private static winmdroot.Foundation.HRESULT GoBack(IWebBrowserApp* pThis) 143 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 158 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IWebBrowserApp*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 164 private static winmdroot.Foundation.HRESULT GoForward(IWebBrowserApp* pThis) 168 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 177 return (winmdroot.Foundation.HRESULT)ex.HResult; 183 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IWebBrowserApp*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 189 private static winmdroot.Foundation.HRESULT GoHome(IWebBrowserApp* pThis) 193 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 202 return (winmdroot.Foundation.HRESULT)ex.HResult; 208 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IWebBrowserApp*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 214 private static winmdroot.Foundation.HRESULT GoSearch(IWebBrowserApp* pThis) 218 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 227 return (winmdroot.Foundation.HRESULT)ex.HResult; 233 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IWebBrowserApp*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 250 private static winmdroot.Foundation.HRESULT Navigate(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT* Flags, [Optional] winmdroot.System.Variant.VARIANT* TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT* PostData, [Optional] winmdroot.System.Variant.VARIANT* Headers) 254 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 263 return (winmdroot.Foundation.HRESULT)ex.HResult; 269 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IWebBrowserApp*)Unsafe.AsPointer(ref this), URL, Flags, TargetFrameName, PostData, Headers).ThrowOnFailure(); 275 private static winmdroot.Foundation.HRESULT Refresh(IWebBrowserApp* pThis) 279 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 288 return (winmdroot.Foundation.HRESULT)ex.HResult; 294 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IWebBrowserApp*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 308 private static winmdroot.Foundation.HRESULT Refresh2(IWebBrowserApp* pThis, [Optional] winmdroot.System.Variant.VARIANT* Level) 312 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 321 return (winmdroot.Foundation.HRESULT)ex.HResult; 327 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IWebBrowserApp*)Unsafe.AsPointer(ref this), Level).ThrowOnFailure(); 333 private static winmdroot.Foundation.HRESULT Stop(IWebBrowserApp* pThis) 337 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 346 return (winmdroot.Foundation.HRESULT)ex.HResult; 352 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IWebBrowserApp*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 358 private static winmdroot.Foundation.HRESULT get_Application(IWebBrowserApp* pThis, winmdroot.System.Com.IDispatch** ppDisp) 362 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 368 return winmdroot.Foundation.HRESULT.S_OK; 372 return (winmdroot.Foundation.HRESULT)ex.HResult; 381 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 389 private static winmdroot.Foundation.HRESULT get_Parent(IWebBrowserApp* pThis, winmdroot.System.Com.IDispatch** ppDisp) 393 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 399 return winmdroot.Foundation.HRESULT.S_OK; 403 return (winmdroot.Foundation.HRESULT)ex.HResult; 412 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 420 private static winmdroot.Foundation.HRESULT get_Container(IWebBrowserApp* pThis, winmdroot.System.Com.IDispatch** ppDisp) 424 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 430 return winmdroot.Foundation.HRESULT.S_OK; 434 return (winmdroot.Foundation.HRESULT)ex.HResult; 443 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 451 private static winmdroot.Foundation.HRESULT get_Document(IWebBrowserApp* pThis, winmdroot.System.Com.IDispatch** ppDisp) 455 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 464 return (winmdroot.Foundation.HRESULT)ex.HResult; 468 public unsafe winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp) 470 return ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IWebBrowserApp*)Unsafe.AsPointer(ref this), ppDisp); 476 private static winmdroot.Foundation.HRESULT get_TopLevelContainer(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 480 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 486 return winmdroot.Foundation.HRESULT.S_OK; 490 return (winmdroot.Foundation.HRESULT)ex.HResult; 499 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 507 private static winmdroot.Foundation.HRESULT get_Type(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* Type) 511 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 517 return winmdroot.Foundation.HRESULT.S_OK; 521 return (winmdroot.Foundation.HRESULT)ex.HResult; 530 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 538 private static winmdroot.Foundation.HRESULT get_Left(IWebBrowserApp* pThis, int* pl) 542 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 548 return winmdroot.Foundation.HRESULT.S_OK; 552 return (winmdroot.Foundation.HRESULT)ex.HResult; 561 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 566 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 573 private static winmdroot.Foundation.HRESULT put_Left(IWebBrowserApp* pThis, int Left) 577 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 583 return winmdroot.Foundation.HRESULT.S_OK; 587 return (winmdroot.Foundation.HRESULT)ex.HResult; 594 private static winmdroot.Foundation.HRESULT get_Top(IWebBrowserApp* pThis, int* pl) 598 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 604 return winmdroot.Foundation.HRESULT.S_OK; 608 return (winmdroot.Foundation.HRESULT)ex.HResult; 617 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 622 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 629 private static winmdroot.Foundation.HRESULT put_Top(IWebBrowserApp* pThis, int Top) 633 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 639 return winmdroot.Foundation.HRESULT.S_OK; 643 return (winmdroot.Foundation.HRESULT)ex.HResult; 650 private static winmdroot.Foundation.HRESULT get_Width(IWebBrowserApp* pThis, int* pl) 654 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 660 return winmdroot.Foundation.HRESULT.S_OK; 664 return (winmdroot.Foundation.HRESULT)ex.HResult; 673 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 678 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 685 private static winmdroot.Foundation.HRESULT put_Width(IWebBrowserApp* pThis, int Width) 689 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 695 return winmdroot.Foundation.HRESULT.S_OK; 699 return (winmdroot.Foundation.HRESULT)ex.HResult; 706 private static winmdroot.Foundation.HRESULT get_Height(IWebBrowserApp* pThis, int* pl) 710 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 716 return winmdroot.Foundation.HRESULT.S_OK; 720 return (winmdroot.Foundation.HRESULT)ex.HResult; 729 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 734 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 741 private static winmdroot.Foundation.HRESULT put_Height(IWebBrowserApp* pThis, int Height) 745 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 751 return winmdroot.Foundation.HRESULT.S_OK; 755 return (winmdroot.Foundation.HRESULT)ex.HResult; 761 internal unsafe winmdroot.Foundation.HRESULT get_LocationName(out winmdroot.Foundation.BSTR LocationName) 765 winmdroot.Foundation.HRESULT __result = this.get_LocationName(LocationNameLocal); 773 private static winmdroot.Foundation.HRESULT get_LocationName(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* LocationName) 777 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 786 return (winmdroot.Foundation.HRESULT)ex.HResult; 790 public unsafe winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName) 792 return ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IWebBrowserApp*)Unsafe.AsPointer(ref this), LocationName); 797 internal unsafe winmdroot.Foundation.HRESULT get_LocationURL(out winmdroot.Foundation.BSTR LocationURL) 801 winmdroot.Foundation.HRESULT __result = this.get_LocationURL(LocationURLLocal); 809 private static winmdroot.Foundation.HRESULT get_LocationURL(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* LocationURL) 813 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 822 return (winmdroot.Foundation.HRESULT)ex.HResult; 826 public unsafe winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL) 828 return ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IWebBrowserApp*)Unsafe.AsPointer(ref this), LocationURL); 833 internal unsafe winmdroot.Foundation.HRESULT get_Busy(out winmdroot.Foundation.VARIANT_BOOL pBool) 837 winmdroot.Foundation.HRESULT __result = this.get_Busy(pBoolLocal); 845 private static winmdroot.Foundation.HRESULT get_Busy(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 849 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 858 return (winmdroot.Foundation.HRESULT)ex.HResult; 862 public unsafe winmdroot.Foundation.HRESULT get_Busy(winmdroot.Foundation.VARIANT_BOOL* pBool) 864 return ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IWebBrowserApp*)Unsafe.AsPointer(ref this), pBool); 870 private static winmdroot.Foundation.HRESULT Quit(IWebBrowserApp* pThis) 874 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 883 return (winmdroot.Foundation.HRESULT)ex.HResult; 889 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IWebBrowserApp*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 908 private static winmdroot.Foundation.HRESULT ClientToWindow(IWebBrowserApp* pThis, int* pcx, int* pcy) 912 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 921 return (winmdroot.Foundation.HRESULT)ex.HResult; 927 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IWebBrowserApp*)Unsafe.AsPointer(ref this), pcx, pcy).ThrowOnFailure(); 933 private static winmdroot.Foundation.HRESULT PutProperty(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT vtValue) 937 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 946 return (winmdroot.Foundation.HRESULT)ex.HResult; 952 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IWebBrowserApp*)Unsafe.AsPointer(ref this), Property, vtValue).ThrowOnFailure(); 958 private static winmdroot.Foundation.HRESULT GetProperty(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT* pvtValue) 962 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 971 return (winmdroot.Foundation.HRESULT)ex.HResult; 978 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IWebBrowserApp*)Unsafe.AsPointer(ref this), Property, &__retVal).ThrowOnFailure(); 985 private static winmdroot.Foundation.HRESULT get_Name(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* Name) 989 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 995 return winmdroot.Foundation.HRESULT.S_OK; 999 return (winmdroot.Foundation.HRESULT)ex.HResult; 1008 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1016 private static winmdroot.Foundation.HRESULT get_HWND(IWebBrowserApp* pThis, winmdroot.Foundation.SHANDLE_PTR* pHWND) 1020 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1026 return winmdroot.Foundation.HRESULT.S_OK; 1030 return (winmdroot.Foundation.HRESULT)ex.HResult; 1041 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.SHANDLE_PTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1049 private static winmdroot.Foundation.HRESULT get_FullName(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* FullName) 1053 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1059 return winmdroot.Foundation.HRESULT.S_OK; 1063 return (winmdroot.Foundation.HRESULT)ex.HResult; 1072 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1080 private static winmdroot.Foundation.HRESULT get_Path(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* Path) 1084 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1090 return winmdroot.Foundation.HRESULT.S_OK; 1094 return (winmdroot.Foundation.HRESULT)ex.HResult; 1103 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1111 private static winmdroot.Foundation.HRESULT get_Visible(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 1115 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1121 return winmdroot.Foundation.HRESULT.S_OK; 1125 return (winmdroot.Foundation.HRESULT)ex.HResult; 1134 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1139 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1146 private static winmdroot.Foundation.HRESULT put_Visible(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL Value) 1150 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1156 return winmdroot.Foundation.HRESULT.S_OK; 1160 return (winmdroot.Foundation.HRESULT)ex.HResult; 1167 private static winmdroot.Foundation.HRESULT get_StatusBar(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 1171 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1177 return winmdroot.Foundation.HRESULT.S_OK; 1181 return (winmdroot.Foundation.HRESULT)ex.HResult; 1190 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1195 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1202 private static winmdroot.Foundation.HRESULT put_StatusBar(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL Value) 1206 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1212 return winmdroot.Foundation.HRESULT.S_OK; 1216 return (winmdroot.Foundation.HRESULT)ex.HResult; 1223 private static winmdroot.Foundation.HRESULT get_StatusText(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* StatusText) 1227 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1233 return winmdroot.Foundation.HRESULT.S_OK; 1237 return (winmdroot.Foundation.HRESULT)ex.HResult; 1246 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1251 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1258 private static winmdroot.Foundation.HRESULT put_StatusText(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR StatusText) 1262 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1268 return winmdroot.Foundation.HRESULT.S_OK; 1272 return (winmdroot.Foundation.HRESULT)ex.HResult; 1279 private static winmdroot.Foundation.HRESULT get_ToolBar(IWebBrowserApp* pThis, int* Value) 1283 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1289 return winmdroot.Foundation.HRESULT.S_OK; 1293 return (winmdroot.Foundation.HRESULT)ex.HResult; 1307 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1312 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1319 private static winmdroot.Foundation.HRESULT put_ToolBar(IWebBrowserApp* pThis, int Value) 1323 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1329 return winmdroot.Foundation.HRESULT.S_OK; 1333 return (winmdroot.Foundation.HRESULT)ex.HResult; 1340 private static winmdroot.Foundation.HRESULT get_MenuBar(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL* Value) 1344 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1350 return winmdroot.Foundation.HRESULT.S_OK; 1354 return (winmdroot.Foundation.HRESULT)ex.HResult; 1363 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1368 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1375 private static winmdroot.Foundation.HRESULT put_MenuBar(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL Value) 1379 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1385 return winmdroot.Foundation.HRESULT.S_OK; 1389 return (winmdroot.Foundation.HRESULT)ex.HResult; 1396 private static winmdroot.Foundation.HRESULT get_FullScreen(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL* pbFullScreen) 1400 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1406 return winmdroot.Foundation.HRESULT.S_OK; 1410 return (winmdroot.Foundation.HRESULT)ex.HResult; 1419 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1424 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1431 private static winmdroot.Foundation.HRESULT put_FullScreen(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL bFullScreen) 1435 winmdroot.Foundation.HRESULT __hr = winmdroot.ComHelpers.UnwrapCCW(pThis, out Interface __object); 1441 return winmdroot.Foundation.HRESULT.S_OK; 1445 return (winmdroot.Foundation.HRESULT)ex.HResult; 1449 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 1455 var hr = this.QueryInterface(&guid, &pv); 1472 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 1478 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 1480 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 1482 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 1484 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; 1486 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT> GoBack_8; 1488 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT> GoForward_9; 1490 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT> GoHome_10; 1492 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT> GoSearch_11; 1494 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Navigate_12; 1496 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT> Refresh_13; 1498 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Refresh2_14; 1500 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT> Stop_15; 1502 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Application_16; 1504 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Parent_17; 1506 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Container_18; 1508 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Document_19; 1510 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_TopLevelContainer_20; 1512 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Type_21; 1514 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT> get_Left_22; 1516 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT> put_Left_23; 1518 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT> get_Top_24; 1520 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT> put_Top_25; 1522 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT> get_Width_26; 1524 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT> put_Width_27; 1526 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT> get_Height_28; 1528 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT> put_Height_29; 1530 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationName_30; 1532 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationURL_31; 1534 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_Busy_32; 1536 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT> Quit_33; 1538 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,int* ,winmdroot.Foundation.HRESULT> ClientToWindow_34; 1540 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> PutProperty_35; 1542 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetProperty_36; 1544 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Name_37; 1546 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.SHANDLE_PTR* ,winmdroot.Foundation.HRESULT> get_HWND_38; 1548 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_FullName_39; 1550 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Path_40; 1552 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_Visible_41; 1554 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_Visible_42; 1556 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_StatusBar_43; 1558 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_StatusBar_44; 1560 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_StatusText_45; 1562 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_StatusText_46; 1564 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT> get_ToolBar_47; 1566 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT> put_ToolBar_48; 1568 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_MenuBar_49; 1570 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_MenuBar_50; 1572 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_FullScreen_51; 1574 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_FullScreen_52; 1644 new winmdroot.Foundation.HRESULT GoBack(); 1647 new winmdroot.Foundation.HRESULT GoForward(); 1650 new winmdroot.Foundation.HRESULT GoHome(); 1653 new winmdroot.Foundation.HRESULT GoSearch(); 1656 unsafe new winmdroot.Foundation.HRESULT Navigate(winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT* Flags, [Optional] winmdroot.System.Variant.VARIANT* TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT* PostData, [Optional] winmdroot.System.Variant.VARIANT* Headers); 1659 new winmdroot.Foundation.HRESULT Refresh(); 1662 unsafe new winmdroot.Foundation.HRESULT Refresh2([Optional] winmdroot.System.Variant.VARIANT* Level); 1665 new winmdroot.Foundation.HRESULT Stop(); 1683 unsafe new winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp); 1720 unsafe new winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName); 1723 unsafe new winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL); 1726 unsafe new winmdroot.Foundation.HRESULT get_Busy(winmdroot.Foundation.VARIANT_BOOL* pBool); 1729winmdroot.Foundation.HRESULT Quit(); 1732 unsafe winmdroot.Foundation.HRESULT ClientToWindow(int* pcx, int* pcy); 1735winmdroot.Foundation.HRESULT PutProperty(winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT vtValue); 1738 unsafe winmdroot.Foundation.HRESULT GetProperty(winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT* pvtValue);
_generated\409\Windows.Win32.PInvoke.api-ms-win-shcore-scaling-l1-1-1.dll.g.cs (4)
29 internal static unsafe winmdroot.Foundation.HRESULT GetProcessDpiAwareness([Optional] winmdroot.Foundation.HANDLE hprocess, out winmdroot.UI.HiDpi.PROCESS_DPI_AWARENESS value) 33 winmdroot.Foundation.HRESULT __result = PInvoke.GetProcessDpiAwareness(hprocess, valueLocal); 51 internal static extern unsafe winmdroot.Foundation.HRESULT GetProcessDpiAwareness([Optional] winmdroot.Foundation.HANDLE hprocess, winmdroot.UI.HiDpi.PROCESS_DPI_AWARENESS* value); 65 internal static extern winmdroot.Foundation.HRESULT SetProcessDpiAwareness(winmdroot.UI.HiDpi.PROCESS_DPI_AWARENESS value);
_generated\410\Windows.Win32.PInvoke.COMCTL32.dll.g.cs (6)
420 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); 459 internal static unsafe winmdroot.Foundation.HRESULT TaskDialogIndirect(in winmdroot.UI.Controls.TASKDIALOGCONFIG pTaskConfig, out int pnButton, out int pnRadioButton, out winmdroot.Foundation.BOOL pfVerificationFlagChecked) 469 winmdroot.Foundation.HRESULT __result = PInvoke.TaskDialogIndirect(pTaskConfigLocal, pnButtonLocal, pnRadioButtonLocal, pfVerificationFlagCheckedLocal); 479 internal static unsafe winmdroot.Foundation.HRESULT TaskDialogIndirect(in winmdroot.UI.Controls.TASKDIALOGCONFIG pTaskConfig) 483 winmdroot.Foundation.HRESULT __result = PInvoke.TaskDialogIndirect(pTaskConfigLocal, default(int* ), default(int* ), default(winmdroot.Foundation.BOOL* )); 515 internal static extern unsafe winmdroot.Foundation.HRESULT TaskDialogIndirect(winmdroot.UI.Controls.TASKDIALOGCONFIG* pTaskConfig, [Optional] int* pnButton, [Optional] int* pnRadioButton, [Optional] winmdroot.Foundation.BOOL* pfVerificationFlagChecked);
_generated\412\Windows.Win32.PInvoke.dwmapi.dll.g.cs (10)
28 internal static unsafe winmdroot.Foundation.HRESULT DwmGetWindowAttribute(winmdroot.Foundation.HWND hwnd, winmdroot.Graphics.Dwm.DWMWINDOWATTRIBUTE dwAttribute, Span<byte> pvAttribute) 32 winmdroot.Foundation.HRESULT __result = PInvoke.DwmGetWindowAttribute(hwnd, dwAttribute, (void* )pvAttributeLocal, (uint )pvAttribute.Length); 49 internal static unsafe winmdroot.Foundation.HRESULT DwmGetWindowAttribute(winmdroot.Foundation.HWND hwnd, winmdroot.Graphics.Dwm.DWMWINDOWATTRIBUTE dwAttribute, void* pvAttribute, uint cbAttribute) 51 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hwnd, (uint)dwAttribute, pvAttribute, cbAttribute); 55 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.Foundation.HWND hwnd, uint dwAttribute, void* pvAttribute, uint cbAttribute); 60 internal static unsafe winmdroot.Foundation.HRESULT DwmSetWindowAttribute(winmdroot.Foundation.HWND hwnd, winmdroot.Graphics.Dwm.DWMWINDOWATTRIBUTE dwAttribute, ReadOnlySpan<byte> pvAttribute) 64 winmdroot.Foundation.HRESULT __result = PInvoke.DwmSetWindowAttribute(hwnd, dwAttribute, (void* )pvAttributeLocal, (uint )pvAttribute.Length); 79 internal static unsafe winmdroot.Foundation.HRESULT DwmSetWindowAttribute(winmdroot.Foundation.HWND hwnd, winmdroot.Graphics.Dwm.DWMWINDOWATTRIBUTE dwAttribute, void* pvAttribute, uint cbAttribute) 81 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hwnd, (uint)dwAttribute, pvAttribute, cbAttribute); 85 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.Foundation.HWND hwnd, uint dwAttribute, void* pvAttribute, uint cbAttribute);
_generated\413\Windows.Win32.PInvoke.g.cs (124)
766 internal static readonly winmdroot.Foundation.HRESULT CLIPBRD_E_BAD_DATA = (winmdroot.Foundation.HRESULT)(-2147221037); 3016 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_UNEXPECTED = (winmdroot.Foundation.HRESULT)(-2145845247); 3018 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_UNEXPECTED_REDIRECTION = (winmdroot.Foundation.HRESULT)(-2145845245); 3020 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_UNEXPECTED_CLIENT_ERROR = (winmdroot.Foundation.HRESULT)(-2145845244); 3022 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_UNEXPECTED_SERVER_ERROR = (winmdroot.Foundation.HRESULT)(-2145845243); 3024 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_AMBIGUOUS = (winmdroot.Foundation.HRESULT)(-2145844948); 3026 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_MOVED = (winmdroot.Foundation.HRESULT)(-2145844947); 3028 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_REDIRECT = (winmdroot.Foundation.HRESULT)(-2145844946); 3030 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_REDIRECT_METHOD = (winmdroot.Foundation.HRESULT)(-2145844945); 3032 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_NOT_MODIFIED = (winmdroot.Foundation.HRESULT)(-2145844944); 3034 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_USE_PROXY = (winmdroot.Foundation.HRESULT)(-2145844943); 3036 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_REDIRECT_KEEP_VERB = (winmdroot.Foundation.HRESULT)(-2145844941); 3038 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_BAD_REQUEST = (winmdroot.Foundation.HRESULT)(-2145844848); 3040 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_DENIED = (winmdroot.Foundation.HRESULT)(-2145844847); 3042 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_PAYMENT_REQ = (winmdroot.Foundation.HRESULT)(-2145844846); 3044 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_FORBIDDEN = (winmdroot.Foundation.HRESULT)(-2145844845); 3046 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_NOT_FOUND = (winmdroot.Foundation.HRESULT)(-2145844844); 3048 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_BAD_METHOD = (winmdroot.Foundation.HRESULT)(-2145844843); 3050 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_NONE_ACCEPTABLE = (winmdroot.Foundation.HRESULT)(-2145844842); 3052 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_PROXY_AUTH_REQ = (winmdroot.Foundation.HRESULT)(-2145844841); 3054 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_REQUEST_TIMEOUT = (winmdroot.Foundation.HRESULT)(-2145844840); 3056 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_CONFLICT = (winmdroot.Foundation.HRESULT)(-2145844839); 3058 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_GONE = (winmdroot.Foundation.HRESULT)(-2145844838); 3060 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_LENGTH_REQUIRED = (winmdroot.Foundation.HRESULT)(-2145844837); 3062 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_PRECOND_FAILED = (winmdroot.Foundation.HRESULT)(-2145844836); 3064 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_REQUEST_TOO_LARGE = (winmdroot.Foundation.HRESULT)(-2145844835); 3066 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_URI_TOO_LONG = (winmdroot.Foundation.HRESULT)(-2145844834); 3068 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_UNSUPPORTED_MEDIA = (winmdroot.Foundation.HRESULT)(-2145844833); 3070 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_RANGE_NOT_SATISFIABLE = (winmdroot.Foundation.HRESULT)(-2145844832); 3072 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_EXPECTATION_FAILED = (winmdroot.Foundation.HRESULT)(-2145844831); 3074 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_SERVER_ERROR = (winmdroot.Foundation.HRESULT)(-2145844748); 3076 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_NOT_SUPPORTED = (winmdroot.Foundation.HRESULT)(-2145844747); 3078 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_BAD_GATEWAY = (winmdroot.Foundation.HRESULT)(-2145844746); 3080 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_SERVICE_UNAVAIL = (winmdroot.Foundation.HRESULT)(-2145844745); 3082 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_GATEWAY_TIMEOUT = (winmdroot.Foundation.HRESULT)(-2145844744); 3084 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_VERSION_NOT_SUP = (winmdroot.Foundation.HRESULT)(-2145844743); 4573 internal static readonly winmdroot.Foundation.HRESULT S_OK = (winmdroot.Foundation.HRESULT)(0); 7326 internal static readonly winmdroot.Foundation.HRESULT REGDB_E_CLASSNOTREG = (winmdroot.Foundation.HRESULT)(-2147221164); 8551 internal static readonly winmdroot.Foundation.HRESULT TBS_E_INTERNAL_ERROR = (winmdroot.Foundation.HRESULT)(-2144845823); 8553 internal static readonly winmdroot.Foundation.HRESULT TBS_E_BAD_PARAMETER = (winmdroot.Foundation.HRESULT)(-2144845822); 8555 internal static readonly winmdroot.Foundation.HRESULT TBS_E_INVALID_OUTPUT_POINTER = (winmdroot.Foundation.HRESULT)(-2144845821); 8557 internal static readonly winmdroot.Foundation.HRESULT TBS_E_INVALID_CONTEXT = (winmdroot.Foundation.HRESULT)(-2144845820); 8559 internal static readonly winmdroot.Foundation.HRESULT TBS_E_INSUFFICIENT_BUFFER = (winmdroot.Foundation.HRESULT)(-2144845819); 8561 internal static readonly winmdroot.Foundation.HRESULT TBS_E_IOERROR = (winmdroot.Foundation.HRESULT)(-2144845818); 8563 internal static readonly winmdroot.Foundation.HRESULT TBS_E_INVALID_CONTEXT_PARAM = (winmdroot.Foundation.HRESULT)(-2144845817); 8565 internal static readonly winmdroot.Foundation.HRESULT TBS_E_SERVICE_NOT_RUNNING = (winmdroot.Foundation.HRESULT)(-2144845816); 8567 internal static readonly winmdroot.Foundation.HRESULT TBS_E_TOO_MANY_TBS_CONTEXTS = (winmdroot.Foundation.HRESULT)(-2144845815); 8569 internal static readonly winmdroot.Foundation.HRESULT TBS_E_TOO_MANY_RESOURCES = (winmdroot.Foundation.HRESULT)(-2144845814); 8571 internal static readonly winmdroot.Foundation.HRESULT TBS_E_SERVICE_START_PENDING = (winmdroot.Foundation.HRESULT)(-2144845813); 8573 internal static readonly winmdroot.Foundation.HRESULT TBS_E_PPI_NOT_SUPPORTED = (winmdroot.Foundation.HRESULT)(-2144845812); 8575 internal static readonly winmdroot.Foundation.HRESULT TBS_E_COMMAND_CANCELED = (winmdroot.Foundation.HRESULT)(-2144845811); 8577 internal static readonly winmdroot.Foundation.HRESULT TBS_E_BUFFER_TOO_LARGE = (winmdroot.Foundation.HRESULT)(-2144845810); 8579 internal static readonly winmdroot.Foundation.HRESULT TBS_E_TPM_NOT_FOUND = (winmdroot.Foundation.HRESULT)(-2144845809); 8581 internal static readonly winmdroot.Foundation.HRESULT TBS_E_SERVICE_DISABLED = (winmdroot.Foundation.HRESULT)(-2144845808); 8583 internal static readonly winmdroot.Foundation.HRESULT TBS_E_NO_EVENT_LOG = (winmdroot.Foundation.HRESULT)(-2144845807); 8585 internal static readonly winmdroot.Foundation.HRESULT TBS_E_ACCESS_DENIED = (winmdroot.Foundation.HRESULT)(-2144845806); 8587 internal static readonly winmdroot.Foundation.HRESULT TBS_E_PROVISIONING_NOT_ALLOWED = (winmdroot.Foundation.HRESULT)(-2144845805); 8589 internal static readonly winmdroot.Foundation.HRESULT TBS_E_PPI_FUNCTION_UNSUPPORTED = (winmdroot.Foundation.HRESULT)(-2144845804); 8591 internal static readonly winmdroot.Foundation.HRESULT TBS_E_OWNERAUTH_NOT_FOUND = (winmdroot.Foundation.HRESULT)(-2144845803); 8593 internal static readonly winmdroot.Foundation.HRESULT TBS_E_PROVISIONING_INCOMPLETE = (winmdroot.Foundation.HRESULT)(-2144845802); 8595 internal static readonly winmdroot.Foundation.HRESULT TBS_E_TPM_IN_EXCLUSIVE_MODE = (winmdroot.Foundation.HRESULT)(-2144845801); 8597 internal static readonly winmdroot.Foundation.HRESULT TBS_E_TPM_REBOOT_REQUIRED = (winmdroot.Foundation.HRESULT)(-2144845800);
_generated\418\Windows.Win32.PInvoke.OLE32.dll.g.cs (20)
29 internal static unsafe winmdroot.Foundation.HRESULT CoGetClassObject(in global::System.Guid rclsid, winmdroot.System.Com.CLSCTX dwClsContext, [Optional] void* pvReserved, in global::System.Guid riid, out void* ppv) 37 winmdroot.Foundation.HRESULT __result = PInvoke.CoGetClassObject(rclsidLocal, dwClsContext, pvReserved, riidLocal, ppvLocal); 63 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) 65 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(rclsid, (uint)dwClsContext, pvReserved, riid, ppv); 69 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(global::System.Guid* rclsid, uint dwClsContext, [Optional] void* pvReserved, global::System.Guid* riid, void** ppv); 74 internal static unsafe winmdroot.Foundation.HRESULT CoRegisterMessageFilter([Optional] winmdroot.Media.Audio.IMessageFilter* lpMessageFilter) 76 winmdroot.Foundation.HRESULT __result = PInvoke.CoRegisterMessageFilter(lpMessageFilter, default(winmdroot.Media.Audio.IMessageFilter** )); 90 internal static extern unsafe winmdroot.Foundation.HRESULT CoRegisterMessageFilter([Optional] winmdroot.Media.Audio.IMessageFilter* lpMessageFilter, [Optional] winmdroot.Media.Audio.IMessageFilter** lplpMessageFilter); 107 internal static extern unsafe winmdroot.Foundation.HRESULT CreateILockBytesOnHGlobal([Optional] winmdroot.Foundation.HGLOBAL hGlobal, winmdroot.Foundation.BOOL fDeleteOnRelease, winmdroot.System.Com.StructuredStorage.ILockBytes** pplkbyt); 115 internal static extern unsafe winmdroot.Foundation.HRESULT CreateOleAdviseHolder(winmdroot.System.Ole.IOleAdviseHolder** ppOAHolder); 120 internal static unsafe winmdroot.Foundation.HRESULT GetHGlobalFromILockBytes(winmdroot.System.Com.StructuredStorage.ILockBytes* plkbyt, out winmdroot.Foundation.HGLOBAL phglobal) 124 winmdroot.Foundation.HRESULT __result = PInvoke.GetHGlobalFromILockBytes(plkbyt, phglobalLocal); 142 internal static extern unsafe winmdroot.Foundation.HRESULT GetHGlobalFromILockBytes(winmdroot.System.Com.StructuredStorage.ILockBytes* plkbyt, winmdroot.Foundation.HGLOBAL* phglobal); 176 internal static unsafe winmdroot.Foundation.HRESULT ReadClassStg(winmdroot.System.Com.StructuredStorage.IStorage* pStg, out global::System.Guid pclsid) 180 winmdroot.Foundation.HRESULT __result = PInvoke.ReadClassStg(pStg, pclsidLocal); 200 internal static extern unsafe winmdroot.Foundation.HRESULT ReadClassStg(winmdroot.System.Com.StructuredStorage.IStorage* pStg, global::System.Guid* pclsid); 223 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); 227 internal static unsafe winmdroot.Foundation.HRESULT StgOpenStorageOnILockBytes(winmdroot.System.Com.StructuredStorage.ILockBytes* plkbyt, [Optional] winmdroot.System.Com.StructuredStorage.IStorage* pstgPriority, winmdroot.System.Com.STGM grfMode, in ushort* snbExclude, winmdroot.System.Com.StructuredStorage.IStorage** ppstgOpen) 231 winmdroot.Foundation.HRESULT __result = PInvoke.StgOpenStorageOnILockBytes(plkbyt, pstgPriority, grfMode, snbExcludeLocal, default, ppstgOpen); 260 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, [Optional] uint reserved, winmdroot.System.Com.StructuredStorage.IStorage** ppstgOpen);
_generated\419\Windows.Win32.PInvoke.OLEACC.dll.g.cs (3)
29 internal static unsafe winmdroot.Foundation.HRESULT CreateStdAccessibleObject(winmdroot.Foundation.HWND hwnd, int idObject, in global::System.Guid riid, out void* ppvObject) 35 winmdroot.Foundation.HRESULT __result = PInvoke.CreateStdAccessibleObject(hwnd, idObject, riidLocal, ppvObjectLocal); 67 internal static extern unsafe winmdroot.Foundation.HRESULT CreateStdAccessibleObject(winmdroot.Foundation.HWND hwnd, int idObject, global::System.Guid* riid, void** ppvObject);
_generated\420\Windows.Win32.PInvoke.OLEAUT32.dll.g.cs (16)
38 internal static extern unsafe winmdroot.Foundation.HRESULT GetErrorInfo(uint dwReserved, winmdroot.System.Com.IErrorInfo** pperrinfo); 42 internal static unsafe winmdroot.Foundation.HRESULT LoadTypeLib(string szFile, winmdroot.System.Com.ITypeLib** pptlib) 46 winmdroot.Foundation.HRESULT __result = PInvoke.LoadTypeLib(szFileLocal, pptlib); 64 internal static extern unsafe winmdroot.Foundation.HRESULT LoadTypeLib(winmdroot.Foundation.PCWSTR szFile, winmdroot.System.Com.ITypeLib** pptlib); 69 internal static unsafe winmdroot.Foundation.HRESULT OleCreateFontIndirect(in winmdroot.System.Ole.FONTDESC lpFontDesc, in global::System.Guid riid, out void* lplpvObj) 77 winmdroot.Foundation.HRESULT __result = PInvoke.OleCreateFontIndirect(lpFontDescLocal, riidLocal, lplpvObjLocal); 97 internal static extern unsafe winmdroot.Foundation.HRESULT OleCreateFontIndirect(winmdroot.System.Ole.FONTDESC* lpFontDesc, global::System.Guid* riid, void** lplpvObj); 101 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) 107 winmdroot.Foundation.HRESULT __result = PInvoke.OleCreatePropertyFrame(hwndOwner, x, y, lpszCaptionLocal, cObjects, ppUnk, cPages, pPageClsIDLocal, lcid, default, default); 135 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); 140 internal static unsafe winmdroot.Foundation.HRESULT OleCreatePropertyFrameIndirect(in winmdroot.System.Ole.OCPFIPARAMS lpParams) 144 winmdroot.Foundation.HRESULT __result = PInvoke.OleCreatePropertyFrameIndirect(lpParamsLocal); 162 internal static extern unsafe winmdroot.Foundation.HRESULT OleCreatePropertyFrameIndirect(winmdroot.System.Ole.OCPFIPARAMS* lpParams); 166 internal static unsafe winmdroot.Foundation.HRESULT VarFormat(in winmdroot.System.Variant.VARIANT pvarIn, [Optional] winmdroot.Foundation.PWSTR pstrFormat, winmdroot.System.Ole.VARFORMAT_FIRST_DAY iFirstDay, winmdroot.System.Ole.VARFORMAT_FIRST_WEEK iFirstWeek, uint dwFlags, out winmdroot.Foundation.BSTR pbstrOut) 172 winmdroot.Foundation.HRESULT __result = PInvoke.VarFormat(pvarInLocal, pstrFormat, iFirstDay, iFirstWeek, dwFlags, pbstrOutLocal); 200 internal static extern unsafe winmdroot.Foundation.HRESULT VarFormat(winmdroot.System.Variant.VARIANT* pvarIn, [Optional] winmdroot.Foundation.PWSTR pstrFormat, winmdroot.System.Ole.VARFORMAT_FIRST_DAY iFirstDay, winmdroot.System.Ole.VARFORMAT_FIRST_WEEK iFirstWeek, uint dwFlags, winmdroot.Foundation.BSTR* pbstrOut);
_generated\422\Windows.Win32.PInvoke.SHELL32.dll.g.cs (19)
106 internal static unsafe winmdroot.Foundation.HRESULT SHCreateItemFromParsingName(string pszPath, [Optional] winmdroot.System.Com.IBindCtx* pbc, in global::System.Guid riid, out void* ppv) 114 winmdroot.Foundation.HRESULT __result = PInvoke.SHCreateItemFromParsingName(pszPathLocal, pbc, riidLocal, ppvLocal); 146 internal static extern unsafe winmdroot.Foundation.HRESULT SHCreateItemFromParsingName(winmdroot.Foundation.PCWSTR pszPath, [Optional] winmdroot.System.Com.IBindCtx* pbc, global::System.Guid* riid, void** ppv); 151 internal static unsafe winmdroot.Foundation.HRESULT SHCreateShellItem([Optional] winmdroot.UI.Shell.Common.ITEMIDLIST? pidlParent, [Optional] winmdroot.UI.Shell.IShellFolder* psfParent, in winmdroot.UI.Shell.Common.ITEMIDLIST pidl, winmdroot.UI.Shell.IShellItem** ppsi) 156 winmdroot.Foundation.HRESULT __result = PInvoke.SHCreateShellItem(pidlParent.HasValue ? &pidlParentLocal : null, psfParent, pidlLocal, ppsi); 189 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); 254 internal static unsafe winmdroot.Foundation.HRESULT SHGetKnownFolderPath(in global::System.Guid rfid, winmdroot.UI.Shell.KNOWN_FOLDER_FLAG dwFlags, [Optional] winmdroot.Foundation.HANDLE hToken, out winmdroot.Foundation.PWSTR ppszPath) 260 winmdroot.Foundation.HRESULT __result = PInvoke.SHGetKnownFolderPath(rfidLocal, dwFlags, hToken, ppszPathLocal); 290 internal static unsafe winmdroot.Foundation.HRESULT SHGetKnownFolderPath(global::System.Guid* rfid, winmdroot.UI.Shell.KNOWN_FOLDER_FLAG dwFlags, [Optional] winmdroot.Foundation.HANDLE hToken, winmdroot.Foundation.PWSTR* ppszPath) 292 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(rfid, (uint)dwFlags, hToken, ppszPath); 296 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(global::System.Guid* rfid, uint dwFlags, [Optional] winmdroot.Foundation.HANDLE hToken, winmdroot.Foundation.PWSTR* ppszPath); 344 internal static unsafe winmdroot.Foundation.HRESULT SHGetSpecialFolderLocation(int csidl, out winmdroot.UI.Shell.Common.ITEMIDLIST* ppidl) 348 winmdroot.Foundation.HRESULT __result = PInvoke.SHGetSpecialFolderLocation(default, csidl, ppidlLocal); 374 internal static extern unsafe winmdroot.Foundation.HRESULT SHGetSpecialFolderLocation([Optional] winmdroot.Foundation.HWND hwnd, int csidl, winmdroot.UI.Shell.Common.ITEMIDLIST** ppidl); 379 internal static unsafe winmdroot.Foundation.HRESULT SHParseDisplayName(string pszName, [Optional] winmdroot.System.Com.IBindCtx* pbc, out winmdroot.UI.Shell.Common.ITEMIDLIST* ppidl, uint sfgaoIn, out uint psfgaoOut) 387 winmdroot.Foundation.HRESULT __result = PInvoke.SHParseDisplayName(pszNameLocal, pbc, ppidlLocal, sfgaoIn, psfgaoOutLocal); 396 internal static unsafe winmdroot.Foundation.HRESULT SHParseDisplayName(string pszName, [Optional] winmdroot.System.Com.IBindCtx* pbc, out winmdroot.UI.Shell.Common.ITEMIDLIST* ppidl, uint sfgaoIn) 402 winmdroot.Foundation.HRESULT __result = PInvoke.SHParseDisplayName(pszNameLocal, pbc, ppidlLocal, sfgaoIn, default(uint* )); 435 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);
_generated\423\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);
_generated\424\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, [Optional] winmdroot.Foundation.BSTR displayString, winmdroot.Foundation.BSTR activityId); 145 internal static unsafe winmdroot.Foundation.HRESULT UiaRaiseStructureChangedEvent(winmdroot.UI.Accessibility.IRawElementProviderSimple* pProvider, winmdroot.UI.Accessibility.StructureChangeType structureChangeType, ref int pRuntimeId, int cRuntimeIdLen) 149 winmdroot.Foundation.HRESULT __result = PInvoke.UiaRaiseStructureChangedEvent(pProvider, structureChangeType, pRuntimeIdLocal, cRuntimeIdLen); 177 internal static extern unsafe winmdroot.Foundation.HRESULT UiaRaiseStructureChangedEvent(winmdroot.UI.Accessibility.IRawElementProviderSimple* pProvider, winmdroot.UI.Accessibility.StructureChangeType structureChangeType, int* pRuntimeId, int cRuntimeIdLen);
_generated\426\Windows.Win32.PInvoke.UXTHEME.dll.g.cs (91)
37 internal static extern winmdroot.Foundation.HRESULT CloseThemeData(winmdroot.UI.Controls.HTHEME hTheme); 42 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, [Optional] winmdroot.Foundation.RECT? pClipRect) 47 winmdroot.Foundation.HRESULT __result = PInvoke.DrawThemeBackground(hTheme, hdc, iPartId, iStateId, pRectLocal, pClipRect.HasValue ? &pClipRectLocal : null); 83 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); 88 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, out winmdroot.Foundation.RECT pContentRect) 94 winmdroot.Foundation.HRESULT __result = PInvoke.DrawThemeEdge(hTheme, hdc, iPartId, iStateId, pDestRectLocal, uEdge, uFlags, pContentRectLocal); 102 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) 106 winmdroot.Foundation.HRESULT __result = PInvoke.DrawThemeEdge(hTheme, hdc, iPartId, iStateId, pDestRectLocal, uEdge, uFlags, default(winmdroot.Foundation.RECT* )); 150 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); 155 internal static unsafe winmdroot.Foundation.HRESULT DrawThemeParentBackground(winmdroot.Foundation.HWND hwnd, winmdroot.Graphics.Gdi.HDC hdc, [Optional] winmdroot.Foundation.RECT? prc) 158 winmdroot.Foundation.HRESULT __result = PInvoke.DrawThemeParentBackground(hwnd, hdc, prc.HasValue ? &prcLocal : null); 183 internal static extern unsafe winmdroot.Foundation.HRESULT DrawThemeParentBackground(winmdroot.Foundation.HWND hwnd, winmdroot.Graphics.Gdi.HDC hdc, [Optional] winmdroot.Foundation.RECT* prc); 188 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) 194 winmdroot.Foundation.HRESULT __result = PInvoke.DrawThemeText(hTheme, hdc, iPartId, iStateId, pszTextLocal, cchText, dwTextFlags, dwTextFlags2, pRectLocal); 243 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); 247 internal static unsafe winmdroot.Foundation.HRESULT GetCurrentThemeName(Span<char>pszThemeFileName, [Optional] Span<char>pszColorBuff, [Optional] Span<char>pszSizeBuff) 255 winmdroot.Foundation.HRESULT __result = PInvoke.GetCurrentThemeName(pszThemeFileNameLocal, pszThemeFileName.Length, pszColorBuffLocal, pszColorBuff.Length, pszSizeBuffLocal, pszSizeBuff.Length); 295 internal static extern winmdroot.Foundation.HRESULT GetCurrentThemeName(winmdroot.Foundation.PWSTR pszThemeFileName, int cchMaxNameChars, [Optional] winmdroot.Foundation.PWSTR pszColorBuff, int cchMaxColorChars, [Optional] winmdroot.Foundation.PWSTR pszSizeBuff, int cchMaxSizeChars); 313 internal static unsafe winmdroot.Foundation.HRESULT GetThemeBackgroundContentRect(winmdroot.UI.Controls.HTHEME hTheme, [Optional] winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, in winmdroot.Foundation.RECT pBoundingRect, out winmdroot.Foundation.RECT pContentRect) 319 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeBackgroundContentRect(hTheme, hdc, iPartId, iStateId, pBoundingRectLocal, pContentRectLocal); 356 internal static extern unsafe winmdroot.Foundation.HRESULT GetThemeBackgroundContentRect(winmdroot.UI.Controls.HTHEME hTheme, [Optional] winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.Foundation.RECT* pBoundingRect, winmdroot.Foundation.RECT* pContentRect); 361 internal static unsafe winmdroot.Foundation.HRESULT GetThemeBackgroundExtent(winmdroot.UI.Controls.HTHEME hTheme, [Optional] winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, in winmdroot.Foundation.RECT pContentRect, out winmdroot.Foundation.RECT pExtentRect) 367 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeBackgroundExtent(hTheme, hdc, iPartId, iStateId, pContentRectLocal, pExtentRectLocal); 404 internal static extern unsafe winmdroot.Foundation.HRESULT GetThemeBackgroundExtent(winmdroot.UI.Controls.HTHEME hTheme, [Optional] winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.Foundation.RECT* pContentRect, winmdroot.Foundation.RECT* pExtentRect); 409 internal static unsafe winmdroot.Foundation.HRESULT GetThemeBackgroundRegion(winmdroot.UI.Controls.HTHEME hTheme, [Optional] winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, in winmdroot.Foundation.RECT pRect, out winmdroot.Graphics.Gdi.HRGN pRegion) 415 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeBackgroundRegion(hTheme, hdc, iPartId, iStateId, pRectLocal, pRegionLocal); 452 internal static extern unsafe winmdroot.Foundation.HRESULT GetThemeBackgroundRegion(winmdroot.UI.Controls.HTHEME hTheme, [Optional] winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.Foundation.RECT* pRect, winmdroot.Graphics.Gdi.HRGN* pRegion); 457 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) 461 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeBool(hTheme, iPartId, iStateId, iPropId, pfValLocal); 491 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) 493 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hTheme, iPartId, iStateId, (int)iPropId, pfVal); 497 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, int iPropId, winmdroot.Foundation.BOOL* pfVal); 503 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) 507 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeColor(hTheme, iPartId, iStateId, iPropId, pColorLocal); 540 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) 542 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hTheme, iPartId, iStateId, (int)iPropId, pColor); 546 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, int iPropId, winmdroot.Foundation.COLORREF* pColor); 551 internal static unsafe winmdroot.Foundation.HRESULT GetThemeDocumentationProperty(string pszThemeName, string pszPropertyName, Span<char>pszValueBuff) 559 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeDocumentationProperty(pszThemeNameLocal, pszPropertyNameLocal, pszValueBuffLocal, pszValueBuff.Length); 586 internal static extern winmdroot.Foundation.HRESULT GetThemeDocumentationProperty(winmdroot.Foundation.PCWSTR pszThemeName, winmdroot.Foundation.PCWSTR pszPropertyName, winmdroot.Foundation.PWSTR pszValueBuff, int cchMaxValChars); 591 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) 595 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeEnumValue(hTheme, iPartId, iStateId, iPropId, piValLocal); 628 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) 630 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hTheme, iPartId, iStateId, (int)iPropId, piVal); 634 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, int iPropId, int* piVal); 639 internal static unsafe winmdroot.Foundation.HRESULT GetThemeFilename(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iPropId, Span<char>pszThemeFileName) 643 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeFilename(hTheme, iPartId, iStateId, iPropId, pszThemeFileNameLocal, pszThemeFileName.Length); 680 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) 682 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hTheme, iPartId, iStateId, (int)iPropId, pszThemeFileName, cchMaxBuffChars); 686 static extern winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, int iPropId, winmdroot.Foundation.PWSTR pszThemeFileName, int cchMaxBuffChars); 692 internal static unsafe winmdroot.Foundation.HRESULT GetThemeFont(winmdroot.UI.Controls.HTHEME hTheme, [Optional] winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, int iPropId, out winmdroot.Graphics.Gdi.LOGFONTW pFont) 696 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeFont(hTheme, hdc, iPartId, iStateId, iPropId, pFontLocal); 735 internal static extern unsafe winmdroot.Foundation.HRESULT GetThemeFont(winmdroot.UI.Controls.HTHEME hTheme, [Optional] winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, int iPropId, winmdroot.Graphics.Gdi.LOGFONTW* pFont); 740 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) 744 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeInt(hTheme, iPartId, iStateId, iPropId, piValLocal); 777 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) 779 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hTheme, iPartId, iStateId, (int)iPropId, piVal); 783 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, int iPropId, int* piVal); 789 internal static unsafe winmdroot.Foundation.HRESULT GetThemeMargins(winmdroot.UI.Controls.HTHEME hTheme, [Optional] winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iPropId, [Optional] winmdroot.Foundation.RECT? prc, out winmdroot.UI.Controls.MARGINS pMargins) 794 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeMargins(hTheme, hdc, iPartId, iStateId, iPropId, prc.HasValue ? &prcLocal : null, pMarginsLocal); 835 internal static unsafe winmdroot.Foundation.HRESULT GetThemeMargins(winmdroot.UI.Controls.HTHEME hTheme, [Optional] 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) 837 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hTheme, hdc, iPartId, iStateId, (int)iPropId, prc, pMargins); 841 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.UI.Controls.HTHEME hTheme, [Optional] winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, int iPropId, [Optional] winmdroot.Foundation.RECT* prc, winmdroot.UI.Controls.MARGINS* pMargins); 847 internal static unsafe winmdroot.Foundation.HRESULT GetThemePartSize(winmdroot.UI.Controls.HTHEME hTheme, [Optional] winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, [Optional] winmdroot.Foundation.RECT? prc, winmdroot.UI.Controls.THEMESIZE eSize, out winmdroot.Foundation.SIZE psz) 852 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemePartSize(hTheme, hdc, iPartId, iStateId, prc.HasValue ? &prcLocal : null, eSize, pszLocal); 890 internal static extern unsafe winmdroot.Foundation.HRESULT GetThemePartSize(winmdroot.UI.Controls.HTHEME hTheme, [Optional] winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, [Optional] winmdroot.Foundation.RECT* prc, winmdroot.UI.Controls.THEMESIZE eSize, winmdroot.Foundation.SIZE* psz); 895 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) 899 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemePosition(hTheme, iPartId, iStateId, iPropId, pPointLocal); 930 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) 932 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hTheme, iPartId, iStateId, (int)iPropId, pPoint); 936 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, int iPropId, global::System.Drawing.Point* pPoint); 941 internal static unsafe winmdroot.Foundation.HRESULT GetThemeString(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, int iPropId, Span<char>pszBuff) 945 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeString(hTheme, iPartId, iStateId, iPropId, pszBuffLocal, pszBuff.Length); 983 internal static extern winmdroot.Foundation.HRESULT GetThemeString(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, int iPropId, winmdroot.Foundation.PWSTR pszBuff, int cchMaxBuffChars); 1012 internal static unsafe winmdroot.Foundation.HRESULT GetThemeSysInt(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iIntId, out int piValue) 1016 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeSysInt(hTheme, iIntId, piValueLocal); 1042 internal static unsafe winmdroot.Foundation.HRESULT GetThemeSysInt(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iIntId, int* piValue) 1044 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hTheme, (int)iIntId, piValue); 1048 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.UI.Controls.HTHEME hTheme, int iIntId, int* piValue); 1054 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, [Optional] winmdroot.Foundation.RECT? pBoundingRect, out winmdroot.Foundation.RECT pExtentRect) 1061 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeTextExtent(hTheme, hdc, iPartId, iStateId, pszTextLocal, cchCharCount, dwTextFlags, pBoundingRect.HasValue ? &pBoundingRectLocal : null, pExtentRectLocal); 1112 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); 1117 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) 1121 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeTextMetrics(hTheme, hdc, iPartId, iStateId, ptmLocal); 1155 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); 1160 internal static unsafe winmdroot.Foundation.HRESULT HitTestThemeBackground(winmdroot.UI.Controls.HTHEME hTheme, [Optional] winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.UI.Controls.HIT_TEST_BACKGROUND_OPTIONS dwOptions, in winmdroot.Foundation.RECT pRect, [Optional] winmdroot.Graphics.Gdi.HRGN hrgn, global::System.Drawing.Point ptTest, out ushort pwHitTestCode) 1166 winmdroot.Foundation.HRESULT __result = PInvoke.HitTestThemeBackground(hTheme, hdc, iPartId, iStateId, dwOptions, pRectLocal, hrgn, ptTest, pwHitTestCodeLocal); 1216 internal static extern unsafe winmdroot.Foundation.HRESULT HitTestThemeBackground(winmdroot.UI.Controls.HTHEME hTheme, [Optional] winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.UI.Controls.HIT_TEST_BACKGROUND_OPTIONS dwOptions, winmdroot.Foundation.RECT* pRect, [Optional] winmdroot.Graphics.Gdi.HRGN hrgn, global::System.Drawing.Point ptTest, ushort* pwHitTestCode); 1326 internal static unsafe winmdroot.Foundation.HRESULT SetWindowTheme(winmdroot.Foundation.HWND hwnd, [Optional] string pszSubAppName, [Optional] string pszSubIdList) 1332 winmdroot.Foundation.HRESULT __result = PInvoke.SetWindowTheme(hwnd, pszSubAppNameLocal, pszSubIdListLocal); 1361 internal static extern winmdroot.Foundation.HRESULT SetWindowTheme(winmdroot.Foundation.HWND hwnd, [Optional] winmdroot.Foundation.PCWSTR pszSubAppName, [Optional] winmdroot.Foundation.PCWSTR pszSubIdList);
_generated\473\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);
_generated\474\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);
_generated\475\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);
_generated\476\Windows.Win32.System_Com_IClassFactory_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT CreateInstance(this winmdroot.System.Com.IClassFactory.Interface @this, [Optional] winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, out void* ppvObject) 30 winmdroot.Foundation.HRESULT __result = @this.CreateInstance(pUnkOuter, riidLocal, ppvObjectLocal);
_generated\477\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);
_generated\478\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);
_generated\479\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);
_generated\480\Windows.Win32.System_Com_IEnumConnections_Extensions.g.cs (2)
25 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumConnections.Interface @this, Span<winmdroot.System.Com.CONNECTDATA> rgcd, out uint pcFetched) 31 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgcd.Length, rgcdLocal, pcFetchedLocal);
_generated\481\Windows.Win32.System_Com_IErrorInfo_Extensions.g.cs (10)
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 GetSource(this winmdroot.System.Com.IErrorInfo.Interface @this, out winmdroot.Foundation.BSTR pBstrSource) 38 winmdroot.Foundation.HRESULT __result = @this.GetSource(pBstrSourceLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetDescription(this winmdroot.System.Com.IErrorInfo.Interface @this, out winmdroot.Foundation.BSTR pBstrDescription) 48 winmdroot.Foundation.HRESULT __result = @this.GetDescription(pBstrDescriptionLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetHelpFile(this winmdroot.System.Com.IErrorInfo.Interface @this, out winmdroot.Foundation.BSTR pBstrHelpFile) 58 winmdroot.Foundation.HRESULT __result = @this.GetHelpFile(pBstrHelpFileLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT GetHelpContext(this winmdroot.System.Com.IErrorInfo.Interface @this, out uint pdwHelpContext) 68 winmdroot.Foundation.HRESULT __result = @this.GetHelpContext(pdwHelpContextLocal);
_generated\482\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);
_generated\483\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);
_generated\484\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);
_generated\485\Windows.Win32.System_Com_StructuredStorage_ILockBytes_Extensions.g.cs (10)
25 internal static unsafe winmdroot.Foundation.HRESULT ReadAt(this winmdroot.System.Com.StructuredStorage.ILockBytes.Interface @this, ulong ulOffset, Span<byte> pv, out uint pcbRead) 31 winmdroot.Foundation.HRESULT __result = @this.ReadAt(ulOffset, (void* )pvLocal, (uint )pv.Length, pcbReadLocal); 38 internal static unsafe winmdroot.Foundation.HRESULT ReadAt(this winmdroot.System.Com.StructuredStorage.ILockBytes.Interface @this, ulong ulOffset, Span<byte> pv) 42 winmdroot.Foundation.HRESULT __result = @this.ReadAt(ulOffset, (void* )pvLocal, (uint )pv.Length, default(uint* )); 49 internal static unsafe winmdroot.Foundation.HRESULT WriteAt(this winmdroot.System.Com.StructuredStorage.ILockBytes.Interface @this, ulong ulOffset, ReadOnlySpan<byte> pv, out uint pcbWritten) 55 winmdroot.Foundation.HRESULT __result = @this.WriteAt(ulOffset, (void* )pvLocal, (uint )pv.Length, pcbWrittenLocal); 62 internal static unsafe winmdroot.Foundation.HRESULT WriteAt(this winmdroot.System.Com.StructuredStorage.ILockBytes.Interface @this, ulong ulOffset, ReadOnlySpan<byte> pv) 66 winmdroot.Foundation.HRESULT __result = @this.WriteAt(ulOffset, (void* )pvLocal, (uint )pv.Length, default(uint* )); 72 internal static unsafe winmdroot.Foundation.HRESULT Stat(this winmdroot.System.Com.StructuredStorage.ILockBytes.Interface @this, out winmdroot.System.Com.STATSTG pstatstg, uint grfStatFlag) 76 winmdroot.Foundation.HRESULT __result = @this.Stat(pstatstgLocal, grfStatFlag);
_generated\486\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);
_generated\487\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);
_generated\489\Windows.Win32.System_Ole_IClassFactory2_Extensions.g.cs (8)
24 internal static unsafe winmdroot.Foundation.HRESULT CreateInstance(this winmdroot.System.Ole.IClassFactory2.Interface @this, [Optional] 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 RequestLicKey(this winmdroot.System.Ole.IClassFactory2.Interface @this, uint dwReserved, out winmdroot.Foundation.BSTR pBstrKey) 51 winmdroot.Foundation.HRESULT __result = @this.RequestLicKey(dwReserved, pBstrKeyLocal); 58 internal static unsafe winmdroot.Foundation.HRESULT CreateInstanceLic(this winmdroot.System.Ole.IClassFactory2.Interface @this, [Optional] winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, winmdroot.Foundation.BSTR bstrKey, out void* ppvObj) 64 winmdroot.Foundation.HRESULT __result = @this.CreateInstanceLic(pUnkOuter, default, riidLocal, bstrKey, ppvObjLocal);
_generated\490\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);
_generated\491\Windows.Win32.System_Ole_IEnumOLEVERB_Extensions.g.cs (4)
25 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Ole.IEnumOLEVERB.Interface @this, Span<winmdroot.System.Ole.OLEVERB> rgelt, out uint pceltFetched) 31 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgelt.Length, rgeltLocal, pceltFetchedLocal); 38 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Ole.IEnumOLEVERB.Interface @this, Span<winmdroot.System.Ole.OLEVERB> rgelt) 42 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgelt.Length, rgeltLocal, default(uint* ));
_generated\492\Windows.Win32.System_Ole_IEnumVARIANT_Extensions.g.cs (2)
25 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Ole.IEnumVARIANT.Interface @this, Span<winmdroot.System.Variant.VARIANT> rgVar, out uint pCeltFetched) 31 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgVar.Length, rgVarLocal, pCeltFetchedLocal);
_generated\493\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);
_generated\494\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);
_generated\495\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);
_generated\496\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);
_generated\497\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);
_generated\498\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);
_generated\499\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);
_generated\500\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);
_generated\501\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, [Optional] 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);
_generated\502\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);
_generated\503\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);
_generated\504\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);
_generated\505\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);
_generated\506\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);
_generated\507\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);
_generated\508\Windows.Win32.System_Ole_IOleParentUndoUnit_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT GetDescription(this winmdroot.System.Ole.IOleParentUndoUnit.Interface @this, out winmdroot.Foundation.BSTR pBstr) 28 winmdroot.Foundation.HRESULT __result = @this.GetDescription(pBstrLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetUnitType(this winmdroot.System.Ole.IOleParentUndoUnit.Interface @this, out global::System.Guid pClsid, out int plID) 40 winmdroot.Foundation.HRESULT __result = @this.GetUnitType(pClsidLocal, plIDLocal); 47 internal static unsafe winmdroot.Foundation.HRESULT GetParentState(this winmdroot.System.Ole.IOleParentUndoUnit.Interface @this, out uint pdwState) 51 winmdroot.Foundation.HRESULT __result = @this.GetParentState(pdwStateLocal);
_generated\509\Windows.Win32.System_Ole_IOleUndoManager_Extensions.g.cs (6)
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); 34 internal static unsafe winmdroot.Foundation.HRESULT GetLastUndoDescription(this winmdroot.System.Ole.IOleUndoManager.Interface @this, out winmdroot.Foundation.BSTR pBstr) 38 winmdroot.Foundation.HRESULT __result = @this.GetLastUndoDescription(pBstrLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetLastRedoDescription(this winmdroot.System.Ole.IOleUndoManager.Interface @this, out winmdroot.Foundation.BSTR pBstr) 48 winmdroot.Foundation.HRESULT __result = @this.GetLastRedoDescription(pBstrLocal);
_generated\510\Windows.Win32.System_Ole_IOleUndoUnit_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT GetDescription(this winmdroot.System.Ole.IOleUndoUnit.Interface @this, out winmdroot.Foundation.BSTR pBstr) 28 winmdroot.Foundation.HRESULT __result = @this.GetDescription(pBstrLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetUnitType(this winmdroot.System.Ole.IOleUndoUnit.Interface @this, out global::System.Guid pClsid, out int plID) 40 winmdroot.Foundation.HRESULT __result = @this.GetUnitType(pClsidLocal, plIDLocal);
_generated\511\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);
_generated\512\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);
_generated\513\Windows.Win32.System_Ole_IPerPropertyBrowsing_Extensions.g.cs (8)
24 internal static unsafe winmdroot.Foundation.HRESULT GetDisplayString(this winmdroot.System.Ole.IPerPropertyBrowsing.Interface @this, int dispID, out winmdroot.Foundation.BSTR pBstr) 28 winmdroot.Foundation.HRESULT __result = @this.GetDisplayString(dispID, pBstrLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT MapPropertyToPage(this winmdroot.System.Ole.IPerPropertyBrowsing.Interface @this, int dispID, out global::System.Guid pClsid) 38 winmdroot.Foundation.HRESULT __result = @this.MapPropertyToPage(dispID, pClsidLocal); 44 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) 50 winmdroot.Foundation.HRESULT __result = @this.GetPredefinedStrings(dispID, pCaStringsOutLocal, pCaCookiesOutLocal); 57 internal static unsafe winmdroot.Foundation.HRESULT GetPredefinedValue(this winmdroot.System.Ole.IPerPropertyBrowsing.Interface @this, int dispID, uint dwCookie, out winmdroot.System.Variant.VARIANT pVarOut) 61 winmdroot.Foundation.HRESULT __result = @this.GetPredefinedValue(dispID, dwCookie, pVarOutLocal);
_generated\514\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);
_generated\515\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);
_generated\516\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);
_generated\517\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);
_generated\518\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);
_generated\519\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);
_generated\520\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);
_generated\521\Windows.Win32.System_Ole_IViewObject2_Extensions.g.cs (12)
24 internal static unsafe winmdroot.Foundation.HRESULT Draw(this winmdroot.System.Ole.IViewObject2.Interface @this, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, [Optional] winmdroot.Graphics.Gdi.HDC hdcTargetDev, winmdroot.Graphics.Gdi.HDC hdcDraw, [Optional] winmdroot.Foundation.RECTL? lprcBounds, [Optional] winmdroot.Foundation.RECTL? lprcWBounds, [Optional] 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, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, [Optional] 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 GetAdvise(this winmdroot.System.Ole.IViewObject2.Interface @this, out uint pAspects, out uint pAdvf, winmdroot.System.Com.IAdviseSink** ppAdvSink) 59 winmdroot.Foundation.HRESULT __result = @this.GetAdvise(pAspectsLocal, pAdvfLocal, ppAdvSink); 66 internal static unsafe winmdroot.Foundation.HRESULT GetAdvise(this winmdroot.System.Ole.IViewObject2.Interface @this, winmdroot.System.Com.IAdviseSink** ppAdvSink) 68 winmdroot.Foundation.HRESULT __result = @this.GetAdvise(default(uint* ), default(uint* ), ppAdvSink); 73 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) 77 winmdroot.Foundation.HRESULT __result = @this.GetExtent(dwDrawAspect, lindex, ptd, lpsizelLocal);
_generated\522\Windows.Win32.System_Ole_IViewObject_Extensions.g.cs (10)
24 internal static unsafe winmdroot.Foundation.HRESULT Draw(this winmdroot.System.Ole.IViewObject.Interface @this, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, [Optional] winmdroot.Graphics.Gdi.HDC hdcTargetDev, winmdroot.Graphics.Gdi.HDC hdcDraw, [Optional] winmdroot.Foundation.RECTL? lprcBounds, [Optional] winmdroot.Foundation.RECTL? lprcWBounds, [Optional] 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, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, [Optional] 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); 53 internal static unsafe winmdroot.Foundation.HRESULT GetAdvise(this winmdroot.System.Ole.IViewObject.Interface @this, out uint pAspects, out uint pAdvf, winmdroot.System.Com.IAdviseSink** ppAdvSink) 59 winmdroot.Foundation.HRESULT __result = @this.GetAdvise(pAspectsLocal, pAdvfLocal, ppAdvSink); 66 internal static unsafe winmdroot.Foundation.HRESULT GetAdvise(this winmdroot.System.Ole.IViewObject.Interface @this, winmdroot.System.Com.IAdviseSink** ppAdvSink) 68 winmdroot.Foundation.HRESULT __result = @this.GetAdvise(default(uint* ), default(uint* ), ppAdvSink);
_generated\525\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;
_generated\564\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);
_generated\565\Windows.Win32.UI_Accessibility_IAccessible_Extensions.g.cs (30)
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_accName(this winmdroot.UI.Accessibility.IAccessible.Interface @this, winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszName) 38 winmdroot.Foundation.HRESULT __result = @this.get_accName(varChild, pszNameLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT get_accValue(this winmdroot.UI.Accessibility.IAccessible.Interface @this, winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszValue) 48 winmdroot.Foundation.HRESULT __result = @this.get_accValue(varChild, pszValueLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT get_accDescription(this winmdroot.UI.Accessibility.IAccessible.Interface @this, winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszDescription) 58 winmdroot.Foundation.HRESULT __result = @this.get_accDescription(varChild, pszDescriptionLocal); 64 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) 68 winmdroot.Foundation.HRESULT __result = @this.get_accRole(varChild, pvarRoleLocal); 74 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) 78 winmdroot.Foundation.HRESULT __result = @this.get_accState(varChild, pvarStateLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT get_accHelp(this winmdroot.UI.Accessibility.IAccessible.Interface @this, winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszHelp) 88 winmdroot.Foundation.HRESULT __result = @this.get_accHelp(varChild, pszHelpLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT get_accHelpTopic(this winmdroot.UI.Accessibility.IAccessible.Interface @this, out winmdroot.Foundation.BSTR pszHelpFile, winmdroot.System.Variant.VARIANT varChild, out int pidTopic) 100 winmdroot.Foundation.HRESULT __result = @this.get_accHelpTopic(pszHelpFileLocal, varChild, pidTopicLocal); 107 internal static unsafe winmdroot.Foundation.HRESULT get_accKeyboardShortcut(this winmdroot.UI.Accessibility.IAccessible.Interface @this, winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszKeyboardShortcut) 111 winmdroot.Foundation.HRESULT __result = @this.get_accKeyboardShortcut(varChild, pszKeyboardShortcutLocal); 117 internal static unsafe winmdroot.Foundation.HRESULT get_accFocus(this winmdroot.UI.Accessibility.IAccessible.Interface @this, out winmdroot.System.Variant.VARIANT pvarChild) 121 winmdroot.Foundation.HRESULT __result = @this.get_accFocus(pvarChildLocal); 127 internal static unsafe winmdroot.Foundation.HRESULT get_accSelection(this winmdroot.UI.Accessibility.IAccessible.Interface @this, out winmdroot.System.Variant.VARIANT pvarChildren) 131 winmdroot.Foundation.HRESULT __result = @this.get_accSelection(pvarChildrenLocal); 137 internal static unsafe winmdroot.Foundation.HRESULT get_accDefaultAction(this winmdroot.UI.Accessibility.IAccessible.Interface @this, winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszDefaultAction) 141 winmdroot.Foundation.HRESULT __result = @this.get_accDefaultAction(varChild, pszDefaultActionLocal); 147 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) 157 winmdroot.Foundation.HRESULT __result = @this.accLocation(pxLeftLocal, pyTopLocal, pcxWidthLocal, pcyHeightLocal, varChild); 166 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) 170 winmdroot.Foundation.HRESULT __result = @this.accNavigate(navDir, varStart, pvarEndUpAtLocal); 176 internal static unsafe winmdroot.Foundation.HRESULT accHitTest(this winmdroot.UI.Accessibility.IAccessible.Interface @this, int xLeft, int yTop, out winmdroot.System.Variant.VARIANT pvarChild) 180 winmdroot.Foundation.HRESULT __result = @this.accHitTest(xLeft, yTop, pvarChildLocal);
_generated\566\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);
_generated\567\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);
_generated\568\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);
_generated\569\Windows.Win32.UI_Accessibility_ILegacyIAccessibleProvider_Extensions.g.cs (22)
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_Name(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out winmdroot.Foundation.BSTR pszName) 48 winmdroot.Foundation.HRESULT __result = @this.get_Name(pszNameLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT get_Value(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out winmdroot.Foundation.BSTR pszValue) 58 winmdroot.Foundation.HRESULT __result = @this.get_Value(pszValueLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT get_Description(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out winmdroot.Foundation.BSTR pszDescription) 68 winmdroot.Foundation.HRESULT __result = @this.get_Description(pszDescriptionLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT get_Role(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out uint pdwRole) 78 winmdroot.Foundation.HRESULT __result = @this.get_Role(pdwRoleLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT get_State(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out uint pdwState) 88 winmdroot.Foundation.HRESULT __result = @this.get_State(pdwStateLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT get_Help(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out winmdroot.Foundation.BSTR pszHelp) 98 winmdroot.Foundation.HRESULT __result = @this.get_Help(pszHelpLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT get_KeyboardShortcut(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out winmdroot.Foundation.BSTR pszKeyboardShortcut) 108 winmdroot.Foundation.HRESULT __result = @this.get_KeyboardShortcut(pszKeyboardShortcutLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT GetSelection(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out winmdroot.System.Com.SAFEARRAY* pvarSelectedChildren) 118 winmdroot.Foundation.HRESULT __result = @this.GetSelection(pvarSelectedChildrenLocal); 124 internal static unsafe winmdroot.Foundation.HRESULT get_DefaultAction(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out winmdroot.Foundation.BSTR pszDefaultAction) 128 winmdroot.Foundation.HRESULT __result = @this.get_DefaultAction(pszDefaultActionLocal);
_generated\570\Windows.Win32.UI_Accessibility_IMultipleViewProvider_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT GetViewName(this winmdroot.UI.Accessibility.IMultipleViewProvider.Interface @this, int viewId, out winmdroot.Foundation.BSTR pRetVal) 28 winmdroot.Foundation.HRESULT __result = @this.GetViewName(viewId, pRetValLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_CurrentView(this winmdroot.UI.Accessibility.IMultipleViewProvider.Interface @this, out int pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.get_CurrentView(pRetValLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetSupportedViews(this winmdroot.UI.Accessibility.IMultipleViewProvider.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 48 winmdroot.Foundation.HRESULT __result = @this.GetSupportedViews(pRetValLocal);
_generated\571\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);
_generated\572\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);
_generated\573\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);
_generated\574\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);
_generated\575\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);
_generated\576\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);
_generated\577\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);
_generated\578\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);
_generated\579\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);
_generated\580\Windows.Win32.UI_Accessibility_ITextRangeProvider_Extensions.g.cs (16)
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 GetText(this winmdroot.UI.Accessibility.ITextRangeProvider.Interface @this, int maxLength, out winmdroot.Foundation.BSTR pRetVal) 68 winmdroot.Foundation.HRESULT __result = @this.GetText(maxLength, pRetValLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT Move(this winmdroot.UI.Accessibility.ITextRangeProvider.Interface @this, winmdroot.UI.Accessibility.TextUnit unit, int count, out int pRetVal) 78 winmdroot.Foundation.HRESULT __result = @this.Move(unit, count, pRetValLocal); 84 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) 88 winmdroot.Foundation.HRESULT __result = @this.MoveEndpointByUnit(endpoint, unit, count, pRetValLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT GetChildren(this winmdroot.UI.Accessibility.ITextRangeProvider.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 98 winmdroot.Foundation.HRESULT __result = @this.GetChildren(pRetValLocal);
_generated\581\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);
_generated\582\Windows.Win32.UI_Accessibility_IUIAutomationElement_Extensions.g.cs (20)
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_CurrentName(this winmdroot.UI.Accessibility.IUIAutomationElement.Interface @this, out winmdroot.Foundation.BSTR retVal) 104 winmdroot.Foundation.HRESULT __result = @this.get_CurrentName(retValLocal); 110 internal static unsafe winmdroot.Foundation.HRESULT get_CurrentBoundingRectangle(this winmdroot.UI.Accessibility.IUIAutomationElement.Interface @this, out winmdroot.Foundation.RECT retVal) 114 winmdroot.Foundation.HRESULT __result = @this.get_CurrentBoundingRectangle(retValLocal); 120 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) 126 winmdroot.Foundation.HRESULT __result = @this.GetClickablePoint(clickableLocal, gotClickableLocal);
_generated\583\Windows.Win32.UI_Accessibility_IUIAutomationProxyFactoryEntry_Extensions.g.cs (16)
24 internal static unsafe winmdroot.Foundation.HRESULT get_ClassName(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface @this, out winmdroot.Foundation.BSTR className) 28 winmdroot.Foundation.HRESULT __result = @this.get_ClassName(classNameLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_ImageName(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface @this, out winmdroot.Foundation.BSTR imageName) 38 winmdroot.Foundation.HRESULT __result = @this.get_ImageName(imageNameLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT get_AllowSubstringMatch(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface @this, out winmdroot.Foundation.BOOL allowSubstringMatch) 48 winmdroot.Foundation.HRESULT __result = @this.get_AllowSubstringMatch(allowSubstringMatchLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT get_CanCheckBaseClass(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface @this, out winmdroot.Foundation.BOOL canCheckBaseClass) 58 winmdroot.Foundation.HRESULT __result = @this.get_CanCheckBaseClass(canCheckBaseClassLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT get_NeedsAdviseEvents(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface @this, out winmdroot.Foundation.BOOL adviseEvents) 68 winmdroot.Foundation.HRESULT __result = @this.get_NeedsAdviseEvents(adviseEventsLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT put_ClassName(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface @this, string className) 78 winmdroot.Foundation.HRESULT __result = @this.put_ClassName(classNameLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT put_ImageName(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface @this, string imageName) 88 winmdroot.Foundation.HRESULT __result = @this.put_ImageName(imageNameLocal); 94 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) 98 winmdroot.Foundation.HRESULT __result = @this.GetWinEventsForAutomationEvent(eventId, propertyId, winEventsLocal);
_generated\584\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);
_generated\585\Windows.Win32.UI_Accessibility_IUIAutomation_Extensions.g.cs (26)
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); 45 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) 49 winmdroot.Foundation.HRESULT __result = @this.AddPropertyChangedEventHandlerNativeArray(element, scope, cacheRequest, handler, propertyArrayLocal, propertyArray.Length); 56 internal static unsafe winmdroot.Foundation.HRESULT IntNativeArrayToSafeArray(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, ReadOnlySpan<int> array, out winmdroot.System.Com.SAFEARRAY* safeArray) 62 winmdroot.Foundation.HRESULT __result = @this.IntNativeArrayToSafeArray(arrayLocal, array.Length, safeArrayLocal); 69 internal static unsafe winmdroot.Foundation.HRESULT IntSafeArrayToNativeArray(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.System.Com.SAFEARRAY* intArray, int** array, out int arrayCount) 73 winmdroot.Foundation.HRESULT __result = @this.IntSafeArrayToNativeArray(intArray, array, arrayCountLocal); 79 internal static unsafe winmdroot.Foundation.HRESULT RectToVariant(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.Foundation.RECT rc, out winmdroot.System.Variant.VARIANT var) 83 winmdroot.Foundation.HRESULT __result = @this.RectToVariant(rc, varLocal); 89 internal static unsafe winmdroot.Foundation.HRESULT VariantToRect(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.System.Variant.VARIANT var, out winmdroot.Foundation.RECT rc) 93 winmdroot.Foundation.HRESULT __result = @this.VariantToRect(var, rcLocal); 99 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) 103 winmdroot.Foundation.HRESULT __result = @this.SafeArrayToRectNativeArray(rects, rectArray, rectArrayCountLocal); 109 internal static unsafe winmdroot.Foundation.HRESULT GetPropertyProgrammaticName(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.UI.Accessibility.UIA_PROPERTY_ID property, out winmdroot.Foundation.BSTR name) 113 winmdroot.Foundation.HRESULT __result = @this.GetPropertyProgrammaticName(property, nameLocal); 119 internal static unsafe winmdroot.Foundation.HRESULT GetPatternProgrammaticName(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.UI.Accessibility.UIA_PATTERN_ID pattern, out winmdroot.Foundation.BSTR name) 123 winmdroot.Foundation.HRESULT __result = @this.GetPatternProgrammaticName(pattern, nameLocal); 129 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) 135 winmdroot.Foundation.HRESULT __result = @this.PollForPotentialSupportedPatterns(pElement, patternIdsLocal, patternNamesLocal); 142 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) 148 winmdroot.Foundation.HRESULT __result = @this.PollForPotentialSupportedProperties(pElement, propertyIdsLocal, propertyNamesLocal); 155 internal static unsafe winmdroot.Foundation.HRESULT CheckNotSupported(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.System.Variant.VARIANT value, out winmdroot.Foundation.BOOL isNotSupported) 159 winmdroot.Foundation.HRESULT __result = @this.CheckNotSupported(value, isNotSupportedLocal);
_generated\586\Windows.Win32.UI_Accessibility_IValueProvider_Extensions.g.cs (6)
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_Value(this winmdroot.UI.Accessibility.IValueProvider.Interface @this, out winmdroot.Foundation.BSTR pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.get_Value(pRetValLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT get_IsReadOnly(this winmdroot.UI.Accessibility.IValueProvider.Interface @this, out winmdroot.Foundation.BOOL pRetVal) 48 winmdroot.Foundation.HRESULT __result = @this.get_IsReadOnly(pRetValLocal);
_generated\587\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);
_generated\588\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);
_generated\589\Windows.Win32.UI_Controls_RichEdit_ITextDocument_Extensions.g.cs (20)
24 internal static unsafe winmdroot.Foundation.HRESULT GetName(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, out winmdroot.Foundation.BSTR pName) 28 winmdroot.Foundation.HRESULT __result = @this.GetName(pNameLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetStoryCount(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, out int pCount) 38 winmdroot.Foundation.HRESULT __result = @this.GetStoryCount(pCountLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetSaved(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, out int pValue) 48 winmdroot.Foundation.HRESULT __result = @this.GetSaved(pValueLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetDefaultTabStop(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, out float pValue) 58 winmdroot.Foundation.HRESULT __result = @this.GetDefaultTabStop(pValueLocal); 64 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) 68 winmdroot.Foundation.HRESULT __result = @this.Open(pVarLocal, Flags, CodePage); 74 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) 78 winmdroot.Foundation.HRESULT __result = @this.Save(pVarLocal, Flags, CodePage); 84 internal static unsafe winmdroot.Foundation.HRESULT Freeze(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, out int pCount) 88 winmdroot.Foundation.HRESULT __result = @this.Freeze(pCountLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT Unfreeze(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, out int pCount) 98 winmdroot.Foundation.HRESULT __result = @this.Unfreeze(pCountLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT Undo(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, int Count, out int pCount) 108 winmdroot.Foundation.HRESULT __result = @this.Undo(Count, pCountLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT Redo(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, int Count, out int pCount) 118 winmdroot.Foundation.HRESULT __result = @this.Redo(Count, pCountLocal);
_generated\590\Windows.Win32.UI_Controls_RichEdit_ITextFont_Extensions.g.cs (54)
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, [Optional] 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 GetName(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out winmdroot.Foundation.BSTR pbstr) 168 winmdroot.Foundation.HRESULT __result = @this.GetName(pbstrLocal); 174 internal static unsafe winmdroot.Foundation.HRESULT GetOutline(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 178 winmdroot.Foundation.HRESULT __result = @this.GetOutline(pValueLocal); 184 internal static unsafe winmdroot.Foundation.HRESULT GetPosition(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out float pValue) 188 winmdroot.Foundation.HRESULT __result = @this.GetPosition(pValueLocal); 194 internal static unsafe winmdroot.Foundation.HRESULT GetProtected(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 198 winmdroot.Foundation.HRESULT __result = @this.GetProtected(pValueLocal); 204 internal static unsafe winmdroot.Foundation.HRESULT GetShadow(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 208 winmdroot.Foundation.HRESULT __result = @this.GetShadow(pValueLocal); 214 internal static unsafe winmdroot.Foundation.HRESULT GetSize(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out float pValue) 218 winmdroot.Foundation.HRESULT __result = @this.GetSize(pValueLocal); 224 internal static unsafe winmdroot.Foundation.HRESULT GetSmallCaps(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 228 winmdroot.Foundation.HRESULT __result = @this.GetSmallCaps(pValueLocal); 234 internal static unsafe winmdroot.Foundation.HRESULT GetSpacing(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out float pValue) 238 winmdroot.Foundation.HRESULT __result = @this.GetSpacing(pValueLocal); 244 internal static unsafe winmdroot.Foundation.HRESULT GetStrikeThrough(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 248 winmdroot.Foundation.HRESULT __result = @this.GetStrikeThrough(pValueLocal); 254 internal static unsafe winmdroot.Foundation.HRESULT GetSubscript(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 258 winmdroot.Foundation.HRESULT __result = @this.GetSubscript(pValueLocal); 264 internal static unsafe winmdroot.Foundation.HRESULT GetSuperscript(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 268 winmdroot.Foundation.HRESULT __result = @this.GetSuperscript(pValueLocal); 274 internal static unsafe winmdroot.Foundation.HRESULT GetUnderline(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 278 winmdroot.Foundation.HRESULT __result = @this.GetUnderline(pValueLocal); 284 internal static unsafe winmdroot.Foundation.HRESULT GetWeight(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 288 winmdroot.Foundation.HRESULT __result = @this.GetWeight(pValueLocal);
_generated\591\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, [Optional] 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);
_generated\592\Windows.Win32.UI_Controls_RichEdit_ITextRange_Extensions.g.cs (64)
24 internal static unsafe winmdroot.Foundation.HRESULT GetText(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out winmdroot.Foundation.BSTR pbstr) 28 winmdroot.Foundation.HRESULT __result = @this.GetText(pbstrLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetChar(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out int pChar) 38 winmdroot.Foundation.HRESULT __result = @this.GetChar(pCharLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetStart(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out int pcpFirst) 48 winmdroot.Foundation.HRESULT __result = @this.GetStart(pcpFirstLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetEnd(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out int pcpLim) 58 winmdroot.Foundation.HRESULT __result = @this.GetEnd(pcpLimLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT GetStoryLength(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out int pCount) 68 winmdroot.Foundation.HRESULT __result = @this.GetStoryLength(pCountLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT GetStoryType(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out int pValue) 78 winmdroot.Foundation.HRESULT __result = @this.GetStoryType(pValueLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT Expand(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, int Unit, out int pDelta) 88 winmdroot.Foundation.HRESULT __result = @this.Expand(Unit, pDeltaLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT GetIndex(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, int Unit, out int pIndex) 98 winmdroot.Foundation.HRESULT __result = @this.GetIndex(Unit, pIndexLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT InRange(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, out int pValue) 108 winmdroot.Foundation.HRESULT __result = @this.InRange(pRange, pValueLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT InStory(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, out int pValue) 118 winmdroot.Foundation.HRESULT __result = @this.InStory(pRange, pValueLocal); 124 internal static unsafe winmdroot.Foundation.HRESULT IsEqual(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, out int pValue) 128 winmdroot.Foundation.HRESULT __result = @this.IsEqual(pRange, pValueLocal); 134 internal static unsafe winmdroot.Foundation.HRESULT StartOf(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, int Unit, int Extend, out int pDelta) 138 winmdroot.Foundation.HRESULT __result = @this.StartOf(Unit, Extend, pDeltaLocal); 144 internal static unsafe winmdroot.Foundation.HRESULT EndOf(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, int Unit, int Extend, out int pDelta) 148 winmdroot.Foundation.HRESULT __result = @this.EndOf(Unit, Extend, pDeltaLocal); 154 internal static unsafe winmdroot.Foundation.HRESULT Move(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, int Unit, int Count, out int pDelta) 158 winmdroot.Foundation.HRESULT __result = @this.Move(Unit, Count, pDeltaLocal); 164 internal static unsafe winmdroot.Foundation.HRESULT MoveStart(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, int Unit, int Count, out int pDelta) 168 winmdroot.Foundation.HRESULT __result = @this.MoveStart(Unit, Count, pDeltaLocal); 174 internal static unsafe winmdroot.Foundation.HRESULT MoveEnd(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, int Unit, int Count, out int pDelta) 178 winmdroot.Foundation.HRESULT __result = @this.MoveEnd(Unit, Count, pDeltaLocal); 184 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) 190 winmdroot.Foundation.HRESULT __result = @this.MoveWhile(CsetLocal, Count, pDeltaLocal); 197 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) 203 winmdroot.Foundation.HRESULT __result = @this.MoveStartWhile(CsetLocal, Count, pDeltaLocal); 210 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) 216 winmdroot.Foundation.HRESULT __result = @this.MoveEndWhile(CsetLocal, Count, pDeltaLocal); 223 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) 229 winmdroot.Foundation.HRESULT __result = @this.MoveUntil(CsetLocal, Count, pDeltaLocal); 236 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) 242 winmdroot.Foundation.HRESULT __result = @this.MoveStartUntil(CsetLocal, Count, pDeltaLocal); 249 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) 255 winmdroot.Foundation.HRESULT __result = @this.MoveEndUntil(CsetLocal, Count, pDeltaLocal); 262 internal static unsafe winmdroot.Foundation.HRESULT FindText(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength) 266 winmdroot.Foundation.HRESULT __result = @this.FindText(bstr, Count, Flags, pLengthLocal); 272 internal static unsafe winmdroot.Foundation.HRESULT FindTextStart(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength) 276 winmdroot.Foundation.HRESULT __result = @this.FindTextStart(bstr, Count, Flags, pLengthLocal); 282 internal static unsafe winmdroot.Foundation.HRESULT FindTextEnd(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength) 286 winmdroot.Foundation.HRESULT __result = @this.FindTextEnd(bstr, Count, Flags, pLengthLocal); 292 internal static unsafe winmdroot.Foundation.HRESULT Delete(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, int Unit, int Count, out int pDelta) 296 winmdroot.Foundation.HRESULT __result = @this.Delete(Unit, Count, pDeltaLocal); 302 internal static unsafe winmdroot.Foundation.HRESULT Cut(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out winmdroot.System.Variant.VARIANT pVar) 306 winmdroot.Foundation.HRESULT __result = @this.Cut(pVarLocal); 312 internal static unsafe winmdroot.Foundation.HRESULT Copy(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out winmdroot.System.Variant.VARIANT pVar) 316 winmdroot.Foundation.HRESULT __result = @this.Copy(pVarLocal); 322 internal static unsafe winmdroot.Foundation.HRESULT Paste(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, in winmdroot.System.Variant.VARIANT pVar, int Format) 326 winmdroot.Foundation.HRESULT __result = @this.Paste(pVarLocal, Format); 332 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) 338 winmdroot.Foundation.HRESULT __result = @this.CanPaste(pVarLocal, Format, pValueLocal); 345 internal static unsafe winmdroot.Foundation.HRESULT CanEdit(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out int pValue) 349 winmdroot.Foundation.HRESULT __result = @this.CanEdit(pValueLocal); 355 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) 361 winmdroot.Foundation.HRESULT __result = @this.GetPoint(Type, pxLocal, pyLocal);
_generated\593\Windows.Win32.UI_Controls_RichEdit_ITextSelection_Extensions.g.cs (80)
24 internal static unsafe winmdroot.Foundation.HRESULT GetText(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out winmdroot.Foundation.BSTR pbstr) 28 winmdroot.Foundation.HRESULT __result = @this.GetText(pbstrLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetChar(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out int pChar) 38 winmdroot.Foundation.HRESULT __result = @this.GetChar(pCharLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetStart(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out int pcpFirst) 48 winmdroot.Foundation.HRESULT __result = @this.GetStart(pcpFirstLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetEnd(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out int pcpLim) 58 winmdroot.Foundation.HRESULT __result = @this.GetEnd(pcpLimLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT GetStoryLength(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out int pCount) 68 winmdroot.Foundation.HRESULT __result = @this.GetStoryLength(pCountLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT GetStoryType(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out int pValue) 78 winmdroot.Foundation.HRESULT __result = @this.GetStoryType(pValueLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT Expand(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, out int pDelta) 88 winmdroot.Foundation.HRESULT __result = @this.Expand(Unit, pDeltaLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT GetIndex(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, out int pIndex) 98 winmdroot.Foundation.HRESULT __result = @this.GetIndex(Unit, pIndexLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT InRange(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, out int pValue) 108 winmdroot.Foundation.HRESULT __result = @this.InRange(pRange, pValueLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT InStory(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, out int pValue) 118 winmdroot.Foundation.HRESULT __result = @this.InStory(pRange, pValueLocal); 124 internal static unsafe winmdroot.Foundation.HRESULT IsEqual(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, out int pValue) 128 winmdroot.Foundation.HRESULT __result = @this.IsEqual(pRange, pValueLocal); 134 internal static unsafe winmdroot.Foundation.HRESULT StartOf(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Extend, out int pDelta) 138 winmdroot.Foundation.HRESULT __result = @this.StartOf(Unit, Extend, pDeltaLocal); 144 internal static unsafe winmdroot.Foundation.HRESULT EndOf(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Extend, out int pDelta) 148 winmdroot.Foundation.HRESULT __result = @this.EndOf(Unit, Extend, pDeltaLocal); 154 internal static unsafe winmdroot.Foundation.HRESULT Move(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Count, out int pDelta) 158 winmdroot.Foundation.HRESULT __result = @this.Move(Unit, Count, pDeltaLocal); 164 internal static unsafe winmdroot.Foundation.HRESULT MoveStart(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Count, out int pDelta) 168 winmdroot.Foundation.HRESULT __result = @this.MoveStart(Unit, Count, pDeltaLocal); 174 internal static unsafe winmdroot.Foundation.HRESULT MoveEnd(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Count, out int pDelta) 178 winmdroot.Foundation.HRESULT __result = @this.MoveEnd(Unit, Count, pDeltaLocal); 184 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) 190 winmdroot.Foundation.HRESULT __result = @this.MoveWhile(CsetLocal, Count, pDeltaLocal); 197 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) 203 winmdroot.Foundation.HRESULT __result = @this.MoveStartWhile(CsetLocal, Count, pDeltaLocal); 210 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) 216 winmdroot.Foundation.HRESULT __result = @this.MoveEndWhile(CsetLocal, Count, pDeltaLocal); 223 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) 229 winmdroot.Foundation.HRESULT __result = @this.MoveUntil(CsetLocal, Count, pDeltaLocal); 236 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) 242 winmdroot.Foundation.HRESULT __result = @this.MoveStartUntil(CsetLocal, Count, pDeltaLocal); 249 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) 255 winmdroot.Foundation.HRESULT __result = @this.MoveEndUntil(CsetLocal, Count, pDeltaLocal); 262 internal static unsafe winmdroot.Foundation.HRESULT FindText(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength) 266 winmdroot.Foundation.HRESULT __result = @this.FindText(bstr, Count, Flags, pLengthLocal); 272 internal static unsafe winmdroot.Foundation.HRESULT FindTextStart(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength) 276 winmdroot.Foundation.HRESULT __result = @this.FindTextStart(bstr, Count, Flags, pLengthLocal); 282 internal static unsafe winmdroot.Foundation.HRESULT FindTextEnd(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength) 286 winmdroot.Foundation.HRESULT __result = @this.FindTextEnd(bstr, Count, Flags, pLengthLocal); 292 internal static unsafe winmdroot.Foundation.HRESULT Delete(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Count, out int pDelta) 296 winmdroot.Foundation.HRESULT __result = @this.Delete(Unit, Count, pDeltaLocal); 302 internal static unsafe winmdroot.Foundation.HRESULT Cut(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out winmdroot.System.Variant.VARIANT pVar) 306 winmdroot.Foundation.HRESULT __result = @this.Cut(pVarLocal); 312 internal static unsafe winmdroot.Foundation.HRESULT Copy(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out winmdroot.System.Variant.VARIANT pVar) 316 winmdroot.Foundation.HRESULT __result = @this.Copy(pVarLocal); 322 internal static unsafe winmdroot.Foundation.HRESULT Paste(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, in winmdroot.System.Variant.VARIANT pVar, int Format) 326 winmdroot.Foundation.HRESULT __result = @this.Paste(pVarLocal, Format); 332 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) 338 winmdroot.Foundation.HRESULT __result = @this.CanPaste(pVarLocal, Format, pValueLocal); 345 internal static unsafe winmdroot.Foundation.HRESULT CanEdit(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out int pValue) 349 winmdroot.Foundation.HRESULT __result = @this.CanEdit(pValueLocal); 355 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) 361 winmdroot.Foundation.HRESULT __result = @this.GetPoint(Type, pxLocal, pyLocal); 368 internal static unsafe winmdroot.Foundation.HRESULT GetFlags(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out int pFlags) 372 winmdroot.Foundation.HRESULT __result = @this.GetFlags(pFlagsLocal); 378 internal static unsafe winmdroot.Foundation.HRESULT GetType(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out int pType) 382 winmdroot.Foundation.HRESULT __result = @this.GetType(pTypeLocal); 388 internal static unsafe winmdroot.Foundation.HRESULT MoveLeft(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Count, int Extend, out int pDelta) 392 winmdroot.Foundation.HRESULT __result = @this.MoveLeft(Unit, Count, Extend, pDeltaLocal); 398 internal static unsafe winmdroot.Foundation.HRESULT MoveRight(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Count, int Extend, out int pDelta) 402 winmdroot.Foundation.HRESULT __result = @this.MoveRight(Unit, Count, Extend, pDeltaLocal); 408 internal static unsafe winmdroot.Foundation.HRESULT MoveUp(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Count, int Extend, out int pDelta) 412 winmdroot.Foundation.HRESULT __result = @this.MoveUp(Unit, Count, Extend, pDeltaLocal); 418 internal static unsafe winmdroot.Foundation.HRESULT MoveDown(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Count, int Extend, out int pDelta) 422 winmdroot.Foundation.HRESULT __result = @this.MoveDown(Unit, Count, Extend, pDeltaLocal); 428 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) 432 winmdroot.Foundation.HRESULT __result = @this.HomeKey(Unit, Extend, pDeltaLocal); 438 internal static unsafe winmdroot.Foundation.HRESULT EndKey(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Extend, out int pDelta) 442 winmdroot.Foundation.HRESULT __result = @this.EndKey(Unit, Extend, pDeltaLocal);
_generated\594\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);
_generated\595\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, [Optional] string pwszRegKeyPath, [Optional] 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);
_generated\596\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, [Optional] string pwszRegKeyPath, [Optional] string pwszQuickComplete) 30 winmdroot.Foundation.HRESULT __result = @this.Init(hwndEdit, punkACL, pwszRegKeyPathLocal, pwszQuickCompleteLocal);
_generated\597\Windows.Win32.UI_Shell_IEnumIDList_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.UI.Shell.IEnumIDList.Interface @this, uint celt, winmdroot.UI.Shell.Common.ITEMIDLIST** rgelt, out uint pceltFetched) 28 winmdroot.Foundation.HRESULT __result = @this.Next(celt, rgelt, pceltFetchedLocal); 35 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.UI.Shell.IEnumIDList.Interface @this, uint celt, winmdroot.UI.Shell.Common.ITEMIDLIST** rgelt) 37 winmdroot.Foundation.HRESULT __result = @this.Next(celt, rgelt, default(uint* ));
_generated\598\Windows.Win32.UI_Shell_IEnumShellItems_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.UI.Shell.IEnumShellItems.Interface @this, uint celt, winmdroot.UI.Shell.IShellItem** rgelt, out uint pceltFetched) 28 winmdroot.Foundation.HRESULT __result = @this.Next(celt, rgelt, pceltFetchedLocal); 35 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.UI.Shell.IEnumShellItems.Interface @this, uint celt, winmdroot.UI.Shell.IShellItem** rgelt) 37 winmdroot.Foundation.HRESULT __result = @this.Next(celt, rgelt, default(uint* ));
_generated\599\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);
_generated\600\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);
_generated\601\Windows.Win32.UI_Shell_IFileDialog_Extensions.g.cs (22)
25 internal static unsafe winmdroot.Foundation.HRESULT SetFileTypes(this winmdroot.UI.Shell.IFileDialog.Interface @this, ReadOnlySpan<winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC> rgFilterSpec) 29 winmdroot.Foundation.HRESULT __result = @this.SetFileTypes((uint )rgFilterSpec.Length, rgFilterSpecLocal); 35 internal static unsafe winmdroot.Foundation.HRESULT GetFileTypeIndex(this winmdroot.UI.Shell.IFileDialog.Interface @this, out uint piFileType) 39 winmdroot.Foundation.HRESULT __result = @this.GetFileTypeIndex(piFileTypeLocal); 45 internal static unsafe winmdroot.Foundation.HRESULT Advise(this winmdroot.UI.Shell.IFileDialog.Interface @this, winmdroot.UI.Shell.IFileDialogEvents* pfde, out uint pdwCookie) 49 winmdroot.Foundation.HRESULT __result = @this.Advise(pfde, pdwCookieLocal); 55 internal static unsafe winmdroot.Foundation.HRESULT GetOptions(this winmdroot.UI.Shell.IFileDialog.Interface @this, out winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS pfos) 59 winmdroot.Foundation.HRESULT __result = @this.GetOptions(pfosLocal); 65 internal static unsafe winmdroot.Foundation.HRESULT SetFileName(this winmdroot.UI.Shell.IFileDialog.Interface @this, string pszName) 69 winmdroot.Foundation.HRESULT __result = @this.SetFileName(pszNameLocal); 75 internal static unsafe winmdroot.Foundation.HRESULT GetFileName(this winmdroot.UI.Shell.IFileDialog.Interface @this, out winmdroot.Foundation.PWSTR pszName) 79 winmdroot.Foundation.HRESULT __result = @this.GetFileName(pszNameLocal); 85 internal static unsafe winmdroot.Foundation.HRESULT SetTitle(this winmdroot.UI.Shell.IFileDialog.Interface @this, string pszTitle) 89 winmdroot.Foundation.HRESULT __result = @this.SetTitle(pszTitleLocal); 95 internal static unsafe winmdroot.Foundation.HRESULT SetOkButtonLabel(this winmdroot.UI.Shell.IFileDialog.Interface @this, string pszText) 99 winmdroot.Foundation.HRESULT __result = @this.SetOkButtonLabel(pszTextLocal); 105 internal static unsafe winmdroot.Foundation.HRESULT SetFileNameLabel(this winmdroot.UI.Shell.IFileDialog.Interface @this, string pszLabel) 109 winmdroot.Foundation.HRESULT __result = @this.SetFileNameLabel(pszLabelLocal); 115 internal static unsafe winmdroot.Foundation.HRESULT SetDefaultExtension(this winmdroot.UI.Shell.IFileDialog.Interface @this, string pszDefaultExtension) 119 winmdroot.Foundation.HRESULT __result = @this.SetDefaultExtension(pszDefaultExtensionLocal); 125 internal static unsafe winmdroot.Foundation.HRESULT SetClientGuid(this winmdroot.UI.Shell.IFileDialog.Interface @this, in global::System.Guid guid) 129 winmdroot.Foundation.HRESULT __result = @this.SetClientGuid(guidLocal);
_generated\602\Windows.Win32.UI_Shell_IFileOpenDialog_Extensions.g.cs (22)
25 internal static unsafe winmdroot.Foundation.HRESULT SetFileTypes(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, ReadOnlySpan<winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC> rgFilterSpec) 29 winmdroot.Foundation.HRESULT __result = @this.SetFileTypes((uint )rgFilterSpec.Length, rgFilterSpecLocal); 35 internal static unsafe winmdroot.Foundation.HRESULT GetFileTypeIndex(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, out uint piFileType) 39 winmdroot.Foundation.HRESULT __result = @this.GetFileTypeIndex(piFileTypeLocal); 45 internal static unsafe winmdroot.Foundation.HRESULT Advise(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, winmdroot.UI.Shell.IFileDialogEvents* pfde, out uint pdwCookie) 49 winmdroot.Foundation.HRESULT __result = @this.Advise(pfde, pdwCookieLocal); 55 internal static unsafe winmdroot.Foundation.HRESULT GetOptions(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, out winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS pfos) 59 winmdroot.Foundation.HRESULT __result = @this.GetOptions(pfosLocal); 65 internal static unsafe winmdroot.Foundation.HRESULT SetFileName(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, string pszName) 69 winmdroot.Foundation.HRESULT __result = @this.SetFileName(pszNameLocal); 75 internal static unsafe winmdroot.Foundation.HRESULT GetFileName(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, out winmdroot.Foundation.PWSTR pszName) 79 winmdroot.Foundation.HRESULT __result = @this.GetFileName(pszNameLocal); 85 internal static unsafe winmdroot.Foundation.HRESULT SetTitle(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, string pszTitle) 89 winmdroot.Foundation.HRESULT __result = @this.SetTitle(pszTitleLocal); 95 internal static unsafe winmdroot.Foundation.HRESULT SetOkButtonLabel(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, string pszText) 99 winmdroot.Foundation.HRESULT __result = @this.SetOkButtonLabel(pszTextLocal); 105 internal static unsafe winmdroot.Foundation.HRESULT SetFileNameLabel(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, string pszLabel) 109 winmdroot.Foundation.HRESULT __result = @this.SetFileNameLabel(pszLabelLocal); 115 internal static unsafe winmdroot.Foundation.HRESULT SetDefaultExtension(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, string pszDefaultExtension) 119 winmdroot.Foundation.HRESULT __result = @this.SetDefaultExtension(pszDefaultExtensionLocal); 125 internal static unsafe winmdroot.Foundation.HRESULT SetClientGuid(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, in global::System.Guid guid) 129 winmdroot.Foundation.HRESULT __result = @this.SetClientGuid(guidLocal);
_generated\603\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);
_generated\604\Windows.Win32.UI_Shell_IFileSaveDialog_Extensions.g.cs (22)
25 internal static unsafe winmdroot.Foundation.HRESULT SetFileTypes(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, ReadOnlySpan<winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC> rgFilterSpec) 29 winmdroot.Foundation.HRESULT __result = @this.SetFileTypes((uint )rgFilterSpec.Length, rgFilterSpecLocal); 35 internal static unsafe winmdroot.Foundation.HRESULT GetFileTypeIndex(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, out uint piFileType) 39 winmdroot.Foundation.HRESULT __result = @this.GetFileTypeIndex(piFileTypeLocal); 45 internal static unsafe winmdroot.Foundation.HRESULT Advise(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, winmdroot.UI.Shell.IFileDialogEvents* pfde, out uint pdwCookie) 49 winmdroot.Foundation.HRESULT __result = @this.Advise(pfde, pdwCookieLocal); 55 internal static unsafe winmdroot.Foundation.HRESULT GetOptions(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, out winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS pfos) 59 winmdroot.Foundation.HRESULT __result = @this.GetOptions(pfosLocal); 65 internal static unsafe winmdroot.Foundation.HRESULT SetFileName(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, string pszName) 69 winmdroot.Foundation.HRESULT __result = @this.SetFileName(pszNameLocal); 75 internal static unsafe winmdroot.Foundation.HRESULT GetFileName(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, out winmdroot.Foundation.PWSTR pszName) 79 winmdroot.Foundation.HRESULT __result = @this.GetFileName(pszNameLocal); 85 internal static unsafe winmdroot.Foundation.HRESULT SetTitle(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, string pszTitle) 89 winmdroot.Foundation.HRESULT __result = @this.SetTitle(pszTitleLocal); 95 internal static unsafe winmdroot.Foundation.HRESULT SetOkButtonLabel(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, string pszText) 99 winmdroot.Foundation.HRESULT __result = @this.SetOkButtonLabel(pszTextLocal); 105 internal static unsafe winmdroot.Foundation.HRESULT SetFileNameLabel(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, string pszLabel) 109 winmdroot.Foundation.HRESULT __result = @this.SetFileNameLabel(pszLabelLocal); 115 internal static unsafe winmdroot.Foundation.HRESULT SetDefaultExtension(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, string pszDefaultExtension) 119 winmdroot.Foundation.HRESULT __result = @this.SetDefaultExtension(pszDefaultExtensionLocal); 125 internal static unsafe winmdroot.Foundation.HRESULT SetClientGuid(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, in global::System.Guid guid) 129 winmdroot.Foundation.HRESULT __result = @this.SetClientGuid(guidLocal);
_generated\605\Windows.Win32.UI_Shell_IShellFolder_Extensions.g.cs (20)
25 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) 31 winmdroot.Foundation.HRESULT __result = @this.ParseDisplayName(hwnd, pbc, pszDisplayName, default, ppidlLocal, pdwAttributesLocal); 38 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) 46 winmdroot.Foundation.HRESULT __result = @this.BindToObject(pidlLocal, pbc, riidLocal, ppvLocal); 54 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) 62 winmdroot.Foundation.HRESULT __result = @this.BindToStorage(pidlLocal, pbc, riidLocal, ppvLocal); 70 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) 76 winmdroot.Foundation.HRESULT __result = @this.CompareIDs(lParam, pidl1Local, pidl2Local); 83 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) 89 winmdroot.Foundation.HRESULT __result = @this.CreateViewObject(hwndOwner, riidLocal, ppvLocal); 96 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) 100 winmdroot.Foundation.HRESULT __result = @this.GetAttributesOf(cidl, apidl, rgfInOutLocal); 107 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) 113 winmdroot.Foundation.HRESULT __result = @this.GetUIObjectOf(hwndOwner, cidl, apidl, riidLocal, default, ppvLocal); 120 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) 126 winmdroot.Foundation.HRESULT __result = @this.GetDisplayNameOf(pidlLocal, uFlags, pNameLocal); 133 internal static unsafe winmdroot.Foundation.HRESULT SetNameOf(this winmdroot.UI.Shell.IShellFolder.Interface @this, [Optional] winmdroot.Foundation.HWND hwnd, in winmdroot.UI.Shell.Common.ITEMIDLIST pidl, string pszName, winmdroot.UI.Shell.SHGDNF uFlags, out winmdroot.UI.Shell.Common.ITEMIDLIST* ppidlOut) 141 winmdroot.Foundation.HRESULT __result = @this.SetNameOf(hwnd, pidlLocal, pszNameLocal, uFlags, ppidlOutLocal); 150 internal static unsafe winmdroot.Foundation.HRESULT SetNameOf(this winmdroot.UI.Shell.IShellFolder.Interface @this, [Optional] winmdroot.Foundation.HWND hwnd, in winmdroot.UI.Shell.Common.ITEMIDLIST pidl, string pszName, winmdroot.UI.Shell.SHGDNF uFlags) 156 winmdroot.Foundation.HRESULT __result = @this.SetNameOf(hwnd, pidlLocal, pszNameLocal, uFlags, default(winmdroot.UI.Shell.Common.ITEMIDLIST** ));
_generated\606\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.Foundation.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);
_generated\607\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);
_generated\608\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);
_generated\609\Windows.Win32.UI_Shell_IWebBrowser2_Extensions.g.cs (32)
24 internal static unsafe winmdroot.Foundation.HRESULT Navigate(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT? Flags, [Optional] winmdroot.System.Variant.VARIANT? TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT? PostData, [Optional] winmdroot.System.Variant.VARIANT? Headers) 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, [Optional] winmdroot.System.Variant.VARIANT? Level) 38 winmdroot.Foundation.HRESULT __result = @this.Refresh2(Level.HasValue ? &LevelLocal : null); 43 internal static unsafe winmdroot.Foundation.HRESULT get_LocationName(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, out winmdroot.Foundation.BSTR LocationName) 47 winmdroot.Foundation.HRESULT __result = @this.get_LocationName(LocationNameLocal); 53 internal static unsafe winmdroot.Foundation.HRESULT get_LocationURL(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, out winmdroot.Foundation.BSTR LocationURL) 57 winmdroot.Foundation.HRESULT __result = @this.get_LocationURL(LocationURLLocal); 63 internal static unsafe winmdroot.Foundation.HRESULT get_Busy(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, out winmdroot.Foundation.VARIANT_BOOL pBool) 67 winmdroot.Foundation.HRESULT __result = @this.get_Busy(pBoolLocal); 73 internal static unsafe winmdroot.Foundation.HRESULT ClientToWindow(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, ref int pcx, ref int pcy) 79 winmdroot.Foundation.HRESULT __result = @this.ClientToWindow(pcxLocal, pcyLocal); 86 internal static unsafe winmdroot.Foundation.HRESULT GetProperty(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, winmdroot.Foundation.BSTR Property, out winmdroot.System.Variant.VARIANT pvtValue) 90 winmdroot.Foundation.HRESULT __result = @this.GetProperty(Property, pvtValueLocal); 96 internal static unsafe winmdroot.Foundation.HRESULT Navigate2(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, in 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) 104 winmdroot.Foundation.HRESULT __result = @this.Navigate2(URLLocal, Flags.HasValue ? &FlagsLocal : null, TargetFrameName.HasValue ? &TargetFrameNameLocal : null, PostData.HasValue ? &PostDataLocal : null, Headers.HasValue ? &HeadersLocal : null); 110 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) 114 winmdroot.Foundation.HRESULT __result = @this.QueryStatusWB(cmdID, pcmdfLocal); 120 internal static unsafe winmdroot.Foundation.HRESULT ExecWB(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, winmdroot.System.Ole.OLECMDID cmdID, winmdroot.System.Ole.OLECMDEXECOPT cmdexecopt, [Optional] winmdroot.System.Variant.VARIANT? pvaIn, ref winmdroot.System.Variant.VARIANT pvaOut) 125 winmdroot.Foundation.HRESULT __result = @this.ExecWB(cmdID, cmdexecopt, pvaIn.HasValue ? &pvaInLocal : null, pvaOutLocal); 132 internal static unsafe winmdroot.Foundation.HRESULT ExecWB(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, winmdroot.System.Ole.OLECMDID cmdID, winmdroot.System.Ole.OLECMDEXECOPT cmdexecopt, [Optional] winmdroot.System.Variant.VARIANT? pvaIn) 135 winmdroot.Foundation.HRESULT __result = @this.ExecWB(cmdID, cmdexecopt, pvaIn.HasValue ? &pvaInLocal : null, default(winmdroot.System.Variant.VARIANT* )); 140 internal static unsafe winmdroot.Foundation.HRESULT ShowBrowserBar(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, in winmdroot.System.Variant.VARIANT pvaClsid, [Optional] winmdroot.System.Variant.VARIANT? pvarShow, [Optional] winmdroot.System.Variant.VARIANT? pvarSize) 146 winmdroot.Foundation.HRESULT __result = @this.ShowBrowserBar(pvaClsidLocal, pvarShow.HasValue ? &pvarShowLocal : null, pvarSize.HasValue ? &pvarSizeLocal : null); 152 internal static unsafe winmdroot.Foundation.HRESULT get_ReadyState(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, out winmdroot.System.Ole.READYSTATE plReadyState) 156 winmdroot.Foundation.HRESULT __result = @this.get_ReadyState(plReadyStateLocal); 162 internal static unsafe winmdroot.Foundation.HRESULT get_Offline(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, out winmdroot.Foundation.VARIANT_BOOL pbOffline) 166 winmdroot.Foundation.HRESULT __result = @this.get_Offline(pbOfflineLocal); 172 internal static unsafe winmdroot.Foundation.HRESULT get_Silent(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, out winmdroot.Foundation.VARIANT_BOOL pbSilent) 176 winmdroot.Foundation.HRESULT __result = @this.get_Silent(pbSilentLocal); 182 internal static unsafe winmdroot.Foundation.HRESULT get_RegisterAsDropTarget(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, out winmdroot.Foundation.VARIANT_BOOL pbRegister) 186 winmdroot.Foundation.HRESULT __result = @this.get_RegisterAsDropTarget(pbRegisterLocal);
_generated\610\Windows.Win32.UI_Shell_IWebBrowserApp_Extensions.g.cs (14)
24 internal static unsafe winmdroot.Foundation.HRESULT Navigate(this winmdroot.UI.Shell.IWebBrowserApp.Interface @this, winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT? Flags, [Optional] winmdroot.System.Variant.VARIANT? TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT? PostData, [Optional] winmdroot.System.Variant.VARIANT? Headers) 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, [Optional] winmdroot.System.Variant.VARIANT? Level) 38 winmdroot.Foundation.HRESULT __result = @this.Refresh2(Level.HasValue ? &LevelLocal : null); 43 internal static unsafe winmdroot.Foundation.HRESULT get_LocationName(this winmdroot.UI.Shell.IWebBrowserApp.Interface @this, out winmdroot.Foundation.BSTR LocationName) 47 winmdroot.Foundation.HRESULT __result = @this.get_LocationName(LocationNameLocal); 53 internal static unsafe winmdroot.Foundation.HRESULT get_LocationURL(this winmdroot.UI.Shell.IWebBrowserApp.Interface @this, out winmdroot.Foundation.BSTR LocationURL) 57 winmdroot.Foundation.HRESULT __result = @this.get_LocationURL(LocationURLLocal); 63 internal static unsafe winmdroot.Foundation.HRESULT get_Busy(this winmdroot.UI.Shell.IWebBrowserApp.Interface @this, out winmdroot.Foundation.VARIANT_BOOL pBool) 67 winmdroot.Foundation.HRESULT __result = @this.get_Busy(pBoolLocal); 73 internal static unsafe winmdroot.Foundation.HRESULT ClientToWindow(this winmdroot.UI.Shell.IWebBrowserApp.Interface @this, ref int pcx, ref int pcy) 79 winmdroot.Foundation.HRESULT __result = @this.ClientToWindow(pcxLocal, pcyLocal); 86 internal static unsafe winmdroot.Foundation.HRESULT GetProperty(this winmdroot.UI.Shell.IWebBrowserApp.Interface @this, winmdroot.Foundation.BSTR Property, out winmdroot.System.Variant.VARIANT pvtValue) 90 winmdroot.Foundation.HRESULT __result = @this.GetProperty(Property, pvtValueLocal);
_generated\611\Windows.Win32.UI_Shell_IWebBrowser_Extensions.g.cs (10)
24 internal static unsafe winmdroot.Foundation.HRESULT Navigate(this winmdroot.UI.Shell.IWebBrowser.Interface @this, winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT? Flags, [Optional] winmdroot.System.Variant.VARIANT? TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT? PostData, [Optional] winmdroot.System.Variant.VARIANT? Headers) 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, [Optional] winmdroot.System.Variant.VARIANT? Level) 38 winmdroot.Foundation.HRESULT __result = @this.Refresh2(Level.HasValue ? &LevelLocal : null); 43 internal static unsafe winmdroot.Foundation.HRESULT get_LocationName(this winmdroot.UI.Shell.IWebBrowser.Interface @this, out winmdroot.Foundation.BSTR LocationName) 47 winmdroot.Foundation.HRESULT __result = @this.get_LocationName(LocationNameLocal); 53 internal static unsafe winmdroot.Foundation.HRESULT get_LocationURL(this winmdroot.UI.Shell.IWebBrowser.Interface @this, out winmdroot.Foundation.BSTR LocationURL) 57 winmdroot.Foundation.HRESULT __result = @this.get_LocationURL(LocationURLLocal); 63 internal static unsafe winmdroot.Foundation.HRESULT get_Busy(this winmdroot.UI.Shell.IWebBrowser.Interface @this, out winmdroot.Foundation.VARIANT_BOOL pBool) 67 winmdroot.Foundation.HRESULT __result = @this.get_Busy(pBoolLocal);
_generated\612\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);
_generated\613\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.Foundation.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.Foundation.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.Foundation.PROPERTYKEY key, in winmdroot.System.Com.StructuredStorage.PROPVARIANT propvar) 63 winmdroot.Foundation.HRESULT __result = @this.SetValue(keyLocal, propvarLocal);
_generated\623\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);
_generated\624\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);
_generated\625\Windows.Win32.Web_MsHtml_IHTMLDocument2_Extensions.g.cs (40)
24 internal static unsafe winmdroot.Foundation.HRESULT get_title(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.Foundation.BSTR p) 28 winmdroot.Foundation.HRESULT __result = @this.get_title(pLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_alinkColor(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.System.Variant.VARIANT p) 38 winmdroot.Foundation.HRESULT __result = @this.get_alinkColor(pLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT get_bgColor(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.System.Variant.VARIANT p) 48 winmdroot.Foundation.HRESULT __result = @this.get_bgColor(pLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT get_fgColor(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.System.Variant.VARIANT p) 58 winmdroot.Foundation.HRESULT __result = @this.get_fgColor(pLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT get_linkColor(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.System.Variant.VARIANT p) 68 winmdroot.Foundation.HRESULT __result = @this.get_linkColor(pLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT get_vlinkColor(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.System.Variant.VARIANT p) 78 winmdroot.Foundation.HRESULT __result = @this.get_vlinkColor(pLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT get_domain(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.Foundation.BSTR p) 88 winmdroot.Foundation.HRESULT __result = @this.get_domain(pLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT get_cookie(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.Foundation.BSTR p) 98 winmdroot.Foundation.HRESULT __result = @this.get_cookie(pLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT get_charset(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.Foundation.BSTR p) 108 winmdroot.Foundation.HRESULT __result = @this.get_charset(pLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT get_defaultCharset(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.Foundation.BSTR p) 118 winmdroot.Foundation.HRESULT __result = @this.get_defaultCharset(pLocal); 124 internal static unsafe winmdroot.Foundation.HRESULT get_mimeType(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.Foundation.BSTR p) 128 winmdroot.Foundation.HRESULT __result = @this.get_mimeType(pLocal); 134 internal static unsafe winmdroot.Foundation.HRESULT queryCommandSupported(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.VARIANT_BOOL pfRet) 138 winmdroot.Foundation.HRESULT __result = @this.queryCommandSupported(cmdID, pfRetLocal); 144 internal static unsafe winmdroot.Foundation.HRESULT queryCommandEnabled(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.VARIANT_BOOL pfRet) 148 winmdroot.Foundation.HRESULT __result = @this.queryCommandEnabled(cmdID, pfRetLocal); 154 internal static unsafe winmdroot.Foundation.HRESULT queryCommandState(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.VARIANT_BOOL pfRet) 158 winmdroot.Foundation.HRESULT __result = @this.queryCommandState(cmdID, pfRetLocal); 164 internal static unsafe winmdroot.Foundation.HRESULT queryCommandIndeterm(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.VARIANT_BOOL pfRet) 168 winmdroot.Foundation.HRESULT __result = @this.queryCommandIndeterm(cmdID, pfRetLocal); 174 internal static unsafe winmdroot.Foundation.HRESULT queryCommandText(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.BSTR pcmdText) 178 winmdroot.Foundation.HRESULT __result = @this.queryCommandText(cmdID, pcmdTextLocal); 184 internal static unsafe winmdroot.Foundation.HRESULT queryCommandValue(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.System.Variant.VARIANT pcmdValue) 188 winmdroot.Foundation.HRESULT __result = @this.queryCommandValue(cmdID, pcmdValueLocal); 194 internal static unsafe winmdroot.Foundation.HRESULT execCommand(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL showUI, winmdroot.System.Variant.VARIANT value, out winmdroot.Foundation.VARIANT_BOOL pfRet) 198 winmdroot.Foundation.HRESULT __result = @this.execCommand(cmdID, showUI, value, pfRetLocal); 204 internal static unsafe winmdroot.Foundation.HRESULT execCommandShowHelp(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.VARIANT_BOOL pfRet) 208 winmdroot.Foundation.HRESULT __result = @this.execCommandShowHelp(cmdID, pfRetLocal); 214 internal static unsafe winmdroot.Foundation.HRESULT toString(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.Foundation.BSTR String) 218 winmdroot.Foundation.HRESULT __result = @this.toString(StringLocal);
_generated\626\Windows.Win32.Web_MsHtml_IHTMLDocument3_Extensions.g.cs (4)
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); 34 internal static unsafe winmdroot.Foundation.HRESULT get_dir(this winmdroot.Web.MsHtml.IHTMLDocument3.Interface @this, out winmdroot.Foundation.BSTR p) 38 winmdroot.Foundation.HRESULT __result = @this.get_dir(pLocal);
_generated\627\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);
_generated\628\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);
_generated\629\Windows.Win32.Web_MsHtml_IHTMLElement2_Extensions.g.cs (36)
24 internal static unsafe winmdroot.Foundation.HRESULT componentFromPoint(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, int x, int y, out winmdroot.Foundation.BSTR component) 28 winmdroot.Foundation.HRESULT __result = @this.componentFromPoint(x, y, componentLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT getExpression(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, winmdroot.Foundation.BSTR propname, out winmdroot.System.Variant.VARIANT expression) 38 winmdroot.Foundation.HRESULT __result = @this.getExpression(propname, expressionLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT removeExpression(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, winmdroot.Foundation.BSTR propname, out winmdroot.Foundation.VARIANT_BOOL pfSuccess) 48 winmdroot.Foundation.HRESULT __result = @this.removeExpression(propname, pfSuccessLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT get_tabIndex(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out short p) 58 winmdroot.Foundation.HRESULT __result = @this.get_tabIndex(pLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT get_clientHeight(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out int p) 68 winmdroot.Foundation.HRESULT __result = @this.get_clientHeight(pLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT get_clientWidth(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out int p) 78 winmdroot.Foundation.HRESULT __result = @this.get_clientWidth(pLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT get_clientTop(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out int p) 88 winmdroot.Foundation.HRESULT __result = @this.get_clientTop(pLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT get_clientLeft(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out int p) 98 winmdroot.Foundation.HRESULT __result = @this.get_clientLeft(pLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT attachEvent(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult) 108 winmdroot.Foundation.HRESULT __result = @this.attachEvent(@event, pDisp, pfResultLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT get_scrollHeight(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out int p) 118 winmdroot.Foundation.HRESULT __result = @this.get_scrollHeight(pLocal); 124 internal static unsafe winmdroot.Foundation.HRESULT get_scrollWidth(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out int p) 128 winmdroot.Foundation.HRESULT __result = @this.get_scrollWidth(pLocal); 134 internal static unsafe winmdroot.Foundation.HRESULT get_scrollTop(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out int p) 138 winmdroot.Foundation.HRESULT __result = @this.get_scrollTop(pLocal); 144 internal static unsafe winmdroot.Foundation.HRESULT get_scrollLeft(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out int p) 148 winmdroot.Foundation.HRESULT __result = @this.get_scrollLeft(pLocal); 154 internal static unsafe winmdroot.Foundation.HRESULT getAdjacentText(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, winmdroot.Foundation.BSTR where, out winmdroot.Foundation.BSTR text) 158 winmdroot.Foundation.HRESULT __result = @this.getAdjacentText(where, textLocal); 164 internal static unsafe winmdroot.Foundation.HRESULT replaceAdjacentText(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR newText, out winmdroot.Foundation.BSTR oldText) 168 winmdroot.Foundation.HRESULT __result = @this.replaceAdjacentText(where, newText, oldTextLocal); 174 internal static unsafe winmdroot.Foundation.HRESULT get_canHaveChildren(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out winmdroot.Foundation.VARIANT_BOOL p) 178 winmdroot.Foundation.HRESULT __result = @this.get_canHaveChildren(pLocal); 184 internal static unsafe winmdroot.Foundation.HRESULT addBehavior(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, winmdroot.Foundation.BSTR bstrUrl, in winmdroot.System.Variant.VARIANT pvarFactory, out int pCookie) 190 winmdroot.Foundation.HRESULT __result = @this.addBehavior(bstrUrl, pvarFactoryLocal, pCookieLocal); 197 internal static unsafe winmdroot.Foundation.HRESULT removeBehavior(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, int cookie, out winmdroot.Foundation.VARIANT_BOOL pfResult) 201 winmdroot.Foundation.HRESULT __result = @this.removeBehavior(cookie, pfResultLocal);
_generated\630\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);
_generated\631\Windows.Win32.Web_MsHtml_IHTMLElementCollection_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT toString(this winmdroot.Web.MsHtml.IHTMLElementCollection.Interface @this, out winmdroot.Foundation.BSTR String) 28 winmdroot.Foundation.HRESULT __result = @this.toString(StringLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_length(this winmdroot.Web.MsHtml.IHTMLElementCollection.Interface @this, out int p) 38 winmdroot.Foundation.HRESULT __result = @this.get_length(pLocal);
_generated\632\Windows.Win32.Web_MsHtml_IHTMLElement_Extensions.g.cs (28)
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 get_id(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out winmdroot.Foundation.BSTR p) 48 winmdroot.Foundation.HRESULT __result = @this.get_id(pLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT get_tagName(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out winmdroot.Foundation.BSTR p) 58 winmdroot.Foundation.HRESULT __result = @this.get_tagName(pLocal); 64 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) 68 winmdroot.Foundation.HRESULT __result = @this.contains(pChild, pfResultLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT get_offsetLeft(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out int p) 78 winmdroot.Foundation.HRESULT __result = @this.get_offsetLeft(pLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT get_offsetTop(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out int p) 88 winmdroot.Foundation.HRESULT __result = @this.get_offsetTop(pLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT get_offsetWidth(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out int p) 98 winmdroot.Foundation.HRESULT __result = @this.get_offsetWidth(pLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT get_offsetHeight(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out int p) 108 winmdroot.Foundation.HRESULT __result = @this.get_offsetHeight(pLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT get_innerHTML(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out winmdroot.Foundation.BSTR p) 118 winmdroot.Foundation.HRESULT __result = @this.get_innerHTML(pLocal); 124 internal static unsafe winmdroot.Foundation.HRESULT get_innerText(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out winmdroot.Foundation.BSTR p) 128 winmdroot.Foundation.HRESULT __result = @this.get_innerText(pLocal); 134 internal static unsafe winmdroot.Foundation.HRESULT get_outerHTML(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out winmdroot.Foundation.BSTR p) 138 winmdroot.Foundation.HRESULT __result = @this.get_outerHTML(pLocal); 144 internal static unsafe winmdroot.Foundation.HRESULT get_outerText(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out winmdroot.Foundation.BSTR p) 148 winmdroot.Foundation.HRESULT __result = @this.get_outerText(pLocal); 154 internal static unsafe winmdroot.Foundation.HRESULT toString(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out winmdroot.Foundation.BSTR String) 158 winmdroot.Foundation.HRESULT __result = @this.toString(StringLocal);
_generated\633\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);
_generated\634\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);
_generated\635\Windows.Win32.Web_MsHtml_IHTMLLocation_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT get_href(this winmdroot.Web.MsHtml.IHTMLLocation.Interface @this, out winmdroot.Foundation.BSTR p) 28 winmdroot.Foundation.HRESULT __result = @this.get_href(pLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT toString(this winmdroot.Web.MsHtml.IHTMLLocation.Interface @this, out winmdroot.Foundation.BSTR @string) 38 winmdroot.Foundation.HRESULT __result = @this.toString(@stringLocal);
_generated\636\Windows.Win32.Web_MsHtml_IHTMLOpsProfile_Extensions.g.cs (12)
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 getAttribute(this winmdroot.Web.MsHtml.IHTMLOpsProfile.Interface @this, winmdroot.Foundation.BSTR name, out winmdroot.Foundation.BSTR value) 38 winmdroot.Foundation.HRESULT __result = @this.getAttribute(name, valueLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT setAttribute(this winmdroot.Web.MsHtml.IHTMLOpsProfile.Interface @this, winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR value, winmdroot.System.Variant.VARIANT prefs, out winmdroot.Foundation.VARIANT_BOOL success) 48 winmdroot.Foundation.HRESULT __result = @this.setAttribute(name, value, prefs, successLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT commitChanges(this winmdroot.Web.MsHtml.IHTMLOpsProfile.Interface @this, out winmdroot.Foundation.VARIANT_BOOL success) 58 winmdroot.Foundation.HRESULT __result = @this.commitChanges(successLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT addReadRequest(this winmdroot.Web.MsHtml.IHTMLOpsProfile.Interface @this, winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved, out winmdroot.Foundation.VARIANT_BOOL success) 68 winmdroot.Foundation.HRESULT __result = @this.addReadRequest(name, reserved, successLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT doWriteRequest(this winmdroot.Web.MsHtml.IHTMLOpsProfile.Interface @this, out winmdroot.Foundation.VARIANT_BOOL success) 78 winmdroot.Foundation.HRESULT __result = @this.doWriteRequest(successLocal);
_generated\637\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);
_generated\638\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);
_generated\639\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);
_generated\640\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);
_generated\641\Windows.Win32.Web_MsHtml_IHTMLStyle_Extensions.g.cs (8)
24 internal static unsafe winmdroot.Foundation.HRESULT get_cssText(this winmdroot.Web.MsHtml.IHTMLStyle.Interface @this, out winmdroot.Foundation.BSTR p) 28 winmdroot.Foundation.HRESULT __result = @this.get_cssText(pLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT getAttribute(this winmdroot.Web.MsHtml.IHTMLStyle.Interface @this, winmdroot.Foundation.BSTR strAttributeName, int lFlags, out winmdroot.System.Variant.VARIANT AttributeValue) 38 winmdroot.Foundation.HRESULT __result = @this.getAttribute(strAttributeName, lFlags, AttributeValueLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT removeAttribute(this winmdroot.Web.MsHtml.IHTMLStyle.Interface @this, winmdroot.Foundation.BSTR strAttributeName, int lFlags, out winmdroot.Foundation.VARIANT_BOOL pfSuccess) 48 winmdroot.Foundation.HRESULT __result = @this.removeAttribute(strAttributeName, lFlags, pfSuccessLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT toString(this winmdroot.Web.MsHtml.IHTMLStyle.Interface @this, out winmdroot.Foundation.BSTR String) 58 winmdroot.Foundation.HRESULT __result = @this.toString(StringLocal);
_generated\642\Windows.Win32.Web_MsHtml_IHTMLWindow2_Extensions.g.cs (26)
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 get_status(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, out winmdroot.Foundation.BSTR p) 51 winmdroot.Foundation.HRESULT __result = @this.get_status(pLocal); 57 internal static unsafe winmdroot.Foundation.HRESULT setTimeout(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, winmdroot.Foundation.BSTR expression, int msec, in winmdroot.System.Variant.VARIANT language, out int timerID) 63 winmdroot.Foundation.HRESULT __result = @this.setTimeout(expression, msec, languageLocal, timerIDLocal); 70 internal static unsafe winmdroot.Foundation.HRESULT confirm(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, winmdroot.Foundation.BSTR message, out winmdroot.Foundation.VARIANT_BOOL confirmed) 74 winmdroot.Foundation.HRESULT __result = @this.confirm(message, confirmedLocal); 80 internal static unsafe winmdroot.Foundation.HRESULT prompt(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, winmdroot.Foundation.BSTR message, winmdroot.Foundation.BSTR defstr, out winmdroot.System.Variant.VARIANT textdata) 84 winmdroot.Foundation.HRESULT __result = @this.prompt(message, defstr, textdataLocal); 90 internal static unsafe winmdroot.Foundation.HRESULT get_opener(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, out winmdroot.System.Variant.VARIANT p) 94 winmdroot.Foundation.HRESULT __result = @this.get_opener(pLocal); 100 internal static unsafe winmdroot.Foundation.HRESULT get_name(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, out winmdroot.Foundation.BSTR p) 104 winmdroot.Foundation.HRESULT __result = @this.get_name(pLocal); 110 internal static unsafe winmdroot.Foundation.HRESULT showModalDialog(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, winmdroot.Foundation.BSTR dialog, in winmdroot.System.Variant.VARIANT varArgIn, in winmdroot.System.Variant.VARIANT varOptions, out winmdroot.System.Variant.VARIANT varArgOut) 118 winmdroot.Foundation.HRESULT __result = @this.showModalDialog(dialog, varArgInLocal, varOptionsLocal, varArgOutLocal); 126 internal static unsafe winmdroot.Foundation.HRESULT get_closed(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, out winmdroot.Foundation.VARIANT_BOOL p) 130 winmdroot.Foundation.HRESULT __result = @this.get_closed(pLocal); 136 internal static unsafe winmdroot.Foundation.HRESULT setInterval(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, winmdroot.Foundation.BSTR expression, int msec, in winmdroot.System.Variant.VARIANT language, out int timerID) 142 winmdroot.Foundation.HRESULT __result = @this.setInterval(expression, msec, languageLocal, timerIDLocal); 149 internal static unsafe winmdroot.Foundation.HRESULT execScript(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, winmdroot.Foundation.BSTR code, winmdroot.Foundation.BSTR language, out winmdroot.System.Variant.VARIANT pvarRet) 153 winmdroot.Foundation.HRESULT __result = @this.execScript(code, language, pvarRetLocal); 159 internal static unsafe winmdroot.Foundation.HRESULT toString(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, out winmdroot.Foundation.BSTR String) 163 winmdroot.Foundation.HRESULT __result = @this.toString(StringLocal);
_generated\643\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);
_generated\644\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);
_generated\645\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);
_generated\646\Windows.Win32.Web_MsHtml_IOmNavigator_Extensions.g.cs (6)
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); 44 internal static unsafe winmdroot.Foundation.HRESULT toString(this winmdroot.Web.MsHtml.IOmNavigator.Interface @this, out winmdroot.Foundation.BSTR @string) 48 winmdroot.Foundation.HRESULT __result = @this.toString(@stringLocal);
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\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;