Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CefSharp.Core.Runtime.xml 563KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. "CefSharp.Core.Runtime"
  5. </assembly>
  6. <members>
  7. <member name="T:CefSharp.Core.NativeMethodWrapper">
  8. <exclude />
  9. </member>
  10. <member name="M:CefSharp.Internals.StringUtils.CreateExceptionString(scoped_refptr&lt;CefV8Exception&gt;)">
  11. <summary>
  12. Creates a detailed expection string from a provided Cef V8 exception.
  13. </summary>
  14. <param name="exception">The exception which will be used as base for the message</param>
  15. </member>
  16. <member name="M:CefSharp.Internals.StringUtils.AssignNativeFromClr(_cef_string_utf16_t*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.String)">
  17. <summary>
  18. Assigns the provided cef_string_t object from the given .NET string.
  19. </summary>
  20. <param name="cefStr">The cef_string_t that should be updated.</param>
  21. <param name="str">The .NET string whose value should be used to update cefStr.</param>
  22. </member>
  23. <member name="M:CefSharp.Internals.StringUtils.ToNative(System.Collections.Generic.IEnumerable`1{System.String})">
  24. <summary>
  25. Converts a .NET List of strings to native (unmanaged) format.
  26. </summary>
  27. <param name="str">The List of strings that should be converted.</param>
  28. <returns>An unmanaged representation of the provided List of strings, or an empty List if the input is a nullptr.</returns>
  29. </member>
  30. <member name="M:CefSharp.Internals.StringUtils.ToNative(System.String)">
  31. <summary>
  32. Converts a .NET string to native (unmanaged) format. Note that this method does not allocate a new copy of the
  33. </summary>
  34. <param name="str">The string that should be converted.</param>
  35. <returns>An unmanaged representation of the provided string, or an empty string if the input string is a nullptr.</returns>
  36. </member>
  37. <member name="M:CefSharp.Internals.StringUtils.ToClr(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  38. <summary>
  39. Converts an unmanaged vector of strings to a (managed) .NET List of strings.
  40. </summary>
  41. <param name="cefStr">The vector of strings that should be converted.</param>
  42. <returns>A .NET List of strings.</returns>
  43. </member>
  44. <member name="M:CefSharp.Internals.StringUtils.ToClr(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  45. <summary>
  46. Converts an unmanaged string to a (managed) .NET string.
  47. </summary>
  48. <param name="cefStr">The string that should be converted.</param>
  49. <returns>A .NET string.</returns>
  50. </member>
  51. <member name="M:CefSharp.Internals.StringUtils.ToClr(_cef_string_utf16_t!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  52. <summary>
  53. Converts an unmanaged string to a (managed) .NET string.
  54. </summary>
  55. <param name="cefStr">The string that should be converted.</param>
  56. <returns>A .NET string.</returns>
  57. </member>
  58. <member name="M:CefV8StackFrame.IsConstructor">
  59. Returns true if the function was called as a constructor via "new".
  60. </member>
  61. <member name="M:CefV8StackFrame.IsEval">
  62. Returns true if the function was compiled using eval().
  63. </member>
  64. <member name="M:CefV8StackFrame.GetColumn">
  65. Returns the 1-based column offset on the line for the function call or 0
  66. if unknown.
  67. </member>
  68. <member name="M:CefV8StackFrame.GetLineNumber">
  69. Returns the 1-based line number for the function call or 0 if unknown.
  70. </member>
  71. <member name="M:CefV8StackFrame.GetFunctionName">
  72. Returns the name of the function.
  73. </member>
  74. <member name="M:CefV8StackFrame.GetScriptNameOrSourceURL">
  75. Returns the name of the resource script that contains the function or the
  76. sourceURL value if the script name is undefined and its source ends with
  77. a "//@ sourceURL=..." string.
  78. </member>
  79. <member name="M:CefV8StackFrame.GetScriptName">
  80. Returns the name of the resource script that contains the function.
  81. </member>
  82. <member name="M:CefV8StackFrame.IsValid">
  83. Returns true if the underlying handle is valid and it can be accessed on
  84. the current thread. Do not call any other methods if this method returns
  85. false.
  86. </member>
  87. <member name="T:CefV8StackFrame">
  88. Class representing a V8 stack frame handle. V8 handles can only be accessed
  89. from the thread on which they are created. Valid threads for creating a V8
  90. handle include the render process main thread (TID_RENDERER) and WebWorker
  91. threads. A task runner for posting tasks on the associated thread can be
  92. retrieved via the CefV8Context::GetTaskRunner() method.
  93. </member>
  94. <member name="M:CefV8StackTrace.GetFrame(System.Int32)">
  95. Returns the stack frame at the specified 0-based index.
  96. </member>
  97. <member name="M:CefV8StackTrace.GetFrameCount">
  98. Returns the number of stack frames.
  99. </member>
  100. <member name="M:CefV8StackTrace.IsValid">
  101. Returns true if the underlying handle is valid and it can be accessed on
  102. the current thread. Do not call any other methods if this method returns
  103. false.
  104. </member>
  105. <member name="M:CefV8StackTrace.GetCurrent(System.Int32)">
  106. Returns the stack trace for the currently active context. |frame_limit| is
  107. the maximum number of frames that will be captured.
  108. </member>
  109. <member name="T:CefV8StackTrace">
  110. Class representing a V8 stack trace handle. V8 handles can only be accessed
  111. from the thread on which they are created. Valid threads for creating a V8
  112. handle include the render process main thread (TID_RENDERER) and WebWorker
  113. threads. A task runner for posting tasks on the associated thread can be
  114. retrieved via the CefV8Context::GetTaskRunner() method.
  115. </member>
  116. <member name="M:CefV8Value.RejectPromise(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  117. Reject the Promise using the current V8 context. This method should only
  118. be called from within the scope of a CefV8Handler or CefV8Accessor
  119. callback, or in combination with calling Enter() and Exit() on a stored
  120. CefV8Context reference. Returns true on success. Returns false if this
  121. method is called incorrectly or an exception is thrown.
  122. </member>
  123. <member name="M:CefV8Value.ResolvePromise(scoped_refptr&lt;CefV8Value&gt;)">
  124. Resolve the Promise using the current V8 context. This method should only
  125. be called from within the scope of a CefV8Handler or CefV8Accessor
  126. callback, or in combination with calling Enter() and Exit() on a stored
  127. CefV8Context reference. |arg| is the argument passed to the resolved
  128. promise. Returns true on success. Returns false if this method is called
  129. incorrectly or an exception is thrown.
  130. </member>
  131. <member name="M:CefV8Value.ExecuteFunctionWithContext(scoped_refptr&lt;CefV8Context&gt;,scoped_refptr&lt;CefV8Value&gt;,std.vector&lt;scoped_refptr&lt;CefV8Value&gt;,std.allocator&lt;scoped_refptr&lt;CefV8Value&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  132. Execute the function using the specified V8 context. |object| is the
  133. receiver ('this' object) of the function. If |object| is empty the
  134. specified context's global object will be used. |arguments| is the list of
  135. arguments that will be passed to the function. Returns the function return
  136. value on success. Returns NULL if this method is called incorrectly or an
  137. exception is thrown.
  138. </member>
  139. <member name="M:CefV8Value.ExecuteFunction(scoped_refptr&lt;CefV8Value&gt;,std.vector&lt;scoped_refptr&lt;CefV8Value&gt;,std.allocator&lt;scoped_refptr&lt;CefV8Value&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  140. Execute the function using the current V8 context. This method should only
  141. be called from within the scope of a CefV8Handler or CefV8Accessor
  142. callback, or in combination with calling Enter() and Exit() on a stored
  143. CefV8Context reference. |object| is the receiver ('this' object) of the
  144. function. If |object| is empty the current context's global object will be
  145. used. |arguments| is the list of arguments that will be passed to the
  146. function. Returns the function return value on success. Returns NULL if
  147. this method is called incorrectly or an exception is thrown.
  148. </member>
  149. <member name="M:CefV8Value.GetFunctionHandler">
  150. Returns the function handler or NULL if not a CEF-created function.
  151. </member>
  152. <member name="M:CefV8Value.GetFunctionName">
  153. Returns the function name.
  154. </member>
  155. <member name="M:CefV8Value.GetArrayBufferData">
  156. Returns a pointer to the beginning of the memory block for this
  157. ArrayBuffer backing store. The returned pointer is valid as long as the
  158. CefV8Value is alive.
  159. </member>
  160. <member name="M:CefV8Value.GetArrayBufferByteLength">
  161. Returns the length (in bytes) of the ArrayBuffer.
  162. </member>
  163. <member name="M:CefV8Value.NeuterArrayBuffer">
  164. Prevent the ArrayBuffer from using it's memory block by setting the length
  165. to zero. This operation cannot be undone. If the ArrayBuffer was created
  166. with CreateArrayBuffer then CefV8ArrayBufferReleaseCallback::ReleaseBuffer
  167. will be called to release the underlying buffer.
  168. </member>
  169. <member name="M:CefV8Value.GetArrayBufferReleaseCallback">
  170. Returns the ReleaseCallback object associated with the ArrayBuffer or NULL
  171. if the ArrayBuffer was not created with CreateArrayBuffer.
  172. </member>
  173. <member name="M:CefV8Value.GetArrayLength">
  174. Returns the number of elements in the array.
  175. </member>
  176. <member name="M:CefV8Value.AdjustExternallyAllocatedMemory(System.Int32)">
  177. Adjusts the amount of registered external memory for the object. Used to
  178. give V8 an indication of the amount of externally allocated memory that is
  179. kept alive by JavaScript objects. V8 uses this information to decide when
  180. to perform global garbage collection. Each CefV8Value tracks the amount of
  181. external memory associated with it and automatically decreases the global
  182. total by the appropriate amount on its destruction. |change_in_bytes|
  183. specifies the number of bytes to adjust by. This method returns the number
  184. of bytes associated with the object after the adjustment. This method can
  185. only be called on user created objects.
  186. </member>
  187. <member name="M:CefV8Value.GetExternallyAllocatedMemory">
  188. Returns the amount of externally allocated memory registered for the
  189. object.
  190. </member>
  191. <member name="M:CefV8Value.GetUserData">
  192. Returns the user data, if any, assigned to this object.
  193. </member>
  194. <member name="M:CefV8Value.SetUserData(scoped_refptr&lt;CefBaseRefCounted&gt;)">
  195. Sets the user data for this object and returns true on success. Returns
  196. false if this method is called incorrectly. This method can only be called
  197. on user created objects.
  198. </member>
  199. <member name="M:CefV8Value.GetKeys(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  200. Read the keys for the object's values into the specified vector. Integer-
  201. based keys will also be returned as strings.
  202. </member>
  203. <member name="M:CefV8Value.SetValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_v8_propertyattribute_t)">
  204. Registers an identifier and returns true on success. Access to the
  205. identifier will be forwarded to the CefV8Accessor instance passed to
  206. CefV8Value::CreateObject(). Returns false if this method is called
  207. incorrectly or an exception is thrown. For read-only values this method
  208. will return true even though assignment failed.
  209. </member>
  210. <member name="M:CefV8Value.SetValue(System.Int32,scoped_refptr&lt;CefV8Value&gt;)">
  211. Associates a value with the specified identifier and returns true on
  212. success. Returns false if this method is called incorrectly or an
  213. exception is thrown. For read-only values this method will return true
  214. even though assignment failed.
  215. </member>
  216. <member name="M:CefV8Value.SetValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefV8Value&gt;,cef_v8_propertyattribute_t)">
  217. Associates a value with the specified identifier and returns true on
  218. success. Returns false if this method is called incorrectly or an
  219. exception is thrown. For read-only values this method will return true
  220. even though assignment failed.
  221. </member>
  222. <member name="M:CefV8Value.GetValue(System.Int32)">
  223. Returns the value with the specified identifier on success. Returns NULL
  224. if this method is called incorrectly or an exception is thrown.
  225. </member>
  226. <member name="M:CefV8Value.GetValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  227. Returns the value with the specified identifier on success. Returns NULL
  228. if this method is called incorrectly or an exception is thrown.
  229. </member>
  230. <member name="M:CefV8Value.DeleteValue(System.Int32)">
  231. Deletes the value with the specified identifier and returns true on
  232. success. Returns false if this method is called incorrectly, deletion
  233. fails or an exception is thrown. For read-only and don't-delete values
  234. this method will return true even though deletion failed.
  235. </member>
  236. <member name="M:CefV8Value.DeleteValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  237. Deletes the value with the specified identifier and returns true on
  238. success. Returns false if this method is called incorrectly or an
  239. exception is thrown. For read-only and don't-delete values this method
  240. will return true even though deletion failed.
  241. </member>
  242. <member name="M:CefV8Value.HasValue(System.Int32)">
  243. Returns true if the object has a value with the specified identifier.
  244. </member>
  245. <member name="M:CefV8Value.HasValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  246. Returns true if the object has a value with the specified identifier.
  247. </member>
  248. <member name="M:CefV8Value.SetRethrowExceptions(System.Boolean)">
  249. Set whether this object will re-throw future exceptions. By default
  250. exceptions are not re-thrown. If a exception is re-thrown the current
  251. context should not be accessed again until after the exception has been
  252. caught and not re-thrown. Returns true on success. This attribute exists
  253. only in the scope of the current CEF value object.
  254. </member>
  255. <member name="M:CefV8Value.WillRethrowExceptions">
  256. Returns true if this object will re-throw future exceptions. This
  257. attribute exists only in the scope of the current CEF value object.
  258. </member>
  259. <member name="M:CefV8Value.ClearException">
  260. Clears the last exception and returns true on success.
  261. </member>
  262. <member name="M:CefV8Value.GetException">
  263. Returns the exception resulting from the last method call. This attribute
  264. exists only in the scope of the current CEF value object.
  265. </member>
  266. <member name="M:CefV8Value.HasException">
  267. Returns true if the last method call resulted in an exception. This
  268. attribute exists only in the scope of the current CEF value object.
  269. </member>
  270. <member name="M:CefV8Value.IsUserCreated">
  271. OBJECT METHODS - These methods are only available on objects. Arrays and
  272. functions are also objects. String- and integer-based keys can be used
  273. interchangably with the framework converting between them as necessary.
  274. Returns true if this is a user created object.
  275. </member>
  276. <member name="M:CefV8Value.GetStringValue">
  277. Return a string value.
  278. </member>
  279. <member name="M:CefV8Value.GetDateValue">
  280. Return a Date value.
  281. </member>
  282. <member name="M:CefV8Value.GetDoubleValue">
  283. Return a double value.
  284. </member>
  285. <member name="M:CefV8Value.GetUIntValue">
  286. Return an unsigned int value.
  287. </member>
  288. <member name="M:CefV8Value.GetIntValue">
  289. Return an int value.
  290. </member>
  291. <member name="M:CefV8Value.GetBoolValue">
  292. Return a bool value.
  293. </member>
  294. <member name="M:CefV8Value.IsSame(scoped_refptr&lt;CefV8Value&gt;)">
  295. Returns true if this object is pointing to the same handle as |that|
  296. object.
  297. </member>
  298. <member name="M:CefV8Value.IsPromise">
  299. True if the value type is a Promise.
  300. </member>
  301. <member name="M:CefV8Value.IsFunction">
  302. True if the value type is function.
  303. </member>
  304. <member name="M:CefV8Value.IsArrayBuffer">
  305. True if the value type is an ArrayBuffer.
  306. </member>
  307. <member name="M:CefV8Value.IsArray">
  308. True if the value type is array.
  309. </member>
  310. <member name="M:CefV8Value.IsObject">
  311. True if the value type is object.
  312. </member>
  313. <member name="M:CefV8Value.IsString">
  314. True if the value type is string.
  315. </member>
  316. <member name="M:CefV8Value.IsDate">
  317. True if the value type is Date.
  318. </member>
  319. <member name="M:CefV8Value.IsDouble">
  320. True if the value type is double.
  321. </member>
  322. <member name="M:CefV8Value.IsUInt">
  323. True if the value type is unsigned int.
  324. </member>
  325. <member name="M:CefV8Value.IsInt">
  326. True if the value type is int.
  327. </member>
  328. <member name="M:CefV8Value.IsBool">
  329. True if the value type is bool.
  330. </member>
  331. <member name="M:CefV8Value.IsNull">
  332. True if the value type is null.
  333. </member>
  334. <member name="M:CefV8Value.IsUndefined">
  335. True if the value type is undefined.
  336. </member>
  337. <member name="M:CefV8Value.IsValid">
  338. Returns true if the underlying handle is valid and it can be accessed on
  339. the current thread. Do not call any other methods if this method returns
  340. false.
  341. </member>
  342. <member name="M:CefV8Value.CreatePromise">
  343. Create a new CefV8Value object of type Promise. This method should only be
  344. called from within the scope of a CefRenderProcessHandler, CefV8Handler or
  345. CefV8Accessor callback, or in combination with calling Enter() and Exit()
  346. on a stored CefV8Context reference.
  347. </member>
  348. <member name="M:CefV8Value.CreateFunction(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefV8Handler&gt;)">
  349. Create a new CefV8Value object of type function. This method should only
  350. be called from within the scope of a CefRenderProcessHandler, CefV8Handler
  351. or CefV8Accessor callback, or in combination with calling Enter() and
  352. Exit() on a stored CefV8Context reference.
  353. </member>
  354. <member name="M:CefV8Value.CreateArrayBuffer(System.Void*,System.UInt64,scoped_refptr&lt;CefV8ArrayBufferReleaseCallback&gt;)">
  355. Create a new CefV8Value object of type ArrayBuffer which wraps the
  356. provided |buffer| of size |length| bytes. The ArrayBuffer is externalized,
  357. meaning that it does not own |buffer|. The caller is responsible for
  358. freeing |buffer| when requested via a call to
  359. CefV8ArrayBufferReleaseCallback::ReleaseBuffer. This method should only
  360. be called from within the scope of a CefRenderProcessHandler, CefV8Handler
  361. or CefV8Accessor callback, or in combination with calling Enter() and
  362. Exit() on a stored CefV8Context reference.
  363. </member>
  364. <member name="M:CefV8Value.CreateArray(System.Int32)">
  365. Create a new CefV8Value object of type array with the specified |length|.
  366. If |length| is negative the returned array will have length 0. This method
  367. should only be called from within the scope of a CefRenderProcessHandler,
  368. CefV8Handler or CefV8Accessor callback, or in combination with calling
  369. Enter() and Exit() on a stored CefV8Context reference.
  370. </member>
  371. <member name="M:CefV8Value.CreateObject(scoped_refptr&lt;CefV8Accessor&gt;,scoped_refptr&lt;CefV8Interceptor&gt;)">
  372. Create a new CefV8Value object of type object with optional accessor
  373. and/or interceptor. This method should only be called from within the
  374. scope of a CefRenderProcessHandler, CefV8Handler or CefV8Accessor
  375. callback, or in combination with calling Enter() and Exit() on a stored
  376. CefV8Context reference.
  377. </member>
  378. <member name="M:CefV8Value.CreateString(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  379. Create a new CefV8Value object of type string.
  380. </member>
  381. <member name="M:CefV8Value.CreateDate(CefBaseTime)">
  382. Create a new CefV8Value object of type Date. This method should only be
  383. called from within the scope of a CefRenderProcessHandler, CefV8Handler or
  384. CefV8Accessor callback, or in combination with calling Enter() and Exit()
  385. on a stored CefV8Context reference.
  386. </member>
  387. <member name="M:CefV8Value.CreateDouble(System.Double)">
  388. Create a new CefV8Value object of type double.
  389. </member>
  390. <member name="M:CefV8Value.CreateUInt(System.UInt32)">
  391. Create a new CefV8Value object of type unsigned int.
  392. </member>
  393. <member name="M:CefV8Value.CreateInt(System.Int32)">
  394. Create a new CefV8Value object of type int.
  395. </member>
  396. <member name="M:CefV8Value.CreateBool(System.Boolean)">
  397. Create a new CefV8Value object of type bool.
  398. </member>
  399. <member name="M:CefV8Value.CreateNull">
  400. Create a new CefV8Value object of type null.
  401. </member>
  402. <member name="M:CefV8Value.CreateUndefined">
  403. Create a new CefV8Value object of type undefined.
  404. </member>
  405. <member name="T:CefV8Value">
  406. Class representing a V8 value handle. V8 handles can only be accessed from
  407. the thread on which they are created. Valid threads for creating a V8 handle
  408. include the render process main thread (TID_RENDERER) and WebWorker threads.
  409. A task runner for posting tasks on the associated thread can be retrieved
  410. via the CefV8Context::GetTaskRunner() method.
  411. </member>
  412. <member name="M:CefV8ArrayBufferReleaseCallback.ReleaseBuffer(System.Void*)">
  413. Called to release |buffer| when the ArrayBuffer JS object is garbage
  414. collected. |buffer| is the value that was passed to CreateArrayBuffer
  415. along with this object.
  416. </member>
  417. <member name="T:CefV8ArrayBufferReleaseCallback">
  418. Callback interface that is passed to CefV8Value::CreateArrayBuffer.
  419. </member>
  420. <member name="M:CefV8Exception.GetEndColumn">
  421. Returns the index within the line of the last character where the error
  422. occurred.
  423. </member>
  424. <member name="M:CefV8Exception.GetStartColumn">
  425. Returns the index within the line of the first character where the error
  426. occurred.
  427. </member>
  428. <member name="M:CefV8Exception.GetEndPosition">
  429. Returns the index within the script of the last character where the error
  430. occurred.
  431. </member>
  432. <member name="M:CefV8Exception.GetStartPosition">
  433. Returns the index within the script of the first character where the error
  434. occurred.
  435. </member>
  436. <member name="M:CefV8Exception.GetLineNumber">
  437. Returns the 1-based number of the line where the error occurred or 0 if
  438. the line number is unknown.
  439. </member>
  440. <member name="M:CefV8Exception.GetScriptResourceName">
  441. Returns the resource name for the script from where the function causing
  442. the error originates.
  443. </member>
  444. <member name="M:CefV8Exception.GetSourceLine">
  445. Returns the line of source code that the exception occurred within.
  446. </member>
  447. <member name="M:CefV8Exception.GetMessage">
  448. Returns the exception message.
  449. </member>
  450. <member name="T:CefV8Exception">
  451. Class representing a V8 exception. The methods of this class may be called
  452. on any render process thread.
  453. </member>
  454. <member name="M:CefV8Interceptor.Set(System.Int32,scoped_refptr&lt;CefV8Value&gt;!System.Runtime.CompilerServices.IsConst,scoped_refptr&lt;CefV8Value&gt;!System.Runtime.CompilerServices.IsConst,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  455. Handle assignment of the interceptor value identified by |index|. |object|
  456. is the receiver ('this' object) of the interceptor. |value| is the new
  457. value being assigned to the interceptor. If assignment fails, set
  458. |exception| to the exception that will be thrown.
  459. Return true if interceptor assignment was handled, false otherwise.
  460. </member>
  461. <member name="M:CefV8Interceptor.Set(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefV8Value&gt;!System.Runtime.CompilerServices.IsConst,scoped_refptr&lt;CefV8Value&gt;!System.Runtime.CompilerServices.IsConst,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  462. Handle assignment of the interceptor value identified by |name|. |object|
  463. is the receiver ('this' object) of the interceptor. |value| is the new
  464. value being assigned to the interceptor. If assignment fails, set
  465. |exception| to the exception that will be thrown. This setter will always
  466. be called, even when the property has an associated accessor.
  467. Return true if interceptor assignment was handled, false otherwise.
  468. </member>
  469. <member name="M:CefV8Interceptor.Get(System.Int32,scoped_refptr&lt;CefV8Value&gt;!System.Runtime.CompilerServices.IsConst,scoped_refptr&lt;CefV8Value&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  470. Handle retrieval of the interceptor value identified by |index|. |object|
  471. is the receiver ('this' object) of the interceptor. If retrieval succeeds,
  472. set |retval| to the return value. If the requested value does not exist,
  473. don't set either |retval| or |exception|. If retrieval fails, set
  474. |exception| to the exception that will be thrown.
  475. Return true if interceptor retrieval was handled, false otherwise.
  476. </member>
  477. <member name="M:CefV8Interceptor.Get(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefV8Value&gt;!System.Runtime.CompilerServices.IsConst,scoped_refptr&lt;CefV8Value&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  478. Handle retrieval of the interceptor value identified by |name|. |object|
  479. is the receiver ('this' object) of the interceptor. If retrieval succeeds,
  480. set |retval| to the return value. If the requested value does not exist,
  481. don't set either |retval| or |exception|. If retrieval fails, set
  482. |exception| to the exception that will be thrown. If the property has an
  483. associated accessor, it will be called only if you don't set |retval|.
  484. Return true if interceptor retrieval was handled, false otherwise.
  485. </member>
  486. <member name="T:CefV8Interceptor">
  487. Interface that should be implemented to handle V8 interceptor calls. The
  488. methods of this class will be called on the thread associated with the V8
  489. interceptor. Interceptor's named property handlers (with first argument of
  490. type CefString) are called when object is indexed by string. Indexed
  491. property handlers (with first argument of type int) are called when object
  492. is indexed by integer.
  493. </member>
  494. <member name="M:CefV8Accessor.Set(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefV8Value&gt;!System.Runtime.CompilerServices.IsConst,scoped_refptr&lt;CefV8Value&gt;!System.Runtime.CompilerServices.IsConst,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  495. Handle assignment of the accessor value identified by |name|. |object| is
  496. the receiver ('this' object) of the accessor. |value| is the new value
  497. being assigned to the accessor. If assignment fails set |exception| to the
  498. exception that will be thrown. Return true if accessor assignment was
  499. handled.
  500. </member>
  501. <member name="M:CefV8Accessor.Get(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefV8Value&gt;!System.Runtime.CompilerServices.IsConst,scoped_refptr&lt;CefV8Value&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  502. Handle retrieval the accessor value identified by |name|. |object| is the
  503. receiver ('this' object) of the accessor. If retrieval succeeds set
  504. |retval| to the return value. If retrieval fails set |exception| to the
  505. exception that will be thrown. Return true if accessor retrieval was
  506. handled.
  507. </member>
  508. <member name="T:CefV8Accessor">
  509. Interface that should be implemented to handle V8 accessor calls. Accessor
  510. identifiers are registered by calling CefV8Value::SetValue(). The methods
  511. of this class will be called on the thread associated with the V8 accessor.
  512. </member>
  513. <member name="M:CefV8Handler.Execute(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefV8Value&gt;,std.vector&lt;scoped_refptr&lt;CefV8Value&gt;,std.allocator&lt;scoped_refptr&lt;CefV8Value&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefV8Value&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  514. Handle execution of the function identified by |name|. |object| is the
  515. receiver ('this' object) of the function. |arguments| is the list of
  516. arguments passed to the function. If execution succeeds set |retval| to
  517. the function return value. If execution fails set |exception| to the
  518. exception that will be thrown. Return true if execution was handled.
  519. </member>
  520. <member name="T:CefV8Handler">
  521. Interface that should be implemented to handle V8 function calls. The
  522. methods of this class will be called on the thread associated with the V8
  523. function.
  524. </member>
  525. <member name="M:CefV8Context.Eval(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32,scoped_refptr&lt;CefV8Value&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefV8Exception&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  526. Execute a string of JavaScript code in this V8 context. The |script_url|
  527. parameter is the URL where the script in question can be found, if any.
  528. The |start_line| parameter is the base line number to use for error
  529. reporting. On success |retval| will be set to the return value, if any,
  530. and the function will return true. On failure |exception| will be set to
  531. the exception, if any, and the function will return false.
  532. </member>
  533. <member name="M:CefV8Context.IsSame(scoped_refptr&lt;CefV8Context&gt;)">
  534. Returns true if this object is pointing to the same handle as |that|
  535. object.
  536. </member>
  537. <member name="M:CefV8Context.Exit">
  538. Exit this context. Call this method only after calling Enter(). Returns
  539. true if the scope was exited successfully.
  540. </member>
  541. <member name="M:CefV8Context.Enter">
  542. Enter this context. A context must be explicitly entered before creating a
  543. V8 Object, Array, Function or Date asynchronously. Exit() must be called
  544. the same number of times as Enter() before releasing this context. V8
  545. objects belong to the context in which they are created. Returns true if
  546. the scope was entered successfully.
  547. </member>
  548. <member name="M:CefV8Context.GetGlobal">
  549. Returns the global object for this context. The context must be entered
  550. before calling this method.
  551. </member>
  552. <member name="M:CefV8Context.GetFrame">
  553. Returns the frame for this context. This method will return an empty
  554. reference for WebWorker contexts.
  555. </member>
  556. <member name="M:CefV8Context.GetBrowser">
  557. Returns the browser for this context. This method will return an empty
  558. reference for WebWorker contexts.
  559. </member>
  560. <member name="M:CefV8Context.IsValid">
  561. Returns true if the underlying handle is valid and it can be accessed on
  562. the current thread. Do not call any other methods if this method returns
  563. false.
  564. </member>
  565. <member name="M:CefV8Context.GetTaskRunner">
  566. Returns the task runner associated with this context. V8 handles can only
  567. be accessed from the thread on which they are created. This method can be
  568. called on any render process thread.
  569. </member>
  570. <member name="M:CefV8Context.InContext">
  571. Returns true if V8 is currently inside a context.
  572. </member>
  573. <member name="M:CefV8Context.GetEnteredContext">
  574. Returns the entered (bottom) context object in the V8 context stack.
  575. </member>
  576. <member name="M:CefV8Context.GetCurrentContext">
  577. Returns the current (top) context object in the V8 context stack.
  578. </member>
  579. <member name="T:CefV8Context">
  580. Class representing a V8 context handle. V8 handles can only be accessed from
  581. the thread on which they are created. Valid threads for creating a V8 handle
  582. include the render process main thread (TID_RENDERER) and WebWorker threads.
  583. A task runner for posting tasks on the associated thread can be retrieved
  584. via the CefV8Context::GetTaskRunner() method.
  585. </member>
  586. <member name="M:CefRegisterExtension(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefV8Handler&gt;)">
  587. Register a new V8 extension with the specified JavaScript extension code and
  588. handler. Functions implemented by the handler are prototyped using the
  589. keyword 'native'. The calling of a native function is restricted to the
  590. scope in which the prototype of the native function is defined. This
  591. function may only be called on the render process main thread.
  592. Example JavaScript extension code:
  593. <pre>
  594. // create the 'example' global object if it doesn't already exist.
  595. if (!example)
  596. example = {};
  597. // create the 'example.test' global object if it doesn't already exist.
  598. if (!example.test)
  599. example.test = {};
  600. (function() {
  601. // Define the function 'example.test.myfunction'.
  602. example.test.myfunction = function() {
  603. // Call CefV8Handler::Execute() with the function name 'MyFunction'
  604. // and no arguments.
  605. native function MyFunction();
  606. return MyFunction();
  607. };
  608. // Define the getter function for parameter 'example.test.myparam'.
  609. example.test.__defineGetter__('myparam', function() {
  610. // Call CefV8Handler::Execute() with the function name 'GetMyParam'
  611. // and no arguments.
  612. native function GetMyParam();
  613. return GetMyParam();
  614. });
  615. // Define the setter function for parameter 'example.test.myparam'.
  616. example.test.__defineSetter__('myparam', function(b) {
  617. // Call CefV8Handler::Execute() with the function name 'SetMyParam'
  618. // and a single argument.
  619. native function SetMyParam();
  620. if(b) SetMyParam(b);
  621. });
  622. // Extension definitions can also contain normal JavaScript variables
  623. // and functions.
  624. var myint = 0;
  625. example.test.increment = function() {
  626. myint += 1;
  627. return myint;
  628. };
  629. })();
  630. </pre>
  631. Example usage in the page:
  632. <pre>
  633. // Call the function.
  634. example.test.myfunction();
  635. // Set the parameter.
  636. example.test.myparam = value;
  637. // Get the parameter.
  638. value = example.test.myparam;
  639. // Call another function.
  640. example.test.increment();
  641. </pre></member>
  642. <member name="M:CefPostDelayedTask(cef_thread_id_t,scoped_refptr&lt;CefTask&gt;,System.Int64)">
  643. Post a task for delayed execution on the specified thread. Equivalent to
  644. using CefTaskRunner::GetForThread(threadId)-&gt;PostDelayedTask(task,
  645. delay_ms).
  646. </member>
  647. <member name="M:CefPostTask(cef_thread_id_t,scoped_refptr&lt;CefTask&gt;)">
  648. Post a task for execution on the specified thread. Equivalent to
  649. using CefTaskRunner::GetForThread(threadId)-&gt;PostTask(task).
  650. </member>
  651. <member name="M:CefCurrentlyOn(cef_thread_id_t)">
  652. Returns true if called on the specified thread. Equivalent to using
  653. CefTaskRunner::GetForThread(threadId)-&gt;BelongsToCurrentThread().
  654. </member>
  655. <member name="M:CefTaskRunner.PostDelayedTask(scoped_refptr&lt;CefTask&gt;,System.Int64)">
  656. Post a task for delayed execution on the thread associated with this task
  657. runner. Execution will occur asynchronously. Delayed tasks are not
  658. supported on V8 WebWorker threads and will be executed without the
  659. specified delay.
  660. </member>
  661. <member name="M:CefTaskRunner.PostTask(scoped_refptr&lt;CefTask&gt;)">
  662. Post a task for execution on the thread associated with this task runner.
  663. Execution will occur asynchronously.
  664. </member>
  665. <member name="M:CefTaskRunner.BelongsToThread(cef_thread_id_t)">
  666. Returns true if this task runner is for the specified CEF thread.
  667. </member>
  668. <member name="M:CefTaskRunner.BelongsToCurrentThread">
  669. Returns true if this task runner belongs to the current thread.
  670. </member>
  671. <member name="M:CefTaskRunner.IsSame(scoped_refptr&lt;CefTaskRunner&gt;)">
  672. Returns true if this object is pointing to the same task runner as |that|
  673. object.
  674. </member>
  675. <member name="M:CefTaskRunner.GetForThread(cef_thread_id_t)">
  676. Returns the task runner for the specified CEF thread.
  677. </member>
  678. <member name="M:CefTaskRunner.GetForCurrentThread">
  679. Returns the task runner for the current thread. Only CEF threads will have
  680. task runners. An empty reference will be returned if this method is called
  681. on an invalid thread.
  682. </member>
  683. <member name="T:CefTaskRunner">
  684. Class that asynchronously executes tasks on the associated thread. It is
  685. safe to call the methods of this class on any thread.
  686. CEF maintains multiple internal threads that are used for handling different
  687. types of tasks in different processes. The cef_thread_id_t definitions in
  688. cef_types.h list the common CEF threads. Task runners are also available for
  689. other CEF threads as appropriate (for example, V8 WebWorker threads).
  690. </member>
  691. <member name="M:CefTask.Execute">
  692. Method that will be executed on the target thread.
  693. </member>
  694. <member name="T:CefTask">
  695. Implement this interface for asynchronous task execution. If the task is
  696. posted successfully and if the associated message loop is still running then
  697. the Execute() method will be called on the target thread. If the task fails
  698. to post then the task object may be destroyed on the source thread instead
  699. of the target thread. For this reason be cautious when performing work in
  700. the task object destructor.
  701. </member>
  702. <member name="M:CefBrowserHost.GetRuntimeStyle">
  703. Returns the runtime style for this browser (ALLOY or CHROME). See
  704. cef_runtime_style_t documentation for details.
  705. </member>
  706. <member name="M:CefBrowserHost.IsRenderProcessUnresponsive">
  707. Returns true if the render process associated with this browser is
  708. currently unresponsive as indicated by a lack of input event processing
  709. for at least 15 seconds. To receive associated state change notifications
  710. and optionally handle an unresponsive render process implement
  711. CefRequestHandler::OnRenderProcessUnresponsive. This method can only be
  712. called on the UI thread.
  713. </member>
  714. <member name="M:CefBrowserHost.ExecuteChromeCommand(System.Int32,cef_window_open_disposition_t)">
  715. Execute a Chrome command. Values for |command_id| can be found in the
  716. cef_command_ids.h file. |disposition| provides information about the
  717. intended command target. Only used with the Chrome runtime.
  718. </member>
  719. <member name="M:CefBrowserHost.CanExecuteChromeCommand(System.Int32)">
  720. Returns true if a Chrome command is supported and enabled. Values for
  721. |command_id| can be found in the cef_command_ids.h file. This method can
  722. only be called on the UI thread. Only used with the Chrome runtime.
  723. </member>
  724. <member name="M:CefBrowserHost.ExitFullscreen(System.Boolean)">
  725. Requests the renderer to exit browser fullscreen. In most cases exiting
  726. window fullscreen should also exit browser fullscreen. With the Alloy
  727. runtime this method should be called in response to a user action such as
  728. clicking the green traffic light button on MacOS
  729. (CefWindowDelegate::OnWindowFullscreenTransition callback) or pressing the
  730. "ESC" key (CefKeyboardHandler::OnPreKeyEvent callback). With the Chrome
  731. runtime these standard exit actions are handled internally but
  732. new/additional user actions can use this method. Set |will_cause_resize|
  733. to true if exiting browser fullscreen will cause a view resize.
  734. </member>
  735. <member name="M:CefBrowserHost.IsFullscreen">
  736. Returns true if the renderer is currently in browser fullscreen. This
  737. differs from window fullscreen in that browser fullscreen is entered using
  738. the JavaScript Fullscreen API and modifies CSS attributes such as the
  739. ::backdrop pseudo-element and :fullscreen pseudo-class. This method can
  740. only be called on the UI thread.
  741. </member>
  742. <member name="M:CefBrowserHost.IsAudioMuted">
  743. Returns true if the browser's audio is muted. This method can only be
  744. called on the UI thread.
  745. </member>
  746. <member name="M:CefBrowserHost.SetAudioMuted(System.Boolean)">
  747. Set whether the browser's audio is muted.
  748. </member>
  749. <member name="M:CefBrowserHost.IsBackgroundHost">
  750. Returns true if this browser is hosting an extension background script.
  751. Background hosts do not have a window and are not displayable. See
  752. CefRequestContext::LoadExtension for details.
  753. WARNING: This method is deprecated and will be removed in ~M127.
  754. </member>
  755. <member name="M:CefBrowserHost.GetExtension">
  756. Returns the extension hosted in this browser or NULL if no extension is
  757. hosted. See CefRequestContext::LoadExtension for details.
  758. WARNING: This method is deprecated and will be removed in ~M127.
  759. </member>
  760. <member name="M:CefBrowserHost.SetAutoResizeEnabled(System.Boolean,CefSize!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefSize!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  761. Enable notifications of auto resize via CefDisplayHandler::OnAutoResize.
  762. Notifications are disabled by default. |min_size| and |max_size| define
  763. the range of allowed sizes.
  764. </member>
  765. <member name="M:CefBrowserHost.SetAccessibilityState(cef_state_t)">
  766. Set accessibility state for all frames. |accessibility_state| may be
  767. default, enabled or disabled. If |accessibility_state| is STATE_DEFAULT
  768. then accessibility will be disabled by default and the state may be
  769. further controlled with the "force-renderer-accessibility" and
  770. "disable-renderer-accessibility" command-line switches. If
  771. |accessibility_state| is STATE_ENABLED then accessibility will be enabled.
  772. If |accessibility_state| is STATE_DISABLED then accessibility will be
  773. completely disabled.
  774. For windowed browsers accessibility will be enabled in Complete mode
  775. (which corresponds to kAccessibilityModeComplete in Chromium). In this
  776. mode all platform accessibility objects will be created and managed by
  777. Chromium's internal implementation. The client needs only to detect the
  778. screen reader and call this method appropriately. For example, on macOS
  779. the client can handle the @"AXEnhancedUserInterface" accessibility
  780. attribute to detect VoiceOver state changes and on Windows the client can
  781. handle WM_GETOBJECT with OBJID_CLIENT to detect accessibility readers.
  782. For windowless browsers accessibility will be enabled in TreeOnly mode
  783. (which corresponds to kAccessibilityModeWebContentsOnly in Chromium). In
  784. this mode renderer accessibility is enabled, the full tree is computed,
  785. and events are passed to CefAccessibiltyHandler, but platform
  786. accessibility objects are not created. The client may implement platform
  787. accessibility objects using CefAccessibiltyHandler callbacks if desired.
  788. </member>
  789. <member name="M:CefBrowserHost.GetVisibleNavigationEntry">
  790. Returns the current visible navigation entry for this browser. This method
  791. can only be called on the UI thread.
  792. </member>
  793. <member name="M:CefBrowserHost.DragSourceSystemDragEnded">
  794. Call this method when the drag operation started by a
  795. CefRenderHandler::StartDragging call has completed. This method may be
  796. called immediately without first calling DragSourceEndedAt to cancel a
  797. drag operation. If the web view is both the drag source and the drag
  798. target then all DragTarget* methods should be called before DragSource*
  799. mthods.
  800. This method is only used when window rendering is disabled.
  801. </member>
  802. <member name="M:CefBrowserHost.DragSourceEndedAt(System.Int32,System.Int32,cef_drag_operations_mask_t)">
  803. Call this method when the drag operation started by a
  804. CefRenderHandler::StartDragging call has ended either in a drop or
  805. by being cancelled. |x| and |y| are mouse coordinates relative to the
  806. upper-left corner of the view. If the web view is both the drag source
  807. and the drag target then all DragTarget* methods should be called before
  808. DragSource* mthods.
  809. This method is only used when window rendering is disabled.
  810. </member>
  811. <member name="M:CefBrowserHost.DragTargetDrop(CefMouseEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  812. Call this method when the user completes the drag operation by dropping
  813. the object onto the web view (after calling DragTargetDragEnter).
  814. The object being dropped is |drag_data|, given as an argument to
  815. the previous DragTargetDragEnter call.
  816. This method is only used when window rendering is disabled.
  817. </member>
  818. <member name="M:CefBrowserHost.DragTargetDragLeave">
  819. Call this method when the user drags the mouse out of the web view (after
  820. calling DragTargetDragEnter).
  821. This method is only used when window rendering is disabled.
  822. </member>
  823. <member name="M:CefBrowserHost.DragTargetDragOver(CefMouseEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_drag_operations_mask_t)">
  824. Call this method each time the mouse is moved across the web view during
  825. a drag operation (after calling DragTargetDragEnter and before calling
  826. DragTargetDragLeave/DragTargetDrop).
  827. This method is only used when window rendering is disabled.
  828. </member>
  829. <member name="M:CefBrowserHost.DragTargetDragEnter(scoped_refptr&lt;CefDragData&gt;,CefMouseEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_drag_operations_mask_t)">
  830. Call this method when the user drags the mouse into the web view (before
  831. calling DragTargetDragOver/DragTargetLeave/DragTargetDrop).
  832. |drag_data| should not contain file contents as this type of data is not
  833. allowed to be dragged into the web view. File contents can be removed
  834. using CefDragData::ResetFileContents (for example, if |drag_data| comes
  835. from CefRenderHandler::StartDragging). This method is only used when
  836. window rendering is disabled.
  837. </member>
  838. <member name="M:CefBrowserHost.ImeCancelComposition">
  839. Cancels the existing composition and discards the composition node
  840. contents without applying them. See comments on ImeSetComposition for
  841. usage.
  842. This method is only used when window rendering is disabled.
  843. </member>
  844. <member name="M:CefBrowserHost.ImeFinishComposingText(System.Boolean)">
  845. Completes the existing composition by applying the current composition
  846. node contents. If |keep_selection| is false the current selection, if any,
  847. will be discarded. See comments on ImeSetComposition for usage. This
  848. method is only used when window rendering is disabled.
  849. </member>
  850. <member name="M:CefBrowserHost.ImeCommitText(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefRange!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32)">
  851. Completes the existing composition by optionally inserting the specified
  852. |text| into the composition node. |replacement_range| is an optional range
  853. of the existing text that will be replaced. |relative_cursor_pos| is where
  854. the cursor will be positioned relative to the current cursor position. See
  855. comments on ImeSetComposition for usage. The |replacement_range| and
  856. |relative_cursor_pos| values are only used on OS X.
  857. This method is only used when window rendering is disabled.
  858. </member>
  859. <member name="M:CefBrowserHost.ImeSetComposition(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,std.vector&lt;CefCompositionUnderline,std.allocator&lt;CefCompositionUnderline&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefRange!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefRange!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  860. Begins a new composition or updates the existing composition. Blink has a
  861. special node (a composition node) that allows the input method to change
  862. text without affecting other DOM nodes. |text| is the optional text that
  863. will be inserted into the composition node. |underlines| is an optional
  864. set of ranges that will be underlined in the resulting text.
  865. |replacement_range| is an optional range of the existing text that will be
  866. replaced. |selection_range| is an optional range of the resulting text
  867. that will be selected after insertion or replacement. The
  868. |replacement_range| value is only used on OS X.
  869. This method may be called multiple times as the composition changes. When
  870. the client is done making changes the composition should either be
  871. canceled or completed. To cancel the composition call
  872. ImeCancelComposition. To complete the composition call either
  873. ImeCommitText or ImeFinishComposingText. Completion is usually signaled
  874. when:
  875. 1. The client receives a WM_IME_COMPOSITION message with a GCS_RESULTSTR
  876. flag (on Windows), or;
  877. 2. The client receives a "commit" signal of GtkIMContext (on Linux), or;
  878. 3. insertText of NSTextInput is called (on Mac).
  879. This method is only used when window rendering is disabled.
  880. </member>
  881. <member name="M:CefBrowserHost.SetWindowlessFrameRate(System.Int32)">
  882. Set the maximum rate in frames per second (fps) that CefRenderHandler::
  883. OnPaint will be called for a windowless browser. The actual fps may be
  884. lower if the browser cannot generate frames at the requested rate. The
  885. minimum value is 1 and the maximum value is 60 (default 30). Can also be
  886. set at browser creation via CefBrowserSettings.windowless_frame_rate.
  887. </member>
  888. <member name="M:CefBrowserHost.GetWindowlessFrameRate">
  889. Returns the maximum rate in frames per second (fps) that
  890. CefRenderHandler::OnPaint will be called for a windowless browser. The
  891. actual fps may be lower if the browser cannot generate frames at the
  892. requested rate. The minimum value is 1 and the maximum value is 60
  893. (default 30). This method can only be called on the UI thread.
  894. </member>
  895. <member name="M:CefBrowserHost.NotifyMoveOrResizeStarted">
  896. Notify the browser that the window hosting it is about to be moved or
  897. resized. This method is only used on Windows and Linux.
  898. </member>
  899. <member name="M:CefBrowserHost.SendCaptureLostEvent">
  900. Send a capture lost event to the browser.
  901. </member>
  902. <member name="M:CefBrowserHost.SendTouchEvent(CefTouchEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  903. Send a touch event to the browser for a windowless browser.
  904. </member>
  905. <member name="M:CefBrowserHost.SendMouseWheelEvent(CefMouseEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32,System.Int32)">
  906. Send a mouse wheel event to the browser. The |x| and |y| coordinates are
  907. relative to the upper-left corner of the view. The |deltaX| and |deltaY|
  908. values represent the movement delta in the X and Y directions
  909. respectively. In order to scroll inside select popups with window
  910. rendering disabled CefRenderHandler::GetScreenPoint should be implemented
  911. properly.
  912. </member>
  913. <member name="M:CefBrowserHost.SendMouseMoveEvent(CefMouseEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean)">
  914. Send a mouse move event to the browser. The |x| and |y| coordinates are
  915. relative to the upper-left corner of the view.
  916. </member>
  917. <member name="M:CefBrowserHost.SendMouseClickEvent(CefMouseEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_mouse_button_type_t,System.Boolean,System.Int32)">
  918. Send a mouse click event to the browser. The |x| and |y| coordinates are
  919. relative to the upper-left corner of the view.
  920. </member>
  921. <member name="M:CefBrowserHost.SendKeyEvent(CefKeyEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  922. Send a key event to the browser.
  923. </member>
  924. <member name="M:CefBrowserHost.SendExternalBeginFrame">
  925. Issue a BeginFrame request to Chromium. Only valid when
  926. CefWindowInfo::external_begin_frame_enabled is set to true.
  927. </member>
  928. <member name="M:CefBrowserHost.Invalidate(cef_paint_element_type_t)">
  929. Invalidate the view. The browser will call CefRenderHandler::OnPaint
  930. asynchronously. This method is only used when window rendering is
  931. disabled.
  932. </member>
  933. <member name="M:CefBrowserHost.NotifyScreenInfoChanged">
  934. Send a notification to the browser that the screen info has changed. The
  935. browser will then call CefRenderHandler::GetScreenInfo to update the
  936. screen information with the new values. This simulates moving the webview
  937. window from one display to another, or changing the properties of the
  938. current display. This method is only used when window rendering is
  939. disabled.
  940. </member>
  941. <member name="M:CefBrowserHost.WasHidden(System.Boolean)">
  942. Notify the browser that it has been hidden or shown. Layouting and
  943. CefRenderHandler::OnPaint notification will stop when the browser is
  944. hidden. This method is only used when window rendering is disabled.
  945. </member>
  946. <member name="M:CefBrowserHost.WasResized">
  947. Notify the browser that the widget has been resized. The browser will
  948. first call CefRenderHandler::GetViewRect to get the new size and then call
  949. CefRenderHandler::OnPaint asynchronously with the updated regions. This
  950. method is only used when window rendering is disabled.
  951. </member>
  952. <member name="M:CefBrowserHost.IsWindowRenderingDisabled">
  953. Returns true if window rendering is disabled.
  954. </member>
  955. <member name="M:CefBrowserHost.AddWordToDictionary(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  956. Add the specified |word| to the spelling dictionary.
  957. </member>
  958. <member name="M:CefBrowserHost.ReplaceMisspelling(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  959. If a misspelled word is currently selected in an editable node calling
  960. this method will replace it with the specified |word|.
  961. </member>
  962. <member name="M:CefBrowserHost.GetNavigationEntries(scoped_refptr&lt;CefNavigationEntryVisitor&gt;,System.Boolean)">
  963. Retrieve a snapshot of current navigation entries as values sent to the
  964. specified visitor. If |current_only| is true only the current navigation
  965. entry will be sent, otherwise all navigation entries will be sent.
  966. </member>
  967. <member name="M:CefBrowserHost.AddDevToolsMessageObserver(scoped_refptr&lt;CefDevToolsMessageObserver&gt;)">
  968. Add an observer for DevTools protocol messages (method results and
  969. events). The observer will remain registered until the returned
  970. Registration object is destroyed. See the SendDevToolsMessage
  971. documentation for additional usage information.
  972. </member>
  973. <member name="M:CefBrowserHost.ExecuteDevToolsMethod(System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefDictionaryValue&gt;)">
  974. Execute a method call over the DevTools protocol. This is a more
  975. structured version of SendDevToolsMessage. |message_id| is an incremental
  976. number that uniquely identifies the message (pass 0 to have the next
  977. number assigned automatically based on previous values). |method| is the
  978. method name. |params| are the method parameters, which may be empty. See
  979. the DevTools protocol documentation (linked above) for details of
  980. supported methods and the expected |params| dictionary contents. This
  981. method will return the assigned message ID if called on the UI thread and
  982. the message was successfully submitted for validation, otherwise 0. See
  983. the SendDevToolsMessage documentation for additional usage information.
  984. </member>
  985. <member name="M:CefBrowserHost.HasDevTools">
  986. Returns true if this browser currently has an associated DevTools browser.
  987. Must be called on the browser process UI thread.
  988. </member>
  989. <member name="M:CefBrowserHost.CloseDevTools">
  990. Explicitly close the associated DevTools browser, if any.
  991. </member>
  992. <member name="M:CefBrowserHost.ShowDevTools(CefWindowInfo!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefClient&gt;,CefStructBase&lt;CefBrowserSettingsTraits&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefPoint!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  993. Open developer tools (DevTools) in its own browser. The DevTools browser
  994. will remain associated with this browser. If the DevTools browser is
  995. already open then it will be focused, in which case the |windowInfo|,
  996. |client| and |settings| parameters will be ignored. If
  997. |inspect_element_at| is non-empty then the element at the specified (x,y)
  998. location will be inspected. The |windowInfo| parameter will be ignored if
  999. this browser is wrapped in a CefBrowserView.
  1000. </member>
  1001. <member name="M:CefBrowserHost.StopFinding(System.Boolean)">
  1002. Cancel all searches that are currently going on.
  1003. </member>
  1004. <member name="M:CefBrowserHost.Find(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean,System.Boolean,System.Boolean)">
  1005. Search for |searchText|. |forward| indicates whether to search forward or
  1006. backward within the page. |matchCase| indicates whether the search should
  1007. be case-sensitive. |findNext| indicates whether this is the first request
  1008. or a follow-up. The search will be restarted if |searchText| or
  1009. |matchCase| change. The search will be stopped if |searchText| is empty.
  1010. The CefFindHandler instance, if any, returned via
  1011. CefClient::GetFindHandler will be called to report find results.
  1012. </member>
  1013. <member name="M:CefBrowserHost.PrintToPDF(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStructBase&lt;CefPdfPrintSettingsTraits&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefPdfPrintCallback&gt;)">
  1014. Print the current browser contents to the PDF file specified by |path| and
  1015. execute |callback| on completion. The caller is responsible for deleting
  1016. |path| when done. For PDF printing to work on Linux you must implement the
  1017. CefPrintHandler::GetPdfPaperSize method.
  1018. </member>
  1019. <member name="M:CefBrowserHost.Print">
  1020. Print the current browser contents.
  1021. </member>
  1022. <member name="M:CefBrowserHost.StartDownload(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1023. Download the file at |url| using CefDownloadHandler.
  1024. </member>
  1025. <member name="M:CefBrowserHost.RunFileDialog(cef_file_dialog_mode_t,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefRunFileDialogCallback&gt;)">
  1026. Call to run a file chooser dialog. Only a single file chooser dialog may
  1027. be pending at any given time. |mode| represents the type of dialog to
  1028. display. |title| to the title to be used for the dialog and may be empty
  1029. to show the default title ("Open" or "Save" depending on the mode).
  1030. |default_file_path| is the path with optional directory and/or file name
  1031. component that will be initially selected in the dialog. |accept_filters|
  1032. are used to restrict the selectable file types and may any combination of
  1033. (a) valid lower-cased MIME types (e.g. "text/*" or "image/*"), (b)
  1034. individual file extensions (e.g.
  1035. ".txt" or ".png"), or (c) combined description and file extension
  1036. delimited using "|" and ";" (e.g. "Image Types|.png;.gif;.jpg").
  1037. |callback| will be executed after the dialog is dismissed or immediately
  1038. if another dialog is already pending. The dialog will be initiated
  1039. asynchronously on the UI thread.
  1040. </member>
  1041. <member name="M:CefBrowserHost.SetZoomLevel(System.Double)">
  1042. Change the zoom level to the specified value. Specify 0.0 to reset the
  1043. zoom level to the default. If called on the UI thread the change will be
  1044. applied immediately. Otherwise, the change will be applied asynchronously
  1045. on the UI thread.
  1046. </member>
  1047. <member name="M:CefBrowserHost.GetZoomLevel">
  1048. Get the current zoom level. This method can only be called on the UI
  1049. thread.
  1050. </member>
  1051. <member name="M:CefBrowserHost.GetDefaultZoomLevel">
  1052. Get the default zoom level. This value will be 0.0 by default but can be
  1053. configured with the Chrome runtime. This method can only be called on the
  1054. UI thread.
  1055. </member>
  1056. <member name="M:CefBrowserHost.Zoom(cef_zoom_command_t)">
  1057. Execute a zoom command in this browser. If called on the UI thread the
  1058. change will be applied immediately. Otherwise, the change will be applied
  1059. asynchronously on the UI thread.
  1060. </member>
  1061. <member name="M:CefBrowserHost.CanZoom(cef_zoom_command_t)">
  1062. Returns true if this browser can execute the specified zoom command. This
  1063. method can only be called on the UI thread.
  1064. </member>
  1065. <member name="M:CefBrowserHost.GetRequestContext">
  1066. Returns the request context for this browser.
  1067. </member>
  1068. <member name="M:CefBrowserHost.GetClient">
  1069. Returns the client for this browser.
  1070. </member>
  1071. <member name="M:CefBrowserHost.HasView">
  1072. Returns true if this browser is wrapped in a CefBrowserView.
  1073. </member>
  1074. <member name="M:CefBrowserHost.GetOpenerWindowHandle">
  1075. Retrieve the window handle (if any) of the browser that opened this
  1076. browser. Will return NULL for non-popup browsers or if this browser is
  1077. wrapped in a CefBrowserView. This method can be used in combination with
  1078. custom handling of modal windows.
  1079. </member>
  1080. <member name="M:CefBrowserHost.GetWindowHandle">
  1081. Retrieve the window handle (if any) for this browser. If this browser is
  1082. wrapped in a CefBrowserView this method should be called on the browser
  1083. process UI thread and it will return the handle for the top-level native
  1084. window.
  1085. </member>
  1086. <member name="M:CefBrowserHost.SetFocus(System.Boolean)">
  1087. Set whether the browser is focused.
  1088. </member>
  1089. <member name="M:CefBrowserHost.TryCloseBrowser">
  1090. Helper for closing a browser. Call this method from the top-level window
  1091. close handler (if any). Internally this calls CloseBrowser(false) if the
  1092. close has not yet been initiated. This method returns false while the
  1093. close is pending and true after the close has completed. See
  1094. CloseBrowser() and CefLifeSpanHandler::DoClose() documentation for
  1095. additional usage information. This method must be called on the browser
  1096. process UI thread.
  1097. </member>
  1098. <member name="M:CefBrowserHost.CloseBrowser(System.Boolean)">
  1099. Request that the browser close. The JavaScript 'onbeforeunload' event will
  1100. be fired. If |force_close| is false the event handler, if any, will be
  1101. allowed to prompt the user and the user can optionally cancel the close.
  1102. If |force_close| is true the prompt will not be displayed and the close
  1103. will proceed. Results in a call to CefLifeSpanHandler::DoClose() if the
  1104. event handler allows the close or if |force_close| is true. See
  1105. CefLifeSpanHandler::DoClose() documentation for additional usage
  1106. information.
  1107. </member>
  1108. <member name="M:CefBrowserHost.GetBrowser">
  1109. Returns the hosted browser object.
  1110. </member>
  1111. <member name="M:CefBrowserHost.CreateBrowserSync(CefWindowInfo!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefClient&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStructBase&lt;CefBrowserSettingsTraits&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefDictionaryValue&gt;,scoped_refptr&lt;CefRequestContext&gt;)">
  1112. Create a new browser using the window parameters specified by
  1113. |windowInfo|. If |request_context| is empty the global request context
  1114. will be used. This method can only be called on the browser process UI
  1115. thread. The optional |extra_info| parameter provides an opportunity to
  1116. specify extra information specific to the created browser that will be
  1117. passed to CefRenderProcessHandler::OnBrowserCreated() in the render
  1118. process.
  1119. </member>
  1120. <member name="M:CefBrowserHost.CreateBrowser(CefWindowInfo!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefClient&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStructBase&lt;CefBrowserSettingsTraits&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefDictionaryValue&gt;,scoped_refptr&lt;CefRequestContext&gt;)">
  1121. Create a new browser using the window parameters specified by
  1122. |windowInfo|. All values will be copied internally and the actual window
  1123. (if any) will be created on the UI thread. If |request_context| is empty
  1124. the global request context will be used. This method can be called on any
  1125. browser process thread and will not block. The optional |extra_info|
  1126. parameter provides an opportunity to specify extra information specific to
  1127. the created browser that will be passed to
  1128. CefRenderProcessHandler::OnBrowserCreated() in the render process.
  1129. </member>
  1130. <member name="T:CefBrowserHost">
  1131. Class used to represent the browser process aspects of a browser. The
  1132. methods of this class can only be called in the browser process. They may be
  1133. called on any thread in that process unless otherwise indicated in the
  1134. comments.
  1135. </member>
  1136. <member name="M:CefDownloadImageCallback.OnDownloadImageFinished(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32,scoped_refptr&lt;CefImage&gt;)">
  1137. Method that will be executed when the image download has completed.
  1138. |image_url| is the URL that was downloaded and |http_status_code| is the
  1139. resulting HTTP status code. |image| is the resulting image, possibly at
  1140. multiple scale factors, or empty if the download failed.
  1141. </member>
  1142. <member name="T:CefDownloadImageCallback">
  1143. Callback interface for CefBrowserHost::DownloadImage. The methods of this
  1144. class will be called on the browser process UI thread.
  1145. </member>
  1146. <member name="M:CefPdfPrintCallback.OnPdfPrintFinished(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean)">
  1147. Method that will be executed when the PDF printing has completed. |path|
  1148. is the output path. |ok| will be true if the printing completed
  1149. successfully or false otherwise.
  1150. </member>
  1151. <member name="T:CefPdfPrintCallback">
  1152. Callback interface for CefBrowserHost::PrintToPDF. The methods of this class
  1153. will be called on the browser process UI thread.
  1154. </member>
  1155. <member name="M:CefNavigationEntryVisitor.Visit(scoped_refptr&lt;CefNavigationEntry&gt;,System.Boolean,System.Int32,System.Int32)">
  1156. Method that will be executed. Do not keep a reference to |entry| outside
  1157. of this callback. Return true to continue visiting entries or false to
  1158. stop. |current| is true if this entry is the currently loaded navigation
  1159. entry. |index| is the 0-based index of this entry and |total| is the total
  1160. number of entries.
  1161. </member>
  1162. <member name="T:CefNavigationEntryVisitor">
  1163. Callback interface for CefBrowserHost::GetNavigationEntries. The methods of
  1164. this class will be called on the browser process UI thread.
  1165. </member>
  1166. <member name="M:CefRunFileDialogCallback.OnFileDialogDismissed(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1167. Called asynchronously after the file dialog is dismissed.
  1168. |file_paths| will be a single value or a list of values depending on the
  1169. dialog mode. If the selection was cancelled |file_paths| will be empty.
  1170. </member>
  1171. <member name="T:CefRunFileDialogCallback">
  1172. Callback interface for CefBrowserHost::RunFileDialog. The methods of this
  1173. class will be called on the browser process UI thread.
  1174. </member>
  1175. <member name="M:CefBrowser.GetFrameNames(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1176. Returns the names of all existing frames.
  1177. </member>
  1178. <member name="M:CefBrowser.GetFrameIdentifiers(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1179. Returns the identifiers of all existing frames.
  1180. </member>
  1181. <member name="M:CefBrowser.GetFrameCount">
  1182. Returns the number of frames that currently exist.
  1183. </member>
  1184. <member name="M:CefBrowser.GetFrameByName(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1185. Returns the frame with the specified name, or NULL if not found.
  1186. </member>
  1187. <member name="M:CefBrowser.GetFrameByIdentifier(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1188. Returns the frame with the specified identifier, or NULL if not found.
  1189. </member>
  1190. <member name="M:CefBrowser.GetFocusedFrame">
  1191. Returns the focused frame for the browser.
  1192. </member>
  1193. <member name="M:CefBrowser.GetMainFrame">
  1194. Returns the main (top-level) frame for the browser. In the browser process
  1195. this will return a valid object until after
  1196. CefLifeSpanHandler::OnBeforeClose is called. In the renderer process this
  1197. will return NULL if the main frame is hosted in a different renderer
  1198. process (e.g. for cross-origin sub-frames). The main frame object will
  1199. change during cross-origin navigation or re-navigation after renderer
  1200. process termination (due to crashes, etc).
  1201. </member>
  1202. <member name="M:CefBrowser.HasDocument">
  1203. Returns true if a document has been loaded in the browser.
  1204. </member>
  1205. <member name="M:CefBrowser.IsPopup">
  1206. Returns true if the browser is a popup.
  1207. </member>
  1208. <member name="M:CefBrowser.IsSame(scoped_refptr&lt;CefBrowser&gt;)">
  1209. Returns true if this object is pointing to the same handle as |that|
  1210. object.
  1211. </member>
  1212. <member name="M:CefBrowser.GetIdentifier">
  1213. Returns the globally unique identifier for this browser. This value is
  1214. also used as the tabId for extension APIs.
  1215. </member>
  1216. <member name="M:CefBrowser.StopLoad">
  1217. Stop loading the page.
  1218. </member>
  1219. <member name="M:CefBrowser.ReloadIgnoreCache">
  1220. Reload the current page ignoring any cached data.
  1221. </member>
  1222. <member name="M:CefBrowser.Reload">
  1223. Reload the current page.
  1224. </member>
  1225. <member name="M:CefBrowser.IsLoading">
  1226. Returns true if the browser is currently loading.
  1227. </member>
  1228. <member name="M:CefBrowser.GoForward">
  1229. Navigate forwards.
  1230. </member>
  1231. <member name="M:CefBrowser.CanGoForward">
  1232. Returns true if the browser can navigate forwards.
  1233. </member>
  1234. <member name="M:CefBrowser.GoBack">
  1235. Navigate backwards.
  1236. </member>
  1237. <member name="M:CefBrowser.CanGoBack">
  1238. Returns true if the browser can navigate backwards.
  1239. </member>
  1240. <member name="M:CefBrowser.GetHost">
  1241. Returns the browser host object. This method can only be called in the
  1242. browser process.
  1243. </member>
  1244. <member name="M:CefBrowser.IsValid">
  1245. True if this object is currently valid. This will return false after
  1246. CefLifeSpanHandler::OnBeforeClose is called.
  1247. </member>
  1248. <member name="T:CefBrowser">
  1249. Class used to represent a browser. When used in the browser process the
  1250. methods of this class may be called on any thread unless otherwise indicated
  1251. in the comments. When used in the render process the methods of this class
  1252. may only be called on the main thread.
  1253. </member>
  1254. <member name="M:CefRequestContext.GetChromeColorSchemeVariant">
  1255. Returns the current Chrome color scheme variant. Must be called on the
  1256. browser process UI thread.
  1257. </member>
  1258. <member name="M:CefRequestContext.GetChromeColorSchemeColor">
  1259. Returns the current Chrome color scheme color, or transparent (0) for the
  1260. default color. Must be called on the browser process UI thread.
  1261. </member>
  1262. <member name="M:CefRequestContext.GetChromeColorSchemeMode">
  1263. Returns the current Chrome color scheme mode (SYSTEM, LIGHT or DARK). Must
  1264. be called on the browser process UI thread.
  1265. </member>
  1266. <member name="M:CefRequestContext.SetChromeColorScheme(cef_color_variant_t,System.UInt32)">
  1267. Sets the Chrome color scheme for all browsers that share this request
  1268. context. |variant| values of SYSTEM, LIGHT and DARK change the underlying
  1269. color mode (e.g. light vs dark). Other |variant| values determine how
  1270. |user_color| will be applied in the current color mode. If |user_color| is
  1271. transparent (0) the default color will be used.
  1272. </member>
  1273. <member name="M:CefRequestContext.SetContentSetting(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_content_setting_types_t,cef_content_setting_values_t)">
  1274. Sets the current value for |content_type| for the specified URLs in the
  1275. default scope. If both URLs are empty, and the context is not incognito,
  1276. the default value will be set. Pass CEF_CONTENT_SETTING_VALUE_DEFAULT for
  1277. |value| to use the default value for this content type.
  1278. WARNING: Incorrect usage of this method may cause instability or security
  1279. issues in Chromium. Make sure that you first understand the potential
  1280. impact of any changes to |content_type| by reviewing the related source
  1281. code in Chromium. For example, if you plan to modify
  1282. CEF_CONTENT_SETTING_TYPE_POPUPS, first review and understand the usage of
  1283. ContentSettingsType::POPUPS in Chromium:
  1284. https://source.chromium.org/search?q=ContentSettingsType::POPUPS
  1285. </member>
  1286. <member name="M:CefRequestContext.GetContentSetting(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_content_setting_types_t)">
  1287. Returns the current value for |content_type| that applies for the
  1288. specified URLs. If both URLs are empty the default value will be returned.
  1289. Returns CEF_CONTENT_SETTING_VALUE_DEFAULT if no value is configured. Must
  1290. be called on the browser process UI thread.
  1291. </member>
  1292. <member name="M:CefRequestContext.SetWebsiteSetting(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_content_setting_types_t,scoped_refptr&lt;CefValue&gt;)">
  1293. Sets the current value for |content_type| for the specified URLs in the
  1294. default scope. If both URLs are empty, and the context is not incognito,
  1295. the default value will be set. Pass nullptr for |value| to remove the
  1296. default value for this content type.
  1297. WARNING: Incorrect usage of this method may cause instability or security
  1298. issues in Chromium. Make sure that you first understand the potential
  1299. impact of any changes to |content_type| by reviewing the related source
  1300. code in Chromium. For example, if you plan to modify
  1301. CEF_CONTENT_SETTING_TYPE_POPUPS, first review and understand the usage of
  1302. ContentSettingsType::POPUPS in Chromium:
  1303. https://source.chromium.org/search?q=ContentSettingsType::POPUPS
  1304. </member>
  1305. <member name="M:CefRequestContext.GetWebsiteSetting(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_content_setting_types_t)">
  1306. Returns the current value for |content_type| that applies for the
  1307. specified URLs. If both URLs are empty the default value will be returned.
  1308. Returns nullptr if no value is configured. Must be called on the browser
  1309. process UI thread.
  1310. </member>
  1311. <member name="M:CefRequestContext.GetMediaRouter(scoped_refptr&lt;CefCompletionCallback&gt;)">
  1312. Returns the MediaRouter object associated with this context. If
  1313. |callback| is non-NULL it will be executed asnychronously on the UI thread
  1314. after the manager's context has been initialized.
  1315. </member>
  1316. <member name="M:CefRequestContext.GetExtension(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1317. Returns the extension matching |extension_id| or NULL if no matching
  1318. extension is accessible in this context (see HasExtension). This method
  1319. must be called on the browser process UI thread.
  1320. WARNING: This method is deprecated and will be removed in ~M127.
  1321. </member>
  1322. <member name="M:CefRequestContext.GetExtensions(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1323. Retrieve the list of all extensions that this context has access to (see
  1324. HasExtension). |extension_ids| will be populated with the list of
  1325. extension ID values. Returns true on success. This method must be called
  1326. on the browser process UI thread.
  1327. WARNING: This method is deprecated and will be removed in ~M127.
  1328. </member>
  1329. <member name="M:CefRequestContext.HasExtension(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1330. Returns true if this context has access to the extension identified by
  1331. |extension_id|. This may not be the context that was used to load the
  1332. extension (see DidLoadExtension). This method must be called on the
  1333. browser process UI thread.
  1334. WARNING: This method is deprecated and will be removed in ~M127.
  1335. </member>
  1336. <member name="M:CefRequestContext.DidLoadExtension(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1337. Returns true if this context was used to load the extension identified by
  1338. |extension_id|. Other contexts sharing the same storage will also have
  1339. access to the extension (see HasExtension). This method must be called on
  1340. the browser process UI thread.
  1341. WARNING: This method is deprecated and will be removed in ~M127.
  1342. </member>
  1343. <member name="M:CefRequestContext.ResolveHost(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefResolveCallback&gt;)">
  1344. Attempts to resolve |origin| to a list of associated IP addresses.
  1345. |callback| will be executed on the UI thread after completion.
  1346. </member>
  1347. <member name="M:CefRequestContext.CloseAllConnections(scoped_refptr&lt;CefCompletionCallback&gt;)">
  1348. Clears all active and idle connections that Chromium currently has.
  1349. This is only recommended if you have released all other CEF objects but
  1350. don't yet want to call CefShutdown(). If |callback| is non-NULL it will be
  1351. executed on the UI thread after completion.
  1352. </member>
  1353. <member name="M:CefRequestContext.ClearHttpAuthCredentials(scoped_refptr&lt;CefCompletionCallback&gt;)">
  1354. Clears all HTTP authentication credentials that were added as part of
  1355. handling GetAuthCredentials. If |callback| is non-NULL it will be executed
  1356. on the UI thread after completion.
  1357. </member>
  1358. <member name="M:CefRequestContext.ClearCertificateExceptions(scoped_refptr&lt;CefCompletionCallback&gt;)">
  1359. Clears all certificate exceptions that were added as part of handling
  1360. CefRequestHandler::OnCertificateError(). If you call this it is
  1361. recommended that you also call CloseAllConnections() or you risk not
  1362. being prompted again for server certificates if you reconnect quickly.
  1363. If |callback| is non-NULL it will be executed on the UI thread after
  1364. completion.
  1365. </member>
  1366. <member name="M:CefRequestContext.ClearSchemeHandlerFactories">
  1367. Clear all registered scheme handler factories. Returns false on error.
  1368. This function may be called on any thread in the browser process.
  1369. </member>
  1370. <member name="M:CefRequestContext.RegisterSchemeHandlerFactory(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefSchemeHandlerFactory&gt;)">
  1371. Register a scheme handler factory for the specified |scheme_name| and
  1372. optional |domain_name|. An empty |domain_name| value for a standard scheme
  1373. will cause the factory to match all domain names. The |domain_name| value
  1374. will be ignored for non-standard schemes. If |scheme_name| is a built-in
  1375. scheme and no handler is returned by |factory| then the built-in scheme
  1376. handler factory will be called. If |scheme_name| is a custom scheme then
  1377. you must also implement the CefApp::OnRegisterCustomSchemes() method in
  1378. all processes. This function may be called multiple times to change or
  1379. remove the factory that matches the specified |scheme_name| and optional
  1380. |domain_name|. Returns false if an error occurs. This function may be
  1381. called on any thread in the browser process.
  1382. </member>
  1383. <member name="M:CefRequestContext.GetCookieManager(scoped_refptr&lt;CefCompletionCallback&gt;)">
  1384. Returns the cookie manager for this object. If |callback| is non-NULL it
  1385. will be executed asnychronously on the UI thread after the manager's
  1386. storage has been initialized.
  1387. </member>
  1388. <member name="M:CefRequestContext.GetCachePath">
  1389. Returns the cache path for this object. If empty an "incognito mode"
  1390. in-memory cache is being used.
  1391. </member>
  1392. <member name="M:CefRequestContext.GetHandler">
  1393. Returns the handler for this context if any.
  1394. </member>
  1395. <member name="M:CefRequestContext.IsGlobal">
  1396. Returns true if this object is the global context. The global context is
  1397. used by default when creating a browser or URL request with a NULL context
  1398. argument.
  1399. </member>
  1400. <member name="M:CefRequestContext.IsSharingWith(scoped_refptr&lt;CefRequestContext&gt;)">
  1401. Returns true if this object is sharing the same storage as |that| object.
  1402. </member>
  1403. <member name="M:CefRequestContext.IsSame(scoped_refptr&lt;CefRequestContext&gt;)">
  1404. Returns true if this object is pointing to the same context as |that|
  1405. object.
  1406. </member>
  1407. <member name="M:CefRequestContext.CreateContext(scoped_refptr&lt;CefRequestContext&gt;,scoped_refptr&lt;CefRequestContextHandler&gt;)">
  1408. Creates a new context object that shares storage with |other| and uses an
  1409. optional |handler|.
  1410. </member>
  1411. <member name="M:CefRequestContext.CreateContext(CefStructBase&lt;CefRequestContextSettingsTraits&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefRequestContextHandler&gt;)">
  1412. Creates a new context object with the specified |settings| and optional
  1413. |handler|.
  1414. </member>
  1415. <member name="M:CefRequestContext.GetGlobalContext">
  1416. Returns the global context object.
  1417. </member>
  1418. <member name="T:CefRequestContext">
  1419. A request context provides request handling for a set of related browser
  1420. or URL request objects. A request context can be specified when creating a
  1421. new browser via the CefBrowserHost static factory methods or when creating a
  1422. new URL request via the CefURLRequest static factory methods. Browser
  1423. objects with different request contexts will never be hosted in the same
  1424. render process. Browser objects with the same request context may or may not
  1425. be hosted in the same render process depending on the process model. Browser
  1426. objects created indirectly via the JavaScript window.open function or
  1427. targeted links will share the same render process and the same request
  1428. context as the source browser. When running in single-process mode there is
  1429. only a single render process (the main process) and so all browsers created
  1430. in single-process mode will share the same request context. This will be the
  1431. first request context passed into a CefBrowserHost static factory method and
  1432. all other request context objects will be ignored.
  1433. </member>
  1434. <member name="M:CefResolveCallback.OnResolveCompleted(cef_errorcode_t,std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1435. Called on the UI thread after the ResolveHost request has completed.
  1436. |result| will be the result code. |resolved_ips| will be the list of
  1437. resolved IP addresses or empty if the resolution failed.
  1438. </member>
  1439. <member name="T:CefResolveCallback">
  1440. Callback interface for CefRequestContext::ResolveHost.
  1441. </member>
  1442. <member name="M:CefPreferenceManager.SetPreference(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefValue&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1443. Set the |value| associated with preference |name|. Returns true if the
  1444. value is set successfully and false otherwise. If |value| is NULL the
  1445. preference will be restored to its default value. If setting the
  1446. preference fails then |error| will be populated with a detailed
  1447. description of the problem. This method must be called on the browser
  1448. process UI thread.
  1449. </member>
  1450. <member name="M:CefPreferenceManager.CanSetPreference(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1451. Returns true if the preference with the specified |name| can be modified
  1452. using SetPreference. As one example preferences set via the command-line
  1453. usually cannot be modified. This method must be called on the browser
  1454. process UI thread.
  1455. </member>
  1456. <member name="M:CefPreferenceManager.GetAllPreferences(System.Boolean)">
  1457. Returns all preferences as a dictionary. If |include_defaults| is true
  1458. then preferences currently at their default value will be included. The
  1459. returned object contains a copy of the underlying preference values and
  1460. modifications to the returned object will not modify the underlying
  1461. preference values. This method must be called on the browser process UI
  1462. thread.
  1463. </member>
  1464. <member name="M:CefPreferenceManager.GetPreference(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1465. Returns the value for the preference with the specified |name|. Returns
  1466. NULL if the preference does not exist. The returned object contains a copy
  1467. of the underlying preference value and modifications to the returned
  1468. object will not modify the underlying preference value. This method must
  1469. be called on the browser process UI thread.
  1470. </member>
  1471. <member name="M:CefPreferenceManager.HasPreference(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1472. Returns true if a preference with the specified |name| exists. This method
  1473. must be called on the browser process UI thread.
  1474. </member>
  1475. <member name="M:CefPreferenceManager.GetGlobalPreferenceManager">
  1476. Returns the global preference manager object.
  1477. </member>
  1478. <member name="T:CefPreferenceManager">
  1479. Manage access to preferences. Many built-in preferences are registered by
  1480. Chromium. Custom preferences can be registered in
  1481. CefBrowserProcessHandler::OnRegisterCustomPreferences.
  1482. </member>
  1483. <member name="M:CefPreferenceRegistrar.AddPreference(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefValue&gt;)">
  1484. Register a preference with the specified |name| and |default_value|. To
  1485. avoid conflicts with built-in preferences the |name| value should contain
  1486. an application-specific prefix followed by a period (e.g. "myapp.value").
  1487. The contents of |default_value| will be copied. The data type for the
  1488. preference will be inferred from |default_value|'s type and cannot be
  1489. changed after registration. Returns true on success. Returns false if
  1490. |name| is already registered or if |default_value| has an invalid type.
  1491. This method must be called from within the scope of the
  1492. CefBrowserProcessHandler::OnRegisterCustomPreferences callback.
  1493. </member>
  1494. <member name="T:CefPreferenceRegistrar">
  1495. Class that manages custom preference registrations.
  1496. </member>
  1497. <member name="M:CefMediaSource.IsDialSource">
  1498. Returns true if this source outputs its content via DIAL.
  1499. </member>
  1500. <member name="M:CefMediaSource.IsCastSource">
  1501. Returns true if this source outputs its content via Cast.
  1502. </member>
  1503. <member name="M:CefMediaSource.GetId">
  1504. Returns the ID (media source URN or URL) for this source.
  1505. </member>
  1506. <member name="T:CefMediaSource">
  1507. Represents a source from which media can be routed. Instances of this object
  1508. are retrieved via CefMediaRouter::GetSource. The methods of this class may
  1509. be called on any browser process thread unless otherwise indicated.
  1510. </member>
  1511. <member name="M:CefMediaSinkDeviceInfoCallback.OnMediaSinkDeviceInfo(CefStructBase&lt;CefMediaSinkDeviceInfoTraits&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1512. Method that will be executed asyncronously once device information has
  1513. been retrieved.
  1514. </member>
  1515. <member name="T:CefMediaSinkDeviceInfoCallback">
  1516. Callback interface for CefMediaSink::GetDeviceInfo. The methods of this
  1517. class will be called on the browser process UI thread.
  1518. </member>
  1519. <member name="M:CefMediaSink.IsCompatibleWith(scoped_refptr&lt;CefMediaSource&gt;)">
  1520. Returns true if this sink is compatible with |source|.
  1521. </member>
  1522. <member name="M:CefMediaSink.IsDialSink">
  1523. Returns true if this sink accepts content via DIAL.
  1524. </member>
  1525. <member name="M:CefMediaSink.IsCastSink">
  1526. Returns true if this sink accepts content via Cast.
  1527. </member>
  1528. <member name="M:CefMediaSink.GetDeviceInfo(scoped_refptr&lt;CefMediaSinkDeviceInfoCallback&gt;)">
  1529. Asynchronously retrieves device info.
  1530. </member>
  1531. <member name="M:CefMediaSink.GetIconType">
  1532. Returns the icon type for this sink.
  1533. </member>
  1534. <member name="M:CefMediaSink.GetName">
  1535. Returns the name of this sink.
  1536. </member>
  1537. <member name="M:CefMediaSink.GetId">
  1538. Returns the ID for this sink.
  1539. </member>
  1540. <member name="T:CefMediaSink">
  1541. Represents a sink to which media can be routed. Instances of this object are
  1542. retrieved via CefMediaObserver::OnSinks. The methods of this class may
  1543. be called on any browser process thread unless otherwise indicated.
  1544. </member>
  1545. <member name="M:CefMediaRouteCreateCallback.OnMediaRouteCreateFinished(cef_media_route_create_result_t,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefMediaRoute&gt;)">
  1546. Method that will be executed when the route creation has finished.
  1547. |result| will be CEF_MRCR_OK if the route creation succeeded. |error| will
  1548. be a description of the error if the route creation failed. |route| is the
  1549. resulting route, or empty if the route creation failed.
  1550. </member>
  1551. <member name="T:CefMediaRouteCreateCallback">
  1552. Callback interface for CefMediaRouter::CreateRoute. The methods of this
  1553. class will be called on the browser process UI thread.
  1554. </member>
  1555. <member name="M:CefMediaRoute.Terminate">
  1556. Terminate this route. Will result in an asynchronous call to
  1557. CefMediaObserver::OnRoutes on all registered observers.
  1558. </member>
  1559. <member name="M:CefMediaRoute.SendRouteMessage(System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt64)">
  1560. Send a message over this route. |message| will be copied if necessary.
  1561. </member>
  1562. <member name="M:CefMediaRoute.GetSink">
  1563. Returns the sink associated with this route.
  1564. </member>
  1565. <member name="M:CefMediaRoute.GetSource">
  1566. Returns the source associated with this route.
  1567. </member>
  1568. <member name="M:CefMediaRoute.GetId">
  1569. Returns the ID for this route.
  1570. </member>
  1571. <member name="T:CefMediaRoute">
  1572. Represents the route between a media source and sink. Instances of this
  1573. object are created via CefMediaRouter::CreateRoute and retrieved via
  1574. CefMediaObserver::OnRoutes. Contains the status and metadata of a
  1575. routing operation. The methods of this class may be called on any browser
  1576. process thread unless otherwise indicated.
  1577. </member>
  1578. <member name="M:CefMediaObserver.OnRouteMessageReceived(scoped_refptr&lt;CefMediaRoute&gt;,System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt64)">
  1579. A message was received over |route|. |message| is only valid for
  1580. the scope of this callback and should be copied if necessary.
  1581. </member>
  1582. <member name="M:CefMediaObserver.OnRouteStateChanged(scoped_refptr&lt;CefMediaRoute&gt;,cef_media_route_connection_state_t)">
  1583. The connection state of |route| has changed.
  1584. </member>
  1585. <member name="M:CefMediaObserver.OnRoutes(std.vector&lt;scoped_refptr&lt;CefMediaRoute&gt;,std.allocator&lt;scoped_refptr&lt;CefMediaRoute&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1586. The list of available media routes has changed or
  1587. CefMediaRouter::NotifyCurrentRoutes was called.
  1588. </member>
  1589. <member name="M:CefMediaObserver.OnSinks(std.vector&lt;scoped_refptr&lt;CefMediaSink&gt;,std.allocator&lt;scoped_refptr&lt;CefMediaSink&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1590. The list of available media sinks has changed or
  1591. CefMediaRouter::NotifyCurrentSinks was called.
  1592. </member>
  1593. <member name="T:CefMediaObserver">
  1594. Implemented by the client to observe MediaRouter events and registered via
  1595. CefMediaRouter::AddObserver. The methods of this class will be called on the
  1596. browser process UI thread.
  1597. </member>
  1598. <member name="M:CefMediaRouter.NotifyCurrentRoutes">
  1599. Trigger an asynchronous call to CefMediaObserver::OnRoutes on all
  1600. registered observers.
  1601. </member>
  1602. <member name="M:CefMediaRouter.CreateRoute(scoped_refptr&lt;CefMediaSource&gt;,scoped_refptr&lt;CefMediaSink&gt;,scoped_refptr&lt;CefMediaRouteCreateCallback&gt;)">
  1603. Create a new route between |source| and |sink|. Source and sink must be
  1604. valid, compatible (as reported by CefMediaSink::IsCompatibleWith), and a
  1605. route between them must not already exist. |callback| will be executed
  1606. on success or failure. If route creation succeeds it will also trigger an
  1607. asynchronous call to CefMediaObserver::OnRoutes on all registered
  1608. observers.
  1609. </member>
  1610. <member name="M:CefMediaRouter.NotifyCurrentSinks">
  1611. Trigger an asynchronous call to CefMediaObserver::OnSinks on all
  1612. registered observers.
  1613. </member>
  1614. <member name="M:CefMediaRouter.AddObserver(scoped_refptr&lt;CefMediaObserver&gt;)">
  1615. Add an observer for MediaRouter events. The observer will remain
  1616. registered until the returned Registration object is destroyed.
  1617. </member>
  1618. <member name="M:CefMediaRouter.GetGlobalMediaRouter(scoped_refptr&lt;CefCompletionCallback&gt;)">
  1619. Returns the MediaRouter object associated with the global request context.
  1620. If |callback| is non-NULL it will be executed asnychronously on the UI
  1621. thread after the manager's storage has been initialized. Equivalent to
  1622. calling CefRequestContext::GetGlobalContext()-&gt;GetMediaRouter().
  1623. </member>
  1624. <member name="T:CefMediaRouter">
  1625. Supports discovery of and communication with media devices on the local
  1626. network via the Cast and DIAL protocols. The methods of this class may be
  1627. called on any browser process thread unless otherwise indicated.
  1628. </member>
  1629. <member name="M:CefExtensionHandler.GetExtensionResource(scoped_refptr&lt;CefExtension&gt;,scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefGetExtensionResourceCallback&gt;)">
  1630. Called to retrieve an extension resource that would normally be loaded
  1631. from disk (e.g. if a file parameter is specified to
  1632. chrome.tabs.executeScript). |extension| and |browser| are the source of
  1633. the resource request. |file| is the requested relative file path. To
  1634. handle the resource request return true and execute |callback| either
  1635. synchronously or asynchronously. For the default behavior which reads the
  1636. resource from the extension directory on disk return false. Localization
  1637. substitutions will not be applied to resources handled via this method.
  1638. </member>
  1639. <member name="M:CefExtensionHandler.CanAccessBrowser(scoped_refptr&lt;CefExtension&gt;,scoped_refptr&lt;CefBrowser&gt;,System.Boolean,scoped_refptr&lt;CefBrowser&gt;)">
  1640. Called when the tabId associated with |target_browser| is specified to an
  1641. extension API call that accepts a tabId parameter (e.g. chrome.tabs.*).
  1642. |extension| and |browser| are the source of the API call. Return true
  1643. to allow access of false to deny access. Access to incognito browsers
  1644. should not be allowed unless the source extension has incognito access
  1645. enabled, in which case |include_incognito| will be true.
  1646. </member>
  1647. <member name="M:CefExtensionHandler.GetActiveBrowser(scoped_refptr&lt;CefExtension&gt;,scoped_refptr&lt;CefBrowser&gt;,System.Boolean)">
  1648. Called when no tabId is specified to an extension API call that accepts a
  1649. tabId parameter (e.g. chrome.tabs.*). |extension| and |browser| are the
  1650. source of the API call. Return the browser that will be acted on by the
  1651. API call or return NULL to act on |browser|. The returned browser must
  1652. share the same CefRequestContext as |browser|. Incognito browsers should
  1653. not be considered unless the source extension has incognito access
  1654. enabled, in which case |include_incognito| will be true.
  1655. </member>
  1656. <member name="M:CefExtensionHandler.OnBeforeBrowser(scoped_refptr&lt;CefExtension&gt;,scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefBrowser&gt;,System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean,CefWindowInfo*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefClient&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStructBase&lt;CefBrowserSettingsTraits&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1657. Called when an extension API (e.g. chrome.tabs.create) requests creation
  1658. of a new browser. |extension| and |browser| are the source of the API
  1659. call. |active_browser| may optionally be specified via the windowId
  1660. property or returned via the GetActiveBrowser() callback and provides the
  1661. default |client| and |settings| values for the new browser. |index| is the
  1662. position value optionally specified via the index property. |url| is the
  1663. URL that will be loaded in the browser. |active| is true if the new
  1664. browser should be active when opened. To allow creation of the browser
  1665. optionally modify |windowInfo|, |client| and |settings| and return false.
  1666. To cancel creation of the browser return true. Successful creation will be
  1667. indicated by a call to CefLifeSpanHandler::OnAfterCreated. Any
  1668. modifications to |windowInfo| will be ignored if |active_browser| is
  1669. wrapped in a CefBrowserView.
  1670. </member>
  1671. <member name="M:CefExtensionHandler.OnExtensionUnloaded(scoped_refptr&lt;CefExtension&gt;)">
  1672. Called after the CefExtension::Unload request has completed.
  1673. </member>
  1674. <member name="M:CefExtensionHandler.OnExtensionLoaded(scoped_refptr&lt;CefExtension&gt;)">
  1675. Called if the CefRequestContext::LoadExtension request succeeds.
  1676. |extension| is the loaded extension.
  1677. </member>
  1678. <member name="M:CefExtensionHandler.OnExtensionLoadFailed(cef_errorcode_t)">
  1679. Called if the CefRequestContext::LoadExtension request fails. |result|
  1680. will be the error code.
  1681. </member>
  1682. <member name="T:CefExtensionHandler">
  1683. Implement this interface to handle events related to browser extensions.
  1684. The methods of this class will be called on the UI thread. See
  1685. CefRequestContext::LoadExtension for information about extension loading.
  1686. WARNING: This API is deprecated and will be removed in ~M127.
  1687. </member>
  1688. <member name="M:CefGetExtensionResourceCallback.Cancel">
  1689. Cancel the request.
  1690. </member>
  1691. <member name="M:CefGetExtensionResourceCallback.Continue(scoped_refptr&lt;CefStreamReader&gt;)">
  1692. Continue the request. Read the resource contents from |stream|.
  1693. </member>
  1694. <member name="T:CefGetExtensionResourceCallback">
  1695. Callback interface used for asynchronous continuation of
  1696. CefExtensionHandler::GetExtensionResource.
  1697. </member>
  1698. <member name="M:CefExtension.Unload">
  1699. Unload this extension if it is not an internal extension and is currently
  1700. loaded. Will result in a call to CefExtensionHandler::OnExtensionUnloaded
  1701. on success.
  1702. </member>
  1703. <member name="M:CefExtension.IsLoaded">
  1704. Returns true if this extension is currently loaded. Must be called on the
  1705. browser process UI thread.
  1706. </member>
  1707. <member name="M:CefExtension.GetLoaderContext">
  1708. Returns the request context that loaded this extension. Will return NULL
  1709. for internal extensions or if the extension has been unloaded. See the
  1710. CefRequestContext::LoadExtension documentation for more information about
  1711. loader contexts. Must be called on the browser process UI thread.
  1712. </member>
  1713. <member name="M:CefExtension.GetHandler">
  1714. Returns the handler for this extension. Will return NULL for internal
  1715. extensions or if no handler was passed to
  1716. CefRequestContext::LoadExtension.
  1717. </member>
  1718. <member name="M:CefExtension.IsSame(scoped_refptr&lt;CefExtension&gt;)">
  1719. Returns true if this object is the same extension as |that| object.
  1720. Extensions are considered the same if identifier, path and loader context
  1721. match.
  1722. </member>
  1723. <member name="M:CefExtension.GetManifest">
  1724. Returns the extension manifest contents as a CefDictionaryValue object.
  1725. See https://developer.chrome.com/extensions/manifest for details.
  1726. </member>
  1727. <member name="M:CefExtension.GetPath">
  1728. Returns the absolute path to the extension directory on disk. This value
  1729. will be prefixed with PK_DIR_RESOURCES if a relative path was passed to
  1730. CefRequestContext::LoadExtension.
  1731. </member>
  1732. <member name="M:CefExtension.GetIdentifier">
  1733. Returns the unique extension identifier. This is calculated based on the
  1734. extension public key, if available, or on the extension path. See
  1735. https://developer.chrome.com/extensions/manifest/key for details.
  1736. </member>
  1737. <member name="T:CefExtension">
  1738. Object representing an extension. Methods may be called on any thread unless
  1739. otherwise indicated.
  1740. WARNING: This API is deprecated and will be removed in ~M127.
  1741. </member>
  1742. <member name="M:CefDeleteCookiesCallback.OnComplete(System.Int32)">
  1743. Method that will be called upon completion. |num_deleted| will be the
  1744. number of cookies that were deleted.
  1745. </member>
  1746. <member name="T:CefDeleteCookiesCallback">
  1747. Interface to implement to be notified of asynchronous completion via
  1748. CefCookieManager::DeleteCookies().
  1749. </member>
  1750. <member name="M:CefSetCookieCallback.OnComplete(System.Boolean)">
  1751. Method that will be called upon completion. |success| will be true if the
  1752. cookie was set successfully.
  1753. </member>
  1754. <member name="T:CefSetCookieCallback">
  1755. Interface to implement to be notified of asynchronous completion via
  1756. CefCookieManager::SetCookie().
  1757. </member>
  1758. <member name="M:CefCookieVisitor.Visit(CefStructBase&lt;CefCookieTraits&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32,System.Int32,System.Boolean*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1759. Method that will be called once for each cookie. |count| is the 0-based
  1760. index for the current cookie. |total| is the total number of cookies.
  1761. Set |deleteCookie| to true to delete the cookie currently being visited.
  1762. Return false to stop visiting cookies. This method may never be called if
  1763. no cookies are found.
  1764. </member>
  1765. <member name="T:CefCookieVisitor">
  1766. Interface to implement for visiting cookie values. The methods of this class
  1767. will always be called on the UI thread.
  1768. </member>
  1769. <member name="M:CefCookieManager.FlushStore(scoped_refptr&lt;CefCompletionCallback&gt;)">
  1770. Flush the backing store (if any) to disk. If |callback| is non-NULL it
  1771. will be executed asnychronously on the UI thread after the flush is
  1772. complete. Returns false if cookies cannot be accessed.
  1773. </member>
  1774. <member name="M:CefCookieManager.DeleteCookies(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefDeleteCookiesCallback&gt;)">
  1775. Delete all cookies that match the specified parameters. If both |url| and
  1776. |cookie_name| values are specified all host and domain cookies matching
  1777. both will be deleted. If only |url| is specified all host cookies (but not
  1778. domain cookies) irrespective of path will be deleted. If |url| is empty
  1779. all cookies for all hosts and domains will be deleted. If |callback| is
  1780. non-NULL it will be executed asnychronously on the UI thread after the
  1781. cookies have been deleted. Returns false if a non-empty invalid URL is
  1782. specified or if cookies cannot be accessed. Cookies can alternately be
  1783. deleted using the Visit*Cookies() methods.
  1784. </member>
  1785. <member name="M:CefCookieManager.SetCookie(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStructBase&lt;CefCookieTraits&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefSetCookieCallback&gt;)">
  1786. Sets a cookie given a valid URL and explicit user-provided cookie
  1787. attributes. This function expects each attribute to be well-formed. It
  1788. will check for disallowed characters (e.g. the ';' character is disallowed
  1789. within the cookie value attribute) and fail without setting the cookie if
  1790. such characters are found. If |callback| is non-NULL it will be executed
  1791. asnychronously on the UI thread after the cookie has been set. Returns
  1792. false if an invalid URL is specified or if cookies cannot be accessed.
  1793. </member>
  1794. <member name="M:CefCookieManager.VisitUrlCookies(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean,scoped_refptr&lt;CefCookieVisitor&gt;)">
  1795. Visit a subset of cookies on the UI thread. The results are filtered by
  1796. the given url scheme, host, domain and path. If |includeHttpOnly| is true
  1797. HTTP-only cookies will also be included in the results. The returned
  1798. cookies are ordered by longest path, then by earliest creation date.
  1799. Returns false if cookies cannot be accessed.
  1800. </member>
  1801. <member name="M:CefCookieManager.VisitAllCookies(scoped_refptr&lt;CefCookieVisitor&gt;)">
  1802. Visit all cookies on the UI thread. The returned cookies are ordered by
  1803. longest path, then by earliest creation date. Returns false if cookies
  1804. cannot be accessed.
  1805. </member>
  1806. <member name="M:CefCookieManager.GetGlobalManager(scoped_refptr&lt;CefCompletionCallback&gt;)">
  1807. Returns the global cookie manager. By default data will be stored at
  1808. cef_settings_t.cache_path if specified or in memory otherwise. If
  1809. |callback| is non-NULL it will be executed asnychronously on the UI thread
  1810. after the manager's storage has been initialized. Using this method is
  1811. equivalent to calling
  1812. CefRequestContext::GetGlobalContext()-&gt;GetDefaultCookieManager().
  1813. </member>
  1814. <member name="T:CefCookieManager">
  1815. Class used for managing cookies. The methods of this class may be called on
  1816. any thread unless otherwise indicated.
  1817. </member>
  1818. <member name="M:CefCompletionCallback.OnComplete">
  1819. Method that will be called once the task is complete.
  1820. </member>
  1821. <member name="T:CefCompletionCallback">
  1822. Generic callback interface used for asynchronous completion.
  1823. </member>
  1824. <member name="M:CefCallback.Cancel">
  1825. Cancel processing.
  1826. </member>
  1827. <member name="M:CefCallback.Continue">
  1828. Continue processing.
  1829. </member>
  1830. <member name="T:CefCallback">
  1831. Generic callback interface used for asynchronous continuation.
  1832. </member>
  1833. <member name="T:CefRegistration">
  1834. Generic callback interface used for managing the lifespan of a registration.
  1835. </member>
  1836. <member name="M:CefNavigationEntry.GetSSLStatus">
  1837. Returns the SSL information for this navigation entry.
  1838. </member>
  1839. <member name="M:CefNavigationEntry.GetHttpStatusCode">
  1840. Returns the HTTP status code for the last known successful navigation
  1841. response. May be 0 if the response has not yet been received or if the
  1842. navigation has not yet completed.
  1843. </member>
  1844. <member name="M:CefNavigationEntry.GetCompletionTime">
  1845. Returns the time for the last known successful navigation completion. A
  1846. navigation may be completed more than once if the page is reloaded. May be
  1847. 0 if the navigation has not yet completed.
  1848. </member>
  1849. <member name="M:CefNavigationEntry.HasPostData">
  1850. Returns true if this navigation includes post data.
  1851. </member>
  1852. <member name="M:CefNavigationEntry.GetTransitionType">
  1853. Returns the transition type which indicates what the user did to move to
  1854. this page from the previous page.
  1855. </member>
  1856. <member name="M:CefNavigationEntry.GetTitle">
  1857. Returns the title set by the page. This value may be empty.
  1858. </member>
  1859. <member name="M:CefNavigationEntry.GetOriginalURL">
  1860. Returns the original URL that was entered by the user before any
  1861. redirects.
  1862. </member>
  1863. <member name="M:CefNavigationEntry.GetDisplayURL">
  1864. Returns a display-friendly version of the URL.
  1865. </member>
  1866. <member name="M:CefNavigationEntry.GetURL">
  1867. Returns the actual URL of the page. For some pages this may be data: URL
  1868. or similar. Use GetDisplayURL() to return a display-friendly version.
  1869. </member>
  1870. <member name="M:CefNavigationEntry.IsValid">
  1871. Returns true if this object is valid. Do not call any other methods if
  1872. this function returns false.
  1873. </member>
  1874. <member name="T:CefNavigationEntry">
  1875. Class used to represent an entry in navigation history.
  1876. </member>
  1877. <member name="M:CefSSLStatus.GetX509Certificate">
  1878. Returns the X.509 certificate.
  1879. </member>
  1880. <member name="M:CefSSLStatus.GetContentStatus">
  1881. Returns a bitmask containing the page security content status.
  1882. </member>
  1883. <member name="M:CefSSLStatus.GetSSLVersion">
  1884. Returns the SSL version used for the SSL connection.
  1885. </member>
  1886. <member name="M:CefSSLStatus.GetCertStatus">
  1887. Returns a bitmask containing any and all problems verifying the server
  1888. certificate.
  1889. </member>
  1890. <member name="M:CefSSLStatus.IsSecureConnection">
  1891. Returns true if the status is related to a secure SSL/TLS connection.
  1892. </member>
  1893. <member name="T:CefSSLStatus">
  1894. Class representing the SSL information for a navigation entry.
  1895. </member>
  1896. <member name="M:CefX509Certificate.GetPEMEncodedIssuerChain(std.vector&lt;scoped_refptr&lt;CefBinaryValue&gt;,std.allocator&lt;scoped_refptr&lt;CefBinaryValue&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1897. Returns the PEM encoded data for the certificate issuer chain.
  1898. If we failed to encode a certificate in the chain it is still
  1899. present in the array but is an empty string.
  1900. </member>
  1901. <member name="M:CefX509Certificate.GetDEREncodedIssuerChain(std.vector&lt;scoped_refptr&lt;CefBinaryValue&gt;,std.allocator&lt;scoped_refptr&lt;CefBinaryValue&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1902. Returns the DER encoded data for the certificate issuer chain.
  1903. If we failed to encode a certificate in the chain it is still
  1904. present in the array but is an empty string.
  1905. </member>
  1906. <member name="M:CefX509Certificate.GetIssuerChainSize">
  1907. Returns the number of certificates in the issuer chain.
  1908. If 0, the certificate is self-signed.
  1909. </member>
  1910. <member name="M:CefX509Certificate.GetPEMEncoded">
  1911. Returns the PEM encoded data for the X.509 certificate.
  1912. </member>
  1913. <member name="M:CefX509Certificate.GetDEREncoded">
  1914. Returns the DER encoded data for the X.509 certificate.
  1915. </member>
  1916. <member name="M:CefX509Certificate.GetValidExpiry">
  1917. Returns the date after which the X.509 certificate is invalid.
  1918. CefBaseTime.GetTimeT() will return 0 if no date was specified.
  1919. </member>
  1920. <member name="M:CefX509Certificate.GetValidStart">
  1921. Returns the date before which the X.509 certificate is invalid.
  1922. CefBaseTime.GetTimeT() will return 0 if no date was specified.
  1923. </member>
  1924. <member name="M:CefX509Certificate.GetSerialNumber">
  1925. Returns the DER encoded serial number for the X.509 certificate. The value
  1926. possibly includes a leading 00 byte.
  1927. </member>
  1928. <member name="M:CefX509Certificate.GetIssuer">
  1929. Returns the issuer of the X.509 certificate.
  1930. </member>
  1931. <member name="M:CefX509Certificate.GetSubject">
  1932. Returns the subject of the X.509 certificate. For HTTPS server
  1933. certificates this represents the web server. The common name of the
  1934. subject should match the host name of the web server.
  1935. </member>
  1936. <member name="T:CefX509Certificate">
  1937. Class representing a X.509 certificate.
  1938. </member>
  1939. <member name="M:CefX509CertPrincipal.GetOrganizationUnitNames(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1940. Retrieve the list of organization unit names.
  1941. </member>
  1942. <member name="M:CefX509CertPrincipal.GetOrganizationNames(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1943. Retrieve the list of organization names.
  1944. </member>
  1945. <member name="M:CefX509CertPrincipal.GetCountryName">
  1946. Returns the country name.
  1947. </member>
  1948. <member name="M:CefX509CertPrincipal.GetStateOrProvinceName">
  1949. Returns the state or province name.
  1950. </member>
  1951. <member name="M:CefX509CertPrincipal.GetLocalityName">
  1952. Returns the locality name.
  1953. </member>
  1954. <member name="M:CefX509CertPrincipal.GetCommonName">
  1955. Returns the common name.
  1956. </member>
  1957. <member name="M:CefX509CertPrincipal.GetDisplayName">
  1958. Returns a name that can be used to represent the issuer. It tries in this
  1959. order: Common Name (CN), Organization Name (O) and Organizational Unit
  1960. Name (OU) and returns the first non-empty one found.
  1961. </member>
  1962. <member name="T:CefX509CertPrincipal">
  1963. Class representing the issuer or subject field of an X.509 certificate.
  1964. </member>
  1965. <member name="M:CefFrame.SendProcessMessage(cef_process_id_t,scoped_refptr&lt;CefProcessMessage&gt;)">
  1966. Send a message to the specified |target_process|. Ownership of the message
  1967. contents will be transferred and the |message| reference will be
  1968. invalidated. Message delivery is not guaranteed in all cases (for example,
  1969. if the browser is closing, navigating, or if the target process crashes).
  1970. Send an ACK message back from the target process if confirmation is
  1971. required.
  1972. </member>
  1973. <member name="M:CefFrame.CreateURLRequest(scoped_refptr&lt;CefRequest&gt;,scoped_refptr&lt;CefURLRequestClient&gt;)">
  1974. Create a new URL request that will be treated as originating from this
  1975. frame and the associated browser. Use CefURLRequest::Create instead if you
  1976. do not want the request to have this association, in which case it may be
  1977. handled differently (see documentation on that method). A request created
  1978. with this method may only originate from the browser process, and will
  1979. behave as follows:
  1980. - It may be intercepted by the client via CefResourceRequestHandler or
  1981. CefSchemeHandlerFactory.
  1982. - POST data may only contain a single element of type PDE_TYPE_FILE or
  1983. PDE_TYPE_BYTES.
  1984. The |request| object will be marked as read-only after calling this
  1985. method.
  1986. </member>
  1987. <member name="M:CefFrame.VisitDOM(scoped_refptr&lt;CefDOMVisitor&gt;)">
  1988. Visit the DOM document. This method can only be called from the render
  1989. process.
  1990. </member>
  1991. <member name="M:CefFrame.GetV8Context">
  1992. Get the V8 context associated with the frame. This method can only be
  1993. called from the render process.
  1994. </member>
  1995. <member name="M:CefFrame.GetBrowser">
  1996. Returns the browser that this frame belongs to.
  1997. </member>
  1998. <member name="M:CefFrame.GetURL">
  1999. Returns the URL currently loaded in this frame.
  2000. </member>
  2001. <member name="M:CefFrame.GetParent">
  2002. Returns the parent of this frame or NULL if this is the main (top-level)
  2003. frame.
  2004. </member>
  2005. <member name="M:CefFrame.GetIdentifier">
  2006. Returns the globally unique identifier for this frame or empty if the
  2007. underlying frame does not yet exist.
  2008. </member>
  2009. <member name="M:CefFrame.GetName">
  2010. Returns the name for this frame. If the frame has an assigned name (for
  2011. example, set via the iframe "name" attribute) then that value will be
  2012. returned. Otherwise a unique name will be constructed based on the frame
  2013. parent hierarchy. The main (top-level) frame will always have an empty
  2014. name value.
  2015. </member>
  2016. <member name="M:CefFrame.IsFocused">
  2017. Returns true if this is the focused frame.
  2018. </member>
  2019. <member name="M:CefFrame.IsMain">
  2020. Returns true if this is the main (top-level) frame.
  2021. </member>
  2022. <member name="M:CefFrame.ExecuteJavaScript(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32)">
  2023. Execute a string of JavaScript code in this frame. The |script_url|
  2024. parameter is the URL where the script in question can be found, if any.
  2025. The renderer may request this URL to show the developer the source of the
  2026. error. The |start_line| parameter is the base line number to use for
  2027. error reporting.
  2028. </member>
  2029. <member name="M:CefFrame.LoadURL(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2030. Load the specified |url|.
  2031. </member>
  2032. <member name="M:CefFrame.LoadRequest(scoped_refptr&lt;CefRequest&gt;)">
  2033. Load the request represented by the |request| object.
  2034. WARNING: This method will fail with "bad IPC message" reason
  2035. INVALID_INITIATOR_ORIGIN (213) unless you first navigate to the
  2036. request origin using some other mechanism (LoadURL, link click, etc).
  2037. </member>
  2038. <member name="M:CefFrame.GetText(scoped_refptr&lt;CefStringVisitor&gt;)">
  2039. Retrieve this frame's display text as a string sent to the specified
  2040. visitor.
  2041. </member>
  2042. <member name="M:CefFrame.GetSource(scoped_refptr&lt;CefStringVisitor&gt;)">
  2043. Retrieve this frame's HTML source as a string sent to the specified
  2044. visitor.
  2045. </member>
  2046. <member name="M:CefFrame.ViewSource">
  2047. Save this frame's HTML source to a temporary file and open it in the
  2048. default text viewing application. This method can only be called from the
  2049. browser process.
  2050. </member>
  2051. <member name="M:CefFrame.SelectAll">
  2052. Execute select all in this frame.
  2053. </member>
  2054. <member name="M:CefFrame.Delete">
  2055. Execute delete in this frame.
  2056. </member>
  2057. <member name="M:CefFrame.Paste">
  2058. Execute paste in this frame.
  2059. </member>
  2060. <member name="M:CefFrame.Copy">
  2061. Execute copy in this frame.
  2062. </member>
  2063. <member name="M:CefFrame.Cut">
  2064. Execute cut in this frame.
  2065. </member>
  2066. <member name="M:CefFrame.Redo">
  2067. Execute redo in this frame.
  2068. </member>
  2069. <member name="M:CefFrame.Undo">
  2070. Execute undo in this frame.
  2071. </member>
  2072. <member name="M:CefFrame.IsValid">
  2073. True if this object is currently attached to a valid frame.
  2074. </member>
  2075. <member name="T:CefFrame">
  2076. Class used to represent a frame in the browser window. When used in the
  2077. browser process the methods of this class may be called on any thread unless
  2078. otherwise indicated in the comments. When used in the render process the
  2079. methods of this class may only be called on the main thread.
  2080. </member>
  2081. <member name="M:CefStringVisitor.Visit(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2082. Method that will be executed.
  2083. </member>
  2084. <member name="T:CefStringVisitor">
  2085. Implement this interface to receive string values asynchronously.
  2086. </member>
  2087. <member name="M:CefPostDataElement.GetBytes(System.UInt64,System.Void*)">
  2088. Read up to |size| bytes into |bytes| and return the number of bytes
  2089. actually read.
  2090. </member>
  2091. <member name="M:CefPostDataElement.GetBytesCount">
  2092. Return the number of bytes.
  2093. </member>
  2094. <member name="M:CefPostDataElement.GetFile">
  2095. Return the file name.
  2096. </member>
  2097. <member name="M:CefPostDataElement.GetType">
  2098. Return the type of this post data element.
  2099. </member>
  2100. <member name="M:CefPostDataElement.SetToBytes(System.UInt64,System.Void!System.Runtime.CompilerServices.IsConst*)">
  2101. The post data element will represent bytes. The bytes passed
  2102. in will be copied.
  2103. </member>
  2104. <member name="M:CefPostDataElement.SetToFile(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2105. The post data element will represent a file.
  2106. </member>
  2107. <member name="M:CefPostDataElement.SetToEmpty">
  2108. Remove all contents from the post data element.
  2109. </member>
  2110. <member name="M:CefPostDataElement.IsReadOnly">
  2111. Returns true if this object is read-only.
  2112. </member>
  2113. <member name="M:CefPostDataElement.Create">
  2114. Create a new CefPostDataElement object.
  2115. </member>
  2116. <member name="D:CefPostDataElement.Type">
  2117. Post data elements may represent either bytes or files.
  2118. </member>
  2119. <member name="T:CefPostDataElement">
  2120. Class used to represent a single element in the request post data. The
  2121. methods of this class may be called on any thread.
  2122. </member>
  2123. <member name="M:CefPostData.RemoveElements">
  2124. Remove all existing post data elements.
  2125. </member>
  2126. <member name="M:CefPostData.AddElement(scoped_refptr&lt;CefPostDataElement&gt;)">
  2127. Add the specified post data element. Returns true if the add succeeds.
  2128. </member>
  2129. <member name="M:CefPostData.RemoveElement(scoped_refptr&lt;CefPostDataElement&gt;)">
  2130. Remove the specified post data element. Returns true if the removal
  2131. succeeds.
  2132. </member>
  2133. <member name="M:CefPostData.GetElements(std.vector&lt;scoped_refptr&lt;CefPostDataElement&gt;,std.allocator&lt;scoped_refptr&lt;CefPostDataElement&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2134. Retrieve the post data elements.
  2135. </member>
  2136. <member name="M:CefPostData.GetElementCount">
  2137. Returns the number of existing post data elements.
  2138. </member>
  2139. <member name="M:CefPostData.HasExcludedElements">
  2140. Returns true if the underlying POST data includes elements that are not
  2141. represented by this CefPostData object (for example, multi-part file
  2142. upload data). Modifying CefPostData objects with excluded elements may
  2143. result in the request failing.
  2144. </member>
  2145. <member name="M:CefPostData.IsReadOnly">
  2146. Returns true if this object is read-only.
  2147. </member>
  2148. <member name="M:CefPostData.Create">
  2149. Create a new CefPostData object.
  2150. </member>
  2151. <member name="T:CefPostData">
  2152. Class used to represent post data for a web request. The methods of this
  2153. class may be called on any thread.
  2154. </member>
  2155. <member name="M:CefRequest.GetIdentifier">
  2156. Returns the globally unique identifier for this request or 0 if not
  2157. specified. Can be used by CefResourceRequestHandler implementations in the
  2158. browser process to track a single request across multiple callbacks.
  2159. </member>
  2160. <member name="M:CefRequest.GetTransitionType">
  2161. Get the transition type for this request. Only available in the browser
  2162. process and only applies to requests that represent a main frame or
  2163. sub-frame navigation.
  2164. </member>
  2165. <member name="M:CefRequest.GetResourceType">
  2166. Get the resource type for this request. Only available in the browser
  2167. process.
  2168. </member>
  2169. <member name="M:CefRequest.SetFirstPartyForCookies(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2170. Set the URL to the first party for cookies used in combination with
  2171. CefURLRequest.
  2172. </member>
  2173. <member name="M:CefRequest.GetFirstPartyForCookies">
  2174. Get the URL to the first party for cookies used in combination with
  2175. CefURLRequest.
  2176. </member>
  2177. <member name="M:CefRequest.SetFlags(System.Int32)">
  2178. Set the flags used in combination with CefURLRequest. See
  2179. cef_urlrequest_flags_t for supported values.
  2180. </member>
  2181. <member name="M:CefRequest.GetFlags">
  2182. Get the flags used in combination with CefURLRequest. See
  2183. cef_urlrequest_flags_t for supported values.
  2184. </member>
  2185. <member name="M:CefRequest.Set(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefPostData&gt;,std.multimap&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;,std.less&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;,std.allocator&lt;std.pair&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst,CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2186. Set all values at one time.
  2187. </member>
  2188. <member name="M:CefRequest.SetHeaderByName(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean)">
  2189. Set the header |name| to |value|. If |overwrite| is true any existing
  2190. values will be replaced with the new value. If |overwrite| is false any
  2191. existing values will not be overwritten. The Referer value cannot be set
  2192. using this method.
  2193. </member>
  2194. <member name="M:CefRequest.GetHeaderByName(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2195. Returns the first header value for |name| or an empty string if not found.
  2196. Will not return the Referer value if any. Use GetHeaderMap instead if
  2197. |name| might have multiple values.
  2198. </member>
  2199. <member name="M:CefRequest.SetHeaderMap(std.multimap&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;,std.less&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;,std.allocator&lt;std.pair&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst,CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2200. Set the header values. If a Referer value exists in the header map it will
  2201. be removed and ignored.
  2202. </member>
  2203. <member name="M:CefRequest.GetHeaderMap(std.multimap&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;,std.less&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;,std.allocator&lt;std.pair&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst,CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2204. Get the header values. Will not include the Referer value if any.
  2205. </member>
  2206. <member name="M:CefRequest.SetPostData(scoped_refptr&lt;CefPostData&gt;)">
  2207. Set the post data.
  2208. </member>
  2209. <member name="M:CefRequest.GetPostData">
  2210. Get the post data.
  2211. </member>
  2212. <member name="M:CefRequest.GetReferrerPolicy">
  2213. Get the referrer policy.
  2214. </member>
  2215. <member name="M:CefRequest.GetReferrerURL">
  2216. Get the referrer URL.
  2217. </member>
  2218. <member name="M:CefRequest.SetReferrer(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_referrer_policy_t)">
  2219. Set the referrer URL and policy. If non-empty the referrer URL must be
  2220. fully qualified with an HTTP or HTTPS scheme component. Any username,
  2221. password or ref component will be removed.
  2222. </member>
  2223. <member name="M:CefRequest.SetMethod(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2224. Set the request method type.
  2225. </member>
  2226. <member name="M:CefRequest.GetMethod">
  2227. Get the request method type. The value will default to POST if post data
  2228. is provided and GET otherwise.
  2229. </member>
  2230. <member name="M:CefRequest.SetURL(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2231. Set the fully qualified URL.
  2232. </member>
  2233. <member name="M:CefRequest.GetURL">
  2234. Get the fully qualified URL.
  2235. </member>
  2236. <member name="M:CefRequest.IsReadOnly">
  2237. Returns true if this object is read-only.
  2238. </member>
  2239. <member name="M:CefRequest.Create">
  2240. Create a new CefRequest object.
  2241. </member>
  2242. <member name="T:CefRequest">
  2243. Class used to represent a web request. The methods of this class may be
  2244. called on any thread.
  2245. </member>
  2246. <member name="M:CefProcessMessage.GetSharedMemoryRegion">
  2247. Returns the shared memory region.
  2248. Returns nullptr when message contains an argument list.
  2249. </member>
  2250. <member name="M:CefProcessMessage.GetArgumentList">
  2251. Returns the list of arguments.
  2252. Returns nullptr when message contains a shared memory region.
  2253. </member>
  2254. <member name="M:CefProcessMessage.GetName">
  2255. Returns the message name.
  2256. </member>
  2257. <member name="M:CefProcessMessage.Copy">
  2258. Returns a writable copy of this object.
  2259. Returns nullptr when message contains a shared memory region.
  2260. </member>
  2261. <member name="M:CefProcessMessage.IsReadOnly">
  2262. Returns true if the values of this object are read-only. Some APIs may
  2263. expose read-only objects.
  2264. </member>
  2265. <member name="M:CefProcessMessage.IsValid">
  2266. Returns true if this object is valid. Do not call any other methods if
  2267. this function returns false.
  2268. </member>
  2269. <member name="M:CefProcessMessage.Create(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2270. Create a new CefProcessMessage object with the specified name.
  2271. </member>
  2272. <member name="T:CefProcessMessage">
  2273. Class representing a message. Can be used on any process and thread.
  2274. </member>
  2275. <member name="M:CefSharedMemoryRegion.Memory">
  2276. Returns the pointer to the memory. Returns nullptr for invalid instances.
  2277. The returned pointer is only valid for the life span of this object.
  2278. </member>
  2279. <member name="M:CefSharedMemoryRegion.Size">
  2280. Returns the size of the mapping in bytes. Returns 0 for invalid instances.
  2281. </member>
  2282. <member name="M:CefSharedMemoryRegion.IsValid">
  2283. Returns true if the mapping is valid.
  2284. </member>
  2285. <member name="T:CefSharedMemoryRegion">
  2286. Class that wraps platform-dependent share memory region mapping.
  2287. </member>
  2288. <member name="M:CefDOMNode.GetElementBounds">
  2289. Returns the bounds of the element in device pixels. Use
  2290. "window.devicePixelRatio" to convert to/from CSS pixels.
  2291. </member>
  2292. <member name="M:CefDOMNode.GetElementInnerText">
  2293. Returns the inner text of the element.
  2294. </member>
  2295. <member name="M:CefDOMNode.SetElementAttribute(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2296. Set the value for the element attribute named |attrName|. Returns true on
  2297. success.
  2298. </member>
  2299. <member name="M:CefDOMNode.GetElementAttributes(std.map&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;,std.less&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;,std.allocator&lt;std.pair&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst,CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2300. Returns a map of all element attributes.
  2301. </member>
  2302. <member name="M:CefDOMNode.GetElementAttribute(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2303. Returns the element attribute named |attrName|.
  2304. </member>
  2305. <member name="M:CefDOMNode.HasElementAttribute(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2306. Returns true if this element has an attribute named |attrName|.
  2307. </member>
  2308. <member name="M:CefDOMNode.HasElementAttributes">
  2309. Returns true if this element has attributes.
  2310. </member>
  2311. <member name="M:CefDOMNode.GetElementTagName">
  2312. Returns the tag name of this element.
  2313. </member>
  2314. <member name="M:CefDOMNode.GetLastChild">
  2315. Returns the last child node.
  2316. </member>
  2317. <member name="M:CefDOMNode.GetFirstChild">
  2318. Return the first child node.
  2319. </member>
  2320. <member name="M:CefDOMNode.HasChildren">
  2321. Returns true if this node has child nodes.
  2322. </member>
  2323. <member name="M:CefDOMNode.GetNextSibling">
  2324. Returns the next sibling node.
  2325. </member>
  2326. <member name="M:CefDOMNode.GetPreviousSibling">
  2327. Returns the previous sibling node.
  2328. </member>
  2329. <member name="M:CefDOMNode.GetParent">
  2330. Returns the parent node.
  2331. </member>
  2332. <member name="M:CefDOMNode.GetDocument">
  2333. Returns the document associated with this node.
  2334. </member>
  2335. <member name="M:CefDOMNode.GetAsMarkup">
  2336. Returns the contents of this node as markup.
  2337. </member>
  2338. <member name="M:CefDOMNode.SetValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2339. Set the value of this node. Returns true on success.
  2340. </member>
  2341. <member name="M:CefDOMNode.GetValue">
  2342. Returns the value of this node.
  2343. </member>
  2344. <member name="M:CefDOMNode.GetName">
  2345. Returns the name of this node.
  2346. </member>
  2347. <member name="M:CefDOMNode.IsSame(scoped_refptr&lt;CefDOMNode&gt;)">
  2348. Returns true if this object is pointing to the same handle as |that|
  2349. object.
  2350. </member>
  2351. <member name="M:CefDOMNode.GetFormControlElementType">
  2352. Returns the type of this form control element node.
  2353. </member>
  2354. <member name="M:CefDOMNode.IsFormControlElement">
  2355. Returns true if this is a form control element node.
  2356. </member>
  2357. <member name="M:CefDOMNode.IsEditable">
  2358. Returns true if this is an editable node.
  2359. </member>
  2360. <member name="M:CefDOMNode.IsElement">
  2361. Returns true if this is an element node.
  2362. </member>
  2363. <member name="M:CefDOMNode.IsText">
  2364. Returns true if this is a text node.
  2365. </member>
  2366. <member name="M:CefDOMNode.GetType">
  2367. Returns the type for this node.
  2368. </member>
  2369. <member name="T:CefDOMNode">
  2370. Class used to represent a DOM node. The methods of this class should only be
  2371. called on the render process main thread.
  2372. </member>
  2373. <member name="M:CefDOMDocument.GetCompleteURL(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2374. Returns a complete URL based on the document base URL and the specified
  2375. partial URL.
  2376. </member>
  2377. <member name="M:CefDOMDocument.GetBaseURL">
  2378. Returns the base URL for the document.
  2379. </member>
  2380. <member name="M:CefDOMDocument.GetSelectionAsText">
  2381. Returns the contents of this selection as text.
  2382. </member>
  2383. <member name="M:CefDOMDocument.GetSelectionAsMarkup">
  2384. Returns the contents of this selection as markup.
  2385. </member>
  2386. <member name="M:CefDOMDocument.GetSelectionEndOffset">
  2387. Returns the selection offset within the end node.
  2388. </member>
  2389. <member name="M:CefDOMDocument.GetSelectionStartOffset">
  2390. Returns the selection offset within the start node.
  2391. </member>
  2392. <member name="M:CefDOMDocument.HasSelection">
  2393. Returns true if a portion of the document is selected.
  2394. </member>
  2395. <member name="M:CefDOMDocument.GetFocusedNode">
  2396. Returns the node that currently has keyboard focus.
  2397. </member>
  2398. <member name="M:CefDOMDocument.GetElementById(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2399. Returns the document element with the specified ID value.
  2400. </member>
  2401. <member name="M:CefDOMDocument.GetTitle">
  2402. Returns the title of an HTML document.
  2403. </member>
  2404. <member name="M:CefDOMDocument.GetHead">
  2405. Returns the HEAD node of an HTML document.
  2406. </member>
  2407. <member name="M:CefDOMDocument.GetBody">
  2408. Returns the BODY node of an HTML document.
  2409. </member>
  2410. <member name="M:CefDOMDocument.GetDocument">
  2411. Returns the root document node.
  2412. </member>
  2413. <member name="M:CefDOMDocument.GetType">
  2414. Returns the document type.
  2415. </member>
  2416. <member name="T:CefDOMDocument">
  2417. Class used to represent a DOM document. The methods of this class should
  2418. only be called on the render process main thread thread.
  2419. </member>
  2420. <member name="M:CefDOMVisitor.Visit(scoped_refptr&lt;CefDOMDocument&gt;)">
  2421. Method executed for visiting the DOM. The document object passed to this
  2422. method represents a snapshot of the DOM at the time this method is
  2423. executed. DOM objects are only valid for the scope of this method. Do not
  2424. keep references to or attempt to access any DOM objects outside the scope
  2425. of this method.
  2426. </member>
  2427. <member name="T:CefDOMVisitor">
  2428. Interface to implement for visiting the DOM. The methods of this class will
  2429. be called on the render process main thread.
  2430. </member>
  2431. <member name="M:CefDragData.HasImage">
  2432. Returns true if an image representation of drag data is available.
  2433. </member>
  2434. <member name="M:CefDragData.GetImageHotspot">
  2435. Get the image hotspot (drag start location relative to image dimensions).
  2436. </member>
  2437. <member name="M:CefDragData.GetImage">
  2438. Get the image representation of drag data. May return NULL if no image
  2439. representation is available.
  2440. </member>
  2441. <member name="M:CefDragData.ClearFilenames">
  2442. Clear list of filenames.
  2443. </member>
  2444. <member name="M:CefDragData.AddFile(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2445. Add a file that is being dragged into the webview.
  2446. </member>
  2447. <member name="M:CefDragData.ResetFileContents">
  2448. Reset the file contents. You should do this before calling
  2449. CefBrowserHost::DragTargetDragEnter as the web view does not allow us to
  2450. drag in this kind of data.
  2451. </member>
  2452. <member name="M:CefDragData.SetFragmentBaseURL(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2453. Set the base URL that the fragment came from.
  2454. </member>
  2455. <member name="M:CefDragData.SetFragmentHtml(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2456. Set the text/html fragment that is being dragged.
  2457. </member>
  2458. <member name="M:CefDragData.SetFragmentText(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2459. Set the plain text fragment that is being dragged.
  2460. </member>
  2461. <member name="M:CefDragData.SetLinkMetadata(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2462. Set the metadata associated with the link being dragged.
  2463. </member>
  2464. <member name="M:CefDragData.SetLinkTitle(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2465. Set the title associated with the link being dragged.
  2466. </member>
  2467. <member name="M:CefDragData.SetLinkURL(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2468. Set the link URL that is being dragged.
  2469. </member>
  2470. <member name="M:CefDragData.GetFilePaths(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2471. Retrieve the list of file paths that are being dragged into the browser
  2472. window.
  2473. </member>
  2474. <member name="M:CefDragData.GetFileNames(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2475. Retrieve the list of file names that are being dragged into the browser
  2476. window.
  2477. </member>
  2478. <member name="M:CefDragData.GetFileContents(scoped_refptr&lt;CefStreamWriter&gt;)">
  2479. Write the contents of the file being dragged out of the web view into
  2480. |writer|. Returns the number of bytes sent to |writer|. If |writer| is
  2481. NULL this method will return the size of the file contents in bytes.
  2482. Call GetFileName() to get a suggested name for the file.
  2483. </member>
  2484. <member name="M:CefDragData.GetFileName">
  2485. Return the name of the file being dragged out of the browser window.
  2486. </member>
  2487. <member name="M:CefDragData.GetFragmentBaseURL">
  2488. Return the base URL that the fragment came from. This value is used for
  2489. resolving relative URLs and may be empty.
  2490. </member>
  2491. <member name="M:CefDragData.GetFragmentHtml">
  2492. Return the text/html fragment that is being dragged.
  2493. </member>
  2494. <member name="M:CefDragData.GetFragmentText">
  2495. Return the plain text fragment that is being dragged.
  2496. </member>
  2497. <member name="M:CefDragData.GetLinkMetadata">
  2498. Return the metadata, if any, associated with the link being dragged.
  2499. </member>
  2500. <member name="M:CefDragData.GetLinkTitle">
  2501. Return the title associated with the link being dragged.
  2502. </member>
  2503. <member name="M:CefDragData.GetLinkURL">
  2504. Return the link URL that is being dragged.
  2505. </member>
  2506. <member name="M:CefDragData.IsFile">
  2507. Returns true if the drag data is a file.
  2508. </member>
  2509. <member name="M:CefDragData.IsFragment">
  2510. Returns true if the drag data is a text or html fragment.
  2511. </member>
  2512. <member name="M:CefDragData.IsLink">
  2513. Returns true if the drag data is a link.
  2514. </member>
  2515. <member name="M:CefDragData.IsReadOnly">
  2516. Returns true if this object is read-only.
  2517. </member>
  2518. <member name="M:CefDragData.Clone">
  2519. Returns a copy of the current object.
  2520. </member>
  2521. <member name="M:CefDragData.Create">
  2522. Create a new CefDragData object.
  2523. </member>
  2524. <member name="T:CefDragData">
  2525. Class used to represent drag data. The methods of this class may be called
  2526. on any thread.
  2527. </member>
  2528. <member name="M:CefStreamWriter.MayBlock">
  2529. Returns true if this writer performs work like accessing the file system
  2530. which may block. Used as a hint for determining the thread to access the
  2531. writer from.
  2532. </member>
  2533. <member name="M:CefStreamWriter.Flush">
  2534. Flush the stream.
  2535. </member>
  2536. <member name="M:CefStreamWriter.Tell">
  2537. Return the current offset position.
  2538. </member>
  2539. <member name="M:CefStreamWriter.Seek(System.Int64,System.Int32)">
  2540. Seek to the specified offset position. |whence| may be any one of
  2541. SEEK_CUR, SEEK_END or SEEK_SET. Returns zero on success and non-zero on
  2542. failure.
  2543. </member>
  2544. <member name="M:CefStreamWriter.Write(System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt64,System.UInt64)">
  2545. Write raw binary data.
  2546. </member>
  2547. <member name="M:CefStreamWriter.CreateForHandler(scoped_refptr&lt;CefWriteHandler&gt;)">
  2548. Create a new CefStreamWriter object for a custom handler.
  2549. </member>
  2550. <member name="M:CefStreamWriter.CreateForFile(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2551. Create a new CefStreamWriter object for a file.
  2552. </member>
  2553. <member name="T:CefStreamWriter">
  2554. Class used to write data to a stream. The methods of this class may be
  2555. called on any thread.
  2556. </member>
  2557. <member name="M:CefWriteHandler.MayBlock">
  2558. Return true if this handler performs work like accessing the file system
  2559. which may block. Used as a hint for determining the thread to access the
  2560. handler from.
  2561. </member>
  2562. <member name="M:CefWriteHandler.Flush">
  2563. Flush the stream.
  2564. </member>
  2565. <member name="M:CefWriteHandler.Tell">
  2566. Return the current offset position.
  2567. </member>
  2568. <member name="M:CefWriteHandler.Seek(System.Int64,System.Int32)">
  2569. Seek to the specified offset position. |whence| may be any one of
  2570. SEEK_CUR, SEEK_END or SEEK_SET. Return zero on success and non-zero on
  2571. failure.
  2572. </member>
  2573. <member name="M:CefWriteHandler.Write(System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt64,System.UInt64)">
  2574. Write raw binary data.
  2575. </member>
  2576. <member name="T:CefWriteHandler">
  2577. Interface the client can implement to provide a custom stream writer. The
  2578. methods of this class may be called on any thread.
  2579. </member>
  2580. <member name="M:CefStreamReader.MayBlock">
  2581. Returns true if this reader performs work like accessing the file system
  2582. which may block. Used as a hint for determining the thread to access the
  2583. reader from.
  2584. </member>
  2585. <member name="M:CefStreamReader.Eof">
  2586. Return non-zero if at end of file.
  2587. </member>
  2588. <member name="M:CefStreamReader.Tell">
  2589. Return the current offset position.
  2590. </member>
  2591. <member name="M:CefStreamReader.Seek(System.Int64,System.Int32)">
  2592. Seek to the specified offset position. |whence| may be any one of
  2593. SEEK_CUR, SEEK_END or SEEK_SET. Returns zero on success and non-zero on
  2594. failure.
  2595. </member>
  2596. <member name="M:CefStreamReader.Read(System.Void*,System.UInt64,System.UInt64)">
  2597. Read raw binary data.
  2598. </member>
  2599. <member name="M:CefStreamReader.CreateForHandler(scoped_refptr&lt;CefReadHandler&gt;)">
  2600. Create a new CefStreamReader object from a custom handler.
  2601. </member>
  2602. <member name="M:CefStreamReader.CreateForData(System.Void*,System.UInt64)">
  2603. Create a new CefStreamReader object from data.
  2604. </member>
  2605. <member name="M:CefStreamReader.CreateForFile(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2606. Create a new CefStreamReader object from a file.
  2607. </member>
  2608. <member name="T:CefStreamReader">
  2609. Class used to read data from a stream. The methods of this class may be
  2610. called on any thread.
  2611. </member>
  2612. <member name="M:CefReadHandler.MayBlock">
  2613. Return true if this handler performs work like accessing the file system
  2614. which may block. Used as a hint for determining the thread to access the
  2615. handler from.
  2616. </member>
  2617. <member name="M:CefReadHandler.Eof">
  2618. Return non-zero if at end of file.
  2619. </member>
  2620. <member name="M:CefReadHandler.Tell">
  2621. Return the current offset position.
  2622. </member>
  2623. <member name="M:CefReadHandler.Seek(System.Int64,System.Int32)">
  2624. Seek to the specified offset position. |whence| may be any one of
  2625. SEEK_CUR, SEEK_END or SEEK_SET. Return zero on success and non-zero on
  2626. failure.
  2627. </member>
  2628. <member name="M:CefReadHandler.Read(System.Void*,System.UInt64,System.UInt64)">
  2629. Read raw binary data.
  2630. </member>
  2631. <member name="T:CefReadHandler">
  2632. Interface the client can implement to provide a custom stream reader. The
  2633. methods of this class may be called on any thread.
  2634. </member>
  2635. <member name="M:CefImage.GetAsJPEG(System.Single,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2636. Returns the JPEG representation that most closely matches |scale_factor|.
  2637. |quality| determines the compression level with 0 == lowest and 100 ==
  2638. highest. The JPEG format does not support alpha transparency and the alpha
  2639. channel, if any, will be discarded. |pixel_width| and |pixel_height| are
  2640. the output representation size in pixel coordinates. Returns a
  2641. CefBinaryValue containing the JPEG image data on success or NULL on
  2642. failure.
  2643. </member>
  2644. <member name="M:CefImage.GetAsPNG(System.Single,System.Boolean,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2645. Returns the PNG representation that most closely matches |scale_factor|.
  2646. If |with_transparency| is true any alpha transparency in the image will be
  2647. represented in the resulting PNG data. |pixel_width| and |pixel_height|
  2648. are the output representation size in pixel coordinates. Returns a
  2649. CefBinaryValue containing the PNG image data on success or NULL on
  2650. failure.
  2651. </member>
  2652. <member name="M:CefImage.GetAsBitmap(System.Single,cef_color_type_t,cef_alpha_type_t,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2653. Returns the bitmap representation that most closely matches
  2654. |scale_factor|. Only 32-bit RGBA/BGRA formats are supported. |color_type|
  2655. and |alpha_type| values specify the desired output pixel format.
  2656. |pixel_width| and |pixel_height| are the output representation size in
  2657. pixel coordinates. Returns a CefBinaryValue containing the pixel data on
  2658. success or NULL on failure.
  2659. </member>
  2660. <member name="M:CefImage.GetRepresentationInfo(System.Single,System.Single*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2661. Returns information for the representation that most closely matches
  2662. |scale_factor|. |actual_scale_factor| is the actual scale factor for the
  2663. representation. |pixel_width| and |pixel_height| are the representation
  2664. size in pixel coordinates. Returns true on success.
  2665. </member>
  2666. <member name="M:CefImage.RemoveRepresentation(System.Single)">
  2667. Removes the representation for |scale_factor|. Returns true on success.
  2668. </member>
  2669. <member name="M:CefImage.HasRepresentation(System.Single)">
  2670. Returns true if this image contains a representation for |scale_factor|.
  2671. </member>
  2672. <member name="M:CefImage.GetHeight">
  2673. Returns the image height in density independent pixel (DIP) units.
  2674. </member>
  2675. <member name="M:CefImage.GetWidth">
  2676. Returns the image width in density independent pixel (DIP) units.
  2677. </member>
  2678. <member name="M:CefImage.AddJPEG(System.Single,System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt64)">
  2679. Create a JPEG image representation for |scale_factor|. |jpeg_data| is the
  2680. image data of size |jpeg_data_size|. The JPEG format does not support
  2681. transparency so the alpha byte will be set to 0xFF for all pixels.
  2682. </member>
  2683. <member name="M:CefImage.AddPNG(System.Single,System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt64)">
  2684. Add a PNG image representation for |scale_factor|. |png_data| is the image
  2685. data of size |png_data_size|. Any alpha transparency in the PNG data will
  2686. be maintained.
  2687. </member>
  2688. <member name="M:CefImage.AddBitmap(System.Single,System.Int32,System.Int32,cef_color_type_t,cef_alpha_type_t,System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt64)">
  2689. Add a bitmap image representation for |scale_factor|. Only 32-bit
  2690. RGBA/BGRA formats are supported. |pixel_width| and |pixel_height| are the
  2691. bitmap representation size in pixel coordinates. |pixel_data| is the array
  2692. of pixel data and should be |pixel_width| x |pixel_height| x 4 bytes in
  2693. size. |color_type| and |alpha_type| values specify the pixel format.
  2694. </member>
  2695. <member name="M:CefImage.IsSame(scoped_refptr&lt;CefImage&gt;)">
  2696. Returns true if this Image and |that| Image share the same underlying
  2697. storage. Will also return true if both images are empty.
  2698. </member>
  2699. <member name="M:CefImage.IsEmpty">
  2700. Returns true if this Image is empty.
  2701. </member>
  2702. <member name="M:CefImage.CreateImage">
  2703. Create a new CefImage. It will initially be empty. Use the Add*() methods
  2704. to add representations at different scale factors.
  2705. </member>
  2706. <member name="T:CefImage">
  2707. Container for a single image represented at different scale factors. All
  2708. image representations should be the same size in density independent pixel
  2709. (DIP) units. For example, if the image at scale factor 1.0 is 100x100 pixels
  2710. then the image at scale factor 2.0 should be 200x200 pixels -- both images
  2711. will display with a DIP size of 100x100 units. The methods of this class can
  2712. be called on any browser process thread.
  2713. </member>
  2714. <member name="M:CefListValue.SetList(System.UInt64,scoped_refptr&lt;CefListValue&gt;)">
  2715. Sets the value at the specified index as type list. Returns true if the
  2716. value was set successfully. If |value| is currently owned by another
  2717. object then the value will be copied and the |value| reference will not
  2718. change. Otherwise, ownership will be transferred to this object and the
  2719. |value| reference will be invalidated.
  2720. </member>
  2721. <member name="M:CefListValue.SetDictionary(System.UInt64,scoped_refptr&lt;CefDictionaryValue&gt;)">
  2722. Sets the value at the specified index as type dict. Returns true if the
  2723. value was set successfully. If |value| is currently owned by another
  2724. object then the value will be copied and the |value| reference will not
  2725. change. Otherwise, ownership will be transferred to this object and the
  2726. |value| reference will be invalidated.
  2727. </member>
  2728. <member name="M:CefListValue.SetBinary(System.UInt64,scoped_refptr&lt;CefBinaryValue&gt;)">
  2729. Sets the value at the specified index as type binary. Returns true if the
  2730. value was set successfully. If |value| is currently owned by another
  2731. object then the value will be copied and the |value| reference will not
  2732. change. Otherwise, ownership will be transferred to this object and the
  2733. |value| reference will be invalidated.
  2734. </member>
  2735. <member name="M:CefListValue.SetString(System.UInt64,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2736. Sets the value at the specified index as type string. Returns true if the
  2737. value was set successfully.
  2738. </member>
  2739. <member name="M:CefListValue.SetDouble(System.UInt64,System.Double)">
  2740. Sets the value at the specified index as type double. Returns true if the
  2741. value was set successfully.
  2742. </member>
  2743. <member name="M:CefListValue.SetInt(System.UInt64,System.Int32)">
  2744. Sets the value at the specified index as type int. Returns true if the
  2745. value was set successfully.
  2746. </member>
  2747. <member name="M:CefListValue.SetBool(System.UInt64,System.Boolean)">
  2748. Sets the value at the specified index as type bool. Returns true if the
  2749. value was set successfully.
  2750. </member>
  2751. <member name="M:CefListValue.SetNull(System.UInt64)">
  2752. Sets the value at the specified index as type null. Returns true if the
  2753. value was set successfully.
  2754. </member>
  2755. <member name="M:CefListValue.SetValue(System.UInt64,scoped_refptr&lt;CefValue&gt;)">
  2756. Sets the value at the specified index. Returns true if the value was set
  2757. successfully. If |value| represents simple data then the underlying data
  2758. will be copied and modifications to |value| will not modify this object.
  2759. If |value| represents complex data (binary, dictionary or list) then the
  2760. underlying data will be referenced and modifications to |value| will
  2761. modify this object.
  2762. </member>
  2763. <member name="M:CefListValue.GetList(System.UInt64)">
  2764. Returns the value at the specified index as type list. The returned
  2765. value will reference existing data and modifications to the value will
  2766. modify this object.
  2767. </member>
  2768. <member name="M:CefListValue.GetDictionary(System.UInt64)">
  2769. Returns the value at the specified index as type dictionary. The returned
  2770. value will reference existing data and modifications to the value will
  2771. modify this object.
  2772. </member>
  2773. <member name="M:CefListValue.GetBinary(System.UInt64)">
  2774. Returns the value at the specified index as type binary. The returned
  2775. value will reference existing data.
  2776. </member>
  2777. <member name="M:CefListValue.GetString(System.UInt64)">
  2778. Returns the value at the specified index as type string.
  2779. </member>
  2780. <member name="M:CefListValue.GetDouble(System.UInt64)">
  2781. Returns the value at the specified index as type double.
  2782. </member>
  2783. <member name="M:CefListValue.GetInt(System.UInt64)">
  2784. Returns the value at the specified index as type int.
  2785. </member>
  2786. <member name="M:CefListValue.GetBool(System.UInt64)">
  2787. Returns the value at the specified index as type bool.
  2788. </member>
  2789. <member name="M:CefListValue.GetValue(System.UInt64)">
  2790. Returns the value at the specified index. For simple types the returned
  2791. value will copy existing data and modifications to the value will not
  2792. modify this object. For complex types (binary, dictionary and list) the
  2793. returned value will reference existing data and modifications to the value
  2794. will modify this object.
  2795. </member>
  2796. <member name="M:CefListValue.GetType(System.UInt64)">
  2797. Returns the value type at the specified index.
  2798. </member>
  2799. <member name="M:CefListValue.Remove(System.UInt64)">
  2800. Removes the value at the specified index.
  2801. </member>
  2802. <member name="M:CefListValue.Clear">
  2803. Removes all values. Returns true on success.
  2804. </member>
  2805. <member name="M:CefListValue.GetSize">
  2806. Returns the number of values.
  2807. </member>
  2808. <member name="M:CefListValue.SetSize(System.UInt64)">
  2809. Sets the number of values. If the number of values is expanded all
  2810. new value slots will default to type null. Returns true on success.
  2811. </member>
  2812. <member name="M:CefListValue.Copy">
  2813. Returns a writable copy of this object.
  2814. </member>
  2815. <member name="M:CefListValue.IsEqual(scoped_refptr&lt;CefListValue&gt;)">
  2816. Returns true if this object and |that| object have an equivalent
  2817. underlying value but are not necessarily the same object.
  2818. </member>
  2819. <member name="M:CefListValue.IsSame(scoped_refptr&lt;CefListValue&gt;)">
  2820. Returns true if this object and |that| object have the same underlying
  2821. data. If true modifications to this object will also affect |that| object
  2822. and vice-versa.
  2823. </member>
  2824. <member name="M:CefListValue.IsReadOnly">
  2825. Returns true if the values of this object are read-only. Some APIs may
  2826. expose read-only objects.
  2827. </member>
  2828. <member name="M:CefListValue.IsOwned">
  2829. Returns true if this object is currently owned by another object.
  2830. </member>
  2831. <member name="M:CefListValue.IsValid">
  2832. Returns true if this object is valid. This object may become invalid if
  2833. the underlying data is owned by another object (e.g. list or dictionary)
  2834. and that other object is then modified or destroyed. Do not call any other
  2835. methods if this method returns false.
  2836. </member>
  2837. <member name="M:CefListValue.Create">
  2838. Creates a new object that is not owned by any other object.
  2839. </member>
  2840. <member name="T:CefListValue">
  2841. Class representing a list value. Can be used on any process and thread.
  2842. </member>
  2843. <member name="M:CefDictionaryValue.SetList(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefListValue&gt;)">
  2844. Sets the value at the specified key as type list. Returns true if the
  2845. value was set successfully. If |value| is currently owned by another
  2846. object then the value will be copied and the |value| reference will not
  2847. change. Otherwise, ownership will be transferred to this object and the
  2848. |value| reference will be invalidated.
  2849. </member>
  2850. <member name="M:CefDictionaryValue.SetDictionary(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefDictionaryValue&gt;)">
  2851. Sets the value at the specified key as type dict. Returns true if the
  2852. value was set successfully. If |value| is currently owned by another
  2853. object then the value will be copied and the |value| reference will not
  2854. change. Otherwise, ownership will be transferred to this object and the
  2855. |value| reference will be invalidated.
  2856. </member>
  2857. <member name="M:CefDictionaryValue.SetBinary(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefBinaryValue&gt;)">
  2858. Sets the value at the specified key as type binary. Returns true if the
  2859. value was set successfully. If |value| is currently owned by another
  2860. object then the value will be copied and the |value| reference will not
  2861. change. Otherwise, ownership will be transferred to this object and the
  2862. |value| reference will be invalidated.
  2863. </member>
  2864. <member name="M:CefDictionaryValue.SetString(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2865. Sets the value at the specified key as type string. Returns true if the
  2866. value was set successfully.
  2867. </member>
  2868. <member name="M:CefDictionaryValue.SetDouble(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Double)">
  2869. Sets the value at the specified key as type double. Returns true if the
  2870. value was set successfully.
  2871. </member>
  2872. <member name="M:CefDictionaryValue.SetInt(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32)">
  2873. Sets the value at the specified key as type int. Returns true if the
  2874. value was set successfully.
  2875. </member>
  2876. <member name="M:CefDictionaryValue.SetBool(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean)">
  2877. Sets the value at the specified key as type bool. Returns true if the
  2878. value was set successfully.
  2879. </member>
  2880. <member name="M:CefDictionaryValue.SetNull(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2881. Sets the value at the specified key as type null. Returns true if the
  2882. value was set successfully.
  2883. </member>
  2884. <member name="M:CefDictionaryValue.SetValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefValue&gt;)">
  2885. Sets the value at the specified key. Returns true if the value was set
  2886. successfully. If |value| represents simple data then the underlying data
  2887. will be copied and modifications to |value| will not modify this object.
  2888. If |value| represents complex data (binary, dictionary or list) then the
  2889. underlying data will be referenced and modifications to |value| will
  2890. modify this object.
  2891. </member>
  2892. <member name="M:CefDictionaryValue.GetList(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2893. Returns the value at the specified key as type list. The returned value
  2894. will reference existing data and modifications to the value will modify
  2895. this object.
  2896. </member>
  2897. <member name="M:CefDictionaryValue.GetDictionary(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2898. Returns the value at the specified key as type dictionary. The returned
  2899. value will reference existing data and modifications to the value will
  2900. modify this object.
  2901. </member>
  2902. <member name="M:CefDictionaryValue.GetBinary(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2903. Returns the value at the specified key as type binary. The returned
  2904. value will reference existing data.
  2905. </member>
  2906. <member name="M:CefDictionaryValue.GetString(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2907. Returns the value at the specified key as type string.
  2908. </member>
  2909. <member name="M:CefDictionaryValue.GetDouble(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2910. Returns the value at the specified key as type double.
  2911. </member>
  2912. <member name="M:CefDictionaryValue.GetInt(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2913. Returns the value at the specified key as type int.
  2914. </member>
  2915. <member name="M:CefDictionaryValue.GetBool(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2916. Returns the value at the specified key as type bool.
  2917. </member>
  2918. <member name="M:CefDictionaryValue.GetValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2919. Returns the value at the specified key. For simple types the returned
  2920. value will copy existing data and modifications to the value will not
  2921. modify this object. For complex types (binary, dictionary and list) the
  2922. returned value will reference existing data and modifications to the value
  2923. will modify this object.
  2924. </member>
  2925. <member name="M:CefDictionaryValue.GetType(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2926. Returns the value type for the specified key.
  2927. </member>
  2928. <member name="M:CefDictionaryValue.Remove(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2929. Removes the value at the specified key. Returns true is the value was
  2930. removed successfully.
  2931. </member>
  2932. <member name="M:CefDictionaryValue.GetKeys(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2933. Reads all keys for this dictionary into the specified vector.
  2934. </member>
  2935. <member name="M:CefDictionaryValue.HasKey(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2936. Returns true if the current dictionary has a value for the given key.
  2937. </member>
  2938. <member name="M:CefDictionaryValue.Clear">
  2939. Removes all values. Returns true on success.
  2940. </member>
  2941. <member name="M:CefDictionaryValue.GetSize">
  2942. Returns the number of values.
  2943. </member>
  2944. <member name="M:CefDictionaryValue.Copy(System.Boolean)">
  2945. Returns a writable copy of this object. If |exclude_empty_children| is
  2946. true any empty dictionaries or lists will be excluded from the copy.
  2947. </member>
  2948. <member name="M:CefDictionaryValue.IsEqual(scoped_refptr&lt;CefDictionaryValue&gt;)">
  2949. Returns true if this object and |that| object have an equivalent
  2950. underlying value but are not necessarily the same object.
  2951. </member>
  2952. <member name="M:CefDictionaryValue.IsSame(scoped_refptr&lt;CefDictionaryValue&gt;)">
  2953. Returns true if this object and |that| object have the same underlying
  2954. data. If true modifications to this object will also affect |that| object
  2955. and vice-versa.
  2956. </member>
  2957. <member name="M:CefDictionaryValue.IsReadOnly">
  2958. Returns true if the values of this object are read-only. Some APIs may
  2959. expose read-only objects.
  2960. </member>
  2961. <member name="M:CefDictionaryValue.IsOwned">
  2962. Returns true if this object is currently owned by another object.
  2963. </member>
  2964. <member name="M:CefDictionaryValue.IsValid">
  2965. Returns true if this object is valid. This object may become invalid if
  2966. the underlying data is owned by another object (e.g. list or dictionary)
  2967. and that other object is then modified or destroyed. Do not call any other
  2968. methods if this method returns false.
  2969. </member>
  2970. <member name="M:CefDictionaryValue.Create">
  2971. Creates a new object that is not owned by any other object.
  2972. </member>
  2973. <member name="T:CefDictionaryValue">
  2974. Class representing a dictionary value. Can be used on any process and
  2975. thread.
  2976. </member>
  2977. <member name="M:CefBinaryValue.GetData(System.Void*,System.UInt64,System.UInt64)">
  2978. Read up to |buffer_size| number of bytes into |buffer|. Reading begins at
  2979. the specified byte |data_offset|. Returns the number of bytes read.
  2980. </member>
  2981. <member name="M:CefBinaryValue.GetSize">
  2982. Returns the data size.
  2983. </member>
  2984. <member name="M:CefBinaryValue.GetRawData">
  2985. Returns a pointer to the beginning of the memory block.
  2986. The returned pointer is valid as long as the CefBinaryValue is alive.
  2987. </member>
  2988. <member name="M:CefBinaryValue.Copy">
  2989. Returns a copy of this object. The data in this object will also be
  2990. copied.
  2991. </member>
  2992. <member name="M:CefBinaryValue.IsEqual(scoped_refptr&lt;CefBinaryValue&gt;)">
  2993. Returns true if this object and |that| object have an equivalent
  2994. underlying value but are not necessarily the same object.
  2995. </member>
  2996. <member name="M:CefBinaryValue.IsSame(scoped_refptr&lt;CefBinaryValue&gt;)">
  2997. Returns true if this object and |that| object have the same underlying
  2998. data.
  2999. </member>
  3000. <member name="M:CefBinaryValue.IsOwned">
  3001. Returns true if this object is currently owned by another object.
  3002. </member>
  3003. <member name="M:CefBinaryValue.IsValid">
  3004. Returns true if this object is valid. This object may become invalid if
  3005. the underlying data is owned by another object (e.g. list or dictionary)
  3006. and that other object is then modified or destroyed. Do not call any other
  3007. methods if this method returns false.
  3008. </member>
  3009. <member name="M:CefBinaryValue.Create(System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt64)">
  3010. Creates a new object that is not owned by any other object. The specified
  3011. |data| will be copied.
  3012. </member>
  3013. <member name="T:CefBinaryValue">
  3014. Class representing a binary value. Can be used on any process and thread.
  3015. </member>
  3016. <member name="M:CefValue.SetList(scoped_refptr&lt;CefListValue&gt;)">
  3017. Sets the underlying value as type list. Returns true if the value was set
  3018. successfully. This object keeps a reference to |value| and ownership of
  3019. the underlying data remains unchanged.
  3020. </member>
  3021. <member name="M:CefValue.SetDictionary(scoped_refptr&lt;CefDictionaryValue&gt;)">
  3022. Sets the underlying value as type dict. Returns true if the value was set
  3023. successfully. This object keeps a reference to |value| and ownership of
  3024. the underlying data remains unchanged.
  3025. </member>
  3026. <member name="M:CefValue.SetBinary(scoped_refptr&lt;CefBinaryValue&gt;)">
  3027. Sets the underlying value as type binary. Returns true if the value was
  3028. set successfully. This object keeps a reference to |value| and ownership
  3029. of the underlying data remains unchanged.
  3030. </member>
  3031. <member name="M:CefValue.SetString(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3032. Sets the underlying value as type string. Returns true if the value was
  3033. set successfully.
  3034. </member>
  3035. <member name="M:CefValue.SetDouble(System.Double)">
  3036. Sets the underlying value as type double. Returns true if the value was
  3037. set successfully.
  3038. </member>
  3039. <member name="M:CefValue.SetInt(System.Int32)">
  3040. Sets the underlying value as type int. Returns true if the value was set
  3041. successfully.
  3042. </member>
  3043. <member name="M:CefValue.SetBool(System.Boolean)">
  3044. Sets the underlying value as type bool. Returns true if the value was set
  3045. successfully.
  3046. </member>
  3047. <member name="M:CefValue.SetNull">
  3048. Sets the underlying value as type null. Returns true if the value was set
  3049. successfully.
  3050. </member>
  3051. <member name="M:CefValue.GetList">
  3052. Returns the underlying value as type list. The returned reference may
  3053. become invalid if the value is owned by another object or if ownership is
  3054. transferred to another object in the future. To maintain a reference to
  3055. the value after assigning ownership to a dictionary or list pass this
  3056. object to the SetValue() method instead of passing the returned reference
  3057. to SetList().
  3058. </member>
  3059. <member name="M:CefValue.GetDictionary">
  3060. Returns the underlying value as type dictionary. The returned reference
  3061. may become invalid if the value is owned by another object or if ownership
  3062. is transferred to another object in the future. To maintain a reference to
  3063. the value after assigning ownership to a dictionary or list pass this
  3064. object to the SetValue() method instead of passing the returned reference
  3065. to SetDictionary().
  3066. </member>
  3067. <member name="M:CefValue.GetBinary">
  3068. Returns the underlying value as type binary. The returned reference may
  3069. become invalid if the value is owned by another object or if ownership is
  3070. transferred to another object in the future. To maintain a reference to
  3071. the value after assigning ownership to a dictionary or list pass this
  3072. object to the SetValue() method instead of passing the returned reference
  3073. to SetBinary().
  3074. </member>
  3075. <member name="M:CefValue.GetString">
  3076. Returns the underlying value as type string.
  3077. </member>
  3078. <member name="M:CefValue.GetDouble">
  3079. Returns the underlying value as type double.
  3080. </member>
  3081. <member name="M:CefValue.GetInt">
  3082. Returns the underlying value as type int.
  3083. </member>
  3084. <member name="M:CefValue.GetBool">
  3085. Returns the underlying value as type bool.
  3086. </member>
  3087. <member name="M:CefValue.GetType">
  3088. Returns the underlying value type.
  3089. </member>
  3090. <member name="M:CefValue.Copy">
  3091. Returns a copy of this object. The underlying data will also be copied.
  3092. </member>
  3093. <member name="M:CefValue.IsEqual(scoped_refptr&lt;CefValue&gt;)">
  3094. Returns true if this object and |that| object have an equivalent
  3095. underlying value but are not necessarily the same object.
  3096. </member>
  3097. <member name="M:CefValue.IsSame(scoped_refptr&lt;CefValue&gt;)">
  3098. Returns true if this object and |that| object have the same underlying
  3099. data. If true modifications to this object will also affect |that| object
  3100. and vice-versa.
  3101. </member>
  3102. <member name="M:CefValue.IsReadOnly">
  3103. Returns true if the underlying data is read-only. Some APIs may expose
  3104. read-only objects.
  3105. </member>
  3106. <member name="M:CefValue.IsOwned">
  3107. Returns true if the underlying data is owned by another object.
  3108. </member>
  3109. <member name="M:CefValue.IsValid">
  3110. Returns true if the underlying data is valid. This will always be true for
  3111. simple types. For complex types (binary, dictionary and list) the
  3112. underlying data may become invalid if owned by another object (e.g. list
  3113. or dictionary) and that other object is then modified or destroyed. This
  3114. value object can be re-used by calling Set*() even if the underlying data
  3115. is invalid.
  3116. </member>
  3117. <member name="M:CefValue.Create">
  3118. Creates a new object.
  3119. </member>
  3120. <member name="T:CefValue">
  3121. Class that wraps other data value types. Complex types (binary, dictionary
  3122. and list) will be referenced but not owned by this object. Can be used on
  3123. any process and thread.
  3124. </member>
  3125. <member name="M:CefDevToolsMessageObserver.OnDevToolsAgentDetached(scoped_refptr&lt;CefBrowser&gt;)">
  3126. Method that will be called when the DevTools agent has detached. |browser|
  3127. is the originating browser instance. Any method results that were pending
  3128. before the agent became detached will not be delivered, and any active
  3129. event subscriptions will be canceled.
  3130. </member>
  3131. <member name="M:CefDevToolsMessageObserver.OnDevToolsAgentAttached(scoped_refptr&lt;CefBrowser&gt;)">
  3132. Method that will be called when the DevTools agent has attached. |browser|
  3133. is the originating browser instance. This will generally occur in response
  3134. to the first message sent while the agent is detached.
  3135. </member>
  3136. <member name="M:CefDevToolsMessageObserver.OnDevToolsEvent(scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt64)">
  3137. Method that will be called on receipt of a DevTools protocol event.
  3138. |browser| is the originating browser instance. |method| is the "method"
  3139. value. |params| is the UTF8-encoded JSON "params" dictionary value (which
  3140. may be empty). |params| is only valid for the scope of this callback and
  3141. should be copied if necessary. See the OnDevToolsMessage documentation for
  3142. additional details on |params| contents.
  3143. </member>
  3144. <member name="M:CefDevToolsMessageObserver.OnDevToolsMethodResult(scoped_refptr&lt;CefBrowser&gt;,System.Int32,System.Boolean,System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt64)">
  3145. Method that will be called after attempted execution of a DevTools
  3146. protocol method. |browser| is the originating browser instance.
  3147. |message_id| is the "id" value that identifies the originating method call
  3148. message. If the method succeeded |success| will be true and |result| will
  3149. be the UTF8-encoded JSON "result" dictionary value (which may be empty).
  3150. If the method failed |success| will be false and |result| will be the
  3151. UTF8-encoded JSON "error" dictionary value. |result| is only valid for the
  3152. scope of this callback and should be copied if necessary. See the
  3153. OnDevToolsMessage documentation for additional details on |result|
  3154. contents.
  3155. </member>
  3156. <member name="M:CefDevToolsMessageObserver.OnDevToolsMessage(scoped_refptr&lt;CefBrowser&gt;,System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt64)">
  3157. Method that will be called on receipt of a DevTools protocol message.
  3158. |browser| is the originating browser instance. |message| is a UTF8-encoded
  3159. JSON dictionary representing either a method result or an event. |message|
  3160. is only valid for the scope of this callback and should be copied if
  3161. necessary. Return true if the message was handled or false if the message
  3162. should be further processed and passed to the OnDevToolsMethodResult or
  3163. OnDevToolsEvent methods as appropriate.
  3164. Method result dictionaries include an "id" (int) value that identifies the
  3165. orginating method call sent from CefBrowserHost::SendDevToolsMessage, and
  3166. optionally either a "result" (dictionary) or "error" (dictionary) value.
  3167. The "error" dictionary will contain "code" (int) and "message" (string)
  3168. values. Event dictionaries include a "method" (string) value and
  3169. optionally a "params" (dictionary) value. See the DevTools protocol
  3170. documentation at https://chromedevtools.github.io/devtools-protocol/ for
  3171. details of supported method calls and the expected "result" or "params"
  3172. dictionary contents. JSON dictionaries can be parsed using the
  3173. CefParseJSON function if desired, however be aware of performance
  3174. considerations when parsing large messages (some of which may exceed 1MB
  3175. in size).
  3176. </member>
  3177. <member name="T:CefDevToolsMessageObserver">
  3178. Callback interface for CefBrowserHost::AddDevToolsMessageObserver. The
  3179. methods of this class will be called on the browser process UI thread.
  3180. </member>
  3181. <member name="M:CefSetOSModalLoop(System.Boolean)">
  3182. Set to true before calling Windows APIs like TrackPopupMenu that enter a
  3183. modal message loop. Set to false after exiting the modal message loop.
  3184. </member>
  3185. <member name="M:CefWindowInfo.SetAsWindowless(HWND__*)">
  3186. Create the browser using windowless (off-screen) rendering. No window
  3187. will be created for the browser and all rendering will occur via the
  3188. CefRenderHandler interface. The |parent| value will be used to identify
  3189. monitor info and to act as the parent window for dialogs, context menus,
  3190. etc. If |parent| is not provided then the main screen monitor will be used
  3191. and some functionality that requires a parent window may not function
  3192. correctly. In order to create windowless browsers the
  3193. CefSettings.windowless_rendering_enabled value must be set to true.
  3194. Transparent painting is enabled by default but can be disabled by setting
  3195. CefBrowserSettings.background_color to an opaque value.
  3196. </member>
  3197. <member name="M:CefWindowInfo.SetAsPopup(HWND__*,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3198. Create the browser as a popup window.
  3199. </member>
  3200. <member name="M:CefWindowInfo.SetAsChild(HWND__*,CefRect!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3201. Create the browser as a child window.
  3202. </member>
  3203. <member name="T:CefWindowInfo">
  3204. Class representing window information.
  3205. </member>
  3206. <member name="T:CefMainArgs">
  3207. Class representing CefExecuteProcess arguments.
  3208. </member>
  3209. <member name="M:cef_set_osmodal_loop(System.Int32)">
  3210. Set to true (1) before calling Windows APIs like TrackPopupMenu that enter a
  3211. modal message loop. Set to false (0) after exiting the modal message loop.
  3212. </member>
  3213. <member name="T:CefAcceleratedPaintInfo">
  3214. Class representing accelerated paint info.
  3215. </member>
  3216. <member name="T:CefAudioParameters">
  3217. Class representing CefAudioParameters settings
  3218. </member>
  3219. <member name="T:CefCompositionUnderline">
  3220. Class representing IME composition underline.
  3221. </member>
  3222. <member name="T:CefBoxLayoutSettings">
  3223. Class representing CefBoxLayout settings.
  3224. </member>
  3225. <member name="T:CefCursorInfo">
  3226. Class representing cursor information.
  3227. </member>
  3228. <member name="T:CefTouchHandleState">
  3229. Class representing the state of a touch handle.
  3230. </member>
  3231. <member name="T:CefPopupFeatures">
  3232. Class representing popup window features.
  3233. </member>
  3234. <member name="T:CefTouchEvent">
  3235. Class representing a touch event.
  3236. </member>
  3237. <member name="T:CefMouseEvent">
  3238. Class representing a mouse event.
  3239. </member>
  3240. <member name="T:CefKeyEvent">
  3241. Class representing a a keyboard event.
  3242. </member>
  3243. <member name="T:CefScreenInfo">
  3244. Class representing the virtual screen information for use when window
  3245. rendering is disabled.
  3246. </member>
  3247. <member name="T:CefDraggableRegion">
  3248. Class representing a draggable region.
  3249. </member>
  3250. <member name="T:CefInsets">
  3251. Class representing insets.
  3252. </member>
  3253. <member name="T:CefRange">
  3254. Class representing a range.
  3255. </member>
  3256. <member name="T:CefSize">
  3257. Class representing a size.
  3258. </member>
  3259. <member name="M:CefRect.Contains(System.Int32,System.Int32)">
  3260. Returns true if the point identified by point_x and point_y falls inside
  3261. this rectangle. The point (x, y) is inside the rectangle, but the
  3262. point (x + width, y + height) is not.
  3263. </member>
  3264. <member name="T:CefRect">
  3265. Class representing a rectangle.
  3266. </member>
  3267. <member name="T:CefPoint">
  3268. Class representing a point.
  3269. </member>
  3270. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_CRASH">
  3271. The browser crashed.
  3272. Internal use only: resume pending downloads if possible.
  3273. </member>
  3274. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_USER_SHUTDOWN">
  3275. The user shut down the browser.
  3276. Internal use only: resume pending downloads if possible.
  3277. </member>
  3278. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_USER_CANCELED">
  3279. The user canceled the download.
  3280. </member>
  3281. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_SERVER_CROSS_ORIGIN_REDIRECT">
  3282. An unexpected cross-origin redirect happened.
  3283. </member>
  3284. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_SERVER_CONTENT_LENGTH_MISMATCH">
  3285. The server sent fewer bytes than the content-length header. It may
  3286. indicate that the connection was closed prematurely, or the Content-Length
  3287. header was invalid. The download is only interrupted if strong validators
  3288. are present. Otherwise, it is treated as finished.
  3289. </member>
  3290. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_SERVER_UNREACHABLE">
  3291. Unexpected server response. This might indicate that the responding server
  3292. may not be the intended server.
  3293. </member>
  3294. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_SERVER_FORBIDDEN">
  3295. Server access forbidden.
  3296. </member>
  3297. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_SERVER_CERT_PROBLEM">
  3298. Server certificate problem.
  3299. </member>
  3300. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_SERVER_UNAUTHORIZED">
  3301. Server didn't authorize access to resource.
  3302. </member>
  3303. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_SERVER_BAD_CONTENT">
  3304. The server does not have the requested data.
  3305. </member>
  3306. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_SERVER_NO_RANGE">
  3307. The server does not support range requests.
  3308. Internal use only: must restart from the beginning.
  3309. </member>
  3310. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_SERVER_FAILED">
  3311. The server indicates that the operation has failed (generic).
  3312. </member>
  3313. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_NETWORK_INVALID_REQUEST">
  3314. The network request was invalid. This may be due to the original URL or a
  3315. redirected URL:
  3316. - Having an unsupported scheme.
  3317. - Being an invalid URL.
  3318. - Being disallowed by policy.
  3319. </member>
  3320. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_NETWORK_SERVER_DOWN">
  3321. The server has gone down.
  3322. </member>
  3323. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_NETWORK_DISCONNECTED">
  3324. The network connection has been lost.
  3325. </member>
  3326. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_NETWORK_TIMEOUT">
  3327. The network operation timed out.
  3328. </member>
  3329. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_NETWORK_FAILED">
  3330. Generic network failure.
  3331. </member>
  3332. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_FILE_SAME_AS_SOURCE">
  3333. The source and the target of the download were the same.
  3334. </member>
  3335. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_FILE_HASH_MISMATCH">
  3336. The partial file didn't match the expected hash.
  3337. </member>
  3338. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_FILE_TOO_SHORT">
  3339. An attempt was made to seek past the end of a file in opening
  3340. a file (as part of resuming a previously interrupted download).
  3341. </member>
  3342. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_FILE_SECURITY_CHECK_FAILED">
  3343. An attempt to check the safety of the download failed due to unexpected
  3344. reasons. See http://crbug.com/153212.
  3345. </member>
  3346. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_FILE_BLOCKED">
  3347. The file was blocked due to local policy.
  3348. </member>
  3349. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_FILE_TRANSIENT_ERROR">
  3350. The file was in use. Too many files are opened at once. We have run out of
  3351. memory.
  3352. </member>
  3353. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_FILE_VIRUS_INFECTED">
  3354. The file contains a virus.
  3355. </member>
  3356. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_FILE_TOO_LARGE">
  3357. The file is too large for the file system to handle.
  3358. </member>
  3359. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_FILE_NAME_TOO_LONG">
  3360. The directory or file name is too long.
  3361. </member>
  3362. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_FILE_NO_SPACE">
  3363. There is not enough room on the drive.
  3364. </member>
  3365. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_FILE_ACCESS_DENIED">
  3366. The file cannot be accessed due to security restrictions.
  3367. </member>
  3368. <member name="F:CEF_DOWNLOAD_INTERRUPT_REASON_FILE_FAILED">
  3369. Generic file operation failure.
  3370. </member>
  3371. <member name="F:CEF_PREFERENCES_TYPE_REQUEST_CONTEXT">
  3372. Request context preferences registered each time a new CefRequestContext
  3373. is created.
  3374. </member>
  3375. <member name="F:CEF_PREFERENCES_TYPE_GLOBAL">
  3376. Global preferences registered a single time at application startup.
  3377. </member>
  3378. <member name="F:CEF_TEST_CERT_EXPIRED">
  3379. Expired certificate. Loads the "expired_cert.pem" file.
  3380. </member>
  3381. <member name="F:CEF_TEST_CERT_OK_DOMAIN">
  3382. Valid certificate using the domain ("localhost"). Loads the
  3383. "localhost_cert.pem" file.
  3384. </member>
  3385. <member name="F:CEF_TEST_CERT_OK_IP">
  3386. Valid certificate using the IP (127.0.0.1). Loads the "ok_cert.pem" file.
  3387. </member>
  3388. <member name="F:CEF_PERMISSION_RESULT_IGNORE">
  3389. Ignore the permission request. If the prompt remains unhandled (e.g.
  3390. OnShowPermissionPrompt returns false and there is no default permissions
  3391. UI) then any related promises may remain unresolved.
  3392. </member>
  3393. <member name="F:CEF_PERMISSION_RESULT_DISMISS">
  3394. Dismiss the permission request as an explicit user action.
  3395. </member>
  3396. <member name="F:CEF_PERMISSION_RESULT_DENY">
  3397. Deny the permission request as an explicit user action.
  3398. </member>
  3399. <member name="F:CEF_PERMISSION_RESULT_ACCEPT">
  3400. Accept the permission request as an explicit user action.
  3401. </member>
  3402. <member name="F:CEF_MEDIA_PERMISSION_DESKTOP_VIDEO_CAPTURE">
  3403. Desktop video capture permission.
  3404. </member>
  3405. <member name="F:CEF_MEDIA_PERMISSION_DESKTOP_AUDIO_CAPTURE">
  3406. Desktop audio capture permission.
  3407. </member>
  3408. <member name="F:CEF_MEDIA_PERMISSION_DEVICE_VIDEO_CAPTURE">
  3409. Device video capture permission.
  3410. </member>
  3411. <member name="F:CEF_MEDIA_PERMISSION_DEVICE_AUDIO_CAPTURE">
  3412. Device audio capture permission.
  3413. </member>
  3414. <member name="F:CEF_MEDIA_PERMISSION_NONE">
  3415. No permission.
  3416. </member>
  3417. <member name="F:_cef_touch_handle_state_t.alpha">
  3418. Alpha state. Only set if |flags| contains CEF_THS_FLAG_ALPHA.
  3419. </member>
  3420. <member name="F:_cef_touch_handle_state_t.origin">
  3421. Origin state. Only set if |flags| contains CEF_THS_FLAG_ORIGIN.
  3422. </member>
  3423. <member name="F:_cef_touch_handle_state_t.orientation">
  3424. Orientation state. Only set if |flags| contains CEF_THS_FLAG_ORIENTATION.
  3425. </member>
  3426. <member name="F:_cef_touch_handle_state_t.enabled">
  3427. Enabled state. Only set if |flags| contains CEF_THS_FLAG_ENABLED.
  3428. </member>
  3429. <member name="F:_cef_touch_handle_state_t.flags">
  3430. Combination of cef_touch_handle_state_flags_t values indicating what state
  3431. is set.
  3432. </member>
  3433. <member name="F:_cef_touch_handle_state_t.touch_handle_id">
  3434. Touch handle id. Increments for each new touch handle.
  3435. </member>
  3436. <member name="T:_cef_media_sink_device_info_t">
  3437. Device information for a MediaSink object.
  3438. </member>
  3439. <member name="F:_cef_audio_parameters_t.frames_per_buffer">
  3440. Number of frames per buffer
  3441. </member>
  3442. <member name="F:_cef_audio_parameters_t.sample_rate">
  3443. Sample rate
  3444. </member>
  3445. <member name="F:_cef_audio_parameters_t.channel_layout">
  3446. Layout of the audio channels
  3447. </member>
  3448. <member name="T:_cef_audio_parameters_t">
  3449. Structure representing the audio parameters for setting up the audio
  3450. handler.
  3451. </member>
  3452. <member name="F:CEF_CHANNEL_LAYOUT_MAX">
  3453. Max value, must always equal the largest entry ever logged.
  3454. </member>
  3455. <member name="F:CEF_CHANNEL_LAYOUT_3_1_BACK">
  3456. Front L, Front R, LFE, Back C
  3457. </member>
  3458. <member name="F:CEF_CHANNEL_LAYOUT_1_1">
  3459. Front C, LFE
  3460. </member>
  3461. <member name="F:CEF_CHANNEL_LAYOUT_5_1_4_DOWNMIX">
  3462. Front L, Front R, Front C, LFE, Side L, Side R,
  3463. Front Height L, Front Height R, Rear Height L, Rear Height R
  3464. Will be represented as six channels (5.1) due to eight channel limit
  3465. kMaxConcurrentChannels
  3466. </member>
  3467. <member name="F:CEF_CHANNEL_LAYOUT_BITSTREAM">
  3468. Actual channel layout is specified in the bitstream and the actual channel
  3469. count is unknown at Chromium media pipeline level (useful for audio
  3470. pass-through mode).
  3471. </member>
  3472. <member name="F:CEF_CHANNEL_LAYOUT_4_1_QUAD_SIDE">
  3473. Front L, Front R, LFE, Side L, Side R
  3474. </member>
  3475. <member name="F:CEF_CHANNEL_LAYOUT_STEREO_AND_KEYBOARD_MIC">
  3476. Deprecated, but keeping the enum value for UMA consistency.
  3477. Front L, Front R, Front C. Front C contains the keyboard mic audio. This
  3478. layout is only intended for input for WebRTC. The Front C channel
  3479. is stripped away in the WebRTC audio input pipeline and never seen outside
  3480. of that.
  3481. </member>
  3482. <member name="F:CEF_CHANNEL_LAYOUT_DISCRETE">
  3483. Channels are not explicitly mapped to speakers.
  3484. </member>
  3485. <member name="F:CEF_CHANNEL_LAYOUT_OCTAGONAL">
  3486. Front L, Front R, Front C, Back L, Back R, Back C, Side L, Side R
  3487. </member>
  3488. <member name="F:CEF_CHANNEL_LAYOUT_7_1_WIDE_BACK">
  3489. Front L, Front R, Front C, LFE, Back L, Back R, Front LofC, Front RofC
  3490. </member>
  3491. <member name="F:CEF_CHANNEL_LAYOUT_7_0_FRONT">
  3492. Front L, Front R, Front C, Front LofC, Front RofC, Side L, Side R
  3493. </member>
  3494. <member name="F:CEF_CHANNEL_LAYOUT_6_1_FRONT">
  3495. Front L, Front R, LFE, Front LofC, Front RofC, Side L, Side R
  3496. </member>
  3497. <member name="F:CEF_CHANNEL_LAYOUT_6_1_BACK">
  3498. Front L, Front R, Front C, LFE, Back L, Back R, Back C
  3499. </member>
  3500. <member name="F:CEF_CHANNEL_LAYOUT_6_1">
  3501. Front L, Front R, Front C, LFE, Back C, Side L, Side R
  3502. </member>
  3503. <member name="F:CEF_CHANNEL_LAYOUT_HEXAGONAL">
  3504. Front L, Front R, Front C, Back L, Back R, Back C
  3505. </member>
  3506. <member name="F:CEF_CHANNEL_LAYOUT_6_0_FRONT">
  3507. Front L, Front R, Front LofC, Front RofC, Side L, Side R
  3508. </member>
  3509. <member name="F:CEF_CHANNEL_LAYOUT_6_0">
  3510. Front L, Front R, Front C, Back C, Side L, Side R
  3511. </member>
  3512. <member name="F:CEF_CHANNEL_LAYOUT_4_1">
  3513. Front L, Front R, Front C, LFE, Back C
  3514. </member>
  3515. <member name="F:CEF_CHANNEL_LAYOUT_3_1">
  3516. Front L, Front R, Front C, LFE
  3517. </member>
  3518. <member name="F:CEF_CHANNEL_LAYOUT_2POINT1">
  3519. Front L, Front R, LFE
  3520. </member>
  3521. <member name="F:CEF_CHANNEL_LAYOUT_STEREO_DOWNMIX">
  3522. Front L, Front R
  3523. </member>
  3524. <member name="F:CEF_CHANNEL_LAYOUT_7_1_WIDE">
  3525. Front L, Front R, Front C, LFE, Front LofC, Front RofC, Side L, Side R
  3526. </member>
  3527. <member name="F:CEF_CHANNEL_LAYOUT_7_1">
  3528. Front L, Front R, Front C, LFE, Back L, Back R, Side L, Side R
  3529. </member>
  3530. <member name="F:CEF_CHANNEL_LAYOUT_7_0">
  3531. Front L, Front R, Front C, Back L, Back R, Side L, Side R
  3532. </member>
  3533. <member name="F:CEF_CHANNEL_LAYOUT_5_1_BACK">
  3534. Front L, Front R, Front C, LFE, Back L, Back R
  3535. </member>
  3536. <member name="F:CEF_CHANNEL_LAYOUT_5_0_BACK">
  3537. Front L, Front R, Front C, Back L, Back R
  3538. </member>
  3539. <member name="F:CEF_CHANNEL_LAYOUT_5_1">
  3540. Front L, Front R, Front C, LFE, Side L, Side R
  3541. </member>
  3542. <member name="F:CEF_CHANNEL_LAYOUT_5_0">
  3543. Front L, Front R, Front C, Side L, Side R
  3544. </member>
  3545. <member name="F:CEF_CHANNEL_LAYOUT_QUAD">
  3546. Front L, Front R, Back L, Back R
  3547. </member>
  3548. <member name="F:CEF_CHANNEL_LAYOUT_2_2">
  3549. Front L, Front R, Side L, Side R
  3550. </member>
  3551. <member name="F:CEF_CHANNEL_LAYOUT_4_0">
  3552. Front L, Front R, Front C, Back C
  3553. </member>
  3554. <member name="F:CEF_CHANNEL_LAYOUT_SURROUND">
  3555. Front L, Front R, Front C
  3556. </member>
  3557. <member name="F:CEF_CHANNEL_LAYOUT_2_1">
  3558. Front L, Front R, Back C
  3559. </member>
  3560. <member name="F:CEF_CHANNEL_LAYOUT_STEREO">
  3561. Front L, Front R
  3562. </member>
  3563. <member name="F:CEF_CHANNEL_LAYOUT_MONO">
  3564. Front C
  3565. </member>
  3566. <member name="F:_cef_composition_underline_t.style">
  3567. Style.
  3568. </member>
  3569. <member name="F:_cef_composition_underline_t.thick">
  3570. Set to true (1) for thick underline.
  3571. </member>
  3572. <member name="F:_cef_composition_underline_t.background_color">
  3573. Background color.
  3574. </member>
  3575. <member name="F:_cef_composition_underline_t.color">
  3576. Text color.
  3577. </member>
  3578. <member name="F:_cef_composition_underline_t.range">
  3579. Underline character range.
  3580. </member>
  3581. <member name="T:_cef_composition_underline_t">
  3582. Structure representing IME composition underline information. This is a thin
  3583. wrapper around Blink's WebCompositionUnderline class and should be kept in
  3584. sync with that.
  3585. </member>
  3586. <member name="T:_cef_range_t">
  3587. Structure representing a range.
  3588. </member>
  3589. <member name="F:CEF_SCHEME_OPTION_FETCH_ENABLED">
  3590. If CEF_SCHEME_OPTION_FETCH_ENABLED is set the scheme can perform Fetch API
  3591. requests.
  3592. </member>
  3593. <member name="F:CEF_SCHEME_OPTION_CSP_BYPASSING">
  3594. If CEF_SCHEME_OPTION_CSP_BYPASSING is set the scheme can bypass Content-
  3595. Security-Policy (CSP) checks. This value should not be set in most cases
  3596. where CEF_SCHEME_OPTION_STANDARD is set.
  3597. </member>
  3598. <member name="F:CEF_SCHEME_OPTION_CORS_ENABLED">
  3599. If CEF_SCHEME_OPTION_CORS_ENABLED is set the scheme can be sent CORS
  3600. requests. This value should be set in most cases where
  3601. CEF_SCHEME_OPTION_STANDARD is set.
  3602. </member>
  3603. <member name="F:CEF_SCHEME_OPTION_SECURE">
  3604. If CEF_SCHEME_OPTION_SECURE is set the scheme will be treated with the
  3605. same security rules as those applied to "https" URLs. For example, loading
  3606. this scheme from other secure schemes will not trigger mixed content
  3607. warnings.
  3608. </member>
  3609. <member name="F:CEF_SCHEME_OPTION_DISPLAY_ISOLATED">
  3610. If CEF_SCHEME_OPTION_DISPLAY_ISOLATED is set the scheme can only be
  3611. displayed from other content hosted with the same scheme. For example,
  3612. pages in other origins cannot create iframes or hyperlinks to URLs with
  3613. the scheme. For schemes that must be accessible from other schemes don't
  3614. set this, set CEF_SCHEME_OPTION_CORS_ENABLED, and use CORS
  3615. "Access-Control-Allow-Origin" headers to further restrict access.
  3616. </member>
  3617. <member name="F:CEF_SCHEME_OPTION_LOCAL">
  3618. If CEF_SCHEME_OPTION_LOCAL is set the scheme will be treated with the same
  3619. security rules as those applied to "file" URLs. Normal pages cannot link
  3620. to or access local URLs. Also, by default, local URLs can only perform
  3621. XMLHttpRequest calls to the same URL (origin + path) that originated the
  3622. request. To allow XMLHttpRequest calls from a local URL to other URLs with
  3623. the same origin set the CefSettings.file_access_from_file_urls_allowed
  3624. value to true (1). To allow XMLHttpRequest calls from a local URL to all
  3625. origins set the CefSettings.universal_access_from_file_urls_allowed value
  3626. to true (1).
  3627. </member>
  3628. <member name="F:CEF_SCHEME_OPTION_STANDARD">
  3629. If CEF_SCHEME_OPTION_STANDARD is set the scheme will be treated as a
  3630. standard scheme. Standard schemes are subject to URL canonicalization and
  3631. parsing rules as defined in the Common Internet Scheme Syntax RFC 1738
  3632. Section 3.1 available at http://www.ietf.org/rfc/rfc1738.txt
  3633. In particular, the syntax for standard scheme URLs must be of the form:
  3634. <pre>
  3635. [scheme]://[username]:[password]@[host]:[port]/[url-path]
  3636. </pre> Standard scheme URLs must have a host component that is a fully
  3637. qualified domain name as defined in Section 3.5 of RFC 1034 [13] and
  3638. Section 2.1 of RFC 1123. These URLs will be canonicalized to
  3639. "scheme://host/path" in the simplest case and
  3640. "scheme://username:password@host:port/path" in the most explicit case. For
  3641. example, "scheme:host/path" and "scheme:///host/path" will both be
  3642. canonicalized to "scheme://host/path". The origin of a standard scheme URL
  3643. is the combination of scheme, host and port (i.e., "scheme://host:port" in
  3644. the most explicit case).
  3645. For non-standard scheme URLs only the "scheme:" component is parsed and
  3646. canonicalized. The remainder of the URL will be passed to the handler as-
  3647. is. For example, "scheme:///some%20text" will remain the same.
  3648. Non-standard scheme URLs cannot be used as a target for form submission.
  3649. </member>
  3650. <member name="F:CEF_HORIZONTAL_ALIGNMENT_RIGHT">
  3651. Align the text's right edge with that of its display area.
  3652. </member>
  3653. <member name="F:CEF_HORIZONTAL_ALIGNMENT_CENTER">
  3654. Align the text's center with that of its display area.
  3655. </member>
  3656. <member name="F:CEF_HORIZONTAL_ALIGNMENT_LEFT">
  3657. Align the text's left edge with that of its display area.
  3658. </member>
  3659. <member name="F:_cef_box_layout_settings_t.default_flex">
  3660. Default flex for views when none is specified via CefBoxLayout methods.
  3661. Using the preferred size as the basis, free space along the main axis is
  3662. distributed to views in the ratio of their flex weights. Similarly, if the
  3663. views will overflow the parent, space is subtracted in these ratios. A
  3664. flex of 0 means this view is not resized. Flex values must not be
  3665. negative.
  3666. </member>
  3667. <member name="F:_cef_box_layout_settings_t.minimum_cross_axis_size">
  3668. Minimum cross axis size.
  3669. </member>
  3670. <member name="F:_cef_box_layout_settings_t.cross_axis_alignment">
  3671. Specifies where along the cross axis the child views should be laid out.
  3672. </member>
  3673. <member name="F:_cef_box_layout_settings_t.main_axis_alignment">
  3674. Specifies where along the main axis the child views should be laid out.
  3675. </member>
  3676. <member name="F:_cef_box_layout_settings_t.between_child_spacing">
  3677. Adds additional space between child views.
  3678. </member>
  3679. <member name="F:_cef_box_layout_settings_t.inside_border_insets">
  3680. Adds additional space around the child view area.
  3681. </member>
  3682. <member name="F:_cef_box_layout_settings_t.inside_border_vertical_spacing">
  3683. Adds additional vertical space between the child view area and the host
  3684. view border.
  3685. </member>
  3686. <member name="F:_cef_box_layout_settings_t.inside_border_horizontal_spacing">
  3687. Adds additional horizontal space between the child view area and the host
  3688. view border.
  3689. </member>
  3690. <member name="F:_cef_box_layout_settings_t.horizontal">
  3691. If true (1) the layout will be horizontal, otherwise the layout will be
  3692. vertical.
  3693. </member>
  3694. <member name="T:_cef_box_layout_settings_t">
  3695. Settings used when initializing a CefBoxLayout.
  3696. </member>
  3697. <member name="F:CEF_AXIS_ALIGNMENT_STRETCH">
  3698. Child views will be stretched to fit.
  3699. </member>
  3700. <member name="F:CEF_AXIS_ALIGNMENT_END">
  3701. Child views will be right/bottom-aligned.
  3702. </member>
  3703. <member name="F:CEF_AXIS_ALIGNMENT_CENTER">
  3704. Child views will be center-aligned.
  3705. </member>
  3706. <member name="F:CEF_AXIS_ALIGNMENT_START">
  3707. Child views will be left/top-aligned.
  3708. </member>
  3709. <member name="F:CEF_ALPHA_TYPE_POSTMULTIPLIED">
  3710. Transparency with post-multiplied alpha component.
  3711. </member>
  3712. <member name="F:CEF_ALPHA_TYPE_PREMULTIPLIED">
  3713. Transparency with pre-multiplied alpha component.
  3714. </member>
  3715. <member name="F:CEF_ALPHA_TYPE_OPAQUE">
  3716. No transparency. The alpha component is ignored.
  3717. </member>
  3718. <member name="F:RESPONSE_FILTER_ERROR">
  3719. An error occurred during filtering.
  3720. </member>
  3721. <member name="F:RESPONSE_FILTER_DONE">
  3722. Some or all of the pre-filter data was read successfully and all available
  3723. filtered output has been written.
  3724. </member>
  3725. <member name="F:RESPONSE_FILTER_NEED_MORE_DATA">
  3726. Some or all of the pre-filter data was read successfully but more data is
  3727. needed in order to continue filtering (filtered output is pending).
  3728. </member>
  3729. <member name="F:REFERRER_POLICY_LAST_VALUE">
  3730. Always the last value in this enumeration.
  3731. </member>
  3732. <member name="F:REFERRER_POLICY_NO_REFERRER">
  3733. Always clear the referrer regardless of the request destination.
  3734. </member>
  3735. <member name="F:REFERRER_POLICY_ORIGIN_CLEAR_ON_TRANSITION_FROM_SECURE_TO_INSECURE">
  3736. Strip the referrer down to the origin, but clear it entirely if the
  3737. referrer value is HTTPS and the destination is HTTP.
  3738. </member>
  3739. <member name="F:REFERRER_POLICY_CLEAR_REFERRER_ON_TRANSITION_CROSS_ORIGIN">
  3740. Clear the referrer when the request's referrer is cross-origin with the
  3741. request's destination.
  3742. </member>
  3743. <member name="F:REFERRER_POLICY_ORIGIN">
  3744. Strip the referrer down to the origin regardless of the redirect location.
  3745. </member>
  3746. <member name="F:REFERRER_POLICY_NEVER_CLEAR_REFERRER">
  3747. Never change the referrer.
  3748. </member>
  3749. <member name="F:REFERRER_POLICY_ORIGIN_ONLY_ON_TRANSITION_CROSS_ORIGIN">
  3750. Strip the referrer down to an origin when the origin of the referrer is
  3751. different from the destination's origin.
  3752. </member>
  3753. <member name="F:REFERRER_POLICY_REDUCE_REFERRER_GRANULARITY_ON_TRANSITION_CROSS_ORIGIN">
  3754. A slight variant on CLEAR_REFERRER_ON_TRANSITION_FROM_SECURE_TO_INSECURE:
  3755. If the request destination is HTTP, an HTTPS referrer will be cleared. If
  3756. the request's destination is cross-origin with the referrer (but does not
  3757. downgrade), the referrer's granularity will be stripped down to an origin
  3758. rather than a full URL. Same-origin requests will send the full referrer.
  3759. </member>
  3760. <member name="F:REFERRER_POLICY_CLEAR_REFERRER_ON_TRANSITION_FROM_SECURE_TO_INSECURE">
  3761. Clear the referrer header if the header value is HTTPS but the request
  3762. destination is HTTP. This is the default behavior.
  3763. </member>
  3764. <member name="F:_cef_pdf_print_settings_t.generate_document_outline">
  3765. Set to true (1) to generate a document outline.
  3766. </member>
  3767. <member name="F:_cef_pdf_print_settings_t.generate_tagged_pdf">
  3768. Set to true (1) to generate tagged (accessible) PDF.
  3769. </member>
  3770. <member name="F:_cef_pdf_print_settings_t.footer_template">
  3771. HTML template for the print footer. Only displayed if
  3772. |display_header_footer| is true (1). Uses the same format as
  3773. |header_template|.
  3774. </member>
  3775. <member name="F:_cef_pdf_print_settings_t.display_header_footer">
  3776. Set to true (1) to display the header and/or footer. Modify
  3777. |header_template| and/or |footer_template| to customize the display.
  3778. </member>
  3779. <member name="F:_cef_pdf_print_settings_t.page_ranges">
  3780. Paper ranges to print, one based, e.g., '1-5, 8, 11-13'. Pages are printed
  3781. in the document order, not in the order specified, and no more than once.
  3782. Defaults to empty string, which implies the entire document is printed.
  3783. The page numbers are quietly capped to actual page count of the document,
  3784. and ranges beyond the end of the document are ignored. If this results in
  3785. no pages to print, an error is reported. It is an error to specify a range
  3786. with start greater than end.
  3787. </member>
  3788. <member name="F:_cef_pdf_print_settings_t.margin_top">
  3789. Margins in inches. Only used if |margin_type| is set to
  3790. PDF_PRINT_MARGIN_CUSTOM.
  3791. </member>
  3792. <member name="F:_cef_pdf_print_settings_t.margin_type">
  3793. Margin type.
  3794. </member>
  3795. <member name="F:_cef_pdf_print_settings_t.prefer_css_page_size">
  3796. Set to true (1) to prefer page size as defined by css. Defaults to false
  3797. (0), in which case the content will be scaled to fit the paper size.
  3798. </member>
  3799. <member name="F:_cef_pdf_print_settings_t.paper_width">
  3800. Output paper size in inches. If either of these values is less than or
  3801. equal to zero then the default paper size (letter, 8.5 x 11 inches) will
  3802. be used.
  3803. </member>
  3804. <member name="F:_cef_pdf_print_settings_t.scale">
  3805. The percentage to scale the PDF by before printing (e.g. .5 is 50%).
  3806. If this value is less than or equal to zero the default value of 1.0
  3807. will be used.
  3808. </member>
  3809. <member name="F:_cef_pdf_print_settings_t.print_background">
  3810. Set to true (1) to print background graphics.
  3811. </member>
  3812. <member name="F:_cef_pdf_print_settings_t.landscape">
  3813. Set to true (1) for landscape mode or false (0) for portrait mode.
  3814. </member>
  3815. <member name="T:_cef_pdf_print_settings_t">
  3816. Structure representing PDF print settings. These values match the parameters
  3817. supported by the DevTools Page.printToPDF function. See
  3818. https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-printToPDF
  3819. </member>
  3820. <member name="F:PDF_PRINT_MARGIN_CUSTOM">
  3821. Custom margins using the |margin_*| values from cef_pdf_print_settings_t.
  3822. </member>
  3823. <member name="F:PDF_PRINT_MARGIN_NONE">
  3824. No margins.
  3825. </member>
  3826. <member name="F:PDF_PRINT_MARGIN_DEFAULT">
  3827. Default margins of 1cm (~0.4 inches).
  3828. </member>
  3829. <member name="F:JSON_WRITER_PRETTY_PRINT">
  3830. Return a slightly nicer formatted json string (pads with whitespace to
  3831. help with readability).
  3832. </member>
  3833. <member name="F:JSON_WRITER_OMIT_DOUBLE_TYPE_PRESERVATION">
  3834. This option instructs the writer to write doubles that have no fractional
  3835. part as a normal integer (i.e., without using exponential notation
  3836. or appending a '.0') as long as the value is within the range of a
  3837. 64-bit int.
  3838. </member>
  3839. <member name="F:JSON_WRITER_OMIT_BINARY_VALUES">
  3840. This option instructs the writer that if a Binary value is encountered,
  3841. the value (and key if within a dictionary) will be omitted from the
  3842. output, and success will be returned. Otherwise, if a binary value is
  3843. encountered, failure will be returned.
  3844. </member>
  3845. <member name="F:JSON_WRITER_DEFAULT">
  3846. Default behavior.
  3847. </member>
  3848. <member name="F:JSON_PARSER_ALLOW_TRAILING_COMMAS">
  3849. Allows commas to exist after the last element in structures.
  3850. </member>
  3851. <member name="F:JSON_PARSER_RFC">
  3852. Parses the input strictly according to RFC 4627. See comments in
  3853. Chromium's base/json/json_reader.h file for known limitations/
  3854. deviations from the RFC.
  3855. </member>
  3856. <member name="F:UU_REPLACE_PLUS_WITH_SPACE">
  3857. URL queries use "+" for space. This flag controls that replacement.
  3858. </member>
  3859. <member name="F:UU_PATH_SEPARATORS">
  3860. Unescapes '/' and '\\'. If these characters were unescaped, the resulting
  3861. URL won't be the same as the source one. Moreover, they are dangerous to
  3862. unescape in strings that will be used as file paths or names. This value
  3863. should only be used when slashes don't have special meaning, like data
  3864. URLs.
  3865. </member>
  3866. <member name="F:UU_SPACES">
  3867. Convert %20 to spaces. In some places where we're showing URLs, we may
  3868. want this. In places where the URL may be copied and pasted out, then
  3869. you wouldn't want this since it might not be interpreted in one piece
  3870. by other applications.
  3871. </member>
  3872. <member name="F:UU_NORMAL">
  3873. Don't unescape anything special, but all normal unescaping will happen.
  3874. This is a placeholder and can't be combined with other flags (since it's
  3875. just the absence of them). All other unescape rules imply "normal" in
  3876. addition to their special meaning. Things like escaped letters, digits,
  3877. and most symbols will get unescaped with this mode.
  3878. </member>
  3879. <member name="F:UU_NONE">
  3880. Don't unescape anything at all.
  3881. </member>
  3882. <member name="T:_cef_cursor_info_t">
  3883. Structure representing cursor information. |buffer| will be
  3884. |size.width|*|size.height|*4 bytes in size and represents a BGRA image with
  3885. an upper-left origin.
  3886. </member>
  3887. <member name="F:FILE_DIALOG_SAVE">
  3888. Allows picking a nonexistent file, and prompts to overwrite if the file
  3889. already exists.
  3890. </member>
  3891. <member name="F:FILE_DIALOG_OPEN_FOLDER">
  3892. Like Open, but selects a folder to open.
  3893. </member>
  3894. <member name="F:FILE_DIALOG_OPEN_MULTIPLE">
  3895. Like Open, but allows picking multiple files to open.
  3896. </member>
  3897. <member name="F:FILE_DIALOG_OPEN">
  3898. Requires that the file exists before allowing the user to pick it.
  3899. </member>
  3900. <member name="F:_cef_popup_features_t.isPopup">
  3901. True (1) if browser interface elements should be hidden.
  3902. </member>
  3903. <member name="T:_cef_popup_features_t">
  3904. Popup window features.
  3905. </member>
  3906. <member name="F:FOCUS_SOURCE_SYSTEM">
  3907. The source is a system-generated focus event.
  3908. </member>
  3909. <member name="F:FOCUS_SOURCE_NAVIGATION">
  3910. The source is explicit navigation via the API (LoadURL(), etc).
  3911. </member>
  3912. <member name="F:_cef_key_event_t.focus_on_editable_field">
  3913. True if the focus is currently on an editable field on the page. This is
  3914. useful for determining if standard key events should be intercepted.
  3915. </member>
  3916. <member name="F:_cef_key_event_t.unmodified_character">
  3917. Same as |character| but unmodified by any concurrently-held modifiers
  3918. (except shift). This is useful for working out shortcut keys.
  3919. </member>
  3920. <member name="F:_cef_key_event_t.character">
  3921. The character generated by the keystroke.
  3922. </member>
  3923. <member name="F:_cef_key_event_t.is_system_key">
  3924. Indicates whether the event is considered a "system key" event (see
  3925. http://msdn.microsoft.com/en-us/library/ms646286(VS.85).aspx for details).
  3926. This value will always be false on non-Windows platforms.
  3927. </member>
  3928. <member name="F:_cef_key_event_t.native_key_code">
  3929. The actual key code genenerated by the platform.
  3930. </member>
  3931. <member name="F:_cef_key_event_t.windows_key_code">
  3932. The Windows key code for the key event. This value is used by the DOM
  3933. specification. Sometimes it comes directly from the event (i.e. on
  3934. Windows) and sometimes it's determined using a mapping function. See
  3935. WebCore/platform/chromium/KeyboardCodes.h for the list of values.
  3936. </member>
  3937. <member name="F:_cef_key_event_t.modifiers">
  3938. Bit flags describing any pressed modifier keys. See
  3939. cef_event_flags_t for values.
  3940. </member>
  3941. <member name="F:_cef_key_event_t.type">
  3942. The type of keyboard event.
  3943. </member>
  3944. <member name="T:_cef_key_event_t">
  3945. Structure representing keyboard event information.
  3946. </member>
  3947. <member name="F:KEYEVENT_CHAR">
  3948. Notification that a character was typed. Use this for text input. Key
  3949. down events may generate 0, 1, or more than one character event depending
  3950. on the key, locale, and operating system.
  3951. </member>
  3952. <member name="F:KEYEVENT_KEYUP">
  3953. Notification that a key was released.
  3954. </member>
  3955. <member name="F:KEYEVENT_KEYDOWN">
  3956. Notification that a key was pressed. This does not necessarily correspond
  3957. to a character depending on the key and language. Use KEYEVENT_CHAR for
  3958. character input.
  3959. </member>
  3960. <member name="F:KEYEVENT_RAWKEYDOWN">
  3961. Notification that a key transitioned from "up" to "down".
  3962. </member>
  3963. <member name="F:CM_MEDIATYPE_PLUGIN">
  3964. A plugin node is selected.
  3965. </member>
  3966. <member name="F:CM_MEDIATYPE_FILE">
  3967. A file node is selected.
  3968. </member>
  3969. <member name="F:CM_MEDIATYPE_CANVAS">
  3970. An canvas node is selected.
  3971. </member>
  3972. <member name="F:CM_MEDIATYPE_AUDIO">
  3973. An audio node is selected.
  3974. </member>
  3975. <member name="F:CM_MEDIATYPE_VIDEO">
  3976. A video node is selected.
  3977. </member>
  3978. <member name="F:CM_MEDIATYPE_IMAGE">
  3979. An image node is selected.
  3980. </member>
  3981. <member name="F:CM_MEDIATYPE_NONE">
  3982. No special node is in context.
  3983. </member>
  3984. <member name="F:CM_TYPEFLAG_EDITABLE">
  3985. An editable element is selected.
  3986. </member>
  3987. <member name="F:CM_TYPEFLAG_SELECTION">
  3988. There is a textual or mixed selection that is selected.
  3989. </member>
  3990. <member name="F:CM_TYPEFLAG_MEDIA">
  3991. A media node is selected.
  3992. </member>
  3993. <member name="F:CM_TYPEFLAG_LINK">
  3994. A link is selected.
  3995. </member>
  3996. <member name="F:CM_TYPEFLAG_FRAME">
  3997. A subframe page is selected.
  3998. </member>
  3999. <member name="F:CM_TYPEFLAG_PAGE">
  4000. The top page is selected.
  4001. </member>
  4002. <member name="F:CM_TYPEFLAG_NONE">
  4003. No node is selected.
  4004. </member>
  4005. <member name="F:EVENTFLAG_COMMAND_DOWN">
  4006. Mac OS-X command key.
  4007. </member>
  4008. <member name="F:_cef_touch_event_t.pointer_type">
  4009. The device type that caused the event.
  4010. </member>
  4011. <member name="F:_cef_touch_event_t.modifiers">
  4012. Bit flags describing any pressed modifier keys. See
  4013. cef_event_flags_t for values.
  4014. </member>
  4015. <member name="F:_cef_touch_event_t.type">
  4016. The state of the touch point. Touches begin with one CEF_TET_PRESSED event
  4017. followed by zero or more CEF_TET_MOVED events and finally one
  4018. CEF_TET_RELEASED or CEF_TET_CANCELLED event. Events not respecting this
  4019. order will be ignored.
  4020. </member>
  4021. <member name="F:_cef_touch_event_t.pressure">
  4022. The normalized pressure of the pointer input in the range of [0,1].
  4023. Set to 0 if not applicable.
  4024. </member>
  4025. <member name="F:_cef_touch_event_t.rotation_angle">
  4026. Rotation angle in radians. Set to 0 if not applicable.
  4027. </member>
  4028. <member name="F:_cef_touch_event_t.radius_y">
  4029. Y radius in pixels. Set to 0 if not applicable.
  4030. </member>
  4031. <member name="F:_cef_touch_event_t.radius_x">
  4032. X radius in pixels. Set to 0 if not applicable.
  4033. </member>
  4034. <member name="F:_cef_touch_event_t.y">
  4035. Y coordinate relative to the top side of the view.
  4036. </member>
  4037. <member name="F:_cef_touch_event_t.x">
  4038. X coordinate relative to the left side of the view.
  4039. </member>
  4040. <member name="F:_cef_touch_event_t.id">
  4041. Id of a touch point. Must be unique per touch, can be any number except
  4042. -1. Note that a maximum of 16 concurrent touches will be tracked; touches
  4043. beyond that will be ignored.
  4044. </member>
  4045. <member name="T:_cef_touch_event_t">
  4046. Structure representing touch event information.
  4047. </member>
  4048. <member name="F:_cef_mouse_event_t.modifiers">
  4049. Bit flags describing any pressed modifier keys. See
  4050. cef_event_flags_t for values.
  4051. </member>
  4052. <member name="F:_cef_mouse_event_t.y">
  4053. Y coordinate relative to the top side of the view.
  4054. </member>
  4055. <member name="F:_cef_mouse_event_t.x">
  4056. X coordinate relative to the left side of the view.
  4057. </member>
  4058. <member name="T:_cef_mouse_event_t">
  4059. Structure representing mouse event information.
  4060. </member>
  4061. <member name="F:_cef_screen_info_t.available_rect">
  4062. This is set from the rcWork member of MONITORINFOEX, to whit:
  4063. "A RECT structure that specifies the work area rectangle of the
  4064. display monitor that can be used by applications, expressed in
  4065. virtual-screen coordinates. Windows uses this rectangle to
  4066. maximize an application on the monitor. The rest of the area in
  4067. rcMonitor contains system windows such as the task bar and side
  4068. bars. Note that if the monitor is not the primary display monitor,
  4069. some of the rectangle's coordinates may be negative values".
  4070. The |rect| and |available_rect| properties are used to determine the
  4071. available surface for rendering popup views.
  4072. </member>
  4073. <member name="F:_cef_screen_info_t.rect">
  4074. This is set from the rcMonitor member of MONITORINFOEX, to whit:
  4075. "A RECT structure that specifies the display monitor rectangle,
  4076. expressed in virtual-screen coordinates. Note that if the monitor
  4077. is not the primary display monitor, some of the rectangle's
  4078. coordinates may be negative values."
  4079. The |rect| and |available_rect| properties are used to determine the
  4080. available surface for rendering popup views.
  4081. </member>
  4082. <member name="F:_cef_screen_info_t.is_monochrome">
  4083. This can be true for black and white printers.
  4084. </member>
  4085. <member name="F:_cef_screen_info_t.depth_per_component">
  4086. The bits per color component. This assumes that the colors are balanced
  4087. equally.
  4088. </member>
  4089. <member name="F:_cef_screen_info_t.depth">
  4090. The screen depth in bits per pixel.
  4091. </member>
  4092. <member name="F:_cef_screen_info_t.device_scale_factor">
  4093. Device scale factor. Specifies the ratio between physical and logical
  4094. pixels.
  4095. </member>
  4096. <member name="T:_cef_screen_info_t">
  4097. Screen information used when window rendering is disabled. This structure is
  4098. passed as a parameter to CefRenderHandler::GetScreenInfo and should be
  4099. filled in by the client.
  4100. </member>
  4101. <member name="F:COM_INIT_MODE_MTA">
  4102. Initialize COM using multi-threaded apartments.
  4103. </member>
  4104. <member name="F:COM_INIT_MODE_STA">
  4105. Initialize COM using single-threaded apartments.
  4106. </member>
  4107. <member name="F:COM_INIT_MODE_NONE">
  4108. No COM initialization.
  4109. </member>
  4110. <member name="F:ML_TYPE_IO">
  4111. Supports tasks, timers and asynchronous IO events.
  4112. </member>
  4113. <member name="F:ML_TYPE_UI">
  4114. Supports tasks, timers and native UI events (e.g. Windows messages).
  4115. </member>
  4116. <member name="F:ML_TYPE_DEFAULT">
  4117. Supports tasks and timers.
  4118. </member>
  4119. <member name="F:TP_REALTIME_AUDIO">
  4120. Suitable for low-latency, glitch-resistant audio.
  4121. </member>
  4122. <member name="F:TP_DISPLAY">
  4123. Suitable for threads which generate data for the display (at ~60Hz).
  4124. </member>
  4125. <member name="F:TP_NORMAL">
  4126. Default priority level.
  4127. </member>
  4128. <member name="F:TP_BACKGROUND">
  4129. Suitable for threads that shouldn't disrupt high priority work.
  4130. </member>
  4131. <member name="F:TID_RENDERER">
  4132. The main thread in the renderer. Used for all WebKit and V8 interaction.
  4133. Tasks may be posted to this thread after
  4134. CefRenderProcessHandler::OnWebKitInitialized but are not guaranteed to
  4135. run before sub-process termination (sub-processes may be killed at any
  4136. time without warning).
  4137. </member>
  4138. <member name="F:TID_IO">
  4139. Used to process IPC and network messages. Do not perform blocking tasks on
  4140. this thread. All tasks posted after
  4141. CefBrowserProcessHandler::OnContextInitialized() and before CefShutdown()
  4142. are guaranteed to run.
  4143. </member>
  4144. <member name="F:TID_PROCESS_LAUNCHER">
  4145. Used to launch and terminate browser processes.
  4146. </member>
  4147. <member name="F:TID_FILE_USER_BLOCKING">
  4148. Used for blocking tasks like file system access that affect UI
  4149. immediately after a user interaction. All tasks posted after
  4150. CefBrowserProcessHandler::OnContextInitialized() and before CefShutdown()
  4151. are guaranteed to run.
  4152. Example: Generating data shown in the UI immediately after a click.
  4153. </member>
  4154. <member name="F:TID_FILE_USER_VISIBLE">
  4155. Used for blocking tasks like file system access that affect UI or
  4156. responsiveness of future user interactions. Do not use if an immediate
  4157. response to a user interaction is expected. All tasks posted after
  4158. CefBrowserProcessHandler::OnContextInitialized() and before CefShutdown()
  4159. are guaranteed to run.
  4160. Examples:
  4161. - Updating the UI to reflect progress on a long task.
  4162. - Loading data that might be shown in the UI after a future user
  4163. interaction.
  4164. </member>
  4165. <member name="F:TID_FILE_BACKGROUND">
  4166. Used for blocking tasks like file system access where the user won't
  4167. notice if the task takes an arbitrarily long time to complete. All tasks
  4168. posted after CefBrowserProcessHandler::OnContextInitialized() and before
  4169. CefShutdown() are guaranteed to run.
  4170. </member>
  4171. <member name="F:TID_UI">
  4172. The main thread in the browser. This will be the same as the main
  4173. application thread if CefInitialize() is called with a
  4174. CefSettings.multi_threaded_message_loop value of false. Do not perform
  4175. blocking tasks on this thread. All tasks posted after
  4176. CefBrowserProcessHandler::OnContextInitialized() and before CefShutdown()
  4177. are guaranteed to run. This thread will outlive all other CEF threads.
  4178. </member>
  4179. <member name="F:PID_RENDERER">
  4180. Renderer process.
  4181. </member>
  4182. <member name="F:PID_BROWSER">
  4183. Browser process.
  4184. </member>
  4185. <member name="F:_cef_draggable_region_t.draggable">
  4186. True (1) this this region is draggable and false (0) otherwise.
  4187. </member>
  4188. <member name="F:_cef_draggable_region_t.bounds">
  4189. Bounds of the region.
  4190. </member>
  4191. <member name="T:_cef_draggable_region_t">
  4192. Structure representing a draggable region.
  4193. </member>
  4194. <member name="F:UR_FAILED">
  4195. Request failed for some reason.
  4196. </member>
  4197. <member name="F:UR_CANCELED">
  4198. Request was canceled programatically.
  4199. </member>
  4200. <member name="F:UR_IO_PENDING">
  4201. An IO request is pending, and the caller will be informed when it is
  4202. completed.
  4203. </member>
  4204. <member name="F:UR_SUCCESS">
  4205. Request succeeded.
  4206. </member>
  4207. <member name="F:UR_UNKNOWN">
  4208. Unknown status.
  4209. </member>
  4210. <member name="F:UR_FLAG_STOP_ON_REDIRECT">
  4211. If set 3XX responses will cause the fetch to halt immediately rather than
  4212. continue through the redirect.
  4213. </member>
  4214. <member name="F:UR_FLAG_NO_RETRY_ON_5XX">
  4215. If set 5XX redirect errors will be propagated to the observer instead of
  4216. automatically re-tried. This currently only applies for requests
  4217. originated in the browser process.
  4218. </member>
  4219. <member name="F:UR_FLAG_NO_DOWNLOAD_DATA">
  4220. If set the CefURLRequestClient::OnDownloadData method will not be called.
  4221. </member>
  4222. <member name="F:UR_FLAG_REPORT_UPLOAD_PROGRESS">
  4223. If set upload progress events will be generated when a request has a body.
  4224. </member>
  4225. <member name="F:UR_FLAG_ALLOW_STORED_CREDENTIALS">
  4226. If set user name, password, and cookies may be sent with the request, and
  4227. cookies may be saved from the response.
  4228. </member>
  4229. <member name="F:UR_FLAG_DISABLE_CACHE">
  4230. If set the cache will not be used at all. Setting this value is equivalent
  4231. to specifying the "Cache-Control: no-store" request header. Setting this
  4232. value in combination with UR_FLAG_ONLY_FROM_CACHE will cause the request
  4233. to fail.
  4234. </member>
  4235. <member name="F:UR_FLAG_ONLY_FROM_CACHE">
  4236. If set the request will fail if it cannot be served from the cache (or
  4237. some equivalent local store). Setting this value is equivalent to
  4238. specifying the "Cache-Control: only-if-cached" request header. Setting
  4239. this value in combination with UR_FLAG_SKIP_CACHE or UR_FLAG_DISABLE_CACHE
  4240. will cause the request to fail.
  4241. </member>
  4242. <member name="F:UR_FLAG_SKIP_CACHE">
  4243. If set the cache will be skipped when handling the request. Setting this
  4244. value is equivalent to specifying the "Cache-Control: no-cache" request
  4245. header. Setting this value in combination with UR_FLAG_ONLY_FROM_CACHE
  4246. will cause the request to fail.
  4247. </member>
  4248. <member name="F:UR_FLAG_NONE">
  4249. Default behavior.
  4250. </member>
  4251. <member name="F:TT_QUALIFIER_MASK">
  4252. General mask defining the bits used for the qualifiers.
  4253. </member>
  4254. <member name="F:TT_IS_REDIRECT_MASK">
  4255. Used to test whether a transition involves a redirect.
  4256. </member>
  4257. <member name="F:TT_SERVER_REDIRECT_FLAG">
  4258. Redirects sent from the server by HTTP headers.
  4259. </member>
  4260. <member name="F:TT_CLIENT_REDIRECT_FLAG">
  4261. Redirects caused by JavaScript or a meta refresh tag on the page.
  4262. </member>
  4263. <member name="F:TT_CHAIN_END_FLAG">
  4264. The last transition in a redirect chain.
  4265. </member>
  4266. <member name="F:TT_CHAIN_START_FLAG">
  4267. The beginning of a navigation chain.
  4268. </member>
  4269. <member name="F:TT_FROM_API_FLAG">
  4270. The transition originated from an external application; the exact
  4271. definition of this is embedder dependent. Chrome runtime and
  4272. extension system only.
  4273. </member>
  4274. <member name="F:TT_HOME_PAGE_FLAG">
  4275. User is navigating to the home page. Chrome runtime only.
  4276. </member>
  4277. <member name="F:TT_DIRECT_LOAD_FLAG">
  4278. Loaded a URL directly via CreateBrowser, LoadURL or LoadRequest.
  4279. </member>
  4280. <member name="F:TT_FORWARD_BACK_FLAG">
  4281. Used the Forward or Back function to navigate among browsing history.
  4282. Will be ORed to the transition type for the original load.
  4283. </member>
  4284. <member name="F:TT_BLOCKED_FLAG">
  4285. Qualifiers.
  4286. Any of the core values above can be augmented by one or more qualifiers.
  4287. These qualifiers further define the transition.
  4288. Attempted to visit a URL but was blocked.
  4289. </member>
  4290. <member name="F:TT_SOURCE_MASK">
  4291. General mask defining the bits used for the source values.
  4292. </member>
  4293. <member name="F:TT_KEYWORD_GENERATED">
  4294. Corresponds to a visit generated for a keyword. See description of
  4295. TT_KEYWORD for more details. Chrome runtime only.
  4296. </member>
  4297. <member name="F:TT_KEYWORD">
  4298. The url was generated from a replaceable keyword other than the default
  4299. search provider. If the user types a keyword (which also applies to
  4300. tab-to-search) in the omnibox this qualifier is applied to the transition
  4301. type of the generated url. TemplateURLModel then may generate an
  4302. additional visit with a transition type of TT_KEYWORD_GENERATED against
  4303. the url 'http://' + keyword. For example, if you do a tab-to-search
  4304. against wikipedia the generated url has a transition qualifer of
  4305. TT_KEYWORD, and TemplateURLModel generates a visit for 'wikipedia.org'
  4306. with a transition type of TT_KEYWORD_GENERATED. Chrome runtime only.
  4307. </member>
  4308. <member name="F:TT_RELOAD">
  4309. Source is a "reload" of the page via the Reload function or by re-visiting
  4310. the same URL. NOTE: This is distinct from the concept of whether a
  4311. particular load uses "reload semantics" (i.e. bypasses cached data).
  4312. </member>
  4313. <member name="F:TT_FORM_SUBMIT">
  4314. Source is a form submission by the user. NOTE: In some situations
  4315. submitting a form does not result in this transition type. This can happen
  4316. if the form uses a script to submit the contents.
  4317. </member>
  4318. <member name="F:TT_AUTO_TOPLEVEL">
  4319. This is a toplevel navigation. This is any content that is automatically
  4320. loaded in a toplevel frame. For example, opening a tab to show the ASH
  4321. screen saver, opening the devtools window, opening the NTP after the safe
  4322. browsing warning, opening web-based dialog boxes are examples of
  4323. AUTO_TOPLEVEL navigations. Chrome runtime only.
  4324. </member>
  4325. <member name="F:TT_GENERATED">
  4326. User got to this page by typing in the URL bar and selecting an entry
  4327. that did not look like a URL. For example, a match might have the URL
  4328. of a Google search result page, but appear like "Search Google for ...".
  4329. These are not quite the same as EXPLICIT navigations because the user
  4330. didn't type or see the destination URL. Chrome runtime only.
  4331. See also TT_KEYWORD.
  4332. </member>
  4333. <member name="F:TT_MANUAL_SUBFRAME">
  4334. Source is a subframe navigation explicitly requested by the user that will
  4335. generate new navigation entries in the back/forward list. These are
  4336. probably more important than frames that were automatically loaded in
  4337. the background because the user probably cares about the fact that this
  4338. link was loaded.
  4339. </member>
  4340. <member name="F:TT_AUTO_SUBFRAME">
  4341. Source is a subframe navigation. This is any content that is automatically
  4342. loaded in a non-toplevel frame. For example, if a page consists of several
  4343. frames containing ads, those ad URLs will have this transition type.
  4344. The user may not even realize the content in these pages is a separate
  4345. frame, so may not care about the URL.
  4346. </member>
  4347. <member name="F:TT_AUTO_BOOKMARK">
  4348. User got to this page through a suggestion in the UI (for example, via the
  4349. destinations page). Chrome runtime only.
  4350. </member>
  4351. <member name="F:TT_EXPLICIT">
  4352. Source is some other "explicit" navigation. This is the default value for
  4353. navigations where the actual type is unknown. See also
  4354. TT_DIRECT_LOAD_FLAG.
  4355. </member>
  4356. <member name="F:TT_LINK">
  4357. Source is a link click or the JavaScript window.open function. This is
  4358. also the default value for requests like sub-resource loads that are not
  4359. navigations.
  4360. </member>
  4361. <member name="F:RT_NAVIGATION_PRELOAD_SUB_FRAME">
  4362. A sub-frame service worker navigation preload request.
  4363. </member>
  4364. <member name="F:RT_NAVIGATION_PRELOAD_MAIN_FRAME">
  4365. A main-frame service worker navigation preload request.
  4366. </member>
  4367. <member name="F:RT_PLUGIN_RESOURCE">
  4368. A resource that a plugin requested.
  4369. </member>
  4370. <member name="F:RT_CSP_REPORT">
  4371. A report of Content Security Policy violations.
  4372. </member>
  4373. <member name="F:RT_SERVICE_WORKER">
  4374. Main resource of a service worker.
  4375. </member>
  4376. <member name="F:RT_XHR">
  4377. XMLHttpRequest.
  4378. </member>
  4379. <member name="F:RT_FAVICON">
  4380. Favicon.
  4381. </member>
  4382. <member name="F:RT_PREFETCH">
  4383. Explicitly requested prefetch.
  4384. </member>
  4385. <member name="F:RT_SHARED_WORKER">
  4386. Main resource of a shared worker.
  4387. </member>
  4388. <member name="F:RT_WORKER">
  4389. Main resource of a dedicated worker.
  4390. </member>
  4391. <member name="F:RT_MEDIA">
  4392. Media resource.
  4393. </member>
  4394. <member name="F:RT_OBJECT">
  4395. Object (or embed) tag for a plugin, or a resource that a plugin requested.
  4396. </member>
  4397. <member name="F:RT_SUB_RESOURCE">
  4398. Some other subresource. This is the default type if the actual type is
  4399. unknown.
  4400. </member>
  4401. <member name="F:RT_FONT_RESOURCE">
  4402. Font.
  4403. </member>
  4404. <member name="F:RT_IMAGE">
  4405. Image (jpg/gif/png/etc).
  4406. </member>
  4407. <member name="F:RT_SCRIPT">
  4408. External script.
  4409. </member>
  4410. <member name="F:RT_STYLESHEET">
  4411. CSS stylesheet.
  4412. </member>
  4413. <member name="F:RT_SUB_FRAME">
  4414. Frame or iframe.
  4415. </member>
  4416. <member name="F:RT_MAIN_FRAME">
  4417. Top level page.
  4418. </member>
  4419. <member name="F:V8_PROPERTY_ATTRIBUTE_DONTDELETE">
  4420. Not configurable
  4421. </member>
  4422. <member name="F:V8_PROPERTY_ATTRIBUTE_DONTENUM">
  4423. Not enumerable
  4424. </member>
  4425. <member name="F:V8_PROPERTY_ATTRIBUTE_READONLY">
  4426. Not writeable
  4427. </member>
  4428. <member name="F:V8_PROPERTY_ATTRIBUTE_NONE">
  4429. Writeable, Enumerable, Configurable
  4430. </member>
  4431. <member name="F:CEF_WOD_NEW_PICTURE_IN_PICTURE">
  4432. Creates a new document picture-in-picture window showing a child WebView.
  4433. </member>
  4434. <member name="F:CEF_WOD_SWITCH_TO_TAB">
  4435. Activates an existing tab containing the url, rather than navigating.
  4436. This is similar to SINGLETON_TAB, but searches across all windows from
  4437. the current profile and anonymity (instead of just the current one);
  4438. closes the current tab on switching if the current tab was the NTP with
  4439. no session history; and behaves like CURRENT_TAB instead of
  4440. NEW_FOREGROUND_TAB when no existing tab is found.
  4441. </member>
  4442. <member name="F:CEF_WOD_IGNORE_ACTION">
  4443. Special case error condition from the renderer.
  4444. </member>
  4445. <member name="F:CEF_WOD_OFF_THE_RECORD">
  4446. New off-the-record (incognito) window.
  4447. </member>
  4448. <member name="F:CEF_WOD_SAVE_TO_DISK">
  4449. Alt key while clicking.
  4450. </member>
  4451. <member name="F:CEF_WOD_NEW_WINDOW">
  4452. Shift key while clicking.
  4453. </member>
  4454. <member name="F:CEF_WOD_NEW_POPUP">
  4455. New popup window.
  4456. </member>
  4457. <member name="F:CEF_WOD_NEW_BACKGROUND_TAB">
  4458. Middle mouse button or meta/ctrl key while clicking.
  4459. </member>
  4460. <member name="F:CEF_WOD_NEW_FOREGROUND_TAB">
  4461. Shift key + Middle mouse button or meta/ctrl key while clicking.
  4462. </member>
  4463. <member name="F:CEF_WOD_SINGLETON_TAB">
  4464. Indicates that only one tab with the url should exist in the same window.
  4465. </member>
  4466. <member name="F:CEF_WOD_CURRENT_TAB">
  4467. Current tab. This is the default in most cases.
  4468. </member>
  4469. <member name="F:CEF_RESULT_CODE_SANDBOX_FATAL_WARMUP">
  4470. Windows sandbox failed to warmup.
  4471. </member>
  4472. <member name="F:CEF_RESULT_CODE_SANDBOX_FATAL_MEMORY_EXCEEDED">
  4473. Windows sandbox exceeded the job memory limit.
  4474. </member>
  4475. <member name="F:CEF_RESULT_CODE_SANDBOX_FATAL_MITIGATION">
  4476. Windows sandbox could not set the mitigation policy.
  4477. </member>
  4478. <member name="F:CEF_RESULT_CODE_SANDBOX_FATAL_CLOSEHANDLES">
  4479. Windows sandbox failed to close pending handles.
  4480. </member>
  4481. <member name="F:CEF_RESULT_CODE_SANDBOX_FATAL_CACHEDISABLE">
  4482. Windows sandbox failed to forbid HCKU caching.
  4483. </member>
  4484. <member name="F:CEF_RESULT_CODE_SANDBOX_FATAL_FLUSHANDLES">
  4485. Windows sandbox failed to flush registry handles.
  4486. </member>
  4487. <member name="F:CEF_RESULT_CODE_SANDBOX_FATAL_DROPTOKEN">
  4488. Windows sandbox could not lower the token.
  4489. </member>
  4490. <member name="F:CEF_RESULT_CODE_SANDBOX_FATAL_INTEGRITY">
  4491. Windows sandbox could not set the integrity level.
  4492. </member>
  4493. <member name="F:CEF_RESULT_CODE_SYSTEM_RESOURCE_EXHAUSTED">
  4494. The browser process exited because system resources are exhausted. The
  4495. system state can't be recovered and will be unstable.
  4496. </member>
  4497. <member name="F:CEF_RESULT_CODE_NORMAL_EXIT_PACK_EXTENSION_SUCCESS">
  4498. An early startup command was executed and the browser must exit.
  4499. </member>
  4500. <member name="F:CEF_RESULT_CODE_GPU_EXIT_ON_CONTEXT_LOST">
  4501. The GPU process was terminated due to context lost.
  4502. </member>
  4503. <member name="F:CEF_RESULT_CODE_CLOUD_POLICY_ENROLLMENT_FAILED">
  4504. Cloud policy enrollment failed or was given up by user.
  4505. </member>
  4506. <member name="F:CEF_RESULT_CODE_INVALID_SANDBOX_STATE">
  4507. A browser process was sandboxed. This should never happen.
  4508. </member>
  4509. <member name="F:CEF_RESULT_CODE_NORMAL_EXIT_PROCESS_NOTIFIED">
  4510. The browser process exited early by passing the command line to another
  4511. running browser.
  4512. </member>
  4513. <member name="F:CEF_RESULT_CODE_PACK_EXTENSION_ERROR">
  4514. Failed to pack an extension via the command line.
  4515. </member>
  4516. <member name="F:CEF_RESULT_CODE_PROFILE_IN_USE">
  4517. The profile was in use on another host.
  4518. </member>
  4519. <member name="F:CEF_RESULT_CODE_UNSUPPORTED_PARAM">
  4520. Command line parameter is not supported.
  4521. </member>
  4522. <member name="F:CEF_RESULT_CODE_MISSING_DATA">
  4523. A critical chrome file is missing.
  4524. </member>
  4525. <member name="F:CEF_RESULT_CODE_GPU_DEAD_ON_ARRIVAL">
  4526. The GPU process exited because initialization failed.
  4527. </member>
  4528. <member name="F:CEF_RESULT_CODE_KILLED_BAD_MESSAGE">
  4529. A bad message caused the process termination.
  4530. </member>
  4531. <member name="F:CEF_RESULT_CODE_HUNG">
  4532. Process hung.
  4533. </member>
  4534. <member name="F:CEF_RESULT_CODE_KILLED">
  4535. Process was killed by user or system.
  4536. </member>
  4537. <member name="F:PK_DIR_RESOURCES">
  4538. Directory containing application resources. Can be configured via
  4539. CefSettings.resources_dir_path.
  4540. </member>
  4541. <member name="F:PK_USER_DATA">
  4542. "Application Data" directory under the user profile directory on Windows
  4543. and "~/Library/Application Support" directory on MacOS.
  4544. </member>
  4545. <member name="F:PK_LOCAL_APP_DATA">
  4546. "Local Settings\Application Data" directory under the user profile
  4547. directory on Windows.
  4548. </member>
  4549. <member name="F:PK_FILE_MODULE">
  4550. Path and filename of the module containing the CEF code (usually the
  4551. libcef module).
  4552. </member>
  4553. <member name="F:PK_FILE_EXE">
  4554. Path and filename of the current executable.
  4555. </member>
  4556. <member name="F:PK_DIR_TEMP">
  4557. Temporary directory.
  4558. </member>
  4559. <member name="F:PK_DIR_MODULE">
  4560. Directory containing PK_FILE_MODULE.
  4561. </member>
  4562. <member name="F:PK_DIR_EXE">
  4563. Directory containing PK_FILE_EXE.
  4564. </member>
  4565. <member name="F:PK_DIR_CURRENT">
  4566. Current directory.
  4567. </member>
  4568. <member name="F:TS_INTEGRITY_FAILURE">
  4569. On Windows, the OS terminated the process due to code integrity failure.
  4570. </member>
  4571. <member name="F:TS_LAUNCH_FAILED">
  4572. Child process never launched.
  4573. </member>
  4574. <member name="F:TS_PROCESS_OOM">
  4575. Out of memory. Some platforms may use TS_PROCESS_CRASHED instead.
  4576. </member>
  4577. <member name="F:TS_PROCESS_CRASHED">
  4578. Segmentation fault.
  4579. </member>
  4580. <member name="F:TS_PROCESS_WAS_KILLED">
  4581. SIGKILL or task manager kill.
  4582. </member>
  4583. <member name="F:TS_ABNORMAL_TERMINATION">
  4584. Non-zero exit status.
  4585. </member>
  4586. <member name="F:_cef_cookie_t.priority">
  4587. Priority.
  4588. </member>
  4589. <member name="F:_cef_cookie_t.same_site">
  4590. Same site.
  4591. </member>
  4592. <member name="F:_cef_cookie_t.has_expires">
  4593. The cookie expiration date is only valid if |has_expires| is true.
  4594. </member>
  4595. <member name="F:_cef_cookie_t.last_access">
  4596. The cookie last access date. This is automatically populated by the system
  4597. on access.
  4598. </member>
  4599. <member name="F:_cef_cookie_t.creation">
  4600. The cookie creation date. This is automatically populated by the system on
  4601. cookie creation.
  4602. </member>
  4603. <member name="F:_cef_cookie_t.httponly">
  4604. If |httponly| is true the cookie will only be sent for HTTP requests.
  4605. </member>
  4606. <member name="F:_cef_cookie_t.secure">
  4607. If |secure| is true the cookie will only be sent for HTTPS requests.
  4608. </member>
  4609. <member name="F:_cef_cookie_t.path">
  4610. If |path| is non-empty only URLs at or below the path will get the cookie
  4611. value.
  4612. </member>
  4613. <member name="F:_cef_cookie_t.domain">
  4614. If |domain| is empty a host cookie will be created instead of a domain
  4615. cookie. Domain cookies are stored with a leading "." and are visible to
  4616. sub-domains whereas host cookies are not.
  4617. </member>
  4618. <member name="F:_cef_cookie_t.value">
  4619. The cookie value.
  4620. </member>
  4621. <member name="F:_cef_cookie_t.name">
  4622. The cookie name.
  4623. </member>
  4624. <member name="T:_cef_cookie_t">
  4625. Cookie information.
  4626. </member>
  4627. <member name="F:_cef_urlparts_t.fragment">
  4628. Fragment (hash) identifier component (i.e., the string following the '#').
  4629. </member>
  4630. <member name="F:_cef_urlparts_t.query">
  4631. Query string component (i.e., everything following the '?').
  4632. </member>
  4633. <member name="F:_cef_urlparts_t.path">
  4634. Path component including the first slash following the host.
  4635. </member>
  4636. <member name="F:_cef_urlparts_t.origin">
  4637. Origin contains just the scheme, host, and port from a URL. Equivalent to
  4638. clearing any username and password, replacing the path with a slash, and
  4639. clearing everything after that. This value will be empty for non-standard
  4640. URLs.
  4641. </member>
  4642. <member name="F:_cef_urlparts_t.port">
  4643. Port number component.
  4644. </member>
  4645. <member name="F:_cef_urlparts_t.host">
  4646. Host component. This may be a hostname, an IPv4 address or an IPv6 literal
  4647. surrounded by square brackets (e.g., "[2001:db8::1]").
  4648. </member>
  4649. <member name="F:_cef_urlparts_t.password">
  4650. Password component.
  4651. </member>
  4652. <member name="F:_cef_urlparts_t.username">
  4653. User name component.
  4654. </member>
  4655. <member name="F:_cef_urlparts_t.scheme">
  4656. Scheme component not including the colon (e.g., "http").
  4657. </member>
  4658. <member name="F:_cef_urlparts_t.spec">
  4659. The complete URL specification.
  4660. </member>
  4661. <member name="T:_cef_urlparts_t">
  4662. URL component parts.
  4663. </member>
  4664. <member name="F:RV_CONTINUE_ASYNC">
  4665. Continue asynchronously (usually via a callback).
  4666. </member>
  4667. <member name="F:RV_CONTINUE">
  4668. Continue immediately.
  4669. </member>
  4670. <member name="F:RV_CANCEL">
  4671. Cancel immediately.
  4672. </member>
  4673. <member name="F:_cef_browser_settings_t.chrome_zoom_bubble">
  4674. Controls whether the Chrome zoom bubble will be shown when zooming. Only
  4675. supported with the Chrome runtime.
  4676. </member>
  4677. <member name="F:_cef_browser_settings_t.chrome_status_bubble">
  4678. Controls whether the Chrome status bubble will be used. Only supported
  4679. with the Chrome runtime. For details about the status bubble see
  4680. https://www.chromium.org/user-experience/status-bubble/
  4681. </member>
  4682. <member name="F:_cef_browser_settings_t.background_color">
  4683. END values that map to WebPreferences settings.
  4684. Background color used for the browser before a document is loaded and when
  4685. no document color is specified. The alpha component must be either fully
  4686. opaque (0xFF) or fully transparent (0x00). If the alpha component is fully
  4687. opaque then the RGB components will be used as the background color. If
  4688. the alpha component is fully transparent for a windowed browser then the
  4689. CefSettings.background_color value will be used. If the alpha component is
  4690. fully transparent for a windowless (off-screen) browser then transparent
  4691. painting will be enabled.
  4692. </member>
  4693. <member name="F:_cef_browser_settings_t.webgl">
  4694. Controls whether WebGL can be used. Note that WebGL requires hardware
  4695. support and may not work on all systems even when enabled. Also
  4696. configurable using the "disable-webgl" command-line switch.
  4697. </member>
  4698. <member name="F:_cef_browser_settings_t.databases">
  4699. Controls whether databases can be used. Also configurable using the
  4700. "disable-databases" command-line switch.
  4701. </member>
  4702. <member name="F:_cef_browser_settings_t.local_storage">
  4703. Controls whether local storage can be used. Also configurable using the
  4704. "disable-local-storage" command-line switch.
  4705. </member>
  4706. <member name="F:_cef_browser_settings_t.tab_to_links">
  4707. Controls whether the tab key can advance focus to links. Also configurable
  4708. using the "disable-tab-to-links" command-line switch.
  4709. </member>
  4710. <member name="F:_cef_browser_settings_t.text_area_resize">
  4711. Controls whether text areas can be resized. Also configurable using the
  4712. "disable-text-area-resize" command-line switch.
  4713. </member>
  4714. <member name="F:_cef_browser_settings_t.image_shrink_standalone_to_fit">
  4715. Controls whether standalone images will be shrunk to fit the page. Also
  4716. configurable using the "image-shrink-standalone-to-fit" command-line
  4717. switch.
  4718. </member>
  4719. <member name="F:_cef_browser_settings_t.image_loading">
  4720. Controls whether image URLs will be loaded from the network. A cached
  4721. image will still be rendered if requested. Also configurable using the
  4722. "disable-image-loading" command-line switch.
  4723. </member>
  4724. <member name="F:_cef_browser_settings_t.javascript_dom_paste">
  4725. Controls whether DOM pasting is supported in the editor via
  4726. execCommand("paste"). The |javascript_access_clipboard| setting must also
  4727. be enabled. Also configurable using the "disable-javascript-dom-paste"
  4728. command-line switch.
  4729. </member>
  4730. <member name="F:_cef_browser_settings_t.javascript_access_clipboard">
  4731. Controls whether JavaScript can access the clipboard. Also configurable
  4732. using the "disable-javascript-access-clipboard" command-line switch.
  4733. </member>
  4734. <member name="F:_cef_browser_settings_t.javascript_close_windows">
  4735. Controls whether JavaScript can be used to close windows that were not
  4736. opened via JavaScript. JavaScript can still be used to close windows that
  4737. were opened via JavaScript or that have no back/forward history. Also
  4738. configurable using the "disable-javascript-close-windows" command-line
  4739. switch.
  4740. </member>
  4741. <member name="F:_cef_browser_settings_t.javascript">
  4742. Controls whether JavaScript can be executed. Also configurable using the
  4743. "disable-javascript" command-line switch.
  4744. </member>
  4745. <member name="F:_cef_browser_settings_t.remote_fonts">
  4746. Controls the loading of fonts from remote sources. Also configurable using
  4747. the "disable-remote-fonts" command-line switch.
  4748. </member>
  4749. <member name="F:_cef_browser_settings_t.default_encoding">
  4750. Default encoding for Web content. If empty "ISO-8859-1" will be used. Also
  4751. configurable using the "default-encoding" command-line switch.
  4752. </member>
  4753. <member name="F:_cef_browser_settings_t.standard_font_family">
  4754. BEGIN values that map to WebPreferences settings.
  4755. Font settings.
  4756. </member>
  4757. <member name="F:_cef_browser_settings_t.windowless_frame_rate">
  4758. The maximum rate in frames per second (fps) that CefRenderHandler::OnPaint
  4759. will be called for a windowless browser. The actual fps may be lower if
  4760. the browser cannot generate frames at the requested rate. The minimum
  4761. value is 1 and the maximum value is 60 (default 30). This value can also
  4762. be changed dynamically via CefBrowserHost::SetWindowlessFrameRate.
  4763. </member>
  4764. <member name="F:_cef_browser_settings_t.size">
  4765. Size of this structure.
  4766. </member>
  4767. <member name="T:_cef_browser_settings_t">
  4768. Browser initialization settings. Specify NULL or 0 to get the recommended
  4769. default values. The consequences of using custom values may not be well
  4770. tested. Many of these and other settings can also configured using command-
  4771. line switches.
  4772. </member>
  4773. <member name="F:_cef_request_context_settings_t.cookieable_schemes_list">
  4774. Comma delimited list of schemes supported by the associated
  4775. CefCookieManager. If |cookieable_schemes_exclude_defaults| is false (0)
  4776. the default schemes ("http", "https", "ws" and "wss") will also be
  4777. supported. Not specifying a |cookieable_schemes_list| value and setting
  4778. |cookieable_schemes_exclude_defaults| to true (1) will disable all loading
  4779. and saving of cookies. These values will be ignored if |cache_path|
  4780. matches the CefSettings.cache_path value.
  4781. </member>
  4782. <member name="F:_cef_request_context_settings_t.accept_language_list">
  4783. Comma delimited ordered list of language codes without any whitespace that
  4784. will be used in the "Accept-Language" HTTP request header and
  4785. "navigator.language" JS attribute. Can be set globally using the
  4786. CefSettings.accept_language_list value. If all values are empty then
  4787. "en-US,en" will be used. This value will be ignored if |cache_path|
  4788. matches the CefSettings.cache_path value.
  4789. </member>
  4790. <member name="F:_cef_request_context_settings_t.persist_user_preferences">
  4791. To persist user preferences as a JSON file in the cache path directory set
  4792. this value to true (1). Can be set globally using the
  4793. CefSettings.persist_user_preferences value. This value will be ignored if
  4794. |cache_path| is empty or if it matches the CefSettings.cache_path value.
  4795. </member>
  4796. <member name="F:_cef_request_context_settings_t.persist_session_cookies">
  4797. To persist session cookies (cookies without an expiry date or validity
  4798. interval) by default when using the global cookie manager set this value
  4799. to true (1). Session cookies are generally intended to be transient and
  4800. most Web browsers do not persist them. Can be set globally using the
  4801. CefSettings.persist_session_cookies value. This value will be ignored if
  4802. |cache_path| is empty or if it matches the CefSettings.cache_path value.
  4803. </member>
  4804. <member name="F:_cef_request_context_settings_t.cache_path">
  4805. The directory where cache data for this request context will be stored on
  4806. disk. If this value is non-empty then it must be an absolute path that is
  4807. either equal to or a child directory of CefSettings.root_cache_path. If
  4808. this value is empty then browsers will be created in "incognito mode"
  4809. where in-memory caches are used for storage and no profile-specific data
  4810. is persisted to disk (installation-specific data will still be persisted
  4811. in root_cache_path). HTML5 databases such as localStorage will only
  4812. persist across sessions if a cache path is specified. To share the global
  4813. browser cache and related configuration set this value to match the
  4814. CefSettings.cache_path value.
  4815. </member>
  4816. <member name="F:_cef_request_context_settings_t.size">
  4817. Size of this structure.
  4818. </member>
  4819. <member name="T:_cef_request_context_settings_t">
  4820. Request context initialization settings. Specify NULL or 0 to get the
  4821. recommended default values.
  4822. </member>
  4823. <member name="F:_cef_settings_t.chrome_app_icon_id">
  4824. Specify an ID for an ICON resource that can be loaded from the main
  4825. executable and used when creating default Chrome windows such as DevTools
  4826. and Task Manager. If unspecified the default Chromium ICON (IDR_MAINFRAME
  4827. [101]) will be loaded from libcef.dll. Only supported with the Chrome
  4828. runtime on Windows.
  4829. </member>
  4830. <member name="F:_cef_settings_t.chrome_policy_id">
  4831. Specify an ID to enable Chrome policy management via Platform and OS-user
  4832. policies. On Windows, this is a registry key like
  4833. "SOFTWARE\\Policies\\Google\\Chrome". On MacOS, this is a bundle ID like
  4834. "com.google.Chrome". On Linux, this is an absolute directory path like
  4835. "/etc/opt/chrome/policies". Only supported with the Chrome runtime. See
  4836. https://support.google.com/chrome/a/answer/9037717 for details.
  4837. Chrome Browser Cloud Management integration, when enabled via the
  4838. "enable-chrome-browser-cloud-management" command-line flag, will also use
  4839. the specified ID. See https://support.google.com/chrome/a/answer/9116814
  4840. for details.
  4841. </member>
  4842. <member name="F:_cef_settings_t.cookieable_schemes_list">
  4843. Comma delimited list of schemes supported by the associated
  4844. CefCookieManager. If |cookieable_schemes_exclude_defaults| is false (0)
  4845. the default schemes ("http", "https", "ws" and "wss") will also be
  4846. supported. Not specifying a |cookieable_schemes_list| value and setting
  4847. |cookieable_schemes_exclude_defaults| to true (1) will disable all loading
  4848. and saving of cookies. These settings will only impact the global
  4849. CefRequestContext. Individual CefRequestContext instances can be
  4850. configured via the CefRequestContextSettings.cookieable_schemes_list and
  4851. CefRequestContextSettings.cookieable_schemes_exclude_defaults values.
  4852. </member>
  4853. <member name="F:_cef_settings_t.accept_language_list">
  4854. Comma delimited ordered list of language codes without any whitespace that
  4855. will be used in the "Accept-Language" HTTP request header and
  4856. "navigator.language" JS attribute. Can be overridden for individual
  4857. CefRequestContext instances via the
  4858. CefRequestContextSettings.accept_language_list value.
  4859. </member>
  4860. <member name="F:_cef_settings_t.background_color">
  4861. Background color used for the browser before a document is loaded and when
  4862. no document color is specified. The alpha component must be either fully
  4863. opaque (0xFF) or fully transparent (0x00). If the alpha component is fully
  4864. opaque then the RGB components will be used as the background color. If
  4865. the alpha component is fully transparent for a windowed browser then the
  4866. default value of opaque white be used. If the alpha component is fully
  4867. transparent for a windowless (off-screen) browser then transparent
  4868. painting will be enabled.
  4869. </member>
  4870. <member name="F:_cef_settings_t.uncaught_exception_stack_size">
  4871. The number of stack trace frames to capture for uncaught exceptions.
  4872. Specify a positive value to enable the
  4873. CefRenderProcessHandler::OnUncaughtException() callback. Specify 0
  4874. (default value) and OnUncaughtException() will not be called. Also
  4875. configurable using the "uncaught-exception-stack-size" command-line
  4876. switch.
  4877. </member>
  4878. <member name="F:_cef_settings_t.pack_loading_disabled">
  4879. Set to true (1) to disable loading of pack files for resources and
  4880. locales. A resource bundle handler must be provided for the browser and
  4881. render processes via CefApp::GetResourceBundleHandler() if loading of pack
  4882. files is disabled. Also configurable using the "disable-pack-loading"
  4883. command- line switch.
  4884. </member>
  4885. <member name="F:_cef_settings_t.locales_dir_path">
  4886. The fully qualified path for the locales directory. If this value is empty
  4887. the locales directory must be located in the module directory. If this
  4888. value is non-empty then it must be an absolute path. This value is ignored
  4889. on MacOS where pack files are always loaded from the app bundle Resources
  4890. directory. Also configurable using the "locales-dir-path" command-line
  4891. switch.
  4892. </member>
  4893. <member name="F:_cef_settings_t.resources_dir_path">
  4894. The fully qualified path for the resources directory. If this value is
  4895. empty the *.pak files must be located in the module directory on
  4896. Windows/Linux or the app bundle Resources directory on MacOS. If this
  4897. value is non-empty then it must be an absolute path. Also configurable
  4898. using the "resources-dir-path" command-line switch.
  4899. </member>
  4900. <member name="F:_cef_settings_t.javascript_flags">
  4901. Custom flags that will be used when initializing the V8 JavaScript engine.
  4902. The consequences of using custom flags may not be well tested. Also
  4903. configurable using the "js-flags" command-line switch.
  4904. </member>
  4905. <member name="F:_cef_settings_t.log_items">
  4906. The log items prepended to each log line. If not set the default log items
  4907. will be used. Also configurable using the "log-items" command-line switch
  4908. with a value of "none" for no log items, or a comma-delimited list of
  4909. values "pid", "tid", "timestamp" or "tickcount" for custom log items.
  4910. </member>
  4911. <member name="F:_cef_settings_t.log_severity">
  4912. The log severity. Only messages of this severity level or higher will be
  4913. logged. When set to DISABLE no messages will be written to the log file,
  4914. but FATAL messages will still be output to stderr. Also configurable using
  4915. the "log-severity" command-line switch with a value of "verbose", "info",
  4916. "warning", "error", "fatal" or "disable".
  4917. </member>
  4918. <member name="F:_cef_settings_t.log_file">
  4919. The directory and file name to use for the debug log. If empty a default
  4920. log file name and location will be used. On Windows and Linux a
  4921. "debug.log" file will be written in the main executable directory. On
  4922. MacOS a "~/Library/Logs/[app name]_debug.log" file will be written where
  4923. [app name] is the name of the main app executable. Also configurable using
  4924. the "log-file" command-line switch.
  4925. </member>
  4926. <member name="F:_cef_settings_t.locale">
  4927. The locale string that will be passed to WebKit. If empty the default
  4928. locale of "en-US" will be used. This value is ignored on Linux where
  4929. locale is determined using environment variable parsing with the
  4930. precedence order: LANGUAGE, LC_ALL, LC_MESSAGES and LANG. Also
  4931. configurable using the "lang" command-line switch.
  4932. </member>
  4933. <member name="F:_cef_settings_t.user_agent_product">
  4934. Value that will be inserted as the product portion of the default
  4935. User-Agent string. If empty the Chromium product version will be used. If
  4936. |userAgent| is specified this value will be ignored. Also configurable
  4937. using the "user-agent-product" command-line switch.
  4938. </member>
  4939. <member name="F:_cef_settings_t.user_agent">
  4940. Value that will be returned as the User-Agent HTTP header. If empty the
  4941. default User-Agent string will be used. Also configurable using the
  4942. "user-agent" command-line switch.
  4943. </member>
  4944. <member name="F:_cef_settings_t.persist_user_preferences">
  4945. To persist user preferences as a JSON file in the cache path directory set
  4946. this value to true (1). A |cache_path| value must also be specified
  4947. to enable this feature. Also configurable using the
  4948. "persist-user-preferences" command-line switch. Can be overridden for
  4949. individual CefRequestContext instances via the
  4950. CefRequestContextSettings.persist_user_preferences value.
  4951. </member>
  4952. <member name="F:_cef_settings_t.persist_session_cookies">
  4953. To persist session cookies (cookies without an expiry date or validity
  4954. interval) by default when using the global cookie manager set this value
  4955. to true (1). Session cookies are generally intended to be transient and
  4956. most Web browsers do not persist them. A |cache_path| value must also be
  4957. specified to enable this feature. Also configurable using the
  4958. "persist-session-cookies" command-line switch. Can be overridden for
  4959. individual CefRequestContext instances via the
  4960. CefRequestContextSettings.persist_session_cookies value.
  4961. </member>
  4962. <member name="F:_cef_settings_t.root_cache_path">
  4963. The root directory for installation-specific data and the parent directory
  4964. for profile-specific data. All CefSettings.cache_path and
  4965. CefRequestContextSettings.cache_path values must have this parent
  4966. directory in common. If this value is empty and CefSettings.cache_path is
  4967. non-empty then it will default to the CefSettings.cache_path value. Any
  4968. non-empty value must be an absolute path. If both values are empty then
  4969. the default platform-specific directory will be used
  4970. ("~/.config/cef_user_data" directory on Linux, "~/Library/Application
  4971. Support/CEF/User Data" directory on MacOS, "AppData\Local\CEF\User Data"
  4972. directory under the user profile directory on Windows). Use of the default
  4973. directory is not recommended in production applications (see below).
  4974. Multiple application instances writing to the same root_cache_path
  4975. directory could result in data corruption. A process singleton lock based
  4976. on the root_cache_path value is therefore used to protect against this.
  4977. This singleton behavior applies to all CEF-based applications using
  4978. version 120 or newer. You should customize root_cache_path for your
  4979. application and implement CefBrowserProcessHandler::
  4980. OnAlreadyRunningAppRelaunch, which will then be called on any app relaunch
  4981. with the same root_cache_path value.
  4982. Failure to set the root_cache_path value correctly may result in startup
  4983. crashes or other unexpected behaviors (for example, the sandbox blocking
  4984. read/write access to certain files).
  4985. </member>
  4986. <member name="F:_cef_settings_t.cache_path">
  4987. The directory where data for the global browser cache will be stored on
  4988. disk. If this value is non-empty then it must be an absolute path that is
  4989. either equal to or a child directory of CefSettings.root_cache_path. If
  4990. this value is empty then browsers will be created in "incognito mode"
  4991. where in-memory caches are used for storage and no profile-specific data
  4992. is persisted to disk (installation-specific data will still be persisted
  4993. in root_cache_path). HTML5 databases such as localStorage will only
  4994. persist across sessions if a cache path is specified. Can be overridden
  4995. for individual CefRequestContext instances via the
  4996. CefRequestContextSettings.cache_path value. When using the Chrome runtime
  4997. any child directory value will be ignored and the "default" profile (also
  4998. a child directory) will be used instead.
  4999. </member>
  5000. <member name="F:_cef_settings_t.command_line_args_disabled">
  5001. Set to true (1) to disable configuration of browser process features using
  5002. standard CEF and Chromium command-line arguments. Configuration can still
  5003. be specified using CEF data structures or via the
  5004. CefApp::OnBeforeCommandLineProcessing() method.
  5005. </member>
  5006. <member name="F:_cef_settings_t.windowless_rendering_enabled">
  5007. Set to true (1) to enable windowless (off-screen) rendering support. Do
  5008. not enable this value if the application does not use windowless rendering
  5009. as it may reduce rendering performance on some systems.
  5010. </member>
  5011. <member name="F:_cef_settings_t.external_message_pump">
  5012. Set to true (1) to control browser process main (UI) thread message pump
  5013. scheduling via the CefBrowserProcessHandler::OnScheduleMessagePumpWork()
  5014. callback. This option is recommended for use in combination with the
  5015. CefDoMessageLoopWork() function in cases where the CEF message loop must
  5016. be integrated into an existing application message loop (see additional
  5017. comments and warnings on CefDoMessageLoopWork). Enabling this option is
  5018. not recommended for most users; leave this option disabled and use either
  5019. the CefRunMessageLoop() function or multi_threaded_message_loop if
  5020. possible.
  5021. </member>
  5022. <member name="F:_cef_settings_t.multi_threaded_message_loop">
  5023. Set to true (1) to have the browser process message loop run in a separate
  5024. thread. If false (0) then the CefDoMessageLoopWork() function must be
  5025. called from your application message loop. This option is only supported
  5026. on Windows and Linux.
  5027. </member>
  5028. <member name="F:_cef_settings_t.chrome_runtime">
  5029. Set to true (1) to enable use of the Chrome runtime in CEF. This feature
  5030. is considered experimental and is not recommended for most users at this
  5031. time. See issue #2969 for details.
  5032. </member>
  5033. <member name="F:_cef_settings_t.main_bundle_path">
  5034. The path to the main bundle on macOS. If this value is empty then it
  5035. defaults to the top-level app bundle. If this value is non-empty then it
  5036. must be an absolute path. Also configurable using the "main-bundle-path"
  5037. command-line switch.
  5038. </member>
  5039. <member name="F:_cef_settings_t.framework_dir_path">
  5040. The path to the CEF framework directory on macOS. If this value is empty
  5041. then the framework must exist at "Contents/Frameworks/Chromium Embedded
  5042. Framework.framework" in the top-level app bundle. If this value is
  5043. non-empty then it must be an absolute path. Also configurable using the
  5044. "framework-dir-path" command-line switch.
  5045. </member>
  5046. <member name="F:_cef_settings_t.no_sandbox">
  5047. Set to true (1) to disable the sandbox for sub-processes. See
  5048. cef_sandbox_win.h for requirements to enable the sandbox on Windows. Also
  5049. configurable using the "no-sandbox" command-line switch.
  5050. </member>
  5051. <member name="F:_cef_settings_t.size">
  5052. Size of this structure.
  5053. </member>
  5054. <member name="T:_cef_settings_t">
  5055. Initialization settings. Specify NULL or 0 to get the recommended default
  5056. values. Many of these and other settings can also configured using command-
  5057. line switches.
  5058. </member>
  5059. <member name="F:STATE_DISABLED">
  5060. Disable or disallow the setting.
  5061. </member>
  5062. <member name="F:STATE_ENABLED">
  5063. Enable or allow the setting.
  5064. </member>
  5065. <member name="F:STATE_DEFAULT">
  5066. Use the default state for the setting.
  5067. </member>
  5068. <member name="F:LOG_ITEMS_FLAG_TICK_COUNT">
  5069. Prepend the tickcount.
  5070. </member>
  5071. <member name="F:LOG_ITEMS_FLAG_TIME_STAMP">
  5072. Prepend the timestamp.
  5073. </member>
  5074. <member name="F:LOG_ITEMS_FLAG_THREAD_ID">
  5075. Prepend the thread ID.
  5076. </member>
  5077. <member name="F:LOG_ITEMS_FLAG_PROCESS_ID">
  5078. Prepend the process ID.
  5079. </member>
  5080. <member name="F:LOG_ITEMS_NONE">
  5081. Prepend no items.
  5082. </member>
  5083. <member name="F:LOG_ITEMS_DEFAULT">
  5084. Prepend the default list of items.
  5085. </member>
  5086. <member name="F:LOGSEVERITY_DISABLE">
  5087. Disable logging to file for all messages, and to stderr for messages with
  5088. severity less than FATAL.
  5089. </member>
  5090. <member name="F:LOGSEVERITY_FATAL">
  5091. FATAL logging.
  5092. </member>
  5093. <member name="F:LOGSEVERITY_ERROR">
  5094. ERROR logging.
  5095. </member>
  5096. <member name="F:LOGSEVERITY_WARNING">
  5097. WARNING logging.
  5098. </member>
  5099. <member name="F:LOGSEVERITY_INFO">
  5100. INFO logging.
  5101. </member>
  5102. <member name="F:LOGSEVERITY_DEBUG">
  5103. DEBUG logging.
  5104. </member>
  5105. <member name="F:LOGSEVERITY_VERBOSE">
  5106. Verbose logging.
  5107. </member>
  5108. <member name="F:LOGSEVERITY_DEFAULT">
  5109. Default logging (currently INFO logging).
  5110. </member>
  5111. <member name="F:_cef_accelerated_paint_info_t.format">
  5112. The pixel format of the texture.
  5113. </member>
  5114. <member name="F:_cef_accelerated_paint_info_t.shared_texture_handle">
  5115. Handle for the shared texture. The shared texture is instantiated
  5116. without a keyed mutex.
  5117. </member>
  5118. <member name="T:_cef_accelerated_paint_info_t">
  5119. Structure containing shared texture information for the OnAcceleratedPaint
  5120. callback. Resources will be released to the underlying pool for reuse when
  5121. the callback returns from client code.
  5122. </member>
  5123. <member name="F:_cef_window_info_t.runtime_style">
  5124. Optionally change the runtime style. Alloy style will always be used if
  5125. |windowless_rendering_enabled| is true. See cef_runtime_style_t
  5126. documentation for details.
  5127. </member>
  5128. <member name="F:_cef_window_info_t.window">
  5129. Handle for the new browser window. Only used with windowed rendering.
  5130. </member>
  5131. <member name="F:_cef_window_info_t.external_begin_frame_enabled">
  5132. Set to true (1) to enable the ability to issue BeginFrame requests from
  5133. the client application by calling CefBrowserHost::SendExternalBeginFrame.
  5134. </member>
  5135. <member name="F:_cef_window_info_t.shared_texture_enabled">
  5136. Set to true (1) to enable shared textures for windowless rendering. Only
  5137. valid if windowless_rendering_enabled above is also set to true. Currently
  5138. only supported on Windows (D3D11).
  5139. </member>
  5140. <member name="F:_cef_window_info_t.windowless_rendering_enabled">
  5141. Set to true (1) to create the browser using windowless (off-screen)
  5142. rendering. No window will be created for the browser and all rendering
  5143. will occur via the CefRenderHandler interface. The |parent_window| value
  5144. will be used to identify monitor info and to act as the parent window for
  5145. dialogs, context menus, etc. If |parent_window| is not provided then the
  5146. main screen monitor will be used and some functionality that requires a
  5147. parent window may not function correctly. In order to create windowless
  5148. browsers the CefSettings.windowless_rendering_enabled value must be set to
  5149. true. Transparent painting is enabled by default but can be disabled by
  5150. setting CefBrowserSettings.background_color to an opaque value.
  5151. </member>
  5152. <member name="T:_cef_window_info_t">
  5153. Structure representing window information.
  5154. </member>
  5155. <member name="T:_cef_main_args_t">
  5156. Structure representing CefExecuteProcess arguments.
  5157. </member>
  5158. <member name="F:CEF_RUNTIME_STYLE_ALLOY">
  5159. Use the Alloy runtime style. Supported with both the Alloy and Chrome
  5160. runtime.
  5161. </member>
  5162. <member name="F:CEF_RUNTIME_STYLE_CHROME">
  5163. Use the Chrome runtime style. Only supported with the Chrome runtime.
  5164. </member>
  5165. <member name="F:CEF_RUNTIME_STYLE_DEFAULT">
  5166. Use the default runtime style. The default style will match the
  5167. CefSettings.chrome_runtime value in most cases. See above documentation
  5168. for exceptions.
  5169. </member>
  5170. <member name="F:CEF_COLOR_TYPE_BGRA_8888">
  5171. BGRA with 8 bits per pixel (32bits total).
  5172. </member>
  5173. <member name="F:CEF_COLOR_TYPE_RGBA_8888">
  5174. RGBA with 8 bits per pixel (32bits total).
  5175. </member>
  5176. <member name="T:_cef_insets_t">
  5177. Structure representing insets.
  5178. </member>
  5179. <member name="T:_cef_size_t">
  5180. Structure representing a size.
  5181. </member>
  5182. <member name="T:_cef_rect_t">
  5183. Structure representing a rectangle.
  5184. </member>
  5185. <member name="T:_cef_point_t">
  5186. Structure representing a point.
  5187. </member>
  5188. <member name="F:CEF_CONTENT_SETTING_TYPE_TRACKING_PROTECTION">
  5189. Content setting that controls tracking protection status per site.
  5190. BLOCK: Protections enabled. This is the default state.
  5191. ALLOW: Protections disabled.
  5192. </member>
  5193. <member name="F:CEF_CONTENT_SETTING_TYPE_REVOKED_ABUSIVE_NOTIFICATION_PERMISSIONS">
  5194. Website setting which is used for UnusedSitePermissionsService to store
  5195. auto-revoked notification permissions from abusive sites.
  5196. </member>
  5197. <member name="F:CEF_CONTENT_SETTING_TYPE_POINTER_LOCK">
  5198. Pointer Lock API allows a site to hide the cursor and have exclusive
  5199. access to mouse inputs.
  5200. </member>
  5201. <member name="F:CEF_CONTENT_SETTING_TYPE_KEYBOARD_LOCK">
  5202. Keyboard Lock API allows a site to capture keyboard inputs that would
  5203. otherwise be handled by the OS or the browser.
  5204. </member>
  5205. <member name="F:CEF_CONTENT_SETTING_TYPE_DIRECT_SOCKETS">
  5206. Content settings for access to the Direct Sockets API.
  5207. </member>
  5208. <member name="F:CEF_CONTENT_SETTING_TYPE_SPEAKER_SELECTION">
  5209. Whether an application can enumerate audio output device.
  5210. </member>
  5211. <member name="F:CEF_CONTENT_SETTING_TYPE_SUB_APP_INSTALLATION_PROMPTS">
  5212. Content settings used to indicate that a web app is allowed to prompt the
  5213. user for the installation of sub apps.
  5214. </member>
  5215. <member name="F:CEF_CONTENT_SETTING_TYPE_AUTOMATIC_FULLSCREEN">
  5216. Content setting used to indicate whether entering HTML Fullscreen
  5217. automatically (i.e. without transient activation) should be enabled.
  5218. </member>
  5219. <member name="F:CEF_CONTENT_SETTING_TYPE_WEB_PRINTING">
  5220. Content settings for access to printers for the Web Printing API.
  5221. </member>
  5222. <member name="F:CEF_CONTENT_SETTING_TYPE_SMART_CARD_GUARD">
  5223. Content setting for access to smart card readers.
  5224. The "guard" content setting stores whether to allow sites to access the
  5225. Smart Card API.
  5226. </member>
  5227. <member name="F:CEF_CONTENT_SETTING_TYPE_CAPTURED_SURFACE_CONTROL">
  5228. Whether an application capturing another tab, may scroll and zoom
  5229. the captured tab.
  5230. </member>
  5231. <member name="F:CEF_CONTENT_SETTING_TYPE_FILE_SYSTEM_ACCESS_RESTORE_PERMISSION">
  5232. Whether the FSA Persistent Permissions restore prompt is eligible to be
  5233. shown to the user, for a given origin.
  5234. </member>
  5235. <member name="F:CEF_CONTENT_SETTING_TYPE_FILE_SYSTEM_ACCESS_EXTENDED_PERMISSION">
  5236. Whether user has opted into keeping file/directory permissions persistent
  5237. between visits for a given origin. When enabled, permission metadata
  5238. stored under |FILE_SYSTEM_ACCESS_CHOOSER_DATA| can auto-grant incoming
  5239. permission request.
  5240. </member>
  5241. <member name="F:CEF_CONTENT_SETTING_TYPE_AUTO_PICTURE_IN_PICTURE">
  5242. Content setting used to indicate whether entering picture-in-picture
  5243. automatically should be enabled.
  5244. </member>
  5245. <member name="F:CEF_CONTENT_SETTING_TOP_LEVEL_TPCD_ORIGIN_TRIAL">
  5246. Content Setting for a first-party origin trial that allows websites to
  5247. enable third-party cookie deprecation.
  5248. ALLOW (default): no effect (e.g. third-party cookies allowed, if not
  5249. blocked otherwise).
  5250. BLOCK: third-party cookies blocked, but 3PCD mitigations enabled.
  5251. </member>
  5252. <member name="F:CEF_CONTENT_SETTING_TYPE_TOP_LEVEL_TPCD_TRIAL">
  5253. Content Setting for 3PC accesses granted via top-level 3PC deprecation
  5254. trial. Similar to TPCD_TRIAL, but applicable at the page-level for the
  5255. lifetime of the page that served the token, rather than being specific to
  5256. a requesting-origin/top-level-site combination and persistent.
  5257. </member>
  5258. <member name="F:CEF_CONTENT_SETTING_TYPE_TPCD_TRIAL">
  5259. Content Setting for 3PC accesses granted via 3PC deprecation trial.
  5260. </member>
  5261. <member name="F:CEF_CONTENT_SETTING_TYPE_TPCD_METADATA_GRANTS">
  5262. Content Setting for 3PC accesses granted by metadata delivered via the
  5263. component updater service. This type will only be used when
  5264. `net::features::kTpcdMetadataGrants` is enabled.
  5265. </member>
  5266. <member name="F:CEF_CONTENT_SETTING_TYPE_TPCD_HEURISTICS_GRANTS">
  5267. Content Setting for temporary 3PC accesses granted by user behavior
  5268. heuristics.
  5269. </member>
  5270. <member name="F:CEF_CONTENT_SETTING_TYPE_COOKIE_CONTROLS_METADATA">
  5271. Stores per origin metadata for cookie controls.
  5272. </member>
  5273. <member name="F:CEF_CONTENT_SETTING_TYPE_ALL_SCREEN_CAPTURE">
  5274. Setting for enabling the `getAllScreensMedia` API. Spec link:
  5275. https://github.com/screen-share/capture-all-screens
  5276. </member>
  5277. <member name="F:CEF_CONTENT_SETTING_TYPE_HTTPS_ENFORCED">
  5278. Used to indicate whether HTTPS-First Mode is enabled on the hostname.
  5279. </member>
  5280. <member name="F:CEF_CONTENT_SETTING_TYPE_THIRD_PARTY_STORAGE_PARTITIONING">
  5281. Content setting used to indicate whether third-party storage partitioning
  5282. should be enabled.
  5283. </member>
  5284. <member name="F:CEF_CONTENT_SETTING_TYPE_ANTI_ABUSE">
  5285. Content setting which is used to indicate whether anti-abuse functionality
  5286. should be enabled.
  5287. </member>
  5288. <member name="F:CEF_CONTENT_SETTING_TYPE_FEDERATED_IDENTITY_IDENTITY_PROVIDER_REGISTRATION">
  5289. Website setting which stores whether the user has explicitly registered
  5290. a website as an identity-provider.
  5291. </member>
  5292. <member name="F:CEF_CONTENT_SETTING_TYPE_FEDERATED_IDENTITY_AUTO_REAUTHN_PERMISSION">
  5293. Setting to indicate whether user has opted in to allowing auto re-authn
  5294. via the FedCM API.
  5295. </member>
  5296. <member name="F:CEF_CONTENT_SETTING_TYPE_TOP_LEVEL_STORAGE_ACCESS">
  5297. Similar to STORAGE_ACCESS, but applicable at the page-level rather than
  5298. being specific to a frame.
  5299. </member>
  5300. <member name="F:CEF_CONTENT_SETTING_TYPE_REVOKED_UNUSED_SITE_PERMISSIONS">
  5301. Website setting which is used for UnusedSitePermissionsService to
  5302. store revoked permissions of unused sites from unused site permissions
  5303. feature.
  5304. </member>
  5305. <member name="F:CEF_CONTENT_SETTING_TYPE_FEDERATED_IDENTITY_IDENTITY_PROVIDER_SIGNIN_STATUS">
  5306. Website setting which stores whether the browser has observed the user
  5307. signing into an identity-provider based on observing the IdP-SignIn-Status
  5308. HTTP header.
  5309. </member>
  5310. <member name="F:CEF_CONTENT_SETTING_TYPE_PRIVATE_NETWORK_GUARD">
  5311. Website setting to store permissions granted to access particular devices
  5312. in private network.
  5313. </member>
  5314. <member name="F:CEF_CONTENT_SETTING_TYPE_NOTIFICATION_PERMISSION_REVIEW">
  5315. Website setting which is used for NotificationPermissionReviewService to
  5316. store origin blocklist from review notification permissions feature.
  5317. </member>
  5318. <member name="F:CEF_CONTENT_SETTING_TYPE_REDUCED_ACCEPT_LANGUAGE">
  5319. Website setting which stores the last reduced accept language negotiated
  5320. for a given origin, to be used on future visits to the origin.
  5321. </member>
  5322. <member name="F:CEF_CONTENT_SETTING_TYPE_NOTIFICATION_INTERACTIONS">
  5323. Stores notification interactions per origin for the past 90 days.
  5324. Interactions per origin are pre-aggregated over seven-day windows: A
  5325. notification interaction or display is assigned to the last Monday
  5326. midnight in local time.
  5327. </member>
  5328. <member name="F:CEF_CONTENT_SETTING_TYPE_FEDERATED_IDENTITY_API">
  5329. Setting to indicate whether browser should allow signing into a website
  5330. via the browser FedCM API.
  5331. </member>
  5332. <member name="F:CEF_CONTENT_SETTING_TYPE_REQUEST_DESKTOP_SITE">
  5333. Setting to indicate whether Chrome should request the desktop view of a
  5334. site instead of the mobile one.
  5335. </member>
  5336. <member name="F:CEF_CONTENT_SETTING_TYPE_AUTO_DARK_WEB_CONTENT">
  5337. Setting to indicate whether Chrome should automatically apply darkening to
  5338. web content.
  5339. </member>
  5340. <member name="F:CEF_CONTENT_SETTING_TYPE_DEPRECATED_FEDERATED_IDENTITY_ACTIVE_SESSION">
  5341. Setting to indicate that there is an active federated sign-in session
  5342. between a specified relying party and a specified identity provider for
  5343. a specified account. When this is present it allows access to session
  5344. management capabilities between the sites. This setting is associated
  5345. with the relying party's origin.
  5346. </member>
  5347. <member name="F:CEF_CONTENT_SETTING_TYPE_FORMFILL_METADATA">
  5348. Stores metadata related to form fill, such as e.g. whether user data was
  5349. autofilled on a specific website.
  5350. </member>
  5351. <member name="F:CEF_CONTENT_SETTING_TYPE_HTTP_ALLOWED">
  5352. Content setting which stores user decisions to allow loading a site over
  5353. HTTP. Entries are added by hostname when a user bypasses the HTTPS-First
  5354. Mode interstitial warning when a site does not support HTTPS. Allowed
  5355. hosts are exact hostname matches -- subdomains of a host on the allowlist
  5356. must be separately allowlisted.
  5357. </member>
  5358. <member name="F:CEF_CONTENT_SETTING_TYPE_JAVASCRIPT_JIT">
  5359. Whether to use the v8 optimized JIT for running JavaScript on the page.
  5360. </member>
  5361. <member name="F:CEF_CONTENT_SETTING_TYPE_FEDERATED_IDENTITY_SHARING">
  5362. Stores a grant that allows a relying party to send a request for identity
  5363. information to specified identity providers, potentially through any
  5364. anti-tracking measures that would otherwise prevent it. This setting is
  5365. associated with the relying party's origin.
  5366. </member>
  5367. <member name="F:CEF_CONTENT_SETTING_TYPE_FILE_SYSTEM_ACCESS_CHOOSER_DATA">
  5368. Website setting to store permissions metadata granted to paths on the
  5369. local file system via the File System Access API.
  5370. |FILE_SYSTEM_WRITE_GUARD| is the corresponding "guard" setting. The stored
  5371. data represents valid permission only if
  5372. |FILE_SYSTEM_ACCESS_EXTENDED_PERMISSION| is enabled via user opt-in.
  5373. Otherwise, they represent "recently granted but revoked permission", which
  5374. are used to restore the permission.
  5375. </member>
  5376. <member name="F:CEF_CONTENT_SETTING_TYPE_DISPLAY_CAPTURE">
  5377. Controls access to the getDisplayMedia API.
  5378. </member>
  5379. <member name="F:CEF_CONTENT_SETTING_TYPE_FILE_SYSTEM_LAST_PICKED_DIRECTORY">
  5380. Stores per-origin state of the most recently selected directory for the
  5381. use by the File System Access API.
  5382. </member>
  5383. <member name="F:CEF_CONTENT_SETTING_TYPE_PERMISSION_AUTOREVOCATION_DATA">
  5384. Stores per-origin state for permission auto-revocation (for all permission
  5385. types).
  5386. </member>
  5387. <member name="F:CEF_CONTENT_SETTING_TYPE_LOCAL_FONTS">
  5388. Content setting which stores whether or not a site can access low-level
  5389. locally installed font data using the Local Fonts Access API.
  5390. </member>
  5391. <member name="F:CEF_CONTENT_SETTING_TYPE_INSECURE_PRIVATE_NETWORK">
  5392. Stores whether to allow insecure websites to make private network
  5393. requests.
  5394. See also: https://wicg.github.io/cors-rfc1918
  5395. Set through enterprise policies only.
  5396. </member>
  5397. <member name="F:CEF_CONTENT_SETTING_TYPE_WINDOW_MANAGEMENT">
  5398. Content setting for Screen Enumeration and Screen Detail functionality.
  5399. Permits access to detailed multi-screen information, like size and
  5400. position. Permits placing fullscreen and windowed content on specific
  5401. screens. See also: https://w3c.github.io/window-placement
  5402. </member>
  5403. <member name="F:CEF_CONTENT_SETTING_TYPE_CAMERA_PAN_TILT_ZOOM">
  5404. Content setting which stores whether to allow a site to control camera
  5405. movements. It does not give access to camera.
  5406. </member>
  5407. <member name="F:CEF_CONTENT_SETTING_TYPE_STORAGE_ACCESS">
  5408. Access to first party storage in a third-party context. Exceptions are
  5409. scoped to the combination of requesting/top-level origin, and are managed
  5410. through the Storage Access API. For the time being, this content setting
  5411. exists in parallel to third-party cookie rules stored in COOKIES.
  5412. </member>
  5413. <member name="F:CEF_CONTENT_SETTING_TYPE_FILE_SYSTEM_READ_GUARD">
  5414. Content setting which stores whether to allow site to open and read files
  5415. and directories selected through the File System Access API.
  5416. </member>
  5417. <member name="F:CEF_CONTENT_SETTING_TYPE_VR">
  5418. Used to store whether a site is allowed to request AR or VR sessions with
  5419. the WebXr Device API.
  5420. </member>
  5421. <member name="F:CEF_CONTENT_SETTING_TYPE_SAFE_BROWSING_URL_CHECK_DATA">
  5422. This content setting type is for caching safe browsing real time url
  5423. check's verdicts of each origin.
  5424. </member>
  5425. <member name="F:CEF_CONTENT_SETTING_TYPE_CLIPBOARD_SANITIZED_WRITE">
  5426. This is special-cased in the permissions layer to always allow, and as
  5427. such doesn't have associated prefs data.
  5428. </member>
  5429. <member name="F:CEF_CONTENT_SETTING_TYPE_CLIPBOARD_READ_WRITE">
  5430. Full access to the system clipboard (sanitized read without user gesture,
  5431. and unsanitized read and write with user gesture).
  5432. </member>
  5433. <member name="F:CEF_CONTENT_SETTING_TYPE_BLUETOOTH_CHOOSER_DATA">
  5434. Website setting to store permissions granted to access particular
  5435. Bluetooth devices.
  5436. </member>
  5437. <member name="F:CEF_CONTENT_SETTING_TYPE_NFC">
  5438. Used to store whether to allow a website to exchange data with NFC
  5439. devices.
  5440. </member>
  5441. <member name="F:CEF_CONTENT_SETTING_TYPE_FILE_SYSTEM_WRITE_GUARD">
  5442. Content settings which stores whether to allow sites to ask for permission
  5443. to save changes to an original file selected by the user through the
  5444. File System Access API.
  5445. </member>
  5446. <member name="F:CEF_CONTENT_SETTING_TYPE_LEGACY_COOKIE_ACCESS">
  5447. Legacy SameSite cookie behavior. This disables SameSite=Lax-by-default,
  5448. SameSite=None requires Secure, and Schemeful Same-Site, forcing the
  5449. legacy behavior wherein 1) cookies that don't specify SameSite are treated
  5450. as SameSite=None, 2) SameSite=None cookies are not required to be Secure,
  5451. and 3) schemeful same-site is not active.
  5452. This will also be used to revert to legacy behavior when future changes
  5453. in cookie handling are introduced.
  5454. </member>
  5455. <member name="F:CEF_CONTENT_SETTING_TYPE_WAKE_LOCK_SCREEN">
  5456. Wake Lock API, which has two lock types: screen and system locks.
  5457. Currently, screen locks do not need any additional permission, and system
  5458. locks are always denied while the right UI is worked out.
  5459. </member>
  5460. <member name="F:CEF_CONTENT_SETTING_TYPE_HID_GUARD">
  5461. Content settings for access to HID devices. The "guard" content setting
  5462. stores whether to allow sites to ask for permission to access a device.
  5463. The permissions granted to access particular devices are stored in the
  5464. "chooser data" website setting.
  5465. </member>
  5466. <member name="F:CEF_CONTENT_SETTING_TYPE_BLUETOOTH_SCANNING">
  5467. Content setting which stores whether to allow sites to ask for permission
  5468. to do Bluetooth scanning.
  5469. </member>
  5470. <member name="F:CEF_CONTENT_SETTING_TYPE_PERIODIC_BACKGROUND_SYNC">
  5471. Nothing is stored in this setting at present. Please refer to
  5472. PeriodicBackgroundSyncPermissionContext for details on how this permission
  5473. is ascertained.
  5474. This content setting is not registered because it does not require access
  5475. to any existing providers.
  5476. </member>
  5477. <member name="F:CEF_CONTENT_SETTING_TYPE_SERIAL_GUARD">
  5478. Content settings for access to serial ports. The "guard" content setting
  5479. stores whether to allow sites to ask for permission to access a port. The
  5480. permissions granted to access particular ports are stored in the "chooser
  5481. data" website setting.
  5482. </member>
  5483. <member name="F:CEF_CONTENT_SETTING_TYPE_IDLE_DETECTION">
  5484. Used to store whether to allow a website to detect user active/idle state.
  5485. </member>
  5486. <member name="F:CEF_CONTENT_SETTING_TYPE_INTENT_PICKER_DISPLAY">
  5487. Website setting which stores the amount of times the user has dismissed
  5488. intent picker UI without explicitly choosing an option.
  5489. </member>
  5490. <member name="F:CEF_CONTENT_SETTING_TYPE_BACKGROUND_FETCH">
  5491. Nothing is stored in this setting at present. Please refer to
  5492. BackgroundFetchPermissionContext for details on how this permission
  5493. is ascertained.
  5494. </member>
  5495. <member name="F:CEF_CONTENT_SETTING_TYPE_USB_GUARD">
  5496. Content setting which stores whether to allow sites to ask for permission
  5497. to access USB devices. If this is allowed specific device permissions are
  5498. stored under USB_CHOOSER_DATA.
  5499. </member>
  5500. <member name="F:CEF_CONTENT_SETTING_TYPE_PAYMENT_HANDLER">
  5501. Used to store whether to allow a website to install a payment handler.
  5502. </member>
  5503. <member name="F:CEF_CONTENT_SETTING_TYPE_ACCESSIBILITY_EVENTS">
  5504. Content setting which stores whether or not the user has granted the site
  5505. permission to respond to accessibility events, which can be used to
  5506. provide a custom accessibility experience. Requires explicit user consent
  5507. because some users may not want sites to know they're using assistive
  5508. technology.
  5509. </member>
  5510. <member name="F:CEF_CONTENT_SETTING_TYPE_SENSORS">
  5511. Generic Sensor API covering ambient-light-sensor, accelerometer, gyroscope
  5512. and magnetometer are all mapped to a single content_settings_type.
  5513. Setting for the Generic Sensor API covering ambient-light-sensor,
  5514. accelerometer, gyroscope and magnetometer. These are all mapped to a
  5515. single ContentSettingsType.
  5516. </member>
  5517. <member name="F:CEF_CONTENT_SETTING_TYPE_CLIENT_HINTS">
  5518. Website setting which stores the list of client hints that the origin
  5519. requested the browser to remember. The browser is expected to send all
  5520. client hints in the HTTP request headers for every resource requested
  5521. from that origin.
  5522. </member>
  5523. <member name="F:CEF_CONTENT_SETTING_TYPE_SOUND">
  5524. Content setting which stores whether or not the site can play audible
  5525. sound. This will not block playback but instead the user will not hear it.
  5526. </member>
  5527. <member name="F:CEF_CONTENT_SETTING_TYPE_MEDIA_ENGAGEMENT">
  5528. Website setting which stores engagement data for media related to a
  5529. specific origin.
  5530. </member>
  5531. <member name="F:CEF_CONTENT_SETTING_TYPE_PASSWORD_PROTECTION">
  5532. This content setting type is for caching password protection service's
  5533. verdicts of each origin.
  5534. </member>
  5535. <member name="F:CEF_CONTENT_SETTING_TYPE_MIDI">
  5536. MIDI stands for Musical Instrument Digital Interface. It is a standard
  5537. that allows electronic musical instruments, computers, and other devices
  5538. to communicate with each other.
  5539. </member>
  5540. <member name="F:CEF_CONTENT_SETTING_TYPE_ADS_DATA">
  5541. Website setting which stores metadata for the subresource filter to aid in
  5542. decisions for whether or not to show the UI.
  5543. </member>
  5544. <member name="F:CEF_CONTENT_SETTING_TYPE_MIDI_SYSEX">
  5545. Advanced device-specific functions on MIDI devices. MIDI-SysEx
  5546. communications can be used for changing the MIDI device's persistent state
  5547. such as firmware.
  5548. </member>
  5549. <member name="F:CEF_CONTENT_SETTING_TYPE_POPUPS">
  5550. This setting governs both popups and unwanted redirects like tab-unders
  5551. and framebusting.
  5552. </member>
  5553. <member name="F:CEF_CONTENT_SETTING_TYPE_COOKIES">
  5554. provided context. However, it may be overridden by other settings. This
  5555. enum should NOT be read directly to determine whether cookies are enabled;
  5556. the client should instead rely on the CookieSettings API.
  5557. </member>
  5558. <member name="M:cef_string_list_copy(_cef_string_list_t*)">
  5559. Creates a copy of an existing string list.
  5560. </member>
  5561. <member name="M:cef_string_list_free(_cef_string_list_t*)">
  5562. Free the string list.
  5563. </member>
  5564. <member name="M:cef_string_list_clear(_cef_string_list_t*)">
  5565. Clear the string list.
  5566. </member>
  5567. <member name="M:cef_string_list_append(_cef_string_list_t*,_cef_string_utf16_t!System.Runtime.CompilerServices.IsConst*)">
  5568. Append a new value at the end of the string list.
  5569. </member>
  5570. <member name="M:cef_string_list_value(_cef_string_list_t*,System.UInt64,_cef_string_utf16_t*)">
  5571. Retrieve the value at the specified zero-based string list index. Returns
  5572. true (1) if the value was successfully retrieved.
  5573. </member>
  5574. <member name="M:cef_string_list_size(_cef_string_list_t*)">
  5575. Return the number of elements in the string list.
  5576. </member>
  5577. <member name="M:cef_string_list_alloc">
  5578. Allocate a new string map.
  5579. </member>
  5580. <member name="T:_cef_string_list_t">
  5581. CEF string maps are a set of key/value string pairs.
  5582. </member>
  5583. <member name="T:CefStringTraitsUTF16">
  5584. Traits implementation for utf16 character strings.
  5585. </member>
  5586. <member name="T:CefStringTraitsUTF8">
  5587. Traits implementation for utf8 character strings.
  5588. </member>
  5589. <member name="T:CefStringTraitsWide">
  5590. Traits implementation for wide character strings.
  5591. </member>
  5592. <member name="M:cef_string_utf16_to_lower(System.Char!System.Runtime.CompilerServices.IsConst*,System.UInt64,_cef_string_utf16_t*)">
  5593. These functions convert utf16 string case using the current ICU locale. This
  5594. may change the length of the string in some cases.
  5595. </member>
  5596. <member name="M:cef_string_userfree_wide_free(_cef_string_wide_t*)">
  5597. These functions free the string structure allocated by the associated
  5598. alloc function. Any string contents will first be cleared.
  5599. </member>
  5600. <member name="M:cef_string_userfree_wide_alloc">
  5601. These functions allocate a new string structure. They must be freed by
  5602. calling the associated free function.
  5603. </member>
  5604. <member name="D:cef_string_userfree_wide_t">
  5605. It is sometimes necessary for the system to allocate string structures with
  5606. the expectation that the user will free them. The userfree types act as a
  5607. hint that the user is responsible for freeing the structure.
  5608. </member>
  5609. <member name="M:cef_string_ascii_to_wide(System.SByte!System.Runtime.CompilerServices.IsSignUnspecifiedByte!System.Runtime.CompilerServices.IsConst*,System.UInt64,_cef_string_wide_t*)">
  5610. These functions convert an ASCII string, typically a hardcoded constant, to
  5611. a Wide/UTF16 string. Use instead of the UTF8 conversion routines if you know
  5612. the string is ASCII.
  5613. </member>
  5614. <member name="M:cef_string_wide_to_utf8(System.Char!System.Runtime.CompilerServices.IsConst*,System.UInt64,_cef_string_utf8_t*)">
  5615. These functions convert between UTF-8, -16, and -32 strings. They are
  5616. potentially slow so unnecessary conversions should be avoided. The best
  5617. possible result will always be written to |output| with the boolean return
  5618. value indicating whether the conversion is 100% valid.
  5619. </member>
  5620. <member name="M:cef_string_wide_cmp(_cef_string_wide_t!System.Runtime.CompilerServices.IsConst*,_cef_string_wide_t!System.Runtime.CompilerServices.IsConst*)">
  5621. These functions compare two string values with the same results as strcmp().
  5622. </member>
  5623. <member name="M:cef_string_wide_clear(_cef_string_wide_t*)">
  5624. Convenience macros for copying values.
  5625. These functions clear string values. The structure itself is not freed.
  5626. </member>
  5627. <member name="M:cef_string_wide_set(System.Char!System.Runtime.CompilerServices.IsConst*,System.UInt64,_cef_string_wide_t*,System.Int32)">
  5628. These functions set string values. If |copy| is true (1) the value will be
  5629. copied instead of referenced. It is up to the user to properly manage
  5630. the lifespan of references.
  5631. </member>
  5632. <member name="T:_cef_string_wide_t">
  5633. \file
  5634. CEF provides functions for converting between UTF-8, -16 and -32 strings.
  5635. CEF string types are safe for reading from multiple threads but not for
  5636. modification. It is the user's responsibility to provide synchronization if
  5637. modifying CEF strings from multiple threads.
  5638. CEF string type definitions. Whomever allocates |str| is responsible for
  5639. providing an appropriate |dtor| implementation that will free the string in
  5640. the same memory space. When reusing an existing string structure make sure
  5641. to call |dtor| for the old value before assigning new |str| and |dtor|
  5642. values. Static strings will have a NULL |dtor| value. Using the below
  5643. functions if you want this managed for you.
  5644. </member>
  5645. <member name="M:CefTime.Delta(CefTime!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5646. Return the delta between this object and |other| in milliseconds.
  5647. </member>
  5648. <member name="M:CefTime.Now">
  5649. Set this object to now.
  5650. </member>
  5651. <member name="M:CefTime.SetDoubleT(System.Double)">
  5652. Converts to/from a double which is the number of seconds since epoch
  5653. (Jan 1, 1970). Webkit uses this format to represent time. A value of 0
  5654. means "not initialized".
  5655. </member>
  5656. <member name="M:CefTime.SetTimeT(System.Int64)">
  5657. Converts to/from time_t.
  5658. </member>
  5659. <member name="T:CefTime">
  5660. Class representing a time.
  5661. </member>
  5662. <member name="T:CefBaseTime">
  5663. Represents a wall clock time in UTC. Values are not guaranteed to be
  5664. monotonically non-decreasing and are subject to large amounts of skew.
  5665. Time is stored internally as microseconds since the Windows epoch (1601).
  5666. This is equivalent of Chromium `base::Time` (see base/time/time.h).
  5667. </member>
  5668. <member name="M:cef_time_from_basetime(_cef_basetime_t!System.Runtime.CompilerServices.IsConst,_cef_time_t*)">
  5669. Converts cef_basetime_t to cef_time_t. Returns true (1) on success and
  5670. false (0) on failure.
  5671. </member>
  5672. <member name="M:cef_time_to_basetime(_cef_time_t!System.Runtime.CompilerServices.IsConst*,_cef_basetime_t*)">
  5673. Converts cef_time_t to cef_basetime_t. Returns true (1) on success and
  5674. false (0) on failure.
  5675. </member>
  5676. <member name="M:cef_time_delta(_cef_time_t!System.Runtime.CompilerServices.IsConst*,_cef_time_t!System.Runtime.CompilerServices.IsConst*,System.Int64*)">
  5677. Retrieve the delta in milliseconds between two time values. Returns true (1)
  5678. on success and false (0) on failure.
  5679. </member>
  5680. <member name="M:cef_basetime_now">
  5681. Retrieve the current system time.
  5682. </member>
  5683. <member name="M:cef_time_now(_cef_time_t*)">
  5684. Retrieve the current system time. Returns true (1) on success and false (0)
  5685. on failure.
  5686. </member>
  5687. <member name="M:cef_time_to_doublet(_cef_time_t!System.Runtime.CompilerServices.IsConst*,System.Double*)">
  5688. Converts cef_time_t to/from a double which is the number of seconds since
  5689. epoch (Jan 1, 1970). Webkit uses this format to represent time. A value of 0
  5690. means "not initialized". Returns true (1) on success and false (0) on
  5691. failure.
  5692. </member>
  5693. <member name="M:cef_time_to_timet(_cef_time_t!System.Runtime.CompilerServices.IsConst*,System.Int64*)">
  5694. Converts cef_time_t to/from time_t. Returns true (1) on success and false
  5695. (0) on failure.
  5696. </member>
  5697. <member name="F:_cef_time_t.millisecond">
  5698. Milliseconds within the current second (0-999)
  5699. </member>
  5700. <member name="F:_cef_time_t.second">
  5701. Second within the current minute (0-59 plus leap seconds which may take
  5702. it up to 60).
  5703. </member>
  5704. <member name="F:_cef_time_t.minute">
  5705. Minute within the current hour (0-59)
  5706. </member>
  5707. <member name="F:_cef_time_t.hour">
  5708. Hour within the current day (0-23)
  5709. </member>
  5710. <member name="F:_cef_time_t.day_of_month">
  5711. 1-based day of month (1-31)
  5712. </member>
  5713. <member name="F:_cef_time_t.day_of_week">
  5714. 0-based day of week (0 = Sunday, etc.)
  5715. </member>
  5716. <member name="F:_cef_time_t.month">
  5717. 1-based month (values 1 = January, etc.)
  5718. </member>
  5719. <member name="F:_cef_time_t.year">
  5720. Four or five digit year "2007" (1601 to 30827 on Windows, 1970 to 2038 on
  5721. 32-bit POSIX)
  5722. </member>
  5723. <member name="T:_cef_time_t">
  5724. Time information. Values should always be in UTC.
  5725. </member>
  5726. <member name="T:base.ThreadChecker">
  5727. ThreadChecker is a helper class used to help verify that some methods of a
  5728. class are called from the same thread. It provides identical functionality
  5729. to base::NonThreadSafe, but it is meant to be held as a member variable,
  5730. rather than inherited from base::NonThreadSafe.
  5731. While inheriting from base::NonThreadSafe may give a clear indication about
  5732. the thread-safety of a class, it may also lead to violations of the style
  5733. guide with regard to multiple inheritance. The choice between having a
  5734. ThreadChecker member and inheriting from base::NonThreadSafe should be based
  5735. on whether:
  5736. - Derived classes need to know the thread they belong to, as opposed to
  5737. having that functionality fully encapsulated in the base class.
  5738. - Derived classes should be able to reassign the base class to another
  5739. thread, via DetachFromThread.
  5740. If neither of these are true, then having a ThreadChecker member and calling
  5741. CalledOnValidThread is the preferable solution.
  5742. Example:
  5743. <pre>
  5744. class MyClass {
  5745. public:
  5746. void Foo() {
  5747. DCHECK(thread_checker_.CalledOnValidThread());
  5748. ... (do stuff) ...
  5749. }
  5750. private:
  5751. ThreadChecker thread_checker_;
  5752. }
  5753. </pre>
  5754. In Release mode, CalledOnValidThread will always return true.
  5755. </member>
  5756. <member name="T:base.cef_internal.ThreadCheckerDoNothing">
  5757. Do nothing implementation, for use in release mode.
  5758. Note: You should almost always use the ThreadChecker class to get the
  5759. right version for your build configuration.
  5760. </member>
  5761. <member name="T:base.cef_internal.AutoUnlock">
  5762. AutoUnlock is a helper that will Release() the |lock| argument in the
  5763. constructor, and re-Acquire() it in the destructor.
  5764. </member>
  5765. <member name="T:base.cef_internal.AutoLock">
  5766. A helper class that acquires the given Lock while the AutoLock is in scope.
  5767. </member>
  5768. <member name="T:base.cef_internal.Lock">
  5769. A convenient wrapper for an OS specific critical section. The only real
  5770. intelligence in this class is in debug mode for the support for the
  5771. AssertAcquired() method.
  5772. </member>
  5773. <member name="M:base.PlatformThread.CurrentRef">
  5774. Gets the current thread reference, which can be used to check if
  5775. we're on the right thread quickly.
  5776. </member>
  5777. <member name="M:base.PlatformThread.CurrentId">
  5778. Gets the current thread id, which may be useful for logging purposes.
  5779. </member>
  5780. <member name="T:base.PlatformThreadRef">
  5781. Used for thread checking and debugging.
  5782. Meant to be as fast as possible.
  5783. These are produced by PlatformThread::CurrentRef(), and used to later
  5784. check if we are on the same thread or not by using ==. These are safe
  5785. to copy between threads, but can't be copied to another process as they
  5786. have no meaning there. Also, the internal identifier can be re-used
  5787. after a thread dies, so a PlatformThreadRef cannot be reliably used
  5788. to distinguish a new thread from an old, dead thread.
  5789. </member>
  5790. <member name="D:base.PlatformThreadId">
  5791. Used for logging. Always an integer value.
  5792. </member>
  5793. <member name="M:cef_get_current_platform_thread_handle">
  5794. Returns the current platform thread handle.
  5795. </member>
  5796. <member name="M:cef_get_current_platform_thread_id">
  5797. Returns the current platform thread ID.
  5798. </member>
  5799. <member name="M:cef_log(System.SByte!System.Runtime.CompilerServices.IsSignUnspecifiedByte!System.Runtime.CompilerServices.IsConst*,System.Int32,System.Int32,System.SByte!System.Runtime.CompilerServices.IsSignUnspecifiedByte!System.Runtime.CompilerServices.IsConst*)">
  5800. Add a log message. See the LogSeverity defines for supported |severity|
  5801. values.
  5802. </member>
  5803. <member name="M:cef_get_vlog_level(System.SByte!System.Runtime.CompilerServices.IsSignUnspecifiedByte!System.Runtime.CompilerServices.IsConst*,System.UInt64)">
  5804. Gets the current vlog level for the given file (usually taken from
  5805. __FILE__). Note that |N| is the size *with* the null terminator.
  5806. </member>
  5807. <member name="M:cef_get_min_log_level">
  5808. Gets the current log level.
  5809. </member>
  5810. <member name="M:base.AtomicRefCount.SubtleRefCountForDebug">
  5811. Returns the current reference count (with no barriers). This is subtle,
  5812. and should be used only for debugging.
  5813. </member>
  5814. <member name="M:base.AtomicRefCount.IsZero">
  5815. Return whether the reference count is zero. With conventional object
  5816. referencing counting, the object will be destroyed, so the reference count
  5817. should never be zero. Hence this is generally used for a debug check.
  5818. </member>
  5819. <member name="M:base.AtomicRefCount.IsOne">
  5820. Return whether the reference count is one. If the reference count is used
  5821. in the conventional way, a refrerence count of 1 implies that the current
  5822. thread owns the reference and no other thread shares it. This call
  5823. performs the test for a reference count of one, and performs the memory
  5824. barrier needed for the owning thread to act on the object, knowing that it
  5825. has exclusive access to the object.
  5826. </member>
  5827. <member name="M:base.AtomicRefCount.Decrement">
  5828. Decrement a reference count, and return whether the result is non-zero.
  5829. Insert barriers to ensure that state written before the reference count
  5830. became zero will be visible to a thread that has just made the count zero.
  5831. </member>
  5832. <member name="M:base.AtomicRefCount.Increment(System.Int32)">
  5833. Increment a reference count by "increment", which must exceed 0.
  5834. Returns the previous value of the count.
  5835. </member>
  5836. <member name="M:base.AtomicRefCount.Increment">
  5837. Increment a reference count.
  5838. Returns the previous value of the count.
  5839. </member>
  5840. <member name="P:CefSharp.Core.PostData.HasExcludedElements">
  5841. <summary>
  5842. Returns true if the underlying POST data includes elements that are not
  5843. represented by this IPostData object (for example, multi-part file upload
  5844. data). Modifying IPostData objects with excluded elements may result in
  5845. the request failing.
  5846. </summary>
  5847. </member>
  5848. <member name="M:CefSharp.Core.PostData.CreatePostDataElement">
  5849. <summary>
  5850. Create a new <see cref="T:CefSharp.IPostDataElement" /> instance
  5851. </summary>
  5852. <returns>PostDataElement</returns>
  5853. </member>
  5854. <member name="M:CefSharp.Core.PostData.RemoveElements">
  5855. <summary>
  5856. Remove all existing post data elements.
  5857. </summary>
  5858. </member>
  5859. <member name="M:CefSharp.Core.PostData.RemoveElement(CefSharp.IPostDataElement)">
  5860. <summary>
  5861. Remove the specified <see cref="T:CefSharp.IPostDataElement" />.
  5862. </summary>
  5863. <param name="element">element to be removed.</param>
  5864. <returns> Returns true if the add succeeds.</returns>
  5865. </member>
  5866. <member name="M:CefSharp.Core.PostData.AddElement(CefSharp.IPostDataElement)">
  5867. <summary>
  5868. Add the specified <see cref="T:CefSharp.IPostDataElement" />.
  5869. </summary>
  5870. <param name="element">element to be added.</param>
  5871. <returns>Returns true if the add succeeds.</returns>
  5872. </member>
  5873. <member name="P:CefSharp.Core.PostData.Elements">
  5874. <summary>
  5875. Retrieve the post data elements.
  5876. </summary>
  5877. </member>
  5878. <member name="P:CefSharp.Core.PostData.IsReadOnly">
  5879. <summary>
  5880. Returns true if this object is read-only.
  5881. </summary>
  5882. </member>
  5883. <member name="M:CefSharp.Core.PostData.#ctor">
  5884. <summary>
  5885. Initializes a new instance of the PostData class.
  5886. </summary>
  5887. </member>
  5888. <member name="M:CefSharp.Core.PostData.ThrowIfReadOnly">
  5889. <summary>
  5890. Throw exception if Readonly
  5891. </summary>
  5892. <exception cref="T:System.Exception">Thrown when an exception error condition occurs.</exception>
  5893. </member>
  5894. <member name="M:CefSharp.Core.PostData.Dispose">
  5895. <summary>
  5896. Destructor.
  5897. </summary>
  5898. </member>
  5899. <member name="M:CefSharp.Core.PostData.Finalize">
  5900. <summary>
  5901. Finalizer.
  5902. </summary>
  5903. </member>
  5904. <member name="T:CefSharp.Core.PostData">
  5905. <summary>
  5906. Form Post Data
  5907. </summary>
  5908. <seealso cref="!:T:IPostData" />
  5909. </member>
  5910. <member name="M:CefSharp.Core.Cef.PostAction(CefSharp.CefThreadIds,System.Action)">
  5911. <summary>
  5912. Post an action for execution on the specified thread.
  5913. </summary>
  5914. <param name="threadId">thread id</param>
  5915. <param name="action">action to execute</param>
  5916. <returns>bool</returns>
  5917. </member>
  5918. <member name="M:CefSharp.Core.Cef.PostDelayedAction(CefSharp.CefThreadIds,System.Action,System.Int32)">
  5919. <summary>
  5920. Post an action for delayed execution on the specified thread.
  5921. </summary>
  5922. <param name="threadId">thread id</param>
  5923. <param name="action">action to execute</param>
  5924. <param name="delayInMs">delay in ms</param>
  5925. <returns>bool</returns>
  5926. </member>
  5927. <member name="M:CefSharp.Core.Cef.WaitForBrowsersToClose(System.Int32)">
  5928. <summary>
  5929. Helper method to ensure all ChromiumWebBrowser instances have been
  5930. closed/disposed, should be called before Cef.Shutdown.
  5931. Disposes all remaning ChromiumWebBrowser instances
  5932. then waits for CEF to release it's remaning CefBrowser instances.
  5933. Finally a small delay of 50ms to allow for CEF to finish it's cleanup.
  5934. Should only be called when MultiThreadedMessageLoop = true;
  5935. (Hasn't been tested when when CEF integrates into main message loop).
  5936. </summary>
  5937. <param name="timeoutInMiliseconds">The timeout in miliseconds.</param>
  5938. </member>
  5939. <member name="M:CefSharp.Core.Cef.WaitForBrowsersToClose">
  5940. <summary>
  5941. Helper method to ensure all ChromiumWebBrowser instances have been
  5942. closed/disposed, should be called before Cef.Shutdown.
  5943. Disposes all remaning ChromiumWebBrowser instances
  5944. then waits for CEF to release it's remaning CefBrowser instances.
  5945. Finally a small delay of 50ms to allow for CEF to finish it's cleanup.
  5946. Should only be called when MultiThreadedMessageLoop = true;
  5947. (Hasn't been tested when when CEF integrates into main message loop).
  5948. </summary>
  5949. </member>
  5950. <member name="M:CefSharp.Core.Cef.EnableWaitForBrowsersToClose">
  5951. <summary>
  5952. WaitForBrowsersToClose is not enabled by default, call this method
  5953. before Cef.Initialize to enable. If you aren't calling Cef.Initialize
  5954. explicitly then this should be called before creating your first
  5955. ChromiumWebBrowser instance.
  5956. </summary>
  5957. </member>
  5958. <member name="M:CefSharp.Core.Cef.GetMimeType(System.String)">
  5959. <summary>
  5960. Returns the mime type for the specified file extension or an empty string if unknown.
  5961. </summary>
  5962. <param name="extension">file extension</param>
  5963. <returns>Returns the mime type for the specified file extension or an empty string if unknown.</returns>
  5964. </member>
  5965. <member name="M:CefSharp.Core.Cef.SetCrashKeyValue(System.String,System.String)">
  5966. <summary>
  5967. Sets or clears a specific key-value pair from the crash metadata.
  5968. </summary>
  5969. </member>
  5970. <member name="P:CefSharp.Core.Cef.CrashReportingEnabled">
  5971. <summary>
  5972. Crash reporting is configured using an INI-style config file named
  5973. crash_reporter.cfg. This file must be placed next to
  5974. the main application executable. File contents are as follows:
  5975. # Comments start with a hash character and must be on their own line.
  5976. [Config]
  5977. ProductName=&lt;Value of the "prod" crash key; defaults to "cef"&gt;
  5978. ProductVersion=&lt;Value of the "ver" crash key; defaults to the CEF version&gt;
  5979. AppName=&lt;Windows only; App-specific folder name component for storing crash
  5980. information; default to "CEF"&gt;
  5981. ExternalHandler=&lt;Windows only; Name of the external handler exe to use
  5982. instead of re-launching the main exe; default to empty&gt;
  5983. ServerURL=&lt;crash server URL; default to empty&gt;
  5984. RateLimitEnabled=&lt;True if uploads should be rate limited; default to true&gt;
  5985. MaxUploadsPerDay=&lt;Max uploads per 24 hours, used if rate limit is enabled;
  5986. default to 5&gt;
  5987. MaxDatabaseSizeInMb=&lt;Total crash report disk usage greater than this value
  5988. will cause older reports to be deleted; default to 20&gt;
  5989. MaxDatabaseAgeInDays=&lt;Crash reports older than this value will be deleted;
  5990. default to 5&gt;
  5991. [CrashKeys]
  5992. my_key1=&lt;small|medium|large&gt;
  5993. my_key2=&lt;small|medium|large&gt;
  5994. Config section:
  5995. If "ProductName" and/or "ProductVersion" are set then the specified values
  5996. will be included in the crash dump metadata.
  5997. If "AppName" is set on Windows then crash report information (metrics,
  5998. database and dumps) will be stored locally on disk under the
  5999. "C:\Users\[CurrentUser]\AppData\Local\[AppName]\User Data" folder.
  6000. If "ExternalHandler" is set on Windows then the specified exe will be
  6001. launched as the crashpad-handler instead of re-launching the main process
  6002. exe. The value can be an absolute path or a path relative to the main exe
  6003. directory.
  6004. If "ServerURL" is set then crashes will be uploaded as a multi-part POST
  6005. request to the specified URL. Otherwise, reports will only be stored locally
  6006. on disk.
  6007. If "RateLimitEnabled" is set to true then crash report uploads will be rate
  6008. limited as follows:
  6009. 1. If "MaxUploadsPerDay" is set to a positive value then at most the
  6010. specified number of crashes will be uploaded in each 24 hour period.
  6011. 2. If crash upload fails due to a network or server error then an
  6012. incremental backoff delay up to a maximum of 24 hours will be applied for
  6013. retries.
  6014. 3. If a backoff delay is applied and "MaxUploadsPerDay" is &gt; 1 then the
  6015. "MaxUploadsPerDay" value will be reduced to 1 until the client is
  6016. restarted. This helps to avoid an upload flood when the network or
  6017. server error is resolved.
  6018. If "MaxDatabaseSizeInMb" is set to a positive value then crash report storage
  6019. on disk will be limited to that size in megabytes. For example, on Windows
  6020. each dump is about 600KB so a "MaxDatabaseSizeInMb" value of 20 equates to
  6021. about 34 crash reports stored on disk.
  6022. If "MaxDatabaseAgeInDays" is set to a positive value then crash reports older
  6023. than the specified age in days will be deleted.
  6024. CrashKeys section:
  6025. Any number of crash keys can be specified for use by the application. Crash
  6026. key values will be truncated based on the specified size (small = 63 bytes,
  6027. medium = 252 bytes, large = 1008 bytes). The value of crash keys can be set
  6028. from any thread or process using the Cef.SetCrashKeyValue function. These
  6029. key/value pairs will be sent to the crash server along with the crash dump
  6030. file. Medium and large values will be chunked for submission. For example,
  6031. if your key is named "mykey" then the value will be broken into ordered
  6032. chunks and submitted using keys named "mykey-1", "mykey-2", etc.
  6033. </summary>
  6034. <returns>Returns true if crash reporting is enabled.</returns>
  6035. </member>
  6036. <member name="M:CefSharp.Core.Cef.ColorSetARGB(System.UInt32,System.UInt32,System.UInt32,System.UInt32)">
  6037. <summary>
  6038. Helper function (wrapper around the CefColorSetARGB macro) which combines
  6039. the 4 color components into an uint32 for use with BackgroundColor property
  6040. </summary>
  6041. <param name="a">Alpha</param>
  6042. <param name="r">Red</param>
  6043. <param name="g">Green</param>
  6044. <param name="b">Blue</param>
  6045. <returns>Returns the color.</returns>
  6046. </member>
  6047. <member name="M:CefSharp.Core.Cef.GetGlobalRequestContext">
  6048. <summary>
  6049. Gets the Global Request Context. Make sure to Dispose of this object when finished.
  6050. The earlier possible place to access the IRequestContext is in IBrowserProcessHandler.OnContextInitialized.
  6051. Alternative use the ChromiumWebBrowser BrowserInitialized (OffScreen) or IsBrowserInitializedChanged (WinForms/WPF) events.
  6052. </summary>
  6053. <returns>Returns the global request context or null if the RequestContext has not been initialized yet.</returns>
  6054. </member>
  6055. <member name="M:CefSharp.Core.Cef.CurrentlyOnThread(CefSharp.CefThreadIds)">
  6056. <summary>
  6057. Returns true if called on the specified CEF thread.
  6058. </summary>
  6059. <returns>Returns true if called on the specified thread.</returns>
  6060. </member>
  6061. <member name="M:CefSharp.Core.Cef.ClearSchemeHandlerFactories">
  6062. <summary>
  6063. Clear all scheme handler factories registered with the global request context.
  6064. Returns false on error. This function may be called on any thread in the browser process.
  6065. Using this function is equivalent to calling Cef.GetGlobalRequestContext().ClearSchemeHandlerFactories().
  6066. </summary>
  6067. <returns>Returns false on error.</returns>
  6068. </member>
  6069. <member name="M:CefSharp.Core.Cef.ShutdownWithoutChecks">
  6070. <summary>
  6071. This method should only be used by advanced users, if you're unsure then use Cef.Shutdown().
  6072. This function should be called on the main application thread to shut down
  6073. the CEF browser process before the application exits. This method simply obtains a lock
  6074. and calls the native CefShutdown method, only IsInitialized is checked. All ChromiumWebBrowser
  6075. instances MUST be Disposed of before calling this method. If calling this method results in a crash
  6076. or hangs then you're likely hanging on to some unmanaged resources or haven't closed all of your browser
  6077. instances
  6078. </summary>
  6079. </member>
  6080. <member name="M:CefSharp.Core.Cef.Shutdown">
  6081. <summary>
  6082. Shuts down CefSharp and the underlying CEF infrastructure. This method is safe to call multiple times; it will only
  6083. shut down CEF on the first call (all subsequent calls will be ignored).
  6084. This method should be called on the main application thread to shut down the CEF browser process before the application exits.
  6085. If you are Using CefSharp.OffScreen then you must call this explicitly before your application exits or it will hang.
  6086. This method must be called on the same thread as Initialize. If you don't call Shutdown explicitly then CefSharp.Wpf and CefSharp.WinForms
  6087. versions will do their best to call Shutdown for you, if your application is having trouble closing then call thus explicitly.
  6088. </summary>
  6089. </member>
  6090. <member name="M:CefSharp.Core.Cef.PreShutdown">
  6091. <summary>
  6092. Called prior to calling Cef.Shutdown, this diposes of any remaning
  6093. ChromiumWebBrowser instances. In WPF this is used from Dispatcher.ShutdownStarted
  6094. to release the unmanaged resources held by the ChromiumWebBrowser instances.
  6095. Generally speaking you don't need to call this yourself.
  6096. </summary>
  6097. </member>
  6098. <member name="M:CefSharp.Core.Cef.GetGlobalCookieManager(CefSharp.ICompletionCallback)">
  6099. <summary>
  6100. Returns the global cookie manager. By default data will be stored at CefSettings.CachePath if specified or in memory otherwise.
  6101. Using this method is equivalent to calling Cef.GetGlobalRequestContext().GetCookieManager()
  6102. The cookie managers storage is created in an async fashion, whilst this method may return a cookie manager instance,
  6103. there may be a short delay before you can Get/Write cookies.
  6104. To be sure the cookie manager has been initialized use one of the following
  6105. - Access the ICookieManager after ICompletionCallback.OnComplete has been called
  6106. - Access the ICookieManager instance in IBrowserProcessHandler.OnContextInitialized.
  6107. - Use the ChromiumWebBrowser BrowserInitialized (OffScreen) or IsBrowserInitializedChanged (WinForms/WPF) events.
  6108. </summary>
  6109. <param name="callback">If non-NULL it will be executed asnychronously on the CEF UI thread after the manager's storage has been initialized.</param>
  6110. <returns>A the global cookie manager or null if the RequestContext has not yet been initialized.</returns>
  6111. </member>
  6112. <member name="M:CefSharp.Core.Cef.GetGlobalCookieManager">
  6113. <summary>
  6114. Returns the global cookie manager. By default data will be stored at CefSettings.CachePath if specified or in memory otherwise.
  6115. Using this method is equivalent to calling Cef.GetGlobalRequestContext().GetCookieManager()
  6116. The cookie managers storage is created in an async fashion, whilst this method may return a cookie manager instance,
  6117. there may be a short delay before you can Get/Write cookies.
  6118. To be sure the cookie manager has been initialized use one of the following
  6119. - Use the GetGlobalCookieManager(ICompletionCallback) overload and access the ICookieManager after
  6120. ICompletionCallback.OnComplete has been called.
  6121. - Access the ICookieManager instance in IBrowserProcessHandler.OnContextInitialized.
  6122. - Use the ChromiumWebBrowser BrowserInitialized (OffScreen) or IsBrowserInitializedChanged (WinForms/WPF) events.
  6123. </summary>
  6124. <returns>A the global cookie manager or null if the RequestContext has not yet been initialized.</returns>
  6125. </member>
  6126. <member name="M:CefSharp.Core.Cef.ClearCrossOriginWhitelist">
  6127. <summary>Remove all entries from the cross-origin access whitelist.</summary>
  6128. <remarks>
  6129. Remove all entries from the cross-origin access whitelist. Returns false if
  6130. the whitelist cannot be accessed.
  6131. </remarks>
  6132. </member>
  6133. <member name="M:CefSharp.Core.Cef.RemoveCrossOriginWhitelistEntry(System.String,System.String,System.String,System.Boolean)">
  6134. <summary>Remove entry from cross-origin whitelist</summary>
  6135. <param name="sourceOrigin">The origin allowed to be accessed by the target protocol/domain.</param>
  6136. <param name="targetProtocol">The target protocol allowed to access the source origin.</param>
  6137. <param name="targetDomain">The optional target domain allowed to access the source origin.</param>
  6138. <param name="allowTargetSubdomains">If set to true would allow a blah.example.com if the
  6139. <paramref name="targetDomain" /> was set to example.com
  6140. </param>
  6141. <remarks>
  6142. Remove an entry from the cross-origin access whitelist. Returns false if
  6143. <paramref name="sourceOrigin" /> is invalid or the whitelist cannot be accessed.
  6144. </remarks>
  6145. </member>
  6146. <member name="M:CefSharp.Core.Cef.AddCrossOriginWhitelistEntry(System.String,System.String,System.String,System.Boolean)">
  6147. <summary>Add an entry to the cross-origin whitelist.</summary>
  6148. <param name="sourceOrigin">The origin allowed to be accessed by the target protocol/domain.</param>
  6149. <param name="targetProtocol">The target protocol allowed to access the source origin.</param>
  6150. <param name="targetDomain">The optional target domain allowed to access the source origin.</param>
  6151. <param name="allowTargetSubdomains">If set to true would allow a blah.example.com if the
  6152. <paramref name="targetDomain" /> was set to example.com
  6153. </param>
  6154. <returns>Returns false if is invalid or the whitelist cannot be accessed.</returns>
  6155. <remarks>
  6156. The same-origin policy restricts how scripts hosted from different origins
  6157. (scheme + domain + port) can communicate. By default, scripts can only access
  6158. resources with the same origin. Scripts hosted on the HTTP and HTTPS schemes
  6159. (but no other schemes) can use the "Access-Control-Allow-Origin" header to
  6160. allow cross-origin requests. For example, https://source.example.com can make
  6161. XMLHttpRequest requests on http://target.example.com if the
  6162. http://target.example.com request returns an "Access-Control-Allow-Origin:
  6163. https://source.example.com" response header.
  6164. Scripts in separate frames or iframes and hosted from the same protocol and
  6165. domain suffix can execute cross-origin JavaScript if both pages set the
  6166. document.domain value to the same domain suffix. For example,
  6167. scheme://foo.example.com and scheme://bar.example.com can communicate using
  6168. JavaScript if both domains set document.domain="example.com".
  6169. This method is used to allow access to origins that would otherwise violate
  6170. the same-origin policy. Scripts hosted underneath the fully qualified
  6171. <paramref name="sourceOrigin" /> URL (like http://www.example.com) will be allowed access to
  6172. all resources hosted on the specified <paramref name="targetProtocol" /> and <paramref name="targetDomain" />.
  6173. If <paramref name="targetDomain" /> is non-empty and <paramref name="allowTargetSubdomains" /> if false only
  6174. exact domain matches will be allowed. If <paramref name="targetDomain" /> contains a top-
  6175. level domain component (like "example.com") and <paramref name="allowTargetSubdomains" /> is
  6176. true sub-domain matches will be allowed. If <paramref name="targetDomain" /> is empty and
  6177. <paramref name="allowTargetSubdomains" /> if true all domains and IP addresses will be
  6178. allowed.
  6179. This method cannot be used to bypass the restrictions on local or display
  6180. isolated schemes. See the comments on <see cref="T:CefSharp.CefCustomScheme" /> for more
  6181. information.
  6182. This function may be called on any thread. Returns false if <paramref name="sourceOrigin" />
  6183. is invalid or the whitelist cannot be accessed.
  6184. </remarks>
  6185. </member>
  6186. <member name="M:CefSharp.Core.Cef.ExecuteProcess">
  6187. <summary>
  6188. This function should be called from the application entry point function to execute a secondary process.
  6189. It can be used to run secondary processes from the browser client executable (default behavior) or
  6190. from a separate executable specified by the CefSettings.browser_subprocess_path value.
  6191. If called for the browser process (identified by no "type" command-line value) it will return immediately with a value of -1.
  6192. If called for a recognized secondary process it will block until the process should exit and then return the process exit code.
  6193. The |application| parameter may be empty. The |windows_sandbox_info| parameter is only used on Windows and may be NULL (see cef_sandbox_win.h for details).
  6194. </summary>
  6195. </member>
  6196. <member name="M:CefSharp.Core.Cef.DoMessageLoopWork">
  6197. <summary>
  6198. Perform a single iteration of CEF message loop processing.This function is
  6199. provided for cases where the CEF message loop must be integrated into an
  6200. existing application message loop. Use of this function is not recommended
  6201. for most users; use CefSettings.MultiThreadedMessageLoop if possible (the default).
  6202. When using this function care must be taken to balance performance
  6203. against excessive CPU usage. It is recommended to enable the
  6204. CefSettings.ExternalMessagePump option when using
  6205. this function so that IBrowserProcessHandler.OnScheduleMessagePumpWork()
  6206. callbacks can facilitate the scheduling process. This function should only be
  6207. called on the main application thread and only if Cef.Initialize() is called
  6208. with a CefSettings.MultiThreadedMessageLoop value of false. This function
  6209. will not block.
  6210. </summary>
  6211. </member>
  6212. <member name="M:CefSharp.Core.Cef.QuitMessageLoop">
  6213. <summary>
  6214. Quit the CEF message loop that was started by calling Cef.RunMessageLoop().
  6215. This function should only be called on the main application thread and only
  6216. if Cef.RunMessageLoop() was used.
  6217. </summary>
  6218. </member>
  6219. <member name="M:CefSharp.Core.Cef.RunMessageLoop">
  6220. <summary>
  6221. Run the CEF message loop. Use this function instead of an application-
  6222. provided message loop to get the best balance between performance and CPU
  6223. usage. This function should only be called on the main application thread and
  6224. only if Cef.Initialize() is called with a
  6225. CefSettings.MultiThreadedMessageLoop value of false. This function will
  6226. block until a quit message is received by the system.
  6227. </summary>
  6228. </member>
  6229. <member name="M:CefSharp.Core.Cef.Initialize(CefSharp.Core.CefSettingsBase,System.Boolean,CefSharp.IApp)">
  6230. <summary>
  6231. Initializes CefSharp with user-provided settings.
  6232. It's important to note that Initialize/Shutdown <strong>MUST</strong> be called on your main
  6233. application thread (typically the UI thread). If you call them on different
  6234. threads, your application will hang. See the documentation for Cef.Shutdown() for more details.
  6235. </summary>
  6236. <param name="cefSettings">CefSharp configuration settings.</param>
  6237. <param name="performDependencyCheck">Check that all relevant dependencies avaliable, throws exception if any are missing</param>
  6238. <param name="cefApp">Implement this interface to provide handler implementations. Null if you don't wish to handle these events</param>
  6239. <returns>true if successful; otherwise, false.</returns>
  6240. </member>
  6241. <member name="M:CefSharp.Core.Cef.Initialize(CefSharp.Core.CefSettingsBase,System.Boolean,CefSharp.IBrowserProcessHandler)">
  6242. <summary>
  6243. Initializes CefSharp with user-provided settings.
  6244. It's important to note that Initialize/Shutdown <strong>MUST</strong> be called on your main
  6245. applicaiton thread (Typically the UI thead). If you call them on different
  6246. threads, your application will hang. See the documentation for Cef.Shutdown() for more details.
  6247. </summary>
  6248. <param name="cefSettings">CefSharp configuration settings.</param>
  6249. <param name="performDependencyCheck">Check that all relevant dependencies avaliable, throws exception if any are missing</param>
  6250. <param name="browserProcessHandler">The handler for functionality specific to the browser process. Null if you don't wish to handle these events</param>
  6251. <returns>true if successful; otherwise, false.</returns>
  6252. </member>
  6253. <member name="M:CefSharp.Core.Cef.Initialize(CefSharp.Core.CefSettingsBase,System.Boolean)">
  6254. <summary>
  6255. Initializes CefSharp with user-provided settings.
  6256. It's important to note that Initialize/Shutdown <strong>MUST</strong> be called on your main
  6257. application thread (typically the UI thread). If you call them on different
  6258. threads, your application will hang. See the documentation for Cef.Shutdown() for more details.
  6259. </summary>
  6260. <param name="cefSettings">CefSharp configuration settings.</param>
  6261. <param name="performDependencyCheck">Check that all relevant dependencies avaliable, throws exception if any are missing</param>
  6262. <returns>true if successful; otherwise, false.</returns>
  6263. </member>
  6264. <member name="M:CefSharp.Core.Cef.Initialize(CefSharp.Core.CefSettingsBase)">
  6265. <summary>
  6266. Initializes CefSharp with user-provided settings.
  6267. It's important to note that Initialize and Shutdown <strong>MUST</strong> be called on your main
  6268. application thread (typically the UI thread). If you call them on different
  6269. threads, your application will hang. See the documentation for Cef.Shutdown() for more details.
  6270. </summary>
  6271. <param name="cefSettings">CefSharp configuration settings.</param>
  6272. <returns>true if successful; otherwise, false.</returns>
  6273. </member>
  6274. <member name="M:CefSharp.Core.Cef.ParseUrl(System.String)">
  6275. <summary>
  6276. Parse the specified url into its component parts.
  6277. Uses a GURL to parse the Url. GURL is Google's URL parsing library.
  6278. </summary>
  6279. <param name="url">url</param>
  6280. <returns>Returns null if the URL is empty or invalid.</returns>
  6281. </member>
  6282. <member name="P:CefSharp.Core.Cef.CefCommitHash">
  6283. <summary>
  6284. Gets a value that indicates the Git Hash for CEF version currently being used.
  6285. </summary>
  6286. <value>The Git Commit Hash</value>
  6287. </member>
  6288. <member name="P:CefSharp.Core.Cef.ChromiumVersion">
  6289. <summary>Gets a value that indicates the Chromium version currently being used.</summary>
  6290. <value>The Chromium version.</value>
  6291. </member>
  6292. <member name="P:CefSharp.Core.Cef.CefVersion">
  6293. <summary>Gets a value that indicates the CEF version currently being used.</summary>
  6294. <value>The CEF Version</value>
  6295. </member>
  6296. <member name="P:CefSharp.Core.Cef.CefSharpVersion">
  6297. <summary>Gets a value that indicates the version of CefSharp currently being used.</summary>
  6298. <value>The CefSharp version.</value>
  6299. </member>
  6300. <member name="P:CefSharp.Core.Cef.IsShutdown">
  6301. <summary>Gets a value that indicates whether CefSharp was shutdown.</summary>
  6302. <value>true if CefSharp was shutdown; otherwise, false.</value>
  6303. </member>
  6304. <member name="P:CefSharp.Core.Cef.IsInitialized">
  6305. <summary>Gets a value that indicates whether CefSharp is initialized.</summary>
  6306. <value>true if CefSharp is initialized; otherwise, false.</value>
  6307. </member>
  6308. <member name="T:CefSharp.Core.Cef">
  6309. <summary>
  6310. Global CEF methods are exposed through this class. e.g. CefInitalize maps to Cef.Initialize
  6311. CEF API Doc https://magpcss.org/ceforum/apidocs3/projects/(default)/(_globals).html
  6312. This class cannot be inherited.
  6313. </summary>
  6314. </member>
  6315. <member name="M:CefSharp.Core.CefSettingsBase.RegisterScheme(CefSharp.CefCustomScheme)">
  6316. <summary>
  6317. Registers a custom scheme using the provided settings.
  6318. </summary>
  6319. <param name="cefCustomScheme">The CefCustomScheme which provides the details about the scheme.</param>
  6320. </member>
  6321. <member name="P:CefSharp.Core.CefSettingsBase.CookieableSchemesExcludeDefaults">
  6322. <summary>
  6323. If CookieableSchemesExcludeDefaults is false the
  6324. default schemes ("http", "https", "ws" and "wss") will also be supported.
  6325. Specifying a CookieableSchemesList value and setting
  6326. CookieableSchemesExcludeDefaults to true will disable all loading
  6327. and saving of cookies for this manager. Can be overridden
  6328. for individual RequestContext instances via the
  6329. RequestContextSettings.CookieableSchemesList and
  6330. RequestContextSettings.CookieableSchemesExcludeDefaults values.
  6331. </summary>
  6332. </member>
  6333. <member name="P:CefSharp.Core.CefSettingsBase.CookieableSchemesList">
  6334. <summary>
  6335. Comma delimited list of schemes supported by the associated
  6336. ICookieManager. If CookieableSchemesExcludeDefaults is false the
  6337. default schemes ("http", "https", "ws" and "wss") will also be supported.
  6338. Specifying a CookieableSchemesList value and setting
  6339. CookieableSchemesExcludeDefaults to true will disable all loading
  6340. and saving of cookies for this manager. Can be overridden
  6341. for individual RequestContext instances via the
  6342. RequestContextSettings.CookieableSchemesList and
  6343. RequestContextSettings.CookieableSchemesExcludeDefaults values.
  6344. </summary>
  6345. </member>
  6346. <member name="P:CefSharp.Core.CefSettingsBase.BackgroundColor">
  6347. <summary>
  6348. Background color used for the browser before a document is loaded and when no document color is specified. The alpha
  6349. component must be either fully opaque (0xFF) or fully transparent (0x00). If the alpha component is fully opaque then the RGB
  6350. components will be used as the background color. If the alpha component is fully transparent for a WinForms browser then the
  6351. default value of opaque white be used. If the alpha component is fully transparent for a windowless (WPF/OffScreen) browser
  6352. then transparent painting will be enabled.
  6353. </summary>
  6354. </member>
  6355. <member name="P:CefSharp.Core.CefSettingsBase.AcceptLanguageList">
  6356. <summary>
  6357. Comma delimited ordered list of language codes without any whitespace that will be used in the "Accept-Language" HTTP header.
  6358. May be set globally using the CefSettings.AcceptLanguageList value. If both values are empty then "en-US,en" will be used.
  6359. </summary>
  6360. </member>
  6361. <member name="P:CefSharp.Core.CefSettingsBase.PersistUserPreferences">
  6362. <summary>
  6363. To persist user preferences as a JSON file in the cache path directory set this value to true. A CachePath value must also be
  6364. specified to enable this feature. Also configurable using the "persist-user-preferences" command-line switch. Can be
  6365. overridden for individual RequestContext instances via the RequestContextSettings.PersistUserPreferences value.
  6366. </summary>
  6367. </member>
  6368. <member name="P:CefSharp.Core.CefSettingsBase.PersistSessionCookies">
  6369. <summary>
  6370. To persist session cookies (cookies without an expiry date or validity interval) by default when using the global cookie
  6371. manager set this value to true. Session cookies are generally intended to be transient and most Web browsers do not persist
  6372. them. A CachePath value must also be specified to enable this feature. Also configurable using the "persist-session-cookies"
  6373. command-line switch. Can be overridden for individual RequestContext instances via the
  6374. RequestContextSettings.PersistSessionCookies value.
  6375. </summary>
  6376. </member>
  6377. <member name="P:CefSharp.Core.CefSettingsBase.WindowlessRenderingEnabled">
  6378. <summary>
  6379. Set to true (1) to enable windowless (off-screen) rendering support. Do not enable this value if the application does not use
  6380. windowless rendering as it may reduce rendering performance on some systems.
  6381. </summary>
  6382. </member>
  6383. <member name="P:CefSharp.Core.CefSettingsBase.UserAgent">
  6384. <summary>
  6385. Value that will be returned as the User-Agent HTTP header. If empty the default User-Agent string will be used. Also
  6386. configurable using the "user-agent" command-line switch.
  6387. </summary>
  6388. </member>
  6389. <member name="P:CefSharp.Core.CefSettingsBase.UncaughtExceptionStackSize">
  6390. <summary>
  6391. The number of stack trace frames to capture for uncaught exceptions. Specify a positive value to enable the
  6392. CefRenderProcessHandler:: OnUncaughtException() callback. Specify 0 (default value) and OnUncaughtException() will not be
  6393. called. Also configurable using the "uncaught-exception-stack-size" command-line switch.
  6394. </summary>
  6395. </member>
  6396. <member name="P:CefSharp.Core.CefSettingsBase.RemoteDebuggingPort">
  6397. <summary>
  6398. Set to a value between 1024 and 65535 to enable remote debugging on the specified port. For example, if 8080 is specified the
  6399. remote debugging URL will be http://localhost:8080. CEF can be remotely debugged from any CEF or Chrome browser window. Also
  6400. configurable using the "remote-debugging-port" command-line switch.
  6401. </summary>
  6402. </member>
  6403. <member name="P:CefSharp.Core.CefSettingsBase.UserAgentProduct">
  6404. <summary>
  6405. Value that will be inserted as the product portion of the default User-Agent string. If empty the Chromium product version
  6406. will be used. If UserAgent is specified this value will be ignored. Also configurable using the "user-agent-product" command-
  6407. line switch.
  6408. </summary>
  6409. </member>
  6410. <member name="P:CefSharp.Core.CefSettingsBase.PackLoadingDisabled">
  6411. <summary>
  6412. Set to true to disable loading of pack files for resources and locales. A resource bundle handler must be provided for the
  6413. browser and render processes via CefApp::GetResourceBundleHandler() if loading of pack files is disabled. Also configurable
  6414. using the "disable-pack-loading" command- line switch.
  6415. </summary>
  6416. </member>
  6417. <member name="P:CefSharp.Core.CefSettingsBase.JavascriptFlags">
  6418. <summary>
  6419. Custom flags that will be used when initializing the V8 JavaScript engine. The consequences of using custom flags may not be
  6420. well tested. Also configurable using the "js-flags" command-line switch.
  6421. </summary>
  6422. </member>
  6423. <member name="P:CefSharp.Core.CefSettingsBase.LogSeverity">
  6424. <summary>
  6425. The log severity. Only messages of this severity level or higher will be logged. When set to
  6426. <see cref="F:CefSharp.LogSeverity.Disable" /> no messages will be written to the log file, but Fatal messages will still be
  6427. output to stderr. Also configurable using the "log-severity" command-line switch with a value of "verbose", "info", "warning",
  6428. "error", "fatal", "error-report" or "disable".
  6429. </summary>
  6430. </member>
  6431. <member name="P:CefSharp.Core.CefSettingsBase.LogFile">
  6432. <summary>
  6433. The directory and file name to use for the debug log. If empty a default log file name and location will be used. On Windows
  6434. a "debug.log" file will be written in the main executable directory. Also configurable using the"log-file" command- line
  6435. switch.
  6436. </summary>
  6437. </member>
  6438. <member name="P:CefSharp.Core.CefSettingsBase.ResourcesDirPath">
  6439. <summary>
  6440. The fully qualified path for the resources directory. If this value is empty the cef.pak and/or devtools_resources.pak files
  6441. must be located in the module directory. Also configurable using the "resources-dir-path" command-line switch.
  6442. </summary>
  6443. </member>
  6444. <member name="P:CefSharp.Core.CefSettingsBase.LocalesDirPath">
  6445. <summary>
  6446. The fully qualified path for the locales directory. If this value is empty the locales directory must be located in the
  6447. module directory. If this value is non-empty then it must be an absolute path. Also configurable using the "locales-dir-path"
  6448. command-line switch.
  6449. </summary>
  6450. </member>
  6451. <member name="P:CefSharp.Core.CefSettingsBase.Locale">
  6452. <summary>
  6453. The locale string that will be passed to WebKit. If empty the default locale of "en-US" will be used. Also configurable using
  6454. the "lang" command-line switch.
  6455. </summary>
  6456. </member>
  6457. <member name="P:CefSharp.Core.CefSettingsBase.RootCachePath">
  6458. <summary>
  6459. The root directory that all CefSettings.CachePath and RequestContextSettings.CachePath values must have in common. If this
  6460. value is empty and CefSettings.CachePath is non-empty then it will default to the CefSettings.CachePath value.
  6461. If this value is non-empty then it must be an absolute path. Failure to set this value correctly may result in the sandbox
  6462. blocking read/write access to the CachePath directory. NOTE: CefSharp does not implement the CHROMIUM SANDBOX. A non-empty
  6463. RootCachePath can be used in conjuncation with an empty CefSettings.CachePath in instances where you would like browsers
  6464. attached to the Global RequestContext (the default) created in "incognito mode" and instances created with a custom
  6465. RequestContext using a disk based cache.
  6466. </summary>
  6467. </member>
  6468. <member name="P:CefSharp.Core.CefSettingsBase.CachePath">
  6469. <summary>
  6470. The location where data for the global browser cache will be stored on disk. In this value is non-empty then it must be
  6471. an absolute path that is must be either equal to or a child directory of CefSettings.RootCachePath (if RootCachePath is
  6472. empty it will default to this value). If the value is empty then browsers will be created in "incognito mode" where
  6473. in-memory caches are used for storage and no data is persisted to disk. HTML5 databases such as localStorage will only
  6474. persist across sessions if a cache path is specified. Can be overridden for individual RequestContext instances via the
  6475. RequestContextSettings.CachePath value.
  6476. </summary>
  6477. </member>
  6478. <member name="P:CefSharp.Core.CefSettingsBase.BrowserSubprocessPath">
  6479. <summary>
  6480. The path to a separate executable that will be launched for sub-processes. By default the browser process executable is used.
  6481. See the comments on Cef.ExecuteProcess() for details. If this value is non-empty then it must be an absolute path.
  6482. Also configurable using the "browser-subprocess-path" command-line switch.
  6483. Defaults to using the provided CefSharp.BrowserSubprocess.exe instance
  6484. </summary>
  6485. </member>
  6486. <member name="P:CefSharp.Core.CefSettingsBase.MultiThreadedMessageLoop">
  6487. <summary>
  6488. Set to true to have the browser process message loop run in a separate thread. If false than the CefDoMessageLoopWork()
  6489. function must be called from your application message loop. This option is only supported on Windows. The default value is
  6490. true.
  6491. </summary>
  6492. </member>
  6493. <member name="P:CefSharp.Core.CefSettingsBase.ExternalMessagePump">
  6494. <summary>
  6495. Set to true to control browser process main (UI) thread message pump scheduling via the
  6496. IBrowserProcessHandler.OnScheduleMessagePumpWork callback. This option is recommended for use in combination with the
  6497. Cef.DoMessageLoopWork() function in cases where the CEF message loop must be integrated into an existing application message
  6498. loop (see additional comments and warnings on Cef.DoMessageLoopWork). Enabling this option is not recommended for most users;
  6499. leave this option disabled and use either MultiThreadedMessageLoop (the default) if possible.
  6500. </summary>
  6501. </member>
  6502. <member name="P:CefSharp.Core.CefSettingsBase.CommandLineArgsDisabled">
  6503. <summary>
  6504. Set to true to disable configuration of browser process features using standard CEF and Chromium command-line arguments.
  6505. Configuration can still be specified using CEF data structures or by adding to CefCommandLineArgs.
  6506. </summary>
  6507. </member>
  6508. <member name="P:CefSharp.Core.CefSettingsBase.ChromeRuntime">
  6509. <summary>
  6510. **Experimental**
  6511. Set to true to enable use of the Chrome runtime in CEF. This feature is
  6512. considered experimental and is not recommended for most users at this time.
  6513. See issue https://github.com/chromiumembedded/cef/issues/2969
  6514. </summary>
  6515. </member>
  6516. <member name="P:CefSharp.Core.CefSettingsBase.CefCommandLineArgs">
  6517. <summary>
  6518. Add custom command line argumens to this collection, they will be added in OnBeforeCommandLineProcessing. The
  6519. CefSettings.CommandLineArgsDisabled value can be used to start with an empty command-line object. Any values specified in
  6520. CefSettings that equate to command-line arguments will be set before this method is called.
  6521. </summary>
  6522. </member>
  6523. <member name="P:CefSharp.Core.CefSettingsBase.CefCustomSchemes">
  6524. <summary>
  6525. Add Customs schemes to this collection.
  6526. </summary>
  6527. </member>
  6528. <member name="M:CefSharp.Core.CefSettingsBase.Dispose">
  6529. <summary>
  6530. Destructor.
  6531. </summary>
  6532. </member>
  6533. <member name="M:CefSharp.Core.CefSettingsBase.Finalize">
  6534. <summary>
  6535. Finalizer.
  6536. </summary>
  6537. </member>
  6538. <member name="M:CefSharp.Core.CefSettingsBase.#ctor">
  6539. <summary>
  6540. Default Constructor.
  6541. </summary>
  6542. </member>
  6543. <member name="F:CefSharp.Core.CefSettingsBase._cefCustomSchemes">
  6544. <summary>
  6545. CefCustomScheme collection
  6546. </summary>
  6547. </member>
  6548. <member name="F:CefSharp.Core.CefSettingsBase._cefSettings">
  6549. <summary>
  6550. CefSettings unmanaged pointer
  6551. </summary>
  6552. </member>
  6553. <member name="F:CefSharp.Core.CefSettingsBase._cefCommandLineArgs">
  6554. <summary>
  6555. Command Line Arguments Dictionary.
  6556. </summary>
  6557. </member>
  6558. <member name="T:CefSharp.Core.CefSettingsBase">
  6559. <summary>
  6560. Initialization settings. Many of these and other settings can also configured using command-line switches.
  6561. WPF/WinForms/OffScreen each have their own CefSettings implementation that sets
  6562. relevant settings e.g. OffScreen starts with audio muted.
  6563. </summary>
  6564. </member>
  6565. <member name="M:CefSharp.Core.PopupFeatures.#ctor(CefPopupFeatures!System.Runtime.CompilerServices.IsConst*)">
  6566. <summary>
  6567. Constructor.
  6568. </summary>
  6569. <param name="popupFeatures">The popup features.</param>
  6570. </member>
  6571. <member name="T:CefSharp.Core.PopupFeatures">
  6572. <summary>
  6573. Class representing popup window features.
  6574. </summary>
  6575. <exclude />
  6576. </member>
  6577. <member name="T:CefSharp.Core.ManagedCefBrowserAdapter">
  6578. <exclude />
  6579. </member>
  6580. <member name="P:CefSharp.Core.DragData.ImageHotspot">
  6581. <summary>
  6582. Get the image hotspot (drag start location relative to image dimensions).
  6583. </summary>
  6584. </member>
  6585. <member name="P:CefSharp.Core.DragData.Image">
  6586. <summary>
  6587. Get the image representation of drag data.
  6588. May return NULL if no image representation is available.
  6589. </summary>
  6590. </member>
  6591. <member name="P:CefSharp.Internals.CefImageWrapper.Width">
  6592. <summary>
  6593. Returns the image width in density independent pixel(DIP) units.
  6594. </summary>
  6595. </member>
  6596. <member name="M:CefSharp.Internals.CefImageWrapper.RemoveRepresentation(System.Single)">
  6597. <summary>
  6598. Removes the representation for scaleFactor.
  6599. </summary>
  6600. <param name="scaleFactor" />
  6601. <returns>true for success</returns>
  6602. </member>
  6603. <member name="M:CefSharp.Internals.CefImageWrapper.IsSame(CefSharp.IImage)">
  6604. <summary>
  6605. Returns true if this Image and that Image share the same underlying storage.
  6606. </summary>
  6607. <param name="that">image to compare</param>
  6608. <returns>returns true if share same underlying storage</returns>
  6609. </member>
  6610. <member name="P:CefSharp.Internals.CefImageWrapper.IsEmpty">
  6611. <summary>
  6612. Returns true if this Image is empty.
  6613. </summary>
  6614. <returns />
  6615. </member>
  6616. <member name="M:CefSharp.Internals.CefImageWrapper.HasRepresentation(System.Single)">
  6617. <summary>
  6618. Returns true if this image contains a representation for scaleFactor.
  6619. </summary>
  6620. <param name="scaleFactor" />
  6621. <returns />
  6622. </member>
  6623. <member name="P:CefSharp.Internals.CefImageWrapper.Height">
  6624. <summary>
  6625. Returns the image height in density independent pixel(DIP) units.
  6626. </summary>
  6627. </member>
  6628. <member name="M:CefSharp.Internals.CefImageWrapper.GetRepresentationInfo(System.Single,System.Single@,System.Int32@,System.Int32@)">
  6629. <summary>
  6630. Returns information for the representation that most closely matches scaleFactor.
  6631. </summary>
  6632. <param name="scaleFactor">scale factor</param>
  6633. <param name="actualScaleFactor">actual scale factor</param>
  6634. <param name="pixelWidth">pixel width</param>
  6635. <param name="pixelHeight">pixel height</param>
  6636. <returns>return if information found for scale factor</returns>
  6637. </member>
  6638. <member name="M:CefSharp.Internals.CefImageWrapper.GetAsPNG(System.Single,System.Boolean,System.Int32@,System.Int32@)">
  6639. <summary>
  6640. Returns the PNG representation that most closely matches scaleFactor.
  6641. </summary>
  6642. <param name="scaleFactor">scale factor</param>
  6643. <param name="withTransparency">is the PNG transparent</param>
  6644. <param name="pixelWidth">pixel width</param>
  6645. <param name="pixelHeight">pixel height</param>
  6646. <returns>A stream represending the PNG or null.</returns>
  6647. </member>
  6648. <member name="M:CefSharp.Internals.CefImageWrapper.GetAsJPEG(System.Single,System.Int32,System.Int32@,System.Int32@)">
  6649. <summary>
  6650. Returns the JPEG representation that most closely matches scaleFactor.
  6651. </summary>
  6652. <param name="scaleFactor">scale factor</param>
  6653. <param name="quality">image quality</param>
  6654. <param name="pixelWidth">pixel width</param>
  6655. <param name="pixelHeight">pixel height</param>
  6656. <returns>A stream representing the JPEG or null.</returns>
  6657. </member>
  6658. <member name="M:CefSharp.Internals.CefImageWrapper.GetAsBitmap(System.Single,CefSharp.Enums.ColorType,CefSharp.Enums.AlphaType,System.Int32@,System.Int32@)">
  6659. <summary>
  6660. Returns the bitmap representation that most closely matches scaleFactor.
  6661. </summary>
  6662. <param name="scaleFactor">scale factor</param>
  6663. <param name="colorType">color type</param>
  6664. <param name="alphaType">alpha type</param>
  6665. <param name="pixelWidth">pixel width</param>
  6666. <param name="pixelHeight">pixel height</param>
  6667. <returns>A stream represending the bitmap or null.</returns>
  6668. </member>
  6669. <member name="M:CefApp.GetRenderProcessHandler">
  6670. Return the handler for functionality specific to the render process. This
  6671. method is called on the render process main thread.
  6672. </member>
  6673. <member name="M:CefApp.GetBrowserProcessHandler">
  6674. Return the handler for functionality specific to the browser process. This
  6675. method is called on multiple threads in the browser process.
  6676. </member>
  6677. <member name="M:CefApp.GetResourceBundleHandler">
  6678. Return the handler for resource bundle events. If
  6679. cef_settings_t.pack_loading_disabled is true a handler must be returned.
  6680. If no handler is returned resources will be loaded from pack files. This
  6681. method is called by the browser and render processes on multiple threads.
  6682. </member>
  6683. <member name="M:CefApp.OnRegisterCustomSchemes(CefSchemeRegistrar*)">
  6684. Provides an opportunity to register custom schemes. Do not keep a
  6685. reference to the |registrar| object. This method is called on the main
  6686. thread for each process and the registered schemes should be the same
  6687. across all processes.
  6688. </member>
  6689. <member name="M:CefApp.OnBeforeCommandLineProcessing(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefCommandLine&gt;)">
  6690. Provides an opportunity to view and/or modify command-line arguments
  6691. before processing by CEF and Chromium. The |process_type| value will be
  6692. empty for the browser process. Do not keep a reference to the
  6693. CefCommandLine object passed to this method. The
  6694. cef_settings_t.command_line_args_disabled value can be used to start with
  6695. an empty command-line object. Any values specified in CefSettings that
  6696. equate to command-line arguments will be set before this method is called.
  6697. Be cautious when using this method to modify command-line arguments for
  6698. non-browser processes as this may result in undefined behavior including
  6699. crashes.
  6700. </member>
  6701. <member name="T:CefApp">
  6702. Implement this interface to provide handler implementations. Methods will be
  6703. called by the process and/or thread indicated.
  6704. </member>
  6705. <member name="M:CefQuitMessageLoop">
  6706. Quit the CEF message loop that was started by calling CefRunMessageLoop().
  6707. This function should only be called on the main application thread and only
  6708. if CefRunMessageLoop() was used.
  6709. </member>
  6710. <member name="M:CefRunMessageLoop">
  6711. Run the CEF message loop. Use this function instead of an application-
  6712. provided message loop to get the best balance between performance and CPU
  6713. usage. This function should only be called on the main application thread
  6714. and only if CefInitialize() is called with a
  6715. cef_settings_t.multi_threaded_message_loop value of false. This function
  6716. will block until a quit message is received by the system.
  6717. </member>
  6718. <member name="M:CefDoMessageLoopWork">
  6719. Perform a single iteration of CEF message loop processing. This function is
  6720. provided for cases where the CEF message loop must be integrated into an
  6721. existing application message loop. Use of this function is not recommended
  6722. for most users; use either the CefRunMessageLoop() function or
  6723. cef_settings_t.multi_threaded_message_loop if possible. When using this
  6724. function care must be taken to balance performance against excessive CPU
  6725. usage. It is recommended to enable the cef_settings_t.external_message_pump
  6726. option when using this function so that
  6727. CefBrowserProcessHandler::OnScheduleMessagePumpWork() callbacks can
  6728. facilitate the scheduling process. This function should only be called on
  6729. the main application thread and only if CefInitialize() is called with a
  6730. cef_settings_t.multi_threaded_message_loop value of false. This function
  6731. will not block.
  6732. </member>
  6733. <member name="M:CefShutdown">
  6734. This function should be called on the main application thread to shut down
  6735. the CEF browser process before the application exits. Do not call any
  6736. other CEF functions after calling this function.
  6737. </member>
  6738. <member name="M:CefGetExitCode">
  6739. This function can optionally be called on the main application thread after
  6740. CefInitialize to retrieve the initialization exit code. When CefInitialize
  6741. returns true the exit code will be 0 (CEF_RESULT_CODE_NORMAL_EXIT).
  6742. Otherwise, see cef_resultcode_t for possible exit code values including
  6743. browser process initialization errors and normal early exit conditions (such
  6744. as CEF_RESULT_CODE_NORMAL_EXIT_PROCESS_NOTIFIED for process singleton
  6745. relaunch behavior).
  6746. </member>
  6747. <member name="M:CefInitialize(CefMainArgs!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStructBase&lt;CefSettingsTraits&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefApp&gt;,System.Void*)">
  6748. This function should be called on the main application thread to initialize
  6749. the CEF browser process. The |application| parameter may be empty. Returns
  6750. true if initialization succeeds. Returns false if initialization fails or if
  6751. early exit is desired (for example, due to process singleton relaunch
  6752. behavior). If this function returns false then the application should exit
  6753. immediately without calling any other CEF functions except, optionally,
  6754. CefGetErrorCode. The |windows_sandbox_info| parameter is only used on
  6755. Windows and may be NULL (see cef_sandbox_win.h for details).
  6756. </member>
  6757. <member name="M:CefExecuteProcess(CefMainArgs!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefApp&gt;,System.Void*)">
  6758. This function should be called from the application entry point function to
  6759. execute a secondary process. It can be used to run secondary processes from
  6760. the browser client executable (default behavior) or from a separate
  6761. executable specified by the cef_settings_t.browser_subprocess_path value. If
  6762. called for the browser process (identified by no "type" command-line value)
  6763. it will return immediately with a value of -1. If called for a recognized
  6764. secondary process it will block until the process should exit and then
  6765. return the process exit code. The |application| parameter may be empty. The
  6766. |windows_sandbox_info| parameter is only used on Windows and may be NULL
  6767. (see cef_sandbox_win.h for details).
  6768. </member>
  6769. <member name="M:CefResourceBundleHandler.GetDataResourceForScale(System.Int32,cef_scale_factor_t,System.Void**!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.UInt64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6770. Called to retrieve data for the specified |resource_id| nearest the scale
  6771. factor |scale_factor|. To provide the resource data set |data| and
  6772. |data_size| to the data pointer and size respectively and return true. To
  6773. use the default resource data return false. The resource data will not be
  6774. copied and must remain resident in memory. Include cef_pack_resources.h
  6775. for a listing of valid resource ID values.
  6776. </member>
  6777. <member name="M:CefResourceBundleHandler.GetDataResource(System.Int32,System.Void**!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.UInt64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6778. Called to retrieve data for the specified scale independent |resource_id|.
  6779. To provide the resource data set |data| and |data_size| to the data
  6780. pointer and size respectively and return true. To use the default resource
  6781. data return false. The resource data will not be copied and must remain
  6782. resident in memory. Include cef_pack_resources.h for a listing of valid
  6783. resource ID values.
  6784. </member>
  6785. <member name="M:CefResourceBundleHandler.GetLocalizedString(System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6786. Called to retrieve a localized translation for the specified |string_id|.
  6787. To provide the translation set |string| to the translation string and
  6788. return true. To use the default translation return false. Include
  6789. cef_pack_strings.h for a listing of valid string ID values.
  6790. </member>
  6791. <member name="T:CefResourceBundleHandler">
  6792. Class used to implement a custom resource bundle interface. See CefSettings
  6793. for additional options related to resource bundle loading. The methods of
  6794. this class may be called on multiple threads.
  6795. </member>
  6796. <member name="M:CefRenderProcessHandler.OnProcessMessageReceived(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,cef_process_id_t,scoped_refptr&lt;CefProcessMessage&gt;)">
  6797. Called when a new message is received from a different process. Return
  6798. true if the message was handled or false otherwise. It is safe to keep a
  6799. reference to |message| outside of this callback.
  6800. </member>
  6801. <member name="M:CefRenderProcessHandler.OnFocusedNodeChanged(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefDOMNode&gt;)">
  6802. Called when a new node in the the browser gets focus. The |node| value may
  6803. be empty if no specific node has gained focus. The node object passed to
  6804. this method represents a snapshot of the DOM at the time this method is
  6805. executed. DOM objects are only valid for the scope of this method. Do not
  6806. keep references to or attempt to access any DOM objects outside the scope
  6807. of this method.
  6808. </member>
  6809. <member name="M:CefRenderProcessHandler.OnUncaughtException(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefV8Context&gt;,scoped_refptr&lt;CefV8Exception&gt;,scoped_refptr&lt;CefV8StackTrace&gt;)">
  6810. Called for global uncaught exceptions in a frame. Execution of this
  6811. callback is disabled by default. To enable set
  6812. cef_settings_t.uncaught_exception_stack_size &gt; 0.
  6813. </member>
  6814. <member name="M:CefRenderProcessHandler.OnContextReleased(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefV8Context&gt;)">
  6815. Called immediately before the V8 context for a frame is released. No
  6816. references to the context should be kept after this method is called.
  6817. </member>
  6818. <member name="M:CefRenderProcessHandler.OnContextCreated(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefV8Context&gt;)">
  6819. Called immediately after the V8 context for a frame has been created. To
  6820. retrieve the JavaScript 'window' object use the CefV8Context::GetGlobal()
  6821. method. V8 handles can only be accessed from the thread on which they are
  6822. created. A task runner for posting tasks on the associated thread can be
  6823. retrieved via the CefV8Context::GetTaskRunner() method.
  6824. </member>
  6825. <member name="M:CefRenderProcessHandler.GetLoadHandler">
  6826. Return the handler for browser load status events.
  6827. </member>
  6828. <member name="M:CefRenderProcessHandler.OnBrowserDestroyed(scoped_refptr&lt;CefBrowser&gt;)">
  6829. Called before a browser is destroyed.
  6830. </member>
  6831. <member name="M:CefRenderProcessHandler.OnBrowserCreated(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefDictionaryValue&gt;)">
  6832. Called after a browser has been created. When browsing cross-origin a new
  6833. browser will be created before the old browser with the same identifier is
  6834. destroyed. |extra_info| is an optional read-only value originating from
  6835. CefBrowserHost::CreateBrowser(), CefBrowserHost::CreateBrowserSync(),
  6836. CefLifeSpanHandler::OnBeforePopup() or
  6837. CefBrowserView::CreateBrowserView().
  6838. </member>
  6839. <member name="M:CefRenderProcessHandler.OnWebKitInitialized">
  6840. Called after WebKit has been initialized.
  6841. </member>
  6842. <member name="T:CefRenderProcessHandler">
  6843. Class used to implement render process callbacks. The methods of this class
  6844. will be called on the render process main thread (TID_RENDERER) unless
  6845. otherwise indicated.
  6846. </member>
  6847. <member name="M:CefBrowserProcessHandler.GetDefaultRequestContextHandler">
  6848. Return the default handler for use with a new user or incognito profile
  6849. (CefRequestContext object). If null is returned the CefRequestContext will
  6850. be unmanaged (no callbacks will be executed for that CefRequestContext).
  6851. This method is currently only used with the Chrome runtime when creating
  6852. new browser windows via Chrome UI.
  6853. </member>
  6854. <member name="M:CefBrowserProcessHandler.GetDefaultClient">
  6855. Return the default client for use with a newly created browser window
  6856. (CefBrowser object). If null is returned the CefBrowser will be unmanaged
  6857. (no callbacks will be executed for that CefBrowser) and application
  6858. shutdown will be blocked until the browser window is closed manually. This
  6859. method is currently only used with the Chrome runtime when creating new
  6860. browser windows via Chrome UI.
  6861. </member>
  6862. <member name="M:CefBrowserProcessHandler.OnAlreadyRunningAppRelaunch(scoped_refptr&lt;CefCommandLine&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6863. Implement this method to provide app-specific behavior when an already
  6864. running app is relaunched with the same CefSettings.root_cache_path value.
  6865. For example, activate an existing app window or create a new app window.
  6866. |command_line| will be read-only. Do not keep a reference to
  6867. |command_line| outside of this method. Return true if the relaunch is
  6868. handled or false for default relaunch behavior. Default behavior will
  6869. create a new default styled Chrome window.
  6870. To avoid cache corruption only a single app instance is allowed to run for
  6871. a given CefSettings.root_cache_path value. On relaunch the app checks a
  6872. process singleton lock and then forwards the new launch arguments to the
  6873. already running app process before exiting early. Client apps should
  6874. therefore check the CefInitialize() return value for early exit before
  6875. proceeding.
  6876. This method will be called on the browser process UI thread.
  6877. </member>
  6878. <member name="M:CefBrowserProcessHandler.OnBeforeChildProcessLaunch(scoped_refptr&lt;CefCommandLine&gt;)">
  6879. Called before a child process is launched. Will be called on the browser
  6880. process UI thread when launching a render process and on the browser
  6881. process IO thread when launching a GPU process. Provides an opportunity to
  6882. modify the child process command line. Do not keep a reference to
  6883. |command_line| outside of this method.
  6884. </member>
  6885. <member name="M:CefBrowserProcessHandler.OnContextInitialized">
  6886. Called on the browser process UI thread immediately after the CEF context
  6887. has been initialized.
  6888. </member>
  6889. <member name="M:CefBrowserProcessHandler.OnRegisterCustomPreferences(cef_preferences_type_t,CefPreferenceRegistrar*)">
  6890. Provides an opportunity to register custom preferences prior to
  6891. global and request context initialization.
  6892. If |type| is CEF_PREFERENCES_TYPE_GLOBAL the registered preferences can be
  6893. accessed via CefPreferenceManager::GetGlobalPreferences after
  6894. OnContextInitialized is called. Global preferences are registered a single
  6895. time at application startup. See related cef_settings_t.cache_path and
  6896. cef_settings_t.persist_user_preferences configuration.
  6897. If |type| is CEF_PREFERENCES_TYPE_REQUEST_CONTEXT the preferences can be
  6898. accessed via the CefRequestContext after
  6899. CefRequestContextHandler::OnRequestContextInitialized is called. Request
  6900. context preferences are registered each time a new CefRequestContext is
  6901. created. It is intended but not required that all request contexts have
  6902. the same registered preferences. See related
  6903. cef_request_context_settings_t.cache_path and
  6904. cef_request_context_settings_t.persist_user_preferences configuration.
  6905. Do not keep a reference to the |registrar| object. This method is called
  6906. on the browser process UI thread.
  6907. </member>
  6908. <member name="T:CefBrowserProcessHandler">
  6909. Class used to implement browser process callbacks. The methods of this class
  6910. will be called on the browser process main thread unless otherwise
  6911. indicated.
  6912. </member>
  6913. <member name="M:CefCommandLine.PrependWrapper(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6914. Insert a command before the current command.
  6915. Common for debuggers, like "valgrind" or "gdb --args".
  6916. </member>
  6917. <member name="M:CefCommandLine.AppendArgument(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6918. Add an argument to the end of the command line.
  6919. </member>
  6920. <member name="M:CefCommandLine.GetArguments(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6921. Get the remaining command line arguments.
  6922. </member>
  6923. <member name="M:CefCommandLine.HasArguments">
  6924. True if there are remaining command line arguments.
  6925. </member>
  6926. <member name="M:CefCommandLine.AppendSwitchWithValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6927. Add a switch with the specified value to the end of the command line. If
  6928. the switch has no value pass an empty value string.
  6929. </member>
  6930. <member name="M:CefCommandLine.AppendSwitch(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6931. Add a switch to the end of the command line.
  6932. </member>
  6933. <member name="M:CefCommandLine.GetSwitches(std.map&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;,std.less&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;,std.allocator&lt;std.pair&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst,CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6934. Returns the map of switch names and values. If a switch has no value an
  6935. empty string is returned.
  6936. </member>
  6937. <member name="M:CefCommandLine.GetSwitchValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6938. Returns the value associated with the given switch. If the switch has no
  6939. value or isn't present this method returns the empty string.
  6940. </member>
  6941. <member name="M:CefCommandLine.HasSwitch(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6942. Returns true if the command line contains the given switch.
  6943. </member>
  6944. <member name="M:CefCommandLine.HasSwitches">
  6945. Returns true if the command line has switches.
  6946. </member>
  6947. <member name="M:CefCommandLine.SetProgram(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6948. Set the program part of the command line string (the first item).
  6949. </member>
  6950. <member name="M:CefCommandLine.GetProgram">
  6951. Get the program part of the command line string (the first item).
  6952. </member>
  6953. <member name="M:CefCommandLine.GetCommandLineString">
  6954. Constructs and returns the represented command line string. Use this
  6955. method cautiously because quoting behavior is unclear.
  6956. </member>
  6957. <member name="M:CefCommandLine.GetArgv(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6958. Retrieve the original command line string as a vector of strings.
  6959. The argv array:
  6960. `{ program, [(--|-|/)switch[=value]]*, [--], [argument]* }`
  6961. </member>
  6962. <member name="M:CefCommandLine.Reset">
  6963. Reset the command-line switches and arguments but leave the program
  6964. component unchanged.
  6965. </member>
  6966. <member name="M:CefCommandLine.InitFromString(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6967. Initialize the command line with the string returned by calling
  6968. GetCommandLineW(). This method is only supported on Windows.
  6969. </member>
  6970. <member name="M:CefCommandLine.InitFromArgv(System.Int32,System.SByte!System.Runtime.CompilerServices.IsSignUnspecifiedByte!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsConst*)">
  6971. Initialize the command line with the specified |argc| and |argv| values.
  6972. The first argument must be the name of the program. This method is only
  6973. supported on non-Windows platforms.
  6974. </member>
  6975. <member name="M:CefCommandLine.Copy">
  6976. Returns a writable copy of this object.
  6977. </member>
  6978. <member name="M:CefCommandLine.IsReadOnly">
  6979. Returns true if the values of this object are read-only. Some APIs may
  6980. expose read-only objects.
  6981. </member>
  6982. <member name="M:CefCommandLine.IsValid">
  6983. Returns true if this object is valid. Do not call any other methods if
  6984. this function returns false.
  6985. </member>
  6986. <member name="M:CefCommandLine.GetGlobalCommandLine">
  6987. Returns the singleton global CefCommandLine object. The returned object
  6988. will be read-only.
  6989. </member>
  6990. <member name="M:CefCommandLine.CreateCommandLine">
  6991. Create a new CefCommandLine instance.
  6992. </member>
  6993. <member name="T:CefCommandLine">
  6994. Class used to create and/or parse command line arguments. Arguments with
  6995. "--", "-" and, on Windows, "/" prefixes are considered switches. Switches
  6996. will always precede any arguments without switch prefixes. Switches can
  6997. optionally have a value specified using the "=" delimiter (e.g.
  6998. "-switch=value"). An argument of "--" will terminate switch parsing with all
  6999. subsequent tokens, regardless of prefix, being interpreted as non-switch
  7000. arguments. Switch names should be lowercase ASCII and will be converted to
  7001. such if necessary. Switch values will retain the original case and UTF8
  7002. encoding. This class can be used before CefInitialize() is called.
  7003. </member>
  7004. <member name="M:CefClient.OnProcessMessageReceived(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,cef_process_id_t,scoped_refptr&lt;CefProcessMessage&gt;)">
  7005. Called when a new message is received from a different process. Return
  7006. true if the message was handled or false otherwise. It is safe to keep a
  7007. reference to |message| outside of this callback.
  7008. Called when a new message is received from a different process. Return
  7009. true if the message was handled or false otherwise. It is safe to keep a
  7010. reference to |message| outside of this callback.
  7011. </member>
  7012. <member name="M:CefClient.GetRequestHandler">
  7013. Return the handler for browser request events.
  7014. Return the handler for browser request events.
  7015. </member>
  7016. <member name="M:CefClient.GetRenderHandler">
  7017. Return the handler for off-screen rendering events.
  7018. Return the handler for off-screen rendering events.
  7019. </member>
  7020. <member name="M:CefClient.GetPrintHandler">
  7021. Return the handler for printing on Linux. If a print handler is not
  7022. provided then printing will not be supported on the Linux platform.
  7023. Return the handler for printing on Linux. If a print handler is not
  7024. provided then printing will not be supported on the Linux platform.
  7025. </member>
  7026. <member name="M:CefClient.GetLoadHandler">
  7027. Return the handler for browser load status events.
  7028. Return the handler for browser load status events.
  7029. </member>
  7030. <member name="M:CefClient.GetLifeSpanHandler">
  7031. Return the handler for browser life span events.
  7032. Return the handler for browser life span events.
  7033. </member>
  7034. <member name="M:CefClient.GetKeyboardHandler">
  7035. Return the handler for keyboard events.
  7036. Return the handler for keyboard events.
  7037. </member>
  7038. <member name="M:CefClient.GetJSDialogHandler">
  7039. Return the handler for JavaScript dialogs. If no handler is provided the
  7040. default implementation will be used.
  7041. Return the handler for JavaScript dialogs. If no handler is provided the
  7042. default implementation will be used.
  7043. </member>
  7044. <member name="M:CefClient.GetPermissionHandler">
  7045. Return the handler for permission requests.
  7046. Return the handler for permission requests.
  7047. </member>
  7048. <member name="M:CefClient.GetFrameHandler">
  7049. Return the handler for events related to CefFrame lifespan. This method
  7050. will be called once during CefBrowser creation and the result will be
  7051. cached for performance reasons.
  7052. Return the handler for events related to CefFrame lifespan. This method
  7053. will be called once during CefBrowser creation and the result will be
  7054. cached for performance reasons.
  7055. </member>
  7056. <member name="M:CefClient.GetFocusHandler">
  7057. Return the handler for focus events.
  7058. Return the handler for focus events.
  7059. </member>
  7060. <member name="M:CefClient.GetFindHandler">
  7061. Return the handler for find result events.
  7062. Return the handler for find result events.
  7063. </member>
  7064. <member name="M:CefClient.GetDragHandler">
  7065. Return the handler for drag events.
  7066. Return the handler for drag events.
  7067. </member>
  7068. <member name="M:CefClient.GetDownloadHandler">
  7069. Return the handler for download events. If no handler is returned
  7070. downloads will not be allowed.
  7071. Return the handler for download events. If no handler is returned
  7072. downloads will not be allowed.
  7073. </member>
  7074. <member name="M:CefClient.GetDisplayHandler">
  7075. Return the handler for browser display state events.
  7076. Return the handler for browser display state events.
  7077. </member>
  7078. <member name="M:CefClient.GetDialogHandler">
  7079. Return the handler for dialogs. If no handler is provided the default
  7080. implementation will be used.
  7081. Return the handler for dialogs. If no handler is provided the default
  7082. implementation will be used.
  7083. </member>
  7084. <member name="M:CefClient.GetContextMenuHandler">
  7085. Return the handler for context menus. If no handler is provided the
  7086. default implementation will be used.
  7087. Return the handler for context menus. If no handler is provided the
  7088. default implementation will be used.
  7089. </member>
  7090. <member name="M:CefClient.GetCommandHandler">
  7091. Return the handler for commands. If no handler is provided the default
  7092. implementation will be used.
  7093. Return the handler for commands. If no handler is provided the default
  7094. implementation will be used.
  7095. </member>
  7096. <member name="M:CefClient.GetAudioHandler">
  7097. Return the handler for audio rendering events.
  7098. Return the handler for audio rendering events.
  7099. </member>
  7100. <member name="T:CefClient">
  7101. Implement this interface to provide handler implementations.
  7102. Implement this interface to provide handler implementations.
  7103. </member>
  7104. <member name="M:CefRequestHandler.OnDocumentAvailableInMainFrame(scoped_refptr&lt;CefBrowser&gt;)">
  7105. Called on the browser process UI thread when the window.document object of
  7106. the main frame has been created.
  7107. </member>
  7108. <member name="M:CefRequestHandler.OnRenderProcessTerminated(scoped_refptr&lt;CefBrowser&gt;,cef_termination_status_t,System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7109. Called on the browser process UI thread when the render process
  7110. terminates unexpectedly. |status| indicates how the process terminated.
  7111. |error_code| and |error_string| represent the error that would be
  7112. displayed in Chrome's "Aw, Snap!" view. Possible |error_code| values
  7113. include cef_resultcode_t non-normal exit values and platform-specific
  7114. crash values (for example, a Posix signal or Windows hardware exception).
  7115. </member>
  7116. <member name="M:CefRequestHandler.OnRenderProcessResponsive(scoped_refptr&lt;CefBrowser&gt;)">
  7117. Called on the browser process UI thread when the render process becomes
  7118. responsive after previously being unresponsive. See documentation on
  7119. OnRenderProcessUnresponsive.
  7120. </member>
  7121. <member name="M:CefRequestHandler.OnRenderProcessUnresponsive(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefUnresponsiveProcessCallback&gt;)">
  7122. Called on the browser process UI thread when the render process is
  7123. unresponsive as indicated by a lack of input event processing for at
  7124. least 15 seconds. Return false for the default behavior which is an
  7125. indefinite wait with the Alloy runtime or display of the "Page
  7126. unresponsive" dialog with the Chrome runtime. Return true and don't
  7127. execute the callback for an indefinite wait without display of the Chrome
  7128. runtime dialog. Return true and call CefUnresponsiveProcessCallback::Wait
  7129. either in this method or at a later time to reset the wait timer,
  7130. potentially triggering another call to this method if the process remains
  7131. unresponsive. Return true and call CefUnresponsiveProcessCallback::
  7132. Terminate either in this method or at a later time to terminate the
  7133. unresponsive process, resulting in a call to OnRenderProcessTerminated.
  7134. OnRenderProcessResponsive will be called if the process becomes responsive
  7135. after this method is called. This functionality depends on the hang
  7136. monitor which can be disabled by passing the `--disable-hang-monitor`
  7137. command-line flag.
  7138. </member>
  7139. <member name="M:CefRequestHandler.OnRenderViewReady(scoped_refptr&lt;CefBrowser&gt;)">
  7140. Called on the browser process UI thread when the render view associated
  7141. with |browser| is ready to receive/handle IPC messages in the render
  7142. process.
  7143. </member>
  7144. <member name="M:CefRequestHandler.OnSelectClientCertificate(scoped_refptr&lt;CefBrowser&gt;,System.Boolean,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32,std.vector&lt;scoped_refptr&lt;CefX509Certificate&gt;,std.allocator&lt;scoped_refptr&lt;CefX509Certificate&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefSelectClientCertificateCallback&gt;)">
  7145. Called on the UI thread when a client certificate is being requested for
  7146. authentication. Return false to use the default behavior and automatically
  7147. select the first certificate available. Return true and call
  7148. CefSelectClientCertificateCallback::Select either in this method or at a
  7149. later time to select a certificate. Do not call Select or call it with
  7150. NULL to continue without using any certificate. |isProxy| indicates
  7151. whether the host is an HTTPS proxy or the origin server. |host| and |port|
  7152. contains the hostname and port of the SSL server. |certificates| is the
  7153. list of certificates to choose from; this list has already been pruned by
  7154. Chromium so that it only contains certificates from issuers that the
  7155. server trusts.
  7156. </member>
  7157. <member name="M:CefRequestHandler.OnCertificateError(scoped_refptr&lt;CefBrowser&gt;,cef_errorcode_t,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefSSLInfo&gt;,scoped_refptr&lt;CefCallback&gt;)">
  7158. Called on the UI thread to handle requests for URLs with an invalid
  7159. SSL certificate. Return true and call CefCallback methods either in this
  7160. method or at a later time to continue or cancel the request. Return false
  7161. to cancel the request immediately. If
  7162. cef_settings_t.ignore_certificate_errors is set all invalid certificates
  7163. will be accepted without calling this method.
  7164. </member>
  7165. <member name="M:CefRequestHandler.GetAuthCredentials(scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefAuthCallback&gt;)">
  7166. Called on the IO thread when the browser needs credentials from the user.
  7167. |origin_url| is the origin making this authentication request. |isProxy|
  7168. indicates whether the host is a proxy server. |host| contains the hostname
  7169. and |port| contains the port number. |realm| is the realm of the challenge
  7170. and may be empty. |scheme| is the authentication scheme used, such as
  7171. "basic" or "digest", and will be empty if the source of the request is an
  7172. FTP server. Return true to continue the request and call
  7173. CefAuthCallback::Continue() either in this method or at a later time when
  7174. the authentication information is available. Return false to cancel the
  7175. request immediately.
  7176. </member>
  7177. <member name="M:CefRequestHandler.GetResourceRequestHandler(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefRequest&gt;,System.Boolean,System.Boolean,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7178. Called on the browser process IO thread before a resource request is
  7179. initiated. The |browser| and |frame| values represent the source of the
  7180. request. |request| represents the request contents and cannot be modified
  7181. in this callback. |is_navigation| will be true if the resource request is
  7182. a navigation. |is_download| will be true if the resource request is a
  7183. download. |request_initiator| is the origin (scheme + domain) of the page
  7184. that initiated the request. Set |disable_default_handling| to true to
  7185. disable default handling of the request, in which case it will need to be
  7186. handled via CefResourceRequestHandler::GetResourceHandler or it will be
  7187. canceled. To allow the resource load to proceed with default handling
  7188. return NULL. To specify a handler for the resource return a
  7189. CefResourceRequestHandler object. If this callback returns NULL the same
  7190. method will be called on the associated CefRequestContextHandler, if any.
  7191. </member>
  7192. <member name="M:CefRequestHandler.OnOpenURLFromTab(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_window_open_disposition_t,System.Boolean)">
  7193. Called on the UI thread before OnBeforeBrowse in certain limited cases
  7194. where navigating a new or different browser might be desirable. This
  7195. includes user-initiated navigation that might open in a special way (e.g.
  7196. links clicked via middle-click or ctrl + left-click) and certain types of
  7197. cross-origin navigation initiated from the renderer process (e.g.
  7198. navigating the top-level frame to/from a file URL). The |browser| and
  7199. |frame| values represent the source of the navigation. The
  7200. |target_disposition| value indicates where the user intended to navigate
  7201. the browser based on standard Chromium behaviors (e.g. current tab,
  7202. new tab, etc). The |user_gesture| value will be true if the browser
  7203. navigated via explicit user gesture (e.g. clicking a link) or false if it
  7204. navigated automatically (e.g. via the DomContentLoaded event). Return true
  7205. to cancel the navigation or false to allow the navigation to proceed in
  7206. the source browser's top-level frame.
  7207. </member>
  7208. <member name="M:CefRequestHandler.OnBeforeBrowse(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefRequest&gt;,System.Boolean,System.Boolean)">
  7209. Called on the UI thread before browser navigation. Return true to cancel
  7210. the navigation or false to allow the navigation to proceed. The |request|
  7211. object cannot be modified in this callback.
  7212. CefLoadHandler::OnLoadingStateChange will be called twice in all cases.
  7213. If the navigation is allowed CefLoadHandler::OnLoadStart and
  7214. CefLoadHandler::OnLoadEnd will be called. If the navigation is canceled
  7215. CefLoadHandler::OnLoadError will be called with an |errorCode| value of
  7216. ERR_ABORTED. The |user_gesture| value will be true if the browser
  7217. navigated via explicit user gesture (e.g. clicking a link) or false if it
  7218. navigated automatically (e.g. via the DomContentLoaded event).
  7219. </member>
  7220. <member name="T:CefRequestHandler">
  7221. Implement this interface to handle events related to browser requests. The
  7222. methods of this class will be called on the thread indicated.
  7223. </member>
  7224. <member name="M:CefSelectClientCertificateCallback.Select(scoped_refptr&lt;CefX509Certificate&gt;)">
  7225. Chooses the specified certificate for client certificate authentication.
  7226. NULL value means that no client certificate should be used.
  7227. </member>
  7228. <member name="T:CefSelectClientCertificateCallback">
  7229. Callback interface used to select a client certificate for authentication.
  7230. </member>
  7231. <member name="M:CefUnresponsiveProcessCallback.Terminate">
  7232. Terminate the unresponsive process.
  7233. </member>
  7234. <member name="M:CefUnresponsiveProcessCallback.Wait">
  7235. Reset the timeout for the unresponsive process.
  7236. </member>
  7237. <member name="T:CefUnresponsiveProcessCallback">
  7238. Callback interface for asynchronous handling of an unresponsive process.
  7239. </member>
  7240. <member name="M:CefIsCertStatusError(cef_cert_status_t)">
  7241. Returns true if the certificate status represents an error.
  7242. </member>
  7243. <member name="M:CefSSLInfo.GetX509Certificate">
  7244. Returns the X.509 certificate.
  7245. </member>
  7246. <member name="M:CefSSLInfo.GetCertStatus">
  7247. Returns a bitmask containing any and all problems verifying the server
  7248. certificate.
  7249. </member>
  7250. <member name="T:CefSSLInfo">
  7251. Class representing SSL information.
  7252. </member>
  7253. <member name="M:CefRenderHandler.OnVirtualKeyboardRequested(scoped_refptr&lt;CefBrowser&gt;,cef_text_input_mode_t)">
  7254. Called when an on-screen keyboard should be shown or hidden for the
  7255. specified |browser|. |input_mode| specifies what kind of keyboard
  7256. should be opened. If |input_mode| is CEF_TEXT_INPUT_MODE_NONE, any
  7257. existing keyboard for this browser should be hidden.
  7258. </member>
  7259. <member name="M:CefRenderHandler.OnTextSelectionChanged(scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefRange!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7260. Called when text selection has changed for the specified |browser|.
  7261. |selected_text| is the currently selected text and |selected_range| is
  7262. the character range.
  7263. </member>
  7264. <member name="M:CefRenderHandler.OnImeCompositionRangeChanged(scoped_refptr&lt;CefBrowser&gt;,CefRange!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,std.vector&lt;CefRect,std.allocator&lt;CefRect&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7265. Called when the IME composition range has changed. |selected_range| is the
  7266. range of characters that have been selected. |character_bounds| is the
  7267. bounds of each character in view coordinates.
  7268. </member>
  7269. <member name="M:CefRenderHandler.OnScrollOffsetChanged(scoped_refptr&lt;CefBrowser&gt;,System.Double,System.Double)">
  7270. Called when the scroll offset has changed.
  7271. </member>
  7272. <member name="M:CefRenderHandler.StartDragging(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefDragData&gt;,cef_drag_operations_mask_t,System.Int32,System.Int32)">
  7273. Called when the user starts dragging content in the web view. Contextual
  7274. information about the dragged content is supplied by |drag_data|.
  7275. (|x|, |y|) is the drag start location in screen coordinates.
  7276. OS APIs that run a system message loop may be used within the
  7277. StartDragging call.
  7278. Return false to abort the drag operation. Don't call any of
  7279. CefBrowserHost::DragSource*Ended* methods after returning false.
  7280. Return true to handle the drag operation. Call
  7281. CefBrowserHost::DragSourceEndedAt and DragSourceSystemDragEnded either
  7282. synchronously or asynchronously to inform the web view that the drag
  7283. operation has ended.
  7284. </member>
  7285. <member name="M:CefRenderHandler.OnTouchHandleStateChanged(scoped_refptr&lt;CefBrowser&gt;,CefTouchHandleState!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7286. Called when touch handle state is updated. The client is responsible for
  7287. rendering the touch handles.
  7288. </member>
  7289. <member name="M:CefRenderHandler.GetTouchHandleSize(scoped_refptr&lt;CefBrowser&gt;,cef_horizontal_alignment_t,CefSize*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7290. Called to retrieve the size of the touch handle for the specified
  7291. |orientation|.
  7292. </member>
  7293. <member name="M:CefRenderHandler.OnAcceleratedPaint(scoped_refptr&lt;CefBrowser&gt;,cef_paint_element_type_t,std.vector&lt;CefRect,std.allocator&lt;CefRect&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefAcceleratedPaintInfo!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7294. Called when an element has been rendered to the shared texture handle.
  7295. |type| indicates whether the element is the view or the popup widget.
  7296. |dirtyRects| contains the set of rectangles in pixel coordinates that need
  7297. to be repainted. |info| contains the shared handle; on Windows it is a
  7298. HANDLE to a texture that can be opened with D3D11 OpenSharedResource, on
  7299. macOS it is an IOSurface pointer that can be opened with Metal or OpenGL,
  7300. and on Linux it contains several planes, each with an fd to the underlying
  7301. system native buffer.
  7302. The underlying implementation uses a pool to deliver frames. As a result,
  7303. the handle may differ every frame depending on how many frames are
  7304. in-progress. The handle's resource cannot be cached and cannot be accessed
  7305. outside of this callback. It should be reopened each time this callback is
  7306. executed and the contents should be copied to a texture owned by the
  7307. client application. The contents of |info| will be released back to the
  7308. pool after this callback returns.
  7309. </member>
  7310. <member name="M:CefRenderHandler.OnPaint(scoped_refptr&lt;CefBrowser&gt;,cef_paint_element_type_t,std.vector&lt;CefRect,std.allocator&lt;CefRect&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Void!System.Runtime.CompilerServices.IsConst*,System.Int32,System.Int32)">
  7311. Called when an element should be painted. Pixel values passed to this
  7312. method are scaled relative to view coordinates based on the value of
  7313. CefScreenInfo.device_scale_factor returned from GetScreenInfo. |type|
  7314. indicates whether the element is the view or the popup widget. |buffer|
  7315. contains the pixel data for the whole image. |dirtyRects| contains the set
  7316. of rectangles in pixel coordinates that need to be repainted. |buffer|
  7317. will be |width|*|height|*4 bytes in size and represents a BGRA image with
  7318. an upper-left origin. This method is only called when
  7319. CefWindowInfo::shared_texture_enabled is set to false.
  7320. </member>
  7321. <member name="M:CefRenderHandler.OnPopupSize(scoped_refptr&lt;CefBrowser&gt;,CefRect!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7322. Called when the browser wants to move or resize the popup widget. |rect|
  7323. contains the new location and size in view coordinates.
  7324. </member>
  7325. <member name="M:CefRenderHandler.OnPopupShow(scoped_refptr&lt;CefBrowser&gt;,System.Boolean)">
  7326. Called when the browser wants to show or hide the popup widget. The popup
  7327. should be shown if |show| is true and hidden if |show| is false.
  7328. </member>
  7329. <member name="M:CefRenderHandler.GetScreenInfo(scoped_refptr&lt;CefBrowser&gt;,CefScreenInfo*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7330. Called to allow the client to fill in the CefScreenInfo object with
  7331. appropriate values. Return true if the |screen_info| structure has been
  7332. modified.
  7333. If the screen info rectangle is left empty the rectangle from GetViewRect
  7334. will be used. If the rectangle is still empty or invalid popups may not be
  7335. drawn correctly.
  7336. </member>
  7337. <member name="M:CefRenderHandler.GetScreenPoint(scoped_refptr&lt;CefBrowser&gt;,System.Int32,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7338. Called to retrieve the translation from view DIP coordinates to screen
  7339. coordinates. Windows/Linux should provide screen device (pixel)
  7340. coordinates and MacOS should provide screen DIP coordinates. Return true
  7341. if the requested coordinates were provided.
  7342. </member>
  7343. <member name="M:CefRenderHandler.GetViewRect(scoped_refptr&lt;CefBrowser&gt;,CefRect*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7344. Called to retrieve the view rectangle in screen DIP coordinates. This
  7345. method must always provide a non-empty rectangle.
  7346. </member>
  7347. <member name="M:CefRenderHandler.GetRootScreenRect(scoped_refptr&lt;CefBrowser&gt;,CefRect*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7348. Called to retrieve the root window rectangle in screen DIP coordinates.
  7349. Return true if the rectangle was provided. If this method returns false
  7350. the rectangle from GetViewRect will be used.
  7351. </member>
  7352. <member name="M:CefRenderHandler.GetAccessibilityHandler">
  7353. Return the handler for accessibility notifications. If no handler is
  7354. provided the default implementation will be used.
  7355. </member>
  7356. <member name="T:CefRenderHandler">
  7357. Implement this interface to handle events when window rendering is disabled.
  7358. The methods of this class will be called on the UI thread.
  7359. </member>
  7360. <member name="M:CefAccessibilityHandler.OnAccessibilityLocationChange(scoped_refptr&lt;CefValue&gt;)">
  7361. Called after renderer process sends accessibility location changes to the
  7362. browser process.
  7363. </member>
  7364. <member name="M:CefAccessibilityHandler.OnAccessibilityTreeChange(scoped_refptr&lt;CefValue&gt;)">
  7365. Called after renderer process sends accessibility tree changes to the
  7366. browser process.
  7367. </member>
  7368. <member name="T:CefAccessibilityHandler">
  7369. Implement this interface to receive accessibility notification when
  7370. accessibility events have been registered. The methods of this class will
  7371. be called on the UI thread.
  7372. </member>
  7373. <member name="M:CefPrintHandler.GetPdfPaperSize(scoped_refptr&lt;CefBrowser&gt;,System.Int32)">
  7374. Return the PDF paper size in device units. Used in combination with
  7375. CefBrowserHost::PrintToPDF().
  7376. </member>
  7377. <member name="M:CefPrintHandler.OnPrintReset(scoped_refptr&lt;CefBrowser&gt;)">
  7378. Reset client state related to printing.
  7379. </member>
  7380. <member name="M:CefPrintHandler.OnPrintJob(scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefPrintJobCallback&gt;)">
  7381. Send the print job to the printer. Execute |callback| once the job is
  7382. completed. Return true if the job will proceed or false to cancel the job
  7383. immediately.
  7384. </member>
  7385. <member name="M:CefPrintHandler.OnPrintDialog(scoped_refptr&lt;CefBrowser&gt;,System.Boolean,scoped_refptr&lt;CefPrintDialogCallback&gt;)">
  7386. Show the print dialog. Execute |callback| once the dialog is dismissed.
  7387. Return true if the dialog will be displayed or false to cancel the
  7388. printing immediately.
  7389. </member>
  7390. <member name="M:CefPrintHandler.OnPrintSettings(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefPrintSettings&gt;,System.Boolean)">
  7391. Synchronize |settings| with client state. If |get_defaults| is true then
  7392. populate |settings| with the default print settings. Do not keep a
  7393. reference to |settings| outside of this callback.
  7394. </member>
  7395. <member name="M:CefPrintHandler.OnPrintStart(scoped_refptr&lt;CefBrowser&gt;)">
  7396. Called when printing has started for the specified |browser|. This method
  7397. will be called before the other OnPrint*() methods and irrespective of how
  7398. printing was initiated (e.g. CefBrowserHost::Print(), JavaScript
  7399. window.print() or PDF extension print button).
  7400. </member>
  7401. <member name="T:CefPrintHandler">
  7402. Implement this interface to handle printing on Linux. Each browser will have
  7403. only one print job in progress at a time. The methods of this class will be
  7404. called on the browser process UI thread.
  7405. </member>
  7406. <member name="M:CefPrintJobCallback.Continue">
  7407. Indicate completion of the print job.
  7408. </member>
  7409. <member name="T:CefPrintJobCallback">
  7410. Callback interface for asynchronous continuation of print job requests.
  7411. </member>
  7412. <member name="M:CefPrintDialogCallback.Cancel">
  7413. Cancel the printing.
  7414. </member>
  7415. <member name="M:CefPrintDialogCallback.Continue(scoped_refptr&lt;CefPrintSettings&gt;)">
  7416. Continue printing with the specified |settings|.
  7417. </member>
  7418. <member name="T:CefPrintDialogCallback">
  7419. Callback interface for asynchronous continuation of print dialog requests.
  7420. </member>
  7421. <member name="M:CefPrintSettings.GetDuplexMode">
  7422. Get the duplex mode.
  7423. </member>
  7424. <member name="M:CefPrintSettings.SetDuplexMode(cef_duplex_mode_t)">
  7425. Set the duplex mode.
  7426. </member>
  7427. <member name="M:CefPrintSettings.GetCopies">
  7428. Get the number of copies.
  7429. </member>
  7430. <member name="M:CefPrintSettings.SetCopies(System.Int32)">
  7431. Set the number of copies.
  7432. </member>
  7433. <member name="M:CefPrintSettings.GetColorModel">
  7434. Get the color model.
  7435. </member>
  7436. <member name="M:CefPrintSettings.SetColorModel(cef_color_model_t)">
  7437. Set the color model.
  7438. </member>
  7439. <member name="M:CefPrintSettings.WillCollate">
  7440. Returns true if pages will be collated.
  7441. </member>
  7442. <member name="M:CefPrintSettings.SetCollate(System.Boolean)">
  7443. Set whether pages will be collated.
  7444. </member>
  7445. <member name="M:CefPrintSettings.IsSelectionOnly">
  7446. Returns true if only the selection will be printed.
  7447. </member>
  7448. <member name="M:CefPrintSettings.SetSelectionOnly(System.Boolean)">
  7449. Set whether only the selection will be printed.
  7450. </member>
  7451. <member name="M:CefPrintSettings.GetPageRanges(std.vector&lt;CefRange,std.allocator&lt;CefRange&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7452. Retrieve the page ranges.
  7453. </member>
  7454. <member name="M:CefPrintSettings.GetPageRangesCount">
  7455. Returns the number of page ranges that currently exist.
  7456. </member>
  7457. <member name="M:CefPrintSettings.SetPageRanges(std.vector&lt;CefRange,std.allocator&lt;CefRange&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7458. Set the page ranges.
  7459. </member>
  7460. <member name="M:CefPrintSettings.GetDPI">
  7461. Get the DPI (dots per inch).
  7462. </member>
  7463. <member name="M:CefPrintSettings.SetDPI(System.Int32)">
  7464. Set the DPI (dots per inch).
  7465. </member>
  7466. <member name="M:CefPrintSettings.GetDeviceName">
  7467. Get the device name.
  7468. </member>
  7469. <member name="M:CefPrintSettings.SetDeviceName(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7470. Set the device name.
  7471. </member>
  7472. <member name="M:CefPrintSettings.SetPrinterPrintableArea(CefSize!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefRect!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean)">
  7473. Set the printer printable area in device units.
  7474. Some platforms already provide flipped area. Set |landscape_needs_flip|
  7475. to false on those platforms to avoid double flipping.
  7476. </member>
  7477. <member name="M:CefPrintSettings.IsLandscape">
  7478. Returns true if the orientation is landscape.
  7479. </member>
  7480. <member name="M:CefPrintSettings.SetOrientation(System.Boolean)">
  7481. Set the page orientation.
  7482. </member>
  7483. <member name="M:CefPrintSettings.IsReadOnly">
  7484. Returns true if the values of this object are read-only. Some APIs may
  7485. expose read-only objects.
  7486. </member>
  7487. <member name="M:CefPrintSettings.IsValid">
  7488. Returns true if this object is valid. Do not call any other methods if
  7489. this function returns false.
  7490. </member>
  7491. <member name="M:CefPrintSettings.Create">
  7492. Create a new CefPrintSettings object.
  7493. </member>
  7494. <member name="T:CefPrintSettings">
  7495. Class representing print settings.
  7496. </member>
  7497. <member name="M:CefPermissionHandler.OnDismissPermissionPrompt(scoped_refptr&lt;CefBrowser&gt;,System.UInt64,cef_permission_request_result_t)">
  7498. Called when a permission prompt handled via OnShowPermissionPrompt is
  7499. dismissed. |prompt_id| will match the value that was passed to
  7500. OnShowPermissionPrompt. |result| will be the value passed to
  7501. CefPermissionPromptCallback::Continue or CEF_PERMISSION_RESULT_IGNORE if
  7502. the dialog was dismissed for other reasons such as navigation, browser
  7503. closure, etc. This method will not be called if OnShowPermissionPrompt
  7504. returned false for |prompt_id|.
  7505. </member>
  7506. <member name="M:CefPermissionHandler.OnShowPermissionPrompt(scoped_refptr&lt;CefBrowser&gt;,System.UInt64,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.UInt32,scoped_refptr&lt;CefPermissionPromptCallback&gt;)">
  7507. Called when a page should show a permission prompt. |prompt_id| uniquely
  7508. identifies the prompt. |requesting_origin| is the URL origin requesting
  7509. permission. |requested_permissions| is a combination of values from
  7510. cef_permission_request_types_t that represent the requested permissions.
  7511. Return true and call CefPermissionPromptCallback::Continue either in this
  7512. method or at a later time to continue or cancel the request. Return false
  7513. to proceed with default handling. With the Chrome runtime, default
  7514. handling will display the permission prompt UI. With the Alloy runtime,
  7515. default handling is CEF_PERMISSION_RESULT_IGNORE.
  7516. </member>
  7517. <member name="M:CefPermissionHandler.OnRequestMediaAccessPermission(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.UInt32,scoped_refptr&lt;CefMediaAccessCallback&gt;)">
  7518. Called when a page requests permission to access media.
  7519. |requesting_origin| is the URL origin requesting permission.
  7520. |requested_permissions| is a combination of values from
  7521. cef_media_access_permission_types_t that represent the requested
  7522. permissions. Return true and call CefMediaAccessCallback methods either in
  7523. this method or at a later time to continue or cancel the request. Return
  7524. false to proceed with default handling. With the Chrome runtime, default
  7525. handling will display the permission request UI. With the Alloy runtime,
  7526. default handling will deny the request. This method will not be called if
  7527. the "--enable-media-stream" command-line switch is used to grant all
  7528. permissions.
  7529. </member>
  7530. <member name="T:CefPermissionHandler">
  7531. Implement this interface to handle events related to permission requests.
  7532. The methods of this class will be called on the browser process UI thread.
  7533. </member>
  7534. <member name="M:CefPermissionPromptCallback.Continue(cef_permission_request_result_t)">
  7535. Complete the permissions request with the specified |result|.
  7536. </member>
  7537. <member name="T:CefPermissionPromptCallback">
  7538. Callback interface used for asynchronous continuation of permission prompts.
  7539. </member>
  7540. <member name="M:CefMediaAccessCallback.Cancel">
  7541. Cancel the media access request.
  7542. </member>
  7543. <member name="M:CefMediaAccessCallback.Continue(System.UInt32)">
  7544. Call to allow or deny media access. If this callback was initiated in
  7545. response to a getUserMedia (indicated by
  7546. CEF_MEDIA_PERMISSION_DEVICE_AUDIO_CAPTURE and/or
  7547. CEF_MEDIA_PERMISSION_DEVICE_VIDEO_CAPTURE being set) then
  7548. |allowed_permissions| must match |required_permissions| passed to
  7549. OnRequestMediaAccessPermission.
  7550. </member>
  7551. <member name="T:CefMediaAccessCallback">
  7552. Callback interface used for asynchronous continuation of media access
  7553. permission requests.
  7554. </member>
  7555. <member name="M:CefLoadHandler.OnLoadError(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,cef_errorcode_t,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7556. Called when a navigation fails or is canceled. This method may be called
  7557. by itself if before commit or in combination with OnLoadStart/OnLoadEnd if
  7558. after commit. |errorCode| is the error code number, |errorText| is the
  7559. error text and |failedUrl| is the URL that failed to load.
  7560. See net\base\net_error_list.h for complete descriptions of the error
  7561. codes.
  7562. </member>
  7563. <member name="M:CefLoadHandler.OnLoadEnd(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,System.Int32)">
  7564. Called when the browser is done loading a frame. The |frame| value will
  7565. never be empty -- call the IsMain() method to check if this frame is the
  7566. main frame. Multiple frames may be loading at the same time. Sub-frames
  7567. may start or continue loading after the main frame load has ended. This
  7568. method will not be called for same page navigations (fragments, history
  7569. state, etc.) or for navigations that fail or are canceled before commit.
  7570. For notification of overall browser load status use OnLoadingStateChange
  7571. instead.
  7572. </member>
  7573. <member name="M:CefLoadHandler.OnLoadStart(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,cef_transition_type_t)">
  7574. Called after a navigation has been committed and before the browser begins
  7575. loading contents in the frame. The |frame| value will never be empty --
  7576. call the IsMain() method to check if this frame is the main frame.
  7577. |transition_type| provides information about the source of the navigation
  7578. and an accurate value is only available in the browser process. Multiple
  7579. frames may be loading at the same time. Sub-frames may start or continue
  7580. loading after the main frame load has ended. This method will not be
  7581. called for same page navigations (fragments, history state, etc.) or for
  7582. navigations that fail or are canceled before commit. For notification of
  7583. overall browser load status use OnLoadingStateChange instead.
  7584. </member>
  7585. <member name="M:CefLoadHandler.OnLoadingStateChange(scoped_refptr&lt;CefBrowser&gt;,System.Boolean,System.Boolean,System.Boolean)">
  7586. Called when the loading state has changed. This callback will be executed
  7587. twice -- once when loading is initiated either programmatically or by user
  7588. action, and once when loading is terminated due to completion,
  7589. cancellation of failure. It will be called before any calls to OnLoadStart
  7590. and after all calls to OnLoadError and/or OnLoadEnd.
  7591. </member>
  7592. <member name="T:CefLoadHandler">
  7593. Implement this interface to handle events related to browser load status.
  7594. The methods of this class will be called on the browser process UI thread or
  7595. render process main thread (TID_RENDERER).
  7596. </member>
  7597. <member name="M:CefLifeSpanHandler.OnBeforeClose(scoped_refptr&lt;CefBrowser&gt;)">
  7598. Called just before a browser is destroyed. Release all references to the
  7599. browser object and do not attempt to execute any methods on the browser
  7600. object (other than IsValid, GetIdentifier or IsSame) after this callback
  7601. returns. CefFrameHandler callbacks related to final main frame destruction
  7602. will arrive after this callback and CefBrowser::IsValid will return false
  7603. at that time. Any in-progress network requests associated with |browser|
  7604. will be aborted when the browser is destroyed, and
  7605. CefResourceRequestHandler callbacks related to those requests may still
  7606. arrive on the IO thread after this callback. See CefFrameHandler and
  7607. DoClose() documentation for additional usage information.
  7608. </member>
  7609. <member name="M:CefLifeSpanHandler.DoClose(scoped_refptr&lt;CefBrowser&gt;)">
  7610. Called when a browser has received a request to close. This may result
  7611. directly from a call to CefBrowserHost::*CloseBrowser() or indirectly if
  7612. the browser is parented to a top-level window created by CEF and the user
  7613. attempts to close that window (by clicking the 'X', for example). The
  7614. DoClose() method will be called after the JavaScript 'onunload' event has
  7615. been fired.
  7616. An application should handle top-level owner window close notifications by
  7617. calling CefBrowserHost::TryCloseBrowser() or
  7618. CefBrowserHost::CloseBrowser(false) instead of allowing the window to
  7619. close immediately (see the examples below). This gives CEF an opportunity
  7620. to process the 'onbeforeunload' event and optionally cancel the close
  7621. before DoClose() is called.
  7622. When windowed rendering is enabled CEF will internally create a window or
  7623. view to host the browser. In that case returning false from DoClose() will
  7624. send the standard close notification to the browser's top-level owner
  7625. window (e.g. WM_CLOSE on Windows, performClose: on OS X, "delete_event" on
  7626. Linux or CefWindowDelegate::CanClose() callback from Views). If the
  7627. browser's host window/view has already been destroyed (via view hierarchy
  7628. tear-down, for example) then DoClose() will not be called for that browser
  7629. since is no longer possible to cancel the close.
  7630. When windowed rendering is disabled returning false from DoClose() will
  7631. cause the browser object to be destroyed immediately.
  7632. If the browser's top-level owner window requires a non-standard close
  7633. notification then send that notification from DoClose() and return true.
  7634. The CefLifeSpanHandler::OnBeforeClose() method will be called after
  7635. DoClose() (if DoClose() is called) and immediately before the browser
  7636. object is destroyed. The application should only exit after
  7637. OnBeforeClose() has been called for all existing browsers.
  7638. The below examples describe what should happen during window close when
  7639. the browser is parented to an application-provided top-level window.
  7640. Example 1: Using CefBrowserHost::TryCloseBrowser(). This is recommended
  7641. for clients using standard close handling and windows created on the
  7642. browser process UI thread.
  7643. 1. User clicks the window close button which sends a close notification
  7644. to the application's top-level window.
  7645. 2. Application's top-level window receives the close notification and
  7646. calls TryCloseBrowser() (which internally calls CloseBrowser(false)).
  7647. TryCloseBrowser() returns false so the client cancels the window
  7648. close.
  7649. 3. JavaScript 'onbeforeunload' handler executes and shows the close
  7650. confirmation dialog (which can be overridden via
  7651. CefJSDialogHandler::OnBeforeUnloadDialog()).
  7652. 4. User approves the close.
  7653. 5. JavaScript 'onunload' handler executes.
  7654. 6. CEF sends a close notification to the application's top-level window
  7655. (because DoClose() returned false by default).
  7656. 7. Application's top-level window receives the close notification and
  7657. calls TryCloseBrowser(). TryCloseBrowser() returns true so the client
  7658. allows the window close.
  7659. 8. Application's top-level window is destroyed.
  7660. 9. Application's OnBeforeClose() handler is called and the browser object
  7661. is destroyed.
  7662. 10. Application exits by calling CefQuitMessageLoop() if no other browsers
  7663. exist.
  7664. Example 2: Using CefBrowserHost::CloseBrowser(false) and implementing the
  7665. DoClose() callback. This is recommended for clients using non-standard
  7666. close handling or windows that were not created on the browser process UI
  7667. thread.
  7668. 1. User clicks the window close button which sends a close notification
  7669. to the application's top-level window.
  7670. 2. Application's top-level window receives the close notification and:
  7671. A. Calls CefBrowserHost::CloseBrowser(false).
  7672. B. Cancels the window close.
  7673. 3. JavaScript 'onbeforeunload' handler executes and shows the close
  7674. confirmation dialog (which can be overridden via
  7675. CefJSDialogHandler::OnBeforeUnloadDialog()).
  7676. 4. User approves the close.
  7677. 5. JavaScript 'onunload' handler executes.
  7678. 6. Application's DoClose() handler is called. Application will:
  7679. A. Set a flag to indicate that the next close attempt will be allowed.
  7680. B. Return false.
  7681. 7. CEF sends an close notification to the application's top-level window.
  7682. 8. Application's top-level window receives the close notification and
  7683. allows the window to close based on the flag from #6B.
  7684. 9. Application's top-level window is destroyed.
  7685. 10. Application's OnBeforeClose() handler is called and the browser object
  7686. is destroyed.
  7687. 11. Application exits by calling CefQuitMessageLoop() if no other browsers
  7688. exist.
  7689. </member>
  7690. <member name="M:CefLifeSpanHandler.OnAfterCreated(scoped_refptr&lt;CefBrowser&gt;)">
  7691. Called after a new browser is created. It is now safe to begin performing
  7692. actions with |browser|. CefFrameHandler callbacks related to initial main
  7693. frame creation will arrive before this callback. See CefFrameHandler
  7694. documentation for additional usage information.
  7695. </member>
  7696. <member name="M:CefLifeSpanHandler.OnBeforeDevToolsPopup(scoped_refptr&lt;CefBrowser&gt;,CefWindowInfo*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefClient&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStructBase&lt;CefBrowserSettingsTraits&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefDictionaryValue&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean*)">
  7697. Called on the UI thread before a new DevTools popup browser is created.
  7698. The |browser| value represents the source of the popup request. Optionally
  7699. modify |windowInfo|, |client|, |settings| and |extra_info| values. The
  7700. |client|, |settings| and |extra_info| values will default to the source
  7701. browser's values. Any modifications to |windowInfo| will be ignored if the
  7702. parent browser is Views-hosted (wrapped in a CefBrowserView).
  7703. The |extra_info| parameter provides an opportunity to specify extra
  7704. information specific to the created popup browser that will be passed to
  7705. CefRenderProcessHandler::OnBrowserCreated() in the render process. The
  7706. existing |extra_info| object, if any, will be read-only but may be
  7707. replaced with a new object.
  7708. Views-hosted source browsers will create Views-hosted DevTools popups
  7709. unless |use_default_window| is set to to true. DevTools popups can be
  7710. blocked by returning true from CefCommandHandler::OnChromeCommand for
  7711. IDC_DEV_TOOLS. Only used with the Chrome runtime.
  7712. </member>
  7713. <member name="M:CefLifeSpanHandler.OnBeforePopup(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_window_open_disposition_t,System.Boolean,CefPopupFeatures!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefWindowInfo*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefClient&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStructBase&lt;CefBrowserSettingsTraits&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refp">
  7714. Called on the UI thread before a new popup browser is created. The
  7715. |browser| and |frame| values represent the source of the popup request.
  7716. The |target_url| and |target_frame_name| values indicate where the popup
  7717. browser should navigate and may be empty if not specified with the
  7718. request. The |target_disposition| value indicates where the user intended
  7719. to open the popup (e.g. current tab, new tab, etc). The |user_gesture|
  7720. value will be true if the popup was opened via explicit user gesture (e.g.
  7721. clicking a link) or false if the popup opened automatically (e.g. via the
  7722. DomContentLoaded event). The |popupFeatures| structure contains additional
  7723. information about the requested popup window. To allow creation of the
  7724. popup browser optionally modify |windowInfo|, |client|, |settings| and
  7725. |no_javascript_access| and return false. To cancel creation of the popup
  7726. browser return true. The |client| and |settings| values will default to
  7727. the source browser's values. If the |no_javascript_access| value is set to
  7728. false the new browser will not be scriptable and may not be hosted in the
  7729. same renderer process as the source browser. Any modifications to
  7730. |windowInfo| will be ignored if the parent browser is wrapped in a
  7731. CefBrowserView. Popup browser creation will be canceled if the parent
  7732. browser is destroyed before the popup browser creation completes
  7733. (indicated by a call to OnAfterCreated for the popup browser). The
  7734. |extra_info| parameter provides an opportunity to specify extra
  7735. information specific to the created popup browser that will be passed to
  7736. CefRenderProcessHandler::OnBrowserCreated() in the render process.
  7737. </member>
  7738. <member name="T:CefLifeSpanHandler">
  7739. Implement this interface to handle events related to browser life span. The
  7740. methods of this class will be called on the UI thread unless otherwise
  7741. indicated.
  7742. </member>
  7743. <member name="M:CefKeyboardHandler.OnKeyEvent(scoped_refptr&lt;CefBrowser&gt;,CefKeyEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,tagMSG*)">
  7744. Called after the renderer and JavaScript in the page has had a chance to
  7745. handle the event. |event| contains information about the keyboard event.
  7746. |os_event| is the operating system event message, if any. Return true if
  7747. the keyboard event was handled or false otherwise.
  7748. </member>
  7749. <member name="M:CefKeyboardHandler.OnPreKeyEvent(scoped_refptr&lt;CefBrowser&gt;,CefKeyEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,tagMSG*,System.Boolean*)">
  7750. Called before a keyboard event is sent to the renderer. |event| contains
  7751. information about the keyboard event. |os_event| is the operating system
  7752. event message, if any. Return true if the event was handled or false
  7753. otherwise. If the event will be handled in OnKeyEvent() as a keyboard
  7754. shortcut set |is_keyboard_shortcut| to true and return false.
  7755. </member>
  7756. <member name="T:CefKeyboardHandler">
  7757. Implement this interface to handle events related to keyboard input. The
  7758. methods of this class will be called on the UI thread.
  7759. </member>
  7760. <member name="M:CefJSDialogHandler.OnDialogClosed(scoped_refptr&lt;CefBrowser&gt;)">
  7761. Called when the dialog is closed.
  7762. </member>
  7763. <member name="M:CefJSDialogHandler.OnResetDialogState(scoped_refptr&lt;CefBrowser&gt;)">
  7764. Called to cancel any pending dialogs and reset any saved dialog state.
  7765. Will be called due to events like page navigation irregardless of whether
  7766. any dialogs are currently pending.
  7767. </member>
  7768. <member name="M:CefJSDialogHandler.OnBeforeUnloadDialog(scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean,scoped_refptr&lt;CefJSDialogCallback&gt;)">
  7769. Called to run a dialog asking the user if they want to leave a page.
  7770. Return false to use the default dialog implementation. Return true if the
  7771. application will use a custom dialog or if the callback has been executed
  7772. immediately. Custom dialogs may be either modal or modeless. If a custom
  7773. dialog is used the application must execute |callback| once the custom
  7774. dialog is dismissed.
  7775. </member>
  7776. <member name="M:CefJSDialogHandler.OnJSDialog(scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_jsdialog_type_t,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefJSDialogCallback&gt;,System.Boolean*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7777. Called to run a JavaScript dialog. If |origin_url| is non-empty it can be
  7778. passed to the CefFormatUrlForSecurityDisplay function to retrieve a secure
  7779. and user-friendly display string. The |default_prompt_text| value will be
  7780. specified for prompt dialogs only. Set |suppress_message| to true and
  7781. return false to suppress the message (suppressing messages is preferable
  7782. to immediately executing the callback as this is used to detect presumably
  7783. malicious behavior like spamming alert messages in onbeforeunload). Set
  7784. |suppress_message| to false and return false to use the default
  7785. implementation (the default implementation will show one modal dialog at a
  7786. time and suppress any additional dialog requests until the displayed
  7787. dialog is dismissed). Return true if the application will use a custom
  7788. dialog or if the callback has been executed immediately. Custom dialogs
  7789. may be either modal or modeless. If a custom dialog is used the
  7790. application must execute |callback| once the custom dialog is dismissed.
  7791. </member>
  7792. <member name="T:CefJSDialogHandler">
  7793. Implement this interface to handle events related to JavaScript dialogs. The
  7794. methods of this class will be called on the UI thread.
  7795. </member>
  7796. <member name="M:CefJSDialogCallback.Continue(System.Boolean,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7797. Continue the JS dialog request. Set |success| to true if the OK button was
  7798. pressed. The |user_input| value should be specified for prompt dialogs.
  7799. </member>
  7800. <member name="T:CefJSDialogCallback">
  7801. Callback interface used for asynchronous continuation of JavaScript dialog
  7802. requests.
  7803. </member>
  7804. <member name="M:CefFrameHandler.OnMainFrameChanged(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefFrame&gt;)">
  7805. Called when the main frame changes due to (a) initial browser creation,
  7806. (b) final browser destruction, (c) cross-origin navigation or (d)
  7807. re-navigation after renderer process termination (due to crashes, etc).
  7808. |old_frame| will be NULL and |new_frame| will be non-NULL when a main
  7809. frame is assigned to |browser| for the first time. |old_frame| will be
  7810. non-NULL and |new_frame| will be NULL and when a main frame is removed
  7811. from |browser| for the last time. Both |old_frame| and |new_frame| will be
  7812. non-NULL for cross-origin navigations or re-navigation after renderer
  7813. process termination. This method will be called after OnFrameCreated() for
  7814. |new_frame| and/or after OnFrameDetached() for |old_frame|. If called
  7815. after CefLifeSpanHandler::OnBeforeClose() during browser destruction then
  7816. CefBrowser::IsValid() will return false for |browser|.
  7817. </member>
  7818. <member name="M:CefFrameHandler.OnFrameDetached(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;)">
  7819. Called when a frame loses its connection to the renderer process and will
  7820. be destroyed. Any pending or future commands will be discarded and
  7821. CefFrame::IsValid() will now return false for |frame|. If called after
  7822. CefLifeSpanHandler::OnBeforeClose() during browser destruction then
  7823. CefBrowser::IsValid() will return false for |browser|.
  7824. </member>
  7825. <member name="M:CefFrameHandler.OnFrameAttached(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,System.Boolean)">
  7826. Called when a frame can begin routing commands to/from the associated
  7827. renderer process. |reattached| will be true if the frame was re-attached
  7828. after exiting the BackForwardCache. Any commands that were queued have now
  7829. been dispatched.
  7830. </member>
  7831. <member name="M:CefFrameHandler.OnFrameCreated(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;)">
  7832. Called when a new frame is created. This will be the first notification
  7833. that references |frame|. Any commands that require transport to the
  7834. associated renderer process (LoadRequest, SendProcessMessage, GetSource,
  7835. etc.) will be queued until OnFrameAttached is called for |frame|.
  7836. </member>
  7837. <member name="T:CefFrameHandler">
  7838. Implement this interface to handle events related to CefFrame life span. The
  7839. order of callbacks is:
  7840. (1) During initial CefBrowserHost creation and navigation of the main frame:
  7841. - CefFrameHandler::OnFrameCreated =&gt; The initial main frame object has been
  7842. created. Any commands will be queued until the frame is attached.
  7843. - CefFrameHandler::OnMainFrameChanged =&gt; The initial main frame object has
  7844. been assigned to the browser.
  7845. - CefLifeSpanHandler::OnAfterCreated =&gt; The browser is now valid and can be
  7846. used.
  7847. - CefFrameHandler::OnFrameAttached =&gt; The initial main frame object is now
  7848. connected to its peer in the renderer process. Commands can be routed.
  7849. (2) During further CefBrowserHost navigation/loading of the main frame
  7850. and/or sub-frames:
  7851. - CefFrameHandler::OnFrameCreated =&gt; A new main frame or sub-frame object
  7852. has been created. Any commands will be queued until the frame is attached.
  7853. - CefFrameHandler::OnFrameAttached =&gt; A new main frame or sub-frame object
  7854. is now connected to its peer in the renderer process. Commands can be
  7855. routed.
  7856. - CefFrameHandler::OnFrameDetached =&gt; An existing main frame or sub-frame
  7857. object has lost its connection to the renderer process. If multiple
  7858. objects are detached at the same time then notifications will be sent for
  7859. any sub-frame objects before the main frame object. Commands can no longer
  7860. be routed and will be discarded.
  7861. - CefFrameHandler::OnMainFrameChanged =&gt; A new main frame object has been
  7862. assigned to the browser. This will only occur with cross-origin navigation
  7863. or re-navigation after renderer process termination (due to crashes, etc).
  7864. (3) During final CefBrowserHost destruction of the main frame:
  7865. - CefFrameHandler::OnFrameDetached =&gt; Any sub-frame objects have lost their
  7866. connection to the renderer process. Commands can no longer be routed and
  7867. will be discarded.
  7868. - CefLifeSpanHandler::OnBeforeClose =&gt; The browser has been destroyed.
  7869. - CefFrameHandler::OnFrameDetached =&gt; The main frame object have lost its
  7870. connection to the renderer process. Notifications will be sent for any
  7871. sub-frame objects before the main frame object. Commands can no longer be
  7872. routed and will be discarded.
  7873. - CefFrameHandler::OnMainFrameChanged =&gt; The final main frame object has
  7874. been removed from the browser.
  7875. Cross-origin navigation and/or loading receives special handling.
  7876. When the main frame navigates to a different origin the OnMainFrameChanged
  7877. callback (2) will be executed with the old and new main frame objects.
  7878. When a new sub-frame is loaded in, or an existing sub-frame is navigated to,
  7879. a different origin from the parent frame, a temporary sub-frame object will
  7880. first be created in the parent's renderer process. That temporary sub-frame
  7881. will then be discarded after the real cross-origin sub-frame is created in
  7882. the new/target renderer process. The client will receive cross-origin
  7883. navigation callbacks (2) for the transition from the temporary sub-frame to
  7884. the real sub-frame. The temporary sub-frame will not receive or execute
  7885. commands during this transitional period (any sent commands will be
  7886. discarded).
  7887. When a new popup browser is created in a different origin from the parent
  7888. browser, a temporary main frame object for the popup will first be created
  7889. in the parent's renderer process. That temporary main frame will then be
  7890. discarded after the real cross-origin main frame is created in the
  7891. new/target renderer process. The client will receive creation and initial
  7892. navigation callbacks (1) for the temporary main frame, followed by
  7893. cross-origin navigation callbacks (2) for the transition from the temporary
  7894. main frame to the real main frame. The temporary main frame may receive and
  7895. execute commands during this transitional period (any sent commands may be
  7896. executed, but the behavior is potentially undesirable since they execute in
  7897. the parent browser's renderer process and not the new/target renderer
  7898. process).
  7899. Callbacks will not be executed for placeholders that may be created during
  7900. pre-commit navigation for sub-frames that do not yet exist in the renderer
  7901. process. Placeholders will have CefFrame::GetIdentifier() == -4.
  7902. The methods of this class will be called on the UI thread unless otherwise
  7903. indicated.
  7904. </member>
  7905. <member name="M:CefFocusHandler.OnGotFocus(scoped_refptr&lt;CefBrowser&gt;)">
  7906. Called when the browser component has received focus.
  7907. </member>
  7908. <member name="M:CefFocusHandler.OnSetFocus(scoped_refptr&lt;CefBrowser&gt;,cef_focus_source_t)">
  7909. Called when the browser component is requesting focus. |source| indicates
  7910. where the focus request is originating from. Return false to allow the
  7911. focus to be set or true to cancel setting the focus.
  7912. </member>
  7913. <member name="M:CefFocusHandler.OnTakeFocus(scoped_refptr&lt;CefBrowser&gt;,System.Boolean)">
  7914. Called when the browser component is about to loose focus. For instance,
  7915. if focus was on the last HTML element and the user pressed the TAB key.
  7916. |next| will be true if the browser is giving focus to the next component
  7917. and false if the browser is giving focus to the previous component.
  7918. </member>
  7919. <member name="T:CefFocusHandler">
  7920. Implement this interface to handle events related to focus. The methods of
  7921. this class will be called on the UI thread.
  7922. </member>
  7923. <member name="M:CefFindHandler.OnFindResult(scoped_refptr&lt;CefBrowser&gt;,System.Int32,System.Int32,CefRect!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32,System.Boolean)">
  7924. Called to report find results returned by CefBrowserHost::Find().
  7925. |identifer| is a unique incremental identifier for the currently active
  7926. search, |count| is the number of matches currently identified,
  7927. |selectionRect| is the location of where the match was found (in window
  7928. coordinates), |activeMatchOrdinal| is the current position in the search
  7929. results, and |finalUpdate| is true if this is the last find notification.
  7930. </member>
  7931. <member name="T:CefFindHandler">
  7932. Implement this interface to handle events related to find results. The
  7933. methods of this class will be called on the UI thread.
  7934. </member>
  7935. <member name="M:CefDragHandler.OnDraggableRegionsChanged(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,std.vector&lt;CefDraggableRegion,std.allocator&lt;CefDraggableRegion&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7936. Called whenever draggable regions for the browser window change. These can
  7937. be specified using the '-webkit-app-region: drag/no-drag' CSS-property. If
  7938. draggable regions are never defined in a document this method will also
  7939. never be called. If the last draggable region is removed from a document
  7940. this method will be called with an empty vector.
  7941. </member>
  7942. <member name="M:CefDragHandler.OnDragEnter(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefDragData&gt;,cef_drag_operations_mask_t)">
  7943. Called when an external drag event enters the browser window. |dragData|
  7944. contains the drag event data and |mask| represents the type of drag
  7945. operation. Return false for default drag handling behavior or true to
  7946. cancel the drag event.
  7947. </member>
  7948. <member name="T:CefDragHandler">
  7949. Implement this interface to handle events related to dragging. The methods
  7950. of this class will be called on the UI thread.
  7951. </member>
  7952. <member name="M:CefDisplayHandler.OnMediaAccessChange(scoped_refptr&lt;CefBrowser&gt;,System.Boolean,System.Boolean)">
  7953. Called when the browser's access to an audio and/or video source has
  7954. changed.
  7955. </member>
  7956. <member name="M:CefDisplayHandler.OnCursorChange(scoped_refptr&lt;CefBrowser&gt;,HICON__*,cef_cursor_type_t,CefCursorInfo!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7957. Called when the browser's cursor has changed. If |type| is CT_CUSTOM then
  7958. |custom_cursor_info| will be populated with the custom cursor information.
  7959. Return true if the cursor change was handled or false for default
  7960. handling.
  7961. </member>
  7962. <member name="M:CefDisplayHandler.OnLoadingProgressChange(scoped_refptr&lt;CefBrowser&gt;,System.Double)">
  7963. Called when the overall page loading progress has changed. |progress|
  7964. ranges from 0.0 to 1.0.
  7965. </member>
  7966. <member name="M:CefDisplayHandler.OnAutoResize(scoped_refptr&lt;CefBrowser&gt;,CefSize!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7967. Called when auto-resize is enabled via
  7968. CefBrowserHost::SetAutoResizeEnabled and the contents have auto-resized.
  7969. |new_size| will be the desired size in view coordinates. Return true if
  7970. the resize was handled or false for default handling.
  7971. </member>
  7972. <member name="M:CefDisplayHandler.OnConsoleMessage(scoped_refptr&lt;CefBrowser&gt;,cef_log_severity_t,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32)">
  7973. Called to display a console message. Return true to stop the message from
  7974. being output to the console.
  7975. </member>
  7976. <member name="M:CefDisplayHandler.OnStatusMessage(scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7977. Called when the browser receives a status message. |value| contains the
  7978. text that will be displayed in the status message.
  7979. </member>
  7980. <member name="M:CefDisplayHandler.OnTooltip(scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  7981. Called when the browser is about to display a tooltip. |text| contains the
  7982. text that will be displayed in the tooltip. To handle the display of the
  7983. tooltip yourself return true. Otherwise, you can optionally modify |text|
  7984. and then return false to allow the browser to display the tooltip.
  7985. When window rendering is disabled the application is responsible for
  7986. drawing tooltips and the return value is ignored.
  7987. </member>
  7988. <member name="M:CefDisplayHandler.OnFullscreenModeChange(scoped_refptr&lt;CefBrowser&gt;,System.Boolean)">
  7989. Called when web content in the page has toggled fullscreen mode. If
  7990. |fullscreen| is true the content will automatically be sized to fill the
  7991. browser content area. If |fullscreen| is false the content will
  7992. automatically return to its original size and position. With the Alloy
  7993. runtime the client is responsible for triggering the fullscreen transition
  7994. (for example, by calling CefWindow::SetFullscreen when using Views). With
  7995. the Chrome runtime the fullscreen transition will be triggered
  7996. automatically. The CefWindowDelegate::OnWindowFullscreenTransition method
  7997. will be called during the fullscreen transition for notification purposes.
  7998. </member>
  7999. <member name="M:CefDisplayHandler.OnFaviconURLChange(scoped_refptr&lt;CefBrowser&gt;,std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8000. Called when the page icon changes.
  8001. </member>
  8002. <member name="M:CefDisplayHandler.OnTitleChange(scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8003. Called when the page title changes.
  8004. </member>
  8005. <member name="M:CefDisplayHandler.OnAddressChange(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8006. Called when a frame's address has changed.
  8007. </member>
  8008. <member name="T:CefDisplayHandler">
  8009. Implement this interface to handle events related to browser display state.
  8010. The methods of this class will be called on the UI thread.
  8011. </member>
  8012. <member name="M:CefDialogHandler.OnFileDialog(scoped_refptr&lt;CefBrowser&gt;,cef_file_dialog_mode_t,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,std.vector&lt;CefStringBase&lt;CefString">
  8013. Called to run a file chooser dialog. |mode| represents the type of dialog
  8014. to display. |title| to the title to be used for the dialog and may be
  8015. empty to show the default title ("Open" or "Save" depending on the mode).
  8016. |default_file_path| is the path with optional directory and/or file name
  8017. component that should be initially selected in the dialog.
  8018. |accept_filters| are used to restrict the selectable file types and may be
  8019. any combination of valid lower-cased MIME types (e.g. "text/*" or
  8020. "image/*") and individual file extensions (e.g. ".txt" or ".png").
  8021. |accept_extensions| provides the semicolon-delimited expansion of MIME
  8022. types to file extensions (if known, or empty string otherwise).
  8023. |accept_descriptions| provides the descriptions for MIME types (if known,
  8024. or empty string otherwise). For example, the "image/*" mime type might
  8025. have extensions ".png;.jpg;.bmp;..." and description "Image Files".
  8026. |accept_filters|, |accept_extensions| and |accept_descriptions| will all
  8027. be the same size. To display a custom dialog return true and execute
  8028. |callback| either inline or at a later time. To display the default dialog
  8029. return false. If this method returns false it may be called an additional
  8030. time for the same dialog (both before and after MIME type expansion).
  8031. </member>
  8032. <member name="T:CefDialogHandler">
  8033. Implement this interface to handle dialog events. The methods of this class
  8034. will be called on the browser process UI thread.
  8035. </member>
  8036. <member name="M:CefFileDialogCallback.Cancel">
  8037. Cancel the file selection.
  8038. </member>
  8039. <member name="M:CefFileDialogCallback.Continue(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8040. Continue the file selection. |file_paths| should be a single value or a
  8041. list of values depending on the dialog mode. An empty |file_paths| value
  8042. is treated the same as calling Cancel().
  8043. </member>
  8044. <member name="T:CefFileDialogCallback">
  8045. Callback interface for asynchronous continuation of file dialog requests.
  8046. </member>
  8047. <member name="M:CefContextMenuParams.IsCustomMenu">
  8048. Returns true if the context menu contains items specified by the renderer
  8049. process.
  8050. Returns true if the context menu contains items specified by the renderer
  8051. process.
  8052. </member>
  8053. <member name="M:CefContextMenuParams.GetEditStateFlags">
  8054. Returns flags representing the actions supported by the editable node, if
  8055. any, that the context menu was invoked on.
  8056. Returns flags representing the actions supported by the editable node, if
  8057. any, that the context menu was invoked on.
  8058. </member>
  8059. <member name="M:CefContextMenuParams.IsSpellCheckEnabled">
  8060. Returns true if the context menu was invoked on an editable node where
  8061. spell-check is enabled.
  8062. Returns true if the context menu was invoked on an editable node where
  8063. spell-check is enabled.
  8064. </member>
  8065. <member name="M:CefContextMenuParams.IsEditable">
  8066. Returns true if the context menu was invoked on an editable node.
  8067. Returns true if the context menu was invoked on an editable node.
  8068. </member>
  8069. <member name="M:CefContextMenuParams.GetDictionarySuggestions(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8070. Returns true if suggestions exist, false otherwise. Fills in |suggestions|
  8071. from the spell check service for the misspelled word if there is one.
  8072. Returns true if suggestions exist, false otherwise. Fills in |suggestions|
  8073. from the spell check service for the misspelled word if there is one.
  8074. </member>
  8075. <member name="M:CefContextMenuParams.GetMisspelledWord">
  8076. Returns the text of the misspelled word, if any, that the context menu was
  8077. invoked on.
  8078. Returns the text of the misspelled word, if any, that the context menu was
  8079. invoked on.
  8080. </member>
  8081. <member name="M:CefContextMenuParams.GetSelectionText">
  8082. Returns the text of the selection, if any, that the context menu was
  8083. invoked on.
  8084. Returns the text of the selection, if any, that the context menu was
  8085. invoked on.
  8086. </member>
  8087. <member name="M:CefContextMenuParams.GetMediaStateFlags">
  8088. Returns flags representing the actions supported by the media element, if
  8089. any, that the context menu was invoked on.
  8090. Returns flags representing the actions supported by the media element, if
  8091. any, that the context menu was invoked on.
  8092. </member>
  8093. <member name="M:CefContextMenuParams.GetMediaType">
  8094. Returns the type of context node that the context menu was invoked on.
  8095. Returns the type of context node that the context menu was invoked on.
  8096. </member>
  8097. <member name="M:CefContextMenuParams.GetFrameCharset">
  8098. Returns the character encoding of the subframe that the context menu was
  8099. invoked on.
  8100. Returns the character encoding of the subframe that the context menu was
  8101. invoked on.
  8102. </member>
  8103. <member name="M:CefContextMenuParams.GetFrameUrl">
  8104. Returns the URL of the subframe that the context menu was invoked on.
  8105. Returns the URL of the subframe that the context menu was invoked on.
  8106. </member>
  8107. <member name="M:CefContextMenuParams.GetPageUrl">
  8108. Returns the URL of the top level page that the context menu was invoked
  8109. on.
  8110. Returns the URL of the top level page that the context menu was invoked
  8111. on.
  8112. </member>
  8113. <member name="M:CefContextMenuParams.GetTitleText">
  8114. Returns the title text or the alt text if the context menu was invoked on
  8115. an image.
  8116. Returns the title text or the alt text if the context menu was invoked on
  8117. an image.
  8118. </member>
  8119. <member name="M:CefContextMenuParams.HasImageContents">
  8120. Returns true if the context menu was invoked on an image which has
  8121. non-empty contents.
  8122. Returns true if the context menu was invoked on an image which has
  8123. non-empty contents.
  8124. </member>
  8125. <member name="M:CefContextMenuParams.GetSourceUrl">
  8126. Returns the source URL, if any, for the element that the context menu was
  8127. invoked on. Example of elements with source URLs are img, audio, and
  8128. video.
  8129. Returns the source URL, if any, for the element that the context menu was
  8130. invoked on. Example of elements with source URLs are img, audio, and
  8131. video.
  8132. </member>
  8133. <member name="M:CefContextMenuParams.GetUnfilteredLinkUrl">
  8134. Returns the link URL, if any, to be used ONLY for "copy link address". We
  8135. don't validate this field in the frontend process.
  8136. Returns the link URL, if any, to be used ONLY for "copy link address". We
  8137. don't validate this field in the frontend process.
  8138. </member>
  8139. <member name="M:CefContextMenuParams.GetLinkUrl">
  8140. Returns the URL of the link, if any, that encloses the node that the
  8141. context menu was invoked on.
  8142. Returns the URL of the link, if any, that encloses the node that the
  8143. context menu was invoked on.
  8144. </member>
  8145. <member name="M:CefContextMenuParams.GetTypeFlags">
  8146. Returns flags representing the type of node that the context menu was
  8147. invoked on.
  8148. Returns flags representing the type of node that the context menu was
  8149. invoked on.
  8150. </member>
  8151. <member name="M:CefContextMenuParams.GetYCoord">
  8152. Returns the Y coordinate of the mouse where the context menu was invoked.
  8153. Coords are relative to the associated RenderView's origin.
  8154. Returns the Y coordinate of the mouse where the context menu was invoked.
  8155. Coords are relative to the associated RenderView's origin.
  8156. </member>
  8157. <member name="M:CefContextMenuParams.GetXCoord">
  8158. Returns the X coordinate of the mouse where the context menu was invoked.
  8159. Coords are relative to the associated RenderView's origin.
  8160. Returns the X coordinate of the mouse where the context menu was invoked.
  8161. Coords are relative to the associated RenderView's origin.
  8162. </member>
  8163. <member name="T:CefContextMenuParams">
  8164. Provides information about the context menu state. The methods of this class
  8165. can only be accessed on browser process the UI thread.
  8166. Provides information about the context menu state. The methods of this class
  8167. can only be accessed on browser process the UI thread.
  8168. </member>
  8169. <member name="M:CefContextMenuHandler.OnQuickMenuDismissed(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;)">
  8170. Called when the quick menu for a windowless browser is dismissed
  8171. irregardless of whether the menu was canceled or a command was selected.
  8172. Called when the quick menu for a windowless browser is dismissed
  8173. irregardless of whether the menu was canceled or a command was selected.
  8174. </member>
  8175. <member name="M:CefContextMenuHandler.OnQuickMenuCommand(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,System.Int32,cef_event_flags_t)">
  8176. Called to execute a command selected from the quick menu for a windowless
  8177. browser. Return true if the command was handled or false for the default
  8178. implementation. See cef_menu_id_t for command IDs that have default
  8179. implementations.
  8180. Called to execute a command selected from the quick menu for a windowless
  8181. browser. Return true if the command was handled or false for the default
  8182. implementation. See cef_menu_id_t for command IDs that have default
  8183. implementations.
  8184. </member>
  8185. <member name="M:CefContextMenuHandler.RunQuickMenu(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,CefPoint!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefSize!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_quick_menu_edit_state_flags_t,scoped_refptr&lt;CefRunQuickMenuCallback&gt;)">
  8186. Called to allow custom display of the quick menu for a windowless browser.
  8187. |location| is the top left corner of the selected region. |size| is the
  8188. size of the selected region. |edit_state_flags| is a combination of flags
  8189. that represent the state of the quick menu. Return true if the menu will
  8190. be handled and execute |callback| either synchronously or asynchronously
  8191. with the selected command ID. Return false to cancel the menu.
  8192. Called to allow custom display of the quick menu for a windowless browser.
  8193. |location| is the top left corner of the selected region. |size| is the
  8194. size of the selected region. |edit_state_flags| is a combination of flags
  8195. that represent the state of the quick menu. Return true if the menu will
  8196. be handled and execute |callback| either synchronously or asynchronously
  8197. with the selected command ID. Return false to cancel the menu.
  8198. </member>
  8199. <member name="M:CefContextMenuHandler.OnContextMenuDismissed(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;)">
  8200. Called when the context menu is dismissed irregardless of whether the menu
  8201. was canceled or a command was selected.
  8202. Called when the context menu is dismissed irregardless of whether the menu
  8203. was canceled or a command was selected.
  8204. </member>
  8205. <member name="M:CefContextMenuHandler.OnContextMenuCommand(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefContextMenuParams&gt;,System.Int32,cef_event_flags_t)">
  8206. Called to execute a command selected from the context menu. Return true if
  8207. the command was handled or false for the default implementation. See
  8208. cef_menu_id_t for the command ids that have default implementations. All
  8209. user-defined command ids should be between MENU_ID_USER_FIRST and
  8210. MENU_ID_USER_LAST. |params| will have the same values as what was passed
  8211. to OnBeforeContextMenu(). Do not keep a reference to |params| outside of
  8212. this callback.
  8213. Called to execute a command selected from the context menu. Return true if
  8214. the command was handled or false for the default implementation. See
  8215. cef_menu_id_t for the command ids that have default implementations. All
  8216. user-defined command ids should be between MENU_ID_USER_FIRST and
  8217. MENU_ID_USER_LAST. |params| will have the same values as what was passed
  8218. to OnBeforeContextMenu(). Do not keep a reference to |params| outside of
  8219. this callback.
  8220. </member>
  8221. <member name="M:CefContextMenuHandler.RunContextMenu(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefContextMenuParams&gt;,scoped_refptr&lt;CefMenuModel&gt;,scoped_refptr&lt;CefRunContextMenuCallback&gt;)">
  8222. Called to allow custom display of the context menu. |params| provides
  8223. information about the context menu state. |model| contains the context
  8224. menu model resulting from OnBeforeContextMenu. For custom display return
  8225. true and execute |callback| either synchronously or asynchronously with
  8226. the selected command ID. For default display return false. Do not keep
  8227. references to |params| or |model| outside of this callback.
  8228. Called to allow custom display of the context menu. |params| provides
  8229. information about the context menu state. |model| contains the context
  8230. menu model resulting from OnBeforeContextMenu. For custom display return
  8231. true and execute |callback| either synchronously or asynchronously with
  8232. the selected command ID. For default display return false. Do not keep
  8233. references to |params| or |model| outside of this callback.
  8234. </member>
  8235. <member name="M:CefContextMenuHandler.OnBeforeContextMenu(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefContextMenuParams&gt;,scoped_refptr&lt;CefMenuModel&gt;)">
  8236. Called before a context menu is displayed. |params| provides information
  8237. about the context menu state. |model| initially contains the default
  8238. context menu. The |model| can be cleared to show no context menu or
  8239. modified to show a custom menu. Do not keep references to |params| or
  8240. |model| outside of this callback.
  8241. Called before a context menu is displayed. |params| provides information
  8242. about the context menu state. |model| initially contains the default
  8243. context menu. The |model| can be cleared to show no context menu or
  8244. modified to show a custom menu. Do not keep references to |params| or
  8245. |model| outside of this callback.
  8246. </member>
  8247. <member name="T:CefContextMenuHandler">
  8248. Implement this interface to handle context menu events. The methods of this
  8249. class will be called on the UI thread.
  8250. Implement this interface to handle context menu events. The methods of this
  8251. class will be called on the UI thread.
  8252. </member>
  8253. <member name="M:CefRunQuickMenuCallback.Cancel">
  8254. Cancel quick menu display.
  8255. Cancel quick menu display.
  8256. </member>
  8257. <member name="M:CefRunQuickMenuCallback.Continue(System.Int32,cef_event_flags_t)">
  8258. Complete quick menu display by selecting the specified |command_id| and
  8259. |event_flags|.
  8260. Complete quick menu display by selecting the specified |command_id| and
  8261. |event_flags|.
  8262. </member>
  8263. <member name="T:CefRunQuickMenuCallback">
  8264. Callback interface used for continuation of custom quick menu display.
  8265. Callback interface used for continuation of custom quick menu display.
  8266. </member>
  8267. <member name="M:CefRunContextMenuCallback.Cancel">
  8268. Cancel context menu display.
  8269. Cancel context menu display.
  8270. </member>
  8271. <member name="M:CefRunContextMenuCallback.Continue(System.Int32,cef_event_flags_t)">
  8272. Complete context menu display by selecting the specified |command_id| and
  8273. |event_flags|.
  8274. Complete context menu display by selecting the specified |command_id| and
  8275. |event_flags|.
  8276. </member>
  8277. <member name="T:CefRunContextMenuCallback">
  8278. Callback interface used for continuation of custom context menu display.
  8279. Callback interface used for continuation of custom context menu display.
  8280. </member>
  8281. <member name="M:CefMenuModel.GetColorAt(System.Int32,cef_menu_color_type_t,System.UInt32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8282. Returns in |color| the color that was explicitly set for |command_id| and
  8283. |color_type|. Specify an |index| value of -1 to return the default color
  8284. in |color|. If a color was not set then 0 will be returned in |color|.
  8285. Returns true on success.
  8286. </member>
  8287. <member name="M:CefMenuModel.GetColor(System.Int32,cef_menu_color_type_t,System.UInt32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8288. Returns in |color| the color that was explicitly set for |command_id| and
  8289. |color_type|. If a color was not set then 0 will be returned in |color|.
  8290. Returns true on success.
  8291. </member>
  8292. <member name="M:CefMenuModel.SetColorAt(System.Int32,cef_menu_color_type_t,System.UInt32)">
  8293. Set the explicit color for |command_id| and |index| to |color|. Specify a
  8294. |color| value of 0 to remove the explicit color. Specify an |index| value
  8295. of -1 to set the default color for items that do not have an explicit
  8296. color set. If no explicit color or default color is set for |color_type|
  8297. then the system color will be used. Returns true on success.
  8298. </member>
  8299. <member name="M:CefMenuModel.SetColor(System.Int32,cef_menu_color_type_t,System.UInt32)">
  8300. Set the explicit color for |command_id| and |color_type| to |color|.
  8301. Specify a |color| value of 0 to remove the explicit color. If no explicit
  8302. color or default color is set for |color_type| then the system color will
  8303. be used. Returns true on success.
  8304. </member>
  8305. <member name="M:CefMenuModel.GetAcceleratorAt(System.UInt64,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8306. Retrieves the keyboard accelerator for the specified |index|. Returns true
  8307. on success.
  8308. </member>
  8309. <member name="M:CefMenuModel.GetAccelerator(System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8310. Retrieves the keyboard accelerator for the specified |command_id|. Returns
  8311. true on success.
  8312. </member>
  8313. <member name="M:CefMenuModel.RemoveAcceleratorAt(System.UInt64)">
  8314. Remove the keyboard accelerator at the specified |index|. Returns true on
  8315. success.
  8316. </member>
  8317. <member name="M:CefMenuModel.RemoveAccelerator(System.Int32)">
  8318. Remove the keyboard accelerator for the specified |command_id|. Returns
  8319. true on success.
  8320. </member>
  8321. <member name="M:CefMenuModel.SetAcceleratorAt(System.UInt64,System.Int32,System.Boolean,System.Boolean,System.Boolean)">
  8322. Set the keyboard accelerator at the specified |index|. |key_code| can be
  8323. any virtual key or character value. Returns true on success.
  8324. </member>
  8325. <member name="M:CefMenuModel.SetAccelerator(System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean)">
  8326. Set the keyboard accelerator for the specified |command_id|. |key_code|
  8327. can be any virtual key or character value. Returns true on success.
  8328. </member>
  8329. <member name="M:CefMenuModel.HasAcceleratorAt(System.UInt64)">
  8330. Returns true if the specified |index| has a keyboard accelerator assigned.
  8331. </member>
  8332. <member name="M:CefMenuModel.HasAccelerator(System.Int32)">
  8333. Returns true if the specified |command_id| has a keyboard accelerator
  8334. assigned.
  8335. </member>
  8336. <member name="M:CefMenuModel.SetCheckedAt(System.UInt64,System.Boolean)">
  8337. Check the specified |index|. Only applies to check and radio items.
  8338. Returns true on success.
  8339. </member>
  8340. <member name="M:CefMenuModel.SetChecked(System.Int32,System.Boolean)">
  8341. Check the specified |command_id|. Only applies to check and radio items.
  8342. Returns true on success.
  8343. </member>
  8344. <member name="M:CefMenuModel.IsCheckedAt(System.UInt64)">
  8345. Returns true if the specified |index| is checked. Only applies to check
  8346. and radio items.
  8347. </member>
  8348. <member name="M:CefMenuModel.IsChecked(System.Int32)">
  8349. Returns true if the specified |command_id| is checked. Only applies to
  8350. check and radio items.
  8351. </member>
  8352. <member name="M:CefMenuModel.SetEnabledAt(System.UInt64,System.Boolean)">
  8353. Change the enabled status at the specified |index|. Returns true on
  8354. success.
  8355. </member>
  8356. <member name="M:CefMenuModel.SetEnabled(System.Int32,System.Boolean)">
  8357. Change the enabled status of the specified |command_id|. Returns true on
  8358. success.
  8359. </member>
  8360. <member name="M:CefMenuModel.IsEnabledAt(System.UInt64)">
  8361. Returns true if the specified |index| is enabled.
  8362. </member>
  8363. <member name="M:CefMenuModel.IsEnabled(System.Int32)">
  8364. Returns true if the specified |command_id| is enabled.
  8365. </member>
  8366. <member name="M:CefMenuModel.SetVisibleAt(System.UInt64,System.Boolean)">
  8367. Change the visibility at the specified |index|. Returns true on success.
  8368. </member>
  8369. <member name="M:CefMenuModel.SetVisible(System.Int32,System.Boolean)">
  8370. Change the visibility of the specified |command_id|. Returns true on
  8371. success.
  8372. </member>
  8373. <member name="M:CefMenuModel.IsVisibleAt(System.UInt64)">
  8374. Returns true if the specified |index| is visible.
  8375. </member>
  8376. <member name="M:CefMenuModel.IsVisible(System.Int32)">
  8377. Returns true if the specified |command_id| is visible.
  8378. </member>
  8379. <member name="M:CefMenuModel.GetSubMenuAt(System.UInt64)">
  8380. Returns the submenu at the specified |index| or empty if invalid.
  8381. </member>
  8382. <member name="M:CefMenuModel.GetSubMenu(System.Int32)">
  8383. Returns the submenu for the specified |command_id| or empty if invalid.
  8384. </member>
  8385. <member name="M:CefMenuModel.SetGroupIdAt(System.UInt64,System.Int32)">
  8386. Sets the group id at the specified |index|. Returns true on success.
  8387. </member>
  8388. <member name="M:CefMenuModel.SetGroupId(System.Int32,System.Int32)">
  8389. Sets the group id for the specified |command_id|. Returns true on success.
  8390. </member>
  8391. <member name="M:CefMenuModel.GetGroupIdAt(System.UInt64)">
  8392. Returns the group id at the specified |index| or -1 if invalid.
  8393. </member>
  8394. <member name="M:CefMenuModel.GetGroupId(System.Int32)">
  8395. Returns the group id for the specified |command_id| or -1 if invalid.
  8396. </member>
  8397. <member name="M:CefMenuModel.GetTypeAt(System.UInt64)">
  8398. Returns the item type at the specified |index|.
  8399. </member>
  8400. <member name="M:CefMenuModel.GetType(System.Int32)">
  8401. Returns the item type for the specified |command_id|.
  8402. </member>
  8403. <member name="M:CefMenuModel.SetLabelAt(System.UInt64,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8404. Set the label at the specified |index|. Returns true on success.
  8405. </member>
  8406. <member name="M:CefMenuModel.SetLabel(System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8407. Sets the label for the specified |command_id|. Returns true on success.
  8408. </member>
  8409. <member name="M:CefMenuModel.GetLabelAt(System.UInt64)">
  8410. Returns the label at the specified |index| or empty if not found due to
  8411. invalid range or the index being a separator.
  8412. </member>
  8413. <member name="M:CefMenuModel.GetLabel(System.Int32)">
  8414. Returns the label for the specified |command_id| or empty if not found.
  8415. </member>
  8416. <member name="M:CefMenuModel.SetCommandIdAt(System.UInt64,System.Int32)">
  8417. Sets the command id at the specified |index|. Returns true on success.
  8418. </member>
  8419. <member name="M:CefMenuModel.GetCommandIdAt(System.UInt64)">
  8420. Returns the command id at the specified |index| or -1 if not found due to
  8421. invalid range or the index being a separator.
  8422. </member>
  8423. <member name="M:CefMenuModel.GetIndexOf(System.Int32)">
  8424. Returns the index associated with the specified |command_id| or -1 if not
  8425. found due to the command id not existing in the menu.
  8426. </member>
  8427. <member name="M:CefMenuModel.RemoveAt(System.UInt64)">
  8428. Removes the item at the specified |index|. Returns true on success.
  8429. </member>
  8430. <member name="M:CefMenuModel.Remove(System.Int32)">
  8431. Removes the item with the specified |command_id|. Returns true on success.
  8432. </member>
  8433. <member name="M:CefMenuModel.InsertSubMenuAt(System.UInt64,System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8434. Insert a sub-menu in the menu at the specified |index|. The new sub-menu
  8435. is returned.
  8436. </member>
  8437. <member name="M:CefMenuModel.InsertRadioItemAt(System.UInt64,System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32)">
  8438. Insert a radio item in the menu at the specified |index|. Only a single
  8439. item with the specified |group_id| can be checked at a time. Returns true
  8440. on success.
  8441. </member>
  8442. <member name="M:CefMenuModel.InsertCheckItemAt(System.UInt64,System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8443. Insert a check item in the menu at the specified |index|. Returns true on
  8444. success.
  8445. </member>
  8446. <member name="M:CefMenuModel.InsertItemAt(System.UInt64,System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8447. Insert an item in the menu at the specified |index|. Returns true on
  8448. success.
  8449. </member>
  8450. <member name="M:CefMenuModel.InsertSeparatorAt(System.UInt64)">
  8451. Insert a separator in the menu at the specified |index|. Returns true on
  8452. success.
  8453. </member>
  8454. <member name="M:CefMenuModel.AddSubMenu(System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8455. Add a sub-menu to the menu. The new sub-menu is returned.
  8456. </member>
  8457. <member name="M:CefMenuModel.AddRadioItem(System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32)">
  8458. Add a radio item to the menu. Only a single item with the specified
  8459. |group_id| can be checked at a time. Returns true on success.
  8460. </member>
  8461. <member name="M:CefMenuModel.AddCheckItem(System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8462. Add a check item to the menu. Returns true on success.
  8463. </member>
  8464. <member name="M:CefMenuModel.AddItem(System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8465. Add an item to the menu. Returns true on success.
  8466. </member>
  8467. <member name="M:CefMenuModel.AddSeparator">
  8468. Add a separator to the menu. Returns true on success.
  8469. </member>
  8470. <member name="M:CefMenuModel.GetCount">
  8471. Returns the number of items in this menu.
  8472. </member>
  8473. <member name="M:CefMenuModel.Clear">
  8474. Clears the menu. Returns true on success.
  8475. </member>
  8476. <member name="M:CefMenuModel.IsSubMenu">
  8477. Returns true if this menu is a submenu.
  8478. </member>
  8479. <member name="M:CefMenuModel.CreateMenuModel(scoped_refptr&lt;CefMenuModelDelegate&gt;)">
  8480. Create a new MenuModel with the specified |delegate|.
  8481. </member>
  8482. <member name="T:CefMenuModel">
  8483. Supports creation and modification of menus. See cef_menu_id_t for the
  8484. command ids that have default implementations. All user-defined command ids
  8485. should be between MENU_ID_USER_FIRST and MENU_ID_USER_LAST. The methods of
  8486. this class can only be accessed on the browser process the UI thread.
  8487. </member>
  8488. <member name="M:CefMenuModelDelegate.FormatLabel(scoped_refptr&lt;CefMenuModel&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8489. Optionally modify a menu item label. Return true if |label| was modified.
  8490. </member>
  8491. <member name="M:CefMenuModelDelegate.MenuClosed(scoped_refptr&lt;CefMenuModel&gt;)">
  8492. The menu has closed.
  8493. </member>
  8494. <member name="M:CefMenuModelDelegate.MenuWillShow(scoped_refptr&lt;CefMenuModel&gt;)">
  8495. The menu is about to show.
  8496. </member>
  8497. <member name="M:CefMenuModelDelegate.UnhandledCloseSubmenu(scoped_refptr&lt;CefMenuModel&gt;,System.Boolean)">
  8498. Called on unhandled close submenu keyboard commands. |is_rtl| will be true
  8499. if the menu is displaying a right-to-left language.
  8500. </member>
  8501. <member name="M:CefMenuModelDelegate.UnhandledOpenSubmenu(scoped_refptr&lt;CefMenuModel&gt;,System.Boolean)">
  8502. Called on unhandled open submenu keyboard commands. |is_rtl| will be true
  8503. if the menu is displaying a right-to-left language.
  8504. </member>
  8505. <member name="M:CefMenuModelDelegate.MouseOutsideMenu(scoped_refptr&lt;CefMenuModel&gt;,CefPoint!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8506. Called when the user moves the mouse outside the menu and over the owning
  8507. window.
  8508. </member>
  8509. <member name="M:CefMenuModelDelegate.ExecuteCommand(scoped_refptr&lt;CefMenuModel&gt;,System.Int32,cef_event_flags_t)">
  8510. Perform the action associated with the specified |command_id| and
  8511. optional |event_flags|.
  8512. </member>
  8513. <member name="T:CefMenuModelDelegate">
  8514. Implement this interface to handle menu model events. The methods of this
  8515. class will be called on the browser process UI thread unless otherwise
  8516. indicated.
  8517. </member>
  8518. <member name="M:CefCommandHandler.IsChromeToolbarButtonVisible(cef_chrome_toolbar_button_type_t)">
  8519. Called during browser creation to check if a Chrome toolbar button
  8520. should be visible. Only called for buttons that would be visible by
  8521. default. Only used with the Chrome runtime.
  8522. </member>
  8523. <member name="M:CefCommandHandler.IsChromePageActionIconVisible(cef_chrome_page_action_icon_type_t)">
  8524. Called during browser creation to check if a Chrome page action icon
  8525. should be visible. Only called for icons that would be visible by default.
  8526. Only used with the Chrome runtime.
  8527. </member>
  8528. <member name="M:CefCommandHandler.IsChromeAppMenuItemEnabled(scoped_refptr&lt;CefBrowser&gt;,System.Int32)">
  8529. Called to check if a Chrome app menu item should be enabled. Values for
  8530. |command_id| can be found in the cef_command_ids.h file. Only called for
  8531. menu items that would be enabled by default. Only used with the Chrome
  8532. runtime.
  8533. </member>
  8534. <member name="M:CefCommandHandler.IsChromeAppMenuItemVisible(scoped_refptr&lt;CefBrowser&gt;,System.Int32)">
  8535. Called to check if a Chrome app menu item should be visible. Values for
  8536. |command_id| can be found in the cef_command_ids.h file. Only called for
  8537. menu items that would be visible by default. Only used with the Chrome
  8538. runtime.
  8539. </member>
  8540. <member name="M:CefCommandHandler.OnChromeCommand(scoped_refptr&lt;CefBrowser&gt;,System.Int32,cef_window_open_disposition_t)">
  8541. Called to execute a Chrome command triggered via menu selection or
  8542. keyboard shortcut. Values for |command_id| can be found in the
  8543. cef_command_ids.h file. |disposition| provides information about the
  8544. intended command target. Return true if the command was handled or false
  8545. for the default implementation. For context menu commands this will be
  8546. called after CefContextMenuHandler::OnContextMenuCommand. Only used with
  8547. the Chrome runtime.
  8548. </member>
  8549. <member name="T:CefCommandHandler">
  8550. Implement this interface to handle events related to commands. The methods
  8551. of this class will be called on the UI thread.
  8552. </member>
  8553. <member name="M:CefAudioHandler.OnAudioStreamError(scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8554. Called on the UI or audio stream thread when an error occurred. During the
  8555. stream creation phase this callback will be called on the UI thread while
  8556. in the capturing phase it will be called on the audio stream thread. The
  8557. stream will be stopped immediately.
  8558. </member>
  8559. <member name="M:CefAudioHandler.OnAudioStreamStopped(scoped_refptr&lt;CefBrowser&gt;)">
  8560. Called on the UI thread when the stream has stopped. OnAudioSteamStopped
  8561. will always be called after OnAudioStreamStarted; both methods may be
  8562. called multiple times for the same stream.
  8563. </member>
  8564. <member name="M:CefAudioHandler.OnAudioStreamPacket(scoped_refptr&lt;CefBrowser&gt;,System.Single!System.Runtime.CompilerServices.IsConst**,System.Int32,System.Int64)">
  8565. Called on the audio stream thread when a PCM packet is received for the
  8566. stream. |data| is an array representing the raw PCM data as a floating
  8567. point type, i.e. 4-byte value(s). |frames| is the number of frames in the
  8568. PCM packet. |pts| is the presentation timestamp (in milliseconds since the
  8569. Unix Epoch) and represents the time at which the decompressed packet
  8570. should be presented to the user. Based on |frames| and the
  8571. |channel_layout| value passed to OnAudioStreamStarted you can calculate
  8572. the size of the |data| array in bytes.
  8573. </member>
  8574. <member name="M:CefAudioHandler.OnAudioStreamStarted(scoped_refptr&lt;CefBrowser&gt;,CefAudioParameters!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32)">
  8575. Called on a browser audio capture thread when the browser starts
  8576. streaming audio. OnAudioStreamStopped will always be called after
  8577. OnAudioStreamStarted; both methods may be called multiple times
  8578. for the same browser. |params| contains the audio parameters like
  8579. sample rate and channel layout. |channels| is the number of channels.
  8580. </member>
  8581. <member name="M:CefAudioHandler.GetAudioParameters(scoped_refptr&lt;CefBrowser&gt;,CefAudioParameters*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8582. Called on the UI thread to allow configuration of audio stream parameters.
  8583. Return true to proceed with audio stream capture, or false to cancel it.
  8584. All members of |params| can optionally be configured here, but they are
  8585. also pre-filled with some sensible defaults.
  8586. </member>
  8587. <member name="T:CefAudioHandler">
  8588. Implement this interface to handle audio events.
  8589. </member>
  8590. <member name="M:CefSharp.Internals.CefUrlRequestClientAdapter.OnDownloadProgress(scoped_refptr&lt;CefURLRequest&gt;,System.Int64,System.Int64)">
  8591. ref
  8592. </member>
  8593. <member name="T:CefSharp.Internals.CefUrlRequestClientAdapter">
  8594. Interface that should be implemented by the CefUrlRequest client.
  8595. The methods of this class will be called on the same thread that created
  8596. the request unless otherwise documented.
  8597. </member>
  8598. <member name="M:CefURLRequestClient.GetAuthCredentials(System.Boolean,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefAuthCallback&gt;)">
  8599. Called on the IO thread when the browser needs credentials from the user.
  8600. |isProxy| indicates whether the host is a proxy server. |host| contains
  8601. the hostname and |port| contains the port number. Return true to continue
  8602. the request and call CefAuthCallback::Continue() when the authentication
  8603. information is available. If the request has an associated browser/frame
  8604. then returning false will result in a call to GetAuthCredentials on the
  8605. CefRequestHandler associated with that browser, if any. Otherwise,
  8606. returning false will cancel the request immediately. This method will only
  8607. be called for requests initiated from the browser process.
  8608. Called on the IO thread when the browser needs credentials from the user.
  8609. |isProxy| indicates whether the host is a proxy server. |host| contains
  8610. the hostname and |port| contains the port number. Return true to continue
  8611. the request and call CefAuthCallback::Continue() when the authentication
  8612. information is available. If the request has an associated browser/frame
  8613. then returning false will result in a call to GetAuthCredentials on the
  8614. CefRequestHandler associated with that browser, if any. Otherwise,
  8615. returning false will cancel the request immediately. This method will only
  8616. be called for requests initiated from the browser process.
  8617. </member>
  8618. <member name="M:CefURLRequestClient.OnDownloadData(scoped_refptr&lt;CefURLRequest&gt;,System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt64)">
  8619. Called when some part of the response is read. |data| contains the current
  8620. bytes received since the last call. This method will not be called if the
  8621. UR_FLAG_NO_DOWNLOAD_DATA flag is set on the request.
  8622. Called when some part of the response is read. |data| contains the current
  8623. bytes received since the last call. This method will not be called if the
  8624. UR_FLAG_NO_DOWNLOAD_DATA flag is set on the request.
  8625. </member>
  8626. <member name="M:CefURLRequestClient.OnDownloadProgress(scoped_refptr&lt;CefURLRequest&gt;,System.Int64,System.Int64)">
  8627. Notifies the client of download progress. |current| denotes the number of
  8628. bytes received up to the call and |total| is the expected total size of
  8629. the response (or -1 if not determined).
  8630. Notifies the client of download progress. |current| denotes the number of
  8631. bytes received up to the call and |total| is the expected total size of
  8632. the response (or -1 if not determined).
  8633. </member>
  8634. <member name="M:CefURLRequestClient.OnUploadProgress(scoped_refptr&lt;CefURLRequest&gt;,System.Int64,System.Int64)">
  8635. Notifies the client of upload progress. |current| denotes the number of
  8636. bytes sent so far and |total| is the total size of uploading data (or -1
  8637. if chunked upload is enabled). This method will only be called if the
  8638. UR_FLAG_REPORT_UPLOAD_PROGRESS flag is set on the request.
  8639. Notifies the client of upload progress. |current| denotes the number of
  8640. bytes sent so far and |total| is the total size of uploading data (or -1
  8641. if chunked upload is enabled). This method will only be called if the
  8642. UR_FLAG_REPORT_UPLOAD_PROGRESS flag is set on the request.
  8643. </member>
  8644. <member name="M:CefURLRequestClient.OnRequestComplete(scoped_refptr&lt;CefURLRequest&gt;)">
  8645. Notifies the client that the request has completed. Use the
  8646. CefURLRequest::GetRequestStatus method to determine if the request was
  8647. successful or not.
  8648. Notifies the client that the request has completed. Use the
  8649. CefURLRequest::GetRequestStatus method to determine if the request was
  8650. successful or not.
  8651. </member>
  8652. <member name="T:CefURLRequestClient">
  8653. Interface that should be implemented by the CefURLRequest client. The
  8654. methods of this class will be called on the same thread that created the
  8655. request unless otherwise documented.
  8656. Interface that should be implemented by the CefURLRequest client. The
  8657. methods of this class will be called on the same thread that created the
  8658. request unless otherwise documented.
  8659. </member>
  8660. <member name="M:CefURLRequest.Cancel">
  8661. Cancel the request.
  8662. Cancel the request.
  8663. </member>
  8664. <member name="M:CefURLRequest.ResponseWasCached">
  8665. Returns true if the response body was served from the cache. This includes
  8666. responses for which revalidation was required.
  8667. Returns true if the response body was served from the cache. This includes
  8668. responses for which revalidation was required.
  8669. </member>
  8670. <member name="M:CefURLRequest.GetResponse">
  8671. Returns the response, or NULL if no response information is available.
  8672. Response information will only be available after the upload has
  8673. completed. The returned object is read-only and should not be modified.
  8674. Returns the response, or NULL if no response information is available.
  8675. Response information will only be available after the upload has
  8676. completed. The returned object is read-only and should not be modified.
  8677. </member>
  8678. <member name="M:CefURLRequest.GetRequestError">
  8679. Returns the request error if status is UR_CANCELED or UR_FAILED, or 0
  8680. otherwise.
  8681. Returns the request error if status is UR_CANCELED or UR_FAILED, or 0
  8682. otherwise.
  8683. </member>
  8684. <member name="M:CefURLRequest.GetRequestStatus">
  8685. Returns the request status.
  8686. Returns the request status.
  8687. </member>
  8688. <member name="M:CefURLRequest.GetClient">
  8689. Returns the client.
  8690. Returns the client.
  8691. </member>
  8692. <member name="M:CefURLRequest.GetRequest">
  8693. Returns the request object used to create this URL request. The returned
  8694. object is read-only and should not be modified.
  8695. Returns the request object used to create this URL request. The returned
  8696. object is read-only and should not be modified.
  8697. </member>
  8698. <member name="M:CefURLRequest.Create(scoped_refptr&lt;CefRequest&gt;,scoped_refptr&lt;CefURLRequestClient&gt;,scoped_refptr&lt;CefRequestContext&gt;)">
  8699. Create a new URL request that is not associated with a specific browser or
  8700. frame. Use CefFrame::CreateURLRequest instead if you want the request to
  8701. have this association, in which case it may be handled differently (see
  8702. documentation on that method). A request created with this method may only
  8703. originate from the browser process, and will behave as follows:
  8704. - It may be intercepted by the client via CefResourceRequestHandler or
  8705. CefSchemeHandlerFactory.
  8706. - POST data may only contain only a single element of type PDE_TYPE_FILE
  8707. or PDE_TYPE_BYTES.
  8708. - If |request_context| is empty the global request context will be used.
  8709. The |request| object will be marked as read-only after calling this
  8710. method.
  8711. Create a new URL request that is not associated with a specific browser or
  8712. frame. Use CefFrame::CreateURLRequest instead if you want the request to
  8713. have this association, in which case it may be handled differently (see
  8714. documentation on that method). A request created with this method may only
  8715. originate from the browser process, and will behave as follows:
  8716. - It may be intercepted by the client via CefResourceRequestHandler or
  8717. CefSchemeHandlerFactory.
  8718. - POST data may only contain only a single element of type PDE_TYPE_FILE
  8719. or PDE_TYPE_BYTES.
  8720. - If |request_context| is empty the global request context will be used.
  8721. The |request| object will be marked as read-only after calling this
  8722. method.
  8723. </member>
  8724. <member name="T:CefURLRequest">
  8725. Class used to make a URL request. URL requests are not associated with a
  8726. browser instance so no CefClient callbacks will be executed. URL requests
  8727. can be created on any valid CEF thread in either the browser or render
  8728. process. Once created the methods of the URL request object must be accessed
  8729. on the same thread that created it.
  8730. Class used to make a URL request. URL requests are not associated with a
  8731. browser instance so no CefClient callbacks will be executed. URL requests
  8732. can be created on any valid CEF thread in either the browser or render
  8733. process. Once created the methods of the URL request object must be accessed
  8734. on the same thread that created it.
  8735. </member>
  8736. <member name="M:CefAuthCallback.Cancel">
  8737. Cancel the authentication request.
  8738. Cancel the authentication request.
  8739. </member>
  8740. <member name="M:CefAuthCallback.Continue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8741. Continue the authentication request.
  8742. Continue the authentication request.
  8743. </member>
  8744. <member name="T:CefAuthCallback">
  8745. Callback interface used for asynchronous continuation of authentication
  8746. requests.
  8747. Callback interface used for asynchronous continuation of authentication
  8748. requests.
  8749. </member>
  8750. <member name="M:CefDownloadHandler.OnDownloadUpdated(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefDownloadItem&gt;,scoped_refptr&lt;CefDownloadItemCallback&gt;)">
  8751. Called when a download's status or progress information has been updated.
  8752. This may be called multiple times before and after OnBeforeDownload().
  8753. Execute |callback| either asynchronously or in this method to cancel the
  8754. download if desired. Do not keep a reference to |download_item| outside of
  8755. this method.
  8756. Called when a download's status or progress information has been updated.
  8757. This may be called multiple times before and after OnBeforeDownload().
  8758. Execute |callback| either asynchronously or in this method to cancel the
  8759. download if desired. Do not keep a reference to |download_item| outside of
  8760. this method.
  8761. </member>
  8762. <member name="M:CefDownloadHandler.OnBeforeDownload(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefDownloadItem&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefBeforeDownloadCallback&gt;)">
  8763. Called before a download begins. |suggested_name| is the suggested name
  8764. for the download file. Return true and execute |callback| either
  8765. asynchronously or in this method to continue or cancel the download.
  8766. Return false to proceed with default handling (cancel with Alloy style,
  8767. download shelf with Chrome style). Do not keep a reference to
  8768. |download_item| outside of this method.
  8769. Called before a download begins. |suggested_name| is the suggested name
  8770. for the download file. Return true and execute |callback| either
  8771. asynchronously or in this method to continue or cancel the download.
  8772. Return false to proceed with default handling (cancel with Alloy style,
  8773. download shelf with Chrome style). Do not keep a reference to
  8774. |download_item| outside of this method.
  8775. </member>
  8776. <member name="M:CefDownloadHandler.CanDownload(scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8777. Called before a download begins in response to a user-initiated action
  8778. (e.g. alt + link click or link click that returns a `Content-Disposition:
  8779. attachment` response from the server). |url| is the target download URL
  8780. and |request_method| is the target method (GET, POST, etc). Return true to
  8781. proceed with the download or false to cancel the download.
  8782. Called before a download begins in response to a user-initiated action
  8783. (e.g. alt + link click or link click that returns a `Content-Disposition:
  8784. attachment` response from the server). |url| is the target download URL
  8785. and |request_method| is the target method (GET, POST, etc). Return true to
  8786. proceed with the download or false to cancel the download.
  8787. </member>
  8788. <member name="T:CefDownloadHandler">
  8789. Class used to handle file downloads. The methods of this class will called
  8790. on the browser process UI thread.
  8791. Class used to handle file downloads. The methods of this class will called
  8792. on the browser process UI thread.
  8793. </member>
  8794. <member name="M:CefDownloadItemCallback.Resume">
  8795. Call to resume the download.
  8796. Call to resume the download.
  8797. </member>
  8798. <member name="M:CefDownloadItemCallback.Pause">
  8799. Call to pause the download.
  8800. Call to pause the download.
  8801. </member>
  8802. <member name="M:CefDownloadItemCallback.Cancel">
  8803. Call to cancel the download.
  8804. Call to cancel the download.
  8805. </member>
  8806. <member name="T:CefDownloadItemCallback">
  8807. Callback interface used to asynchronously cancel a download.
  8808. Callback interface used to asynchronously cancel a download.
  8809. </member>
  8810. <member name="M:CefBeforeDownloadCallback.Continue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean)">
  8811. Call to continue the download. Set |download_path| to the full file path
  8812. for the download including the file name or leave blank to use the
  8813. suggested name and the default temp directory. Set |show_dialog| to true
  8814. if you do wish to show the default "Save As" dialog.
  8815. Call to continue the download. Set |download_path| to the full file path
  8816. for the download including the file name or leave blank to use the
  8817. suggested name and the default temp directory. Set |show_dialog| to true
  8818. if you do wish to show the default "Save As" dialog.
  8819. </member>
  8820. <member name="T:CefBeforeDownloadCallback">
  8821. Callback interface used to asynchronously continue a download.
  8822. Callback interface used to asynchronously continue a download.
  8823. </member>
  8824. <member name="P:CefSharp.Core.BrowserSettings.AutoDispose">
  8825. <summary>
  8826. True if dispose should be called after this object is used
  8827. </summary>
  8828. </member>
  8829. <member name="P:CefSharp.Core.BrowserSettings.IsDisposed">
  8830. <summary>
  8831. Gets a value indicating if the browser settings has been disposed.
  8832. </summary>
  8833. </member>
  8834. <member name="P:CefSharp.Core.BrowserSettings.WindowlessFrameRate">
  8835. <summary>
  8836. The maximum rate in frames per second (fps) that CefRenderHandler::OnPaint
  8837. will be called for a windowless browser. The actual fps may be lower if
  8838. the browser cannot generate frames at the requested rate. The minimum
  8839. value is 1 and the maximum value is 60 (default 30). This value can also be
  8840. changed dynamically via IBrowserHost.SetWindowlessFrameRate.
  8841. </summary>
  8842. </member>
  8843. <member name="P:CefSharp.Core.BrowserSettings.BackgroundColor">
  8844. <summary>
  8845. Background color used for the browser before a document is loaded and when no document color
  8846. is specified. The alpha component must be either fully opaque (0xFF) or fully transparent (0x00).
  8847. If the alpha component is fully opaque then the RGB components will be used as the background
  8848. color. If the alpha component is fully transparent for a WinForms browser then the
  8849. CefSettings.BackgroundColor value will be used. If the alpha component is fully transparent
  8850. for a windowless (WPF/OffScreen) browser then transparent painting will be enabled.
  8851. </summary>
  8852. </member>
  8853. <member name="P:CefSharp.Core.BrowserSettings.WebGl">
  8854. <summary>
  8855. Controls whether WebGL can be used. Note that WebGL requires hardware
  8856. support and may not work on all systems even when enabled. Also
  8857. configurable using the "disable-webgl" command-line switch.
  8858. </summary>
  8859. </member>
  8860. <member name="P:CefSharp.Core.BrowserSettings.Databases">
  8861. <summary>
  8862. Controls whether databases can be used. Also configurable using the
  8863. "disable-databases" command-line switch.
  8864. </summary>
  8865. </member>
  8866. <member name="P:CefSharp.Core.BrowserSettings.LocalStorage">
  8867. <summary>
  8868. Controls whether local storage can be used. Also configurable using the
  8869. "disable-local-storage" command-line switch.
  8870. </summary>
  8871. </member>
  8872. <member name="P:CefSharp.Core.BrowserSettings.TabToLinks">
  8873. <summary>
  8874. Controls whether the tab key can advance focus to links. Also configurable
  8875. using the "disable-tab-to-links" command-line switch.
  8876. </summary>
  8877. </member>
  8878. <member name="P:CefSharp.Core.BrowserSettings.TextAreaResize">
  8879. <summary>
  8880. Controls whether text areas can be resized. Also configurable using the
  8881. "disable-text-area-resize" command-line switch.
  8882. </summary>
  8883. </member>
  8884. <member name="P:CefSharp.Core.BrowserSettings.ImageShrinkStandaloneToFit">
  8885. <summary>
  8886. Controls whether standalone images will be shrunk to fit the page. Also
  8887. configurable using the "image-shrink-standalone-to-fit" command-line
  8888. switch.
  8889. </summary>
  8890. </member>
  8891. <member name="P:CefSharp.Core.BrowserSettings.ImageLoading">
  8892. <summary>
  8893. Controls whether image URLs will be loaded from the network. A cached image
  8894. will still be rendered if requested. Also configurable using the
  8895. "disable-image-loading" command-line switch.
  8896. </summary>
  8897. </member>
  8898. <member name="P:CefSharp.Core.BrowserSettings.JavascriptDomPaste">
  8899. <summary>
  8900. Controls whether DOM pasting is supported in the editor via
  8901. execCommand("paste"). The |javascript_access_clipboard| setting must also
  8902. be enabled. Also configurable using the "disable-javascript-dom-paste"
  8903. command-line switch.
  8904. </summary>
  8905. </member>
  8906. <member name="P:CefSharp.Core.BrowserSettings.JavascriptAccessClipboard">
  8907. <summary>
  8908. Controls whether JavaScript can access the clipboard. Also configurable
  8909. using the "disable-javascript-access-clipboard" command-line switch.
  8910. </summary>
  8911. </member>
  8912. <member name="P:CefSharp.Core.BrowserSettings.JavascriptCloseWindows">
  8913. <summary>
  8914. Controls whether JavaScript can be used to close windows that were not
  8915. opened via JavaScript. JavaScript can still be used to close windows that
  8916. were opened via JavaScript. Also configurable using the
  8917. "disable-javascript-close-windows" command-line switch.
  8918. </summary>
  8919. </member>
  8920. <member name="P:CefSharp.Core.BrowserSettings.Javascript">
  8921. <summary>
  8922. Controls whether JavaScript can be executed. (Used to Enable/Disable javascript)
  8923. Also configurable using the "disable-javascript" command-line switch.
  8924. </summary>
  8925. </member>
  8926. <member name="P:CefSharp.Core.BrowserSettings.RemoteFonts">
  8927. <summary>
  8928. Controls the loading of fonts from remote sources. Also configurable using
  8929. the "disable-remote-fonts" command-line switch.
  8930. </summary>
  8931. </member>
  8932. <member name="P:CefSharp.Core.BrowserSettings.DefaultEncoding">
  8933. <summary>
  8934. Default encoding for Web content. If empty "ISO-8859-1" will be used. Also
  8935. configurable using the "default-encoding" command-line switch.
  8936. </summary>
  8937. </member>
  8938. <member name="P:CefSharp.Core.BrowserSettings.MinimumLogicalFontSize">
  8939. <summary>
  8940. MinimumLogicalFontSize
  8941. </summary>
  8942. </member>
  8943. <member name="P:CefSharp.Core.BrowserSettings.MinimumFontSize">
  8944. <summary>
  8945. MinimumFontSize
  8946. </summary>
  8947. </member>
  8948. <member name="P:CefSharp.Core.BrowserSettings.DefaultFixedFontSize">
  8949. <summary>
  8950. DefaultFixedFontSize
  8951. </summary>
  8952. </member>
  8953. <member name="P:CefSharp.Core.BrowserSettings.DefaultFontSize">
  8954. <summary>
  8955. DefaultFontSize
  8956. </summary>
  8957. </member>
  8958. <member name="P:CefSharp.Core.BrowserSettings.FantasyFontFamily">
  8959. <summary>
  8960. FantasyFontFamily
  8961. </summary>
  8962. </member>
  8963. <member name="P:CefSharp.Core.BrowserSettings.CursiveFontFamily">
  8964. <summary>
  8965. CursiveFontFamily
  8966. </summary>
  8967. </member>
  8968. <member name="P:CefSharp.Core.BrowserSettings.SansSerifFontFamily">
  8969. <summary>
  8970. SansSerifFontFamily
  8971. </summary>
  8972. </member>
  8973. <member name="P:CefSharp.Core.BrowserSettings.SerifFontFamily">
  8974. <summary>
  8975. SerifFontFamily
  8976. </summary>
  8977. </member>
  8978. <member name="P:CefSharp.Core.BrowserSettings.FixedFontFamily">
  8979. <summary>
  8980. FixedFontFamily
  8981. </summary>
  8982. </member>
  8983. <member name="P:CefSharp.Core.BrowserSettings.StandardFontFamily">
  8984. <summary>
  8985. StandardFontFamily
  8986. </summary>
  8987. </member>
  8988. <member name="M:CefSharp.Core.BrowserSettings.Dispose">
  8989. <summary>
  8990. Destructor.
  8991. </summary>
  8992. </member>
  8993. <member name="M:CefSharp.Core.BrowserSettings.Finalize">
  8994. <summary>
  8995. Finalizer.
  8996. </summary>
  8997. </member>
  8998. <member name="M:CefSharp.Core.BrowserSettings.#ctor">
  8999. <summary>
  9000. Default Constructor
  9001. </summary>
  9002. </member>
  9003. <member name="M:CefSharp.Core.BrowserSettings.#ctor(CefStructBase&lt;CefBrowserSettingsTraits&gt;*)">
  9004. <summary>
  9005. Internal Constructor
  9006. </summary>
  9007. </member>
  9008. <member name="T:CefSharp.Core.BrowserSettings">
  9009. <summary>
  9010. Browser initialization settings. Specify NULL or 0 to get the recommended
  9011. default values. The consequences of using custom values may not be well
  9012. tested. Many of these and other settings can also configured using command-
  9013. line switches.
  9014. </summary>
  9015. </member>
  9016. <member name="M:CefDownloadItem.GetMimeType">
  9017. Returns the mime type.
  9018. Returns the mime type.
  9019. </member>
  9020. <member name="M:CefDownloadItem.GetContentDisposition">
  9021. Returns the content disposition.
  9022. Returns the content disposition.
  9023. </member>
  9024. <member name="M:CefDownloadItem.GetSuggestedFileName">
  9025. Returns the suggested file name.
  9026. Returns the suggested file name.
  9027. </member>
  9028. <member name="M:CefDownloadItem.GetOriginalUrl">
  9029. Returns the original URL before any redirections.
  9030. Returns the original URL before any redirections.
  9031. </member>
  9032. <member name="M:CefDownloadItem.GetURL">
  9033. Returns the URL.
  9034. Returns the URL.
  9035. </member>
  9036. <member name="M:CefDownloadItem.GetId">
  9037. Returns the unique identifier for this download.
  9038. Returns the unique identifier for this download.
  9039. </member>
  9040. <member name="M:CefDownloadItem.GetFullPath">
  9041. Returns the full path to the downloaded or downloading file.
  9042. Returns the full path to the downloaded or downloading file.
  9043. </member>
  9044. <member name="M:CefDownloadItem.GetEndTime">
  9045. Returns the time that the download ended.
  9046. Returns the time that the download ended.
  9047. </member>
  9048. <member name="M:CefDownloadItem.GetStartTime">
  9049. Returns the time that the download started.
  9050. Returns the time that the download started.
  9051. </member>
  9052. <member name="M:CefDownloadItem.GetReceivedBytes">
  9053. Returns the number of received bytes.
  9054. Returns the number of received bytes.
  9055. </member>
  9056. <member name="M:CefDownloadItem.GetTotalBytes">
  9057. Returns the total number of bytes.
  9058. Returns the total number of bytes.
  9059. </member>
  9060. <member name="M:CefDownloadItem.GetPercentComplete">
  9061. Returns the rough percent complete or -1 if the receive total size is
  9062. unknown.
  9063. Returns the rough percent complete or -1 if the receive total size is
  9064. unknown.
  9065. </member>
  9066. <member name="M:CefDownloadItem.GetCurrentSpeed">
  9067. Returns a simple speed estimate in bytes/s.
  9068. Returns a simple speed estimate in bytes/s.
  9069. </member>
  9070. <member name="M:CefDownloadItem.GetInterruptReason">
  9071. Returns the most recent interrupt reason.
  9072. Returns the most recent interrupt reason.
  9073. </member>
  9074. <member name="M:CefDownloadItem.IsInterrupted">
  9075. Returns true if the download has been interrupted.
  9076. Returns true if the download has been interrupted.
  9077. </member>
  9078. <member name="M:CefDownloadItem.IsCanceled">
  9079. Returns true if the download has been canceled.
  9080. Returns true if the download has been canceled.
  9081. </member>
  9082. <member name="M:CefDownloadItem.IsComplete">
  9083. Returns true if the download is complete.
  9084. Returns true if the download is complete.
  9085. </member>
  9086. <member name="M:CefDownloadItem.IsInProgress">
  9087. Returns true if the download is in progress.
  9088. Returns true if the download is in progress.
  9089. </member>
  9090. <member name="M:CefDownloadItem.IsValid">
  9091. Returns true if this object is valid. Do not call any other methods if
  9092. this function returns false.
  9093. Returns true if this object is valid. Do not call any other methods if
  9094. this function returns false.
  9095. </member>
  9096. <member name="T:CefDownloadItem">
  9097. Class used to represent a download item.
  9098. Class used to represent a download item.
  9099. </member>
  9100. <member name="M:CefSharp.Internals.CefFrameWrapper.LoadRequest(CefSharp.IRequest)">
  9101. Load the request represented by the |request| object.
  9102. </member>
  9103. <member name="M:CefStreamResourceHandler.#ctor(System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,std.multimap&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;,std.less&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;,std.allocator&lt;std.pair&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst,CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;&gt;,scoped_refptr&lt;CefStreamReader&gt;)">
  9104. Create a new object with explicit response values.
  9105. </member>
  9106. <member name="M:CefStreamResourceHandler.#ctor(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefStreamReader&gt;)">
  9107. Create a new object with default response values.
  9108. </member>
  9109. <member name="T:CefStreamResourceHandler">
  9110. Implementation of the CefResourceHandler class for reading from a CefStream.
  9111. </member>
  9112. <member name="M:CefSchemeHandlerFactory.Create(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefRequest&gt;)">
  9113. Return a new resource handler instance to handle the request or an empty
  9114. reference to allow default handling of the request. |browser| and |frame|
  9115. will be the browser window and frame respectively that originated the
  9116. request or NULL if the request did not originate from a browser window
  9117. (for example, if the request came from CefURLRequest). The |request|
  9118. object passed to this method cannot be modified.
  9119. Return a new resource handler instance to handle the request or an empty
  9120. reference to allow default handling of the request. |browser| and |frame|
  9121. will be the browser window and frame respectively that originated the
  9122. request or NULL if the request did not originate from a browser window
  9123. (for example, if the request came from CefURLRequest). The |request|
  9124. object passed to this method cannot be modified.
  9125. </member>
  9126. <member name="T:CefSchemeHandlerFactory">
  9127. Class that creates CefResourceHandler instances for handling scheme
  9128. requests. The methods of this class will always be called on the IO thread.
  9129. Class that creates CefResourceHandler instances for handling scheme
  9130. requests. The methods of this class will always be called on the IO thread.
  9131. </member>
  9132. <member name="M:CefSchemeRegistrar.AddCustomScheme(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32)">
  9133. Register a custom scheme. This method should not be called for the
  9134. built-in HTTP, HTTPS, FILE, FTP, ABOUT and DATA schemes.
  9135. See cef_scheme_options_t for possible values for |options|.
  9136. This function may be called on any thread. It should only be called once
  9137. per unique |scheme_name| value. If |scheme_name| is already registered or
  9138. if an error occurs this method will return false.
  9139. Register a custom scheme. This method should not be called for the
  9140. built-in HTTP, HTTPS, FILE, FTP, ABOUT and DATA schemes.
  9141. See cef_scheme_options_t for possible values for |options|.
  9142. This function may be called on any thread. It should only be called once
  9143. per unique |scheme_name| value. If |scheme_name| is already registered or
  9144. if an error occurs this method will return false.
  9145. </member>
  9146. <member name="T:CefSchemeRegistrar">
  9147. Class that manages custom scheme registrations.
  9148. Class that manages custom scheme registrations.
  9149. </member>
  9150. <member name="M:CefClearSchemeHandlerFactories">
  9151. Clear all scheme handler factories registered with the global request
  9152. context. Returns false on error. This function may be called on any thread
  9153. in the browser process. Using this function is equivalent to calling
  9154. CefRequestContext::GetGlobalContext()-&gt;ClearSchemeHandlerFactories().
  9155. Clear all scheme handler factories registered with the global request
  9156. context. Returns false on error. This function may be called on any thread
  9157. in the browser process. Using this function is equivalent to calling
  9158. CefRequestContext::GetGlobalContext()-&gt;ClearSchemeHandlerFactories().
  9159. </member>
  9160. <member name="M:CefRegisterSchemeHandlerFactory(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefSchemeHandlerFactory&gt;)">
  9161. Register a scheme handler factory with the global request context. An empty
  9162. |domain_name| value for a standard scheme will cause the factory to match
  9163. all domain names. The |domain_name| value will be ignored for non-standard
  9164. schemes. If |scheme_name| is a built-in scheme and no handler is returned by
  9165. |factory| then the built-in scheme handler factory will be called. If
  9166. |scheme_name| is a custom scheme then you must also implement the
  9167. CefApp::OnRegisterCustomSchemes() method in all processes. This function may
  9168. be called multiple times to change or remove the factory that matches the
  9169. specified |scheme_name| and optional |domain_name|. Returns false if an
  9170. error occurs. This function may be called on any thread in the browser
  9171. process. Using this function is equivalent to calling
  9172. CefRequestContext::GetGlobalContext()-&gt;RegisterSchemeHandlerFactory().
  9173. Register a scheme handler factory with the global request context. An empty
  9174. |domain_name| value for a standard scheme will cause the factory to match
  9175. all domain names. The |domain_name| value will be ignored for non-standard
  9176. schemes. If |scheme_name| is a built-in scheme and no handler is returned by
  9177. |factory| then the built-in scheme handler factory will be called. If
  9178. |scheme_name| is a custom scheme then you must also implement the
  9179. CefApp::OnRegisterCustomSchemes() method in all processes. This function may
  9180. be called multiple times to change or remove the factory that matches the
  9181. specified |scheme_name| and optional |domain_name|. Returns false if an
  9182. error occurs. This function may be called on any thread in the browser
  9183. process. Using this function is equivalent to calling
  9184. CefRequestContext::GetGlobalContext()-&gt;RegisterSchemeHandlerFactory().
  9185. </member>
  9186. <member name="T:CefSharp.CookieManager">
  9187. <exclude />
  9188. </member>
  9189. <member name="M:CefWriteJSON(scoped_refptr&lt;CefValue&gt;,cef_json_writer_options_t)">
  9190. Generates a JSON string from the specified root |node| which should be a
  9191. dictionary or list value. Returns an empty string on failure. This method
  9192. requires exclusive access to |node| including any underlying data.
  9193. </member>
  9194. <member name="M:CefParseJSONAndReturnError(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_json_parser_options_t,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9195. Parses the specified |json_string| and returns a dictionary or list
  9196. representation. If JSON parsing fails this method returns NULL and populates
  9197. |error_msg_out| with a formatted error message.
  9198. </member>
  9199. <member name="M:CefParseJSON(System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt64,cef_json_parser_options_t)">
  9200. Parses the specified UTF8-encoded |json| buffer of size |json_size| and
  9201. returns a dictionary or list representation. If JSON parsing fails this
  9202. method returns NULL.
  9203. </member>
  9204. <member name="M:CefParseJSON(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_json_parser_options_t)">
  9205. Parses the specified |json_string| and returns a dictionary or list
  9206. representation. If JSON parsing fails this method returns NULL.
  9207. </member>
  9208. <member name="M:CefURIDecode(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean,cef_uri_unescape_rule_t)">
  9209. Unescapes |text| and returns the result. Unescaping consists of looking for
  9210. the exact pattern "%XX" where each X is a hex digit and converting to the
  9211. character with the numerical value of those digits (e.g. "i%20=%203%3b"
  9212. unescapes to "i = 3;"). If |convert_to_utf8| is true this function will
  9213. attempt to interpret the initial decoded result as UTF-8. If the result is
  9214. convertable into UTF-8 it will be returned as converted. Otherwise the
  9215. initial decoded result will be returned. The |unescape_rule| parameter
  9216. supports further customization the decoding process.
  9217. </member>
  9218. <member name="M:CefURIEncode(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean)">
  9219. Escapes characters in |text| which are unsuitable for use as a query
  9220. parameter value. Everything except alphanumerics and -_.!~*'() will be
  9221. converted to "%XX". If |use_plus| is true spaces will change to "+". The
  9222. result is basically the same as encodeURIComponent in Javacript.
  9223. </member>
  9224. <member name="M:CefBase64Decode(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9225. Decodes the base64 encoded string |data|. The returned value will be NULL if
  9226. the decoding fails.
  9227. </member>
  9228. <member name="M:CefBase64Encode(System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt64)">
  9229. Encodes |data| as a base64 string.
  9230. </member>
  9231. <member name="M:CefGetExtensionsForMimeType(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9232. Get the extensions associated with the given mime type. This should be
  9233. passed in lower case. There could be multiple extensions for a given mime
  9234. type, like "html,htm" for "text/html", or "txt,text,html,..." for "text/*".
  9235. Any existing elements in the provided vector will not be erased.
  9236. </member>
  9237. <member name="M:CefGetMimeType(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9238. Returns the mime type for the specified file extension or an empty string if
  9239. unknown.
  9240. </member>
  9241. <member name="M:CefFormatUrlForSecurityDisplay(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9242. This is a convenience function for formatting a URL in a concise and human-
  9243. friendly way to help users make security-related decisions (or in other
  9244. circumstances when people need to distinguish sites, origins, or otherwise-
  9245. simplified URLs from each other). Internationalized domain names (IDN) may
  9246. be presented in Unicode if the conversion is considered safe. The returned
  9247. value will (a) omit the path for standard schemes, excepting file and
  9248. filesystem, and (b) omit the port if it is the default for the scheme. Do
  9249. not use this for URLs which will be parsed or sent to other applications.
  9250. </member>
  9251. <member name="M:CefCreateURL(CefStructBase&lt;CefURLPartsTraits&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9252. Creates a URL from the specified |parts|, which must contain a non-empty
  9253. spec or a non-empty host and path (at a minimum), but not both.
  9254. Returns false if |parts| isn't initialized as described.
  9255. </member>
  9256. <member name="M:CefParseURL(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStructBase&lt;CefURLPartsTraits&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9257. Parse the specified |url| into its component parts.
  9258. Returns false if the URL is empty or invalid.
  9259. </member>
  9260. <member name="M:CefResolveURL(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9261. Combines specified |base_url| and |relative_url| into |resolved_url|.
  9262. Returns false if one of the URLs is empty or invalid.
  9263. </member>
  9264. <member name="M:CefSharp.Core.RequestContext.UnWrap">
  9265. <summary>
  9266. Gets the inner most instance
  9267. </summary>
  9268. <returns>current instance</returns>
  9269. </member>
  9270. <member name="M:CefSharp.Core.RequestContext.LoadExtension(System.String,System.String,CefSharp.IExtensionHandler)">
  9271. <summary>
  9272. Load an extension. If extension resources will be read from disk using the default load implementation then rootDirectoy
  9273. should be the absolute path to the extension resources directory and manifestJson should be null.
  9274. If extension resources will be provided by the client (e.g. via IRequestHandler and/or IExtensionHandler) then rootDirectory
  9275. should be a path component unique to the extension (if not absolute this will be internally prefixed with the PK_DIR_RESOURCES path)
  9276. and manifestJson should contain the contents that would otherwise be read from the "manifest.json" file on disk.
  9277. The loaded extension will be accessible in all contexts sharing the same storage (HasExtension returns true).
  9278. However, only the context on which this method was called is considered the loader (DidLoadExtension returns true) and only the
  9279. loader will receive IRequestContextHandler callbacks for the extension. <see cref="M:CefSharp.IExtensionHandler.OnExtensionLoaded(CefSharp.IExtension)" /> will be
  9280. called on load success or <see cref="M:CefSharp.IExtensionHandler.OnExtensionLoadFailed(CefSharp.CefErrorCode)" /> will be called on load failure.
  9281. If the extension specifies a background script via the "background" manifest key then <see cref="M:CefSharp.IExtensionHandler.OnBeforeBackgroundBrowser(CefSharp.IExtension,System.String,CefSharp.IBrowserSettings)" />
  9282. will be called to create the background browser. See that method for additional information about background scripts.
  9283. For visible extension views the client application should evaluate the manifest to determine the correct extension URL to load and then pass
  9284. that URL to the IBrowserHost.CreateBrowser* function after the extension has loaded. For example, the client can look for the "browser_action"
  9285. manifest key as documented at https://developer.chrome.com/extensions/browserAction. Extension URLs take the form "chrome-extension:///".
  9286. Browsers that host extensions differ from normal browsers as follows: - Can access chrome.* JavaScript APIs if allowed by the manifest.
  9287. Visit chrome://extensions-support for the list of extension APIs currently supported by CEF. - Main frame navigation to non-extension
  9288. content is blocked.
  9289. - Pinch-zooming is disabled.
  9290. - <see cref="P:CefSharp.IBrowserHost.Extension" /> returns the hosted extension.
  9291. - CefBrowserHost::IsBackgroundHost returns true for background hosts. See https://developer.chrome.com/extensions for extension implementation and usage documentation.
  9292. </summary>
  9293. <param name="rootDirectory">If extension resources will be read from disk using the default load implementation then rootDirectoy
  9294. should be the absolute path to the extension resources directory and manifestJson should be null</param>
  9295. <param name="manifestJson">If extension resources will be provided by the client then rootDirectory should be a path component unique to the extension
  9296. and manifestJson should contain the contents that would otherwise be read from the manifest.json file on disk</param>
  9297. <param name="handler">handle events related to browser extensions</param>
  9298. </member>
  9299. <member name="M:CefSharp.Core.RequestContext.HasExtension(System.String)">
  9300. <summary>
  9301. Returns true if this context has access to the extension identified by extensionId.
  9302. This may not be the context that was used to load the extension (see DidLoadExtension).
  9303. This method must be called on the CEF UI thread.
  9304. </summary>
  9305. <param name="extensionId">extension id</param>
  9306. <returns>Returns true if this context has access to the extension identified by extensionId</returns>
  9307. <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
  9308. <see cref="M:CefSharp.IBrowserProcessHandler.OnContextInitialized" /> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
  9309. executed on the CEF UI thread, so can be called directly.
  9310. When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
  9311. application thread will be the CEF UI thread.</remarks>
  9312. </member>
  9313. <member name="M:CefSharp.Core.RequestContext.GetExtensions(System.Collections.Generic.IList`1{System.String}@)">
  9314. <summary>
  9315. Retrieve the list of all extensions that this context has access to (see HasExtension).
  9316. <paramref name="extensionIds" /> will be populated with the list of extension ID values.
  9317. This method must be called on the CEF UI thread.
  9318. </summary>
  9319. <param name="extensionIds">output a list of extensions Ids</param>
  9320. <returns>returns true on success otherwise false</returns>
  9321. <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
  9322. <see cref="M:CefSharp.IBrowserProcessHandler.OnContextInitialized" /> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
  9323. executed on the CEF UI thread, so can be called directly.
  9324. When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
  9325. application thread will be the CEF UI thread.</remarks>
  9326. </member>
  9327. <member name="M:CefSharp.Core.RequestContext.GetExtension(System.String)">
  9328. <summary>
  9329. Returns the extension matching extensionId or null if no matching extension is accessible in this context (see HasExtension).
  9330. This method must be called on the CEF UI thread.
  9331. </summary>
  9332. <param name="extensionId">extension Id</param>
  9333. <returns>Returns the extension matching extensionId or null if no matching extension is accessible in this context</returns>
  9334. <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
  9335. <see cref="M:CefSharp.IBrowserProcessHandler.OnContextInitialized" /> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
  9336. executed on the CEF UI thread, so can be called directly.
  9337. When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
  9338. application thread will be the CEF UI thread.</remarks>
  9339. </member>
  9340. <member name="M:CefSharp.Core.RequestContext.DidLoadExtension(System.String)">
  9341. <summary>
  9342. Returns true if this context was used to load the extension identified by extensionId. Other contexts sharing the same storage will also have access to the extension (see HasExtension).
  9343. This method must be called on the CEF UI thread.
  9344. </summary>
  9345. <returns>Returns true if this context was used to load the extension identified by extensionId</returns>
  9346. <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
  9347. <see cref="M:CefSharp.IBrowserProcessHandler.OnContextInitialized" /> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
  9348. executed on the CEF UI thread, so can be called directly.
  9349. When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
  9350. application thread will be the CEF UI thread.</remarks>
  9351. </member>
  9352. <member name="M:CefSharp.Core.RequestContext.ResolveHostAsync(System.Uri)">
  9353. <summary>
  9354. Attempts to resolve origin to a list of associated IP addresses.
  9355. </summary>
  9356. <param name="origin">host name to resolve</param>
  9357. <returns>A task that represents the Resoolve Host operation. The value of the TResult parameter contains ResolveCallbackResult.</returns>
  9358. </member>
  9359. <member name="M:CefSharp.Core.RequestContext.CloseAllConnections(CefSharp.ICompletionCallback)">
  9360. <summary>
  9361. Clears all active and idle connections that Chromium currently has.
  9362. This is only recommended if you have released all other CEF objects but
  9363. don't yet want to call Cef.Shutdown().
  9364. </summary>
  9365. <param name="callback">If is non-NULL it will be executed on the CEF UI thread after
  9366. completion. This param is optional</param>
  9367. </member>
  9368. <member name="M:CefSharp.Core.RequestContext.ClearHttpAuthCredentials(CefSharp.ICompletionCallback)">
  9369. <summary>
  9370. Clears all HTTP authentication credentials that were added as part of handling
  9371. <see cref="M:CefSharp.IRequestHandler.GetAuthCredentials(CefSharp.IWebBrowser,CefSharp.IBrowser,System.String,System.Boolean,System.String,System.Int32,System.String,System.String,CefSharp.IAuthCallback)" />.
  9372. </summary>
  9373. <param name="callback">If is non-NULL it will be executed on the CEF UI thread after
  9374. completion. This param is optional</param>
  9375. </member>
  9376. <member name="M:CefSharp.Core.RequestContext.ClearCertificateExceptions(CefSharp.ICompletionCallback)">
  9377. <summary>
  9378. Clears all certificate exceptions that were added as part of handling
  9379. <see cref="M:CefSharp.IRequestHandler.OnCertificateError(CefSharp.IWebBrowser,CefSharp.IBrowser,CefSharp.CefErrorCode,System.String,CefSharp.ISslInfo,CefSharp.IRequestCallback)" />. If you call this it is
  9380. recommended that you also call <see cref="M:CefSharp.IRequestContext.CloseAllConnections(CefSharp.ICompletionCallback)" /> or you risk not
  9381. being prompted again for server certificates if you reconnect quickly.
  9382. </summary>
  9383. <param name="callback">If is non-NULL it will be executed on the CEF UI thread after
  9384. completion. This param is optional</param>
  9385. </member>
  9386. <member name="M:CefSharp.Core.RequestContext.SetPreference(System.String,System.Object,System.String@)">
  9387. <summary>
  9388. Set the value associated with preference name. If value is null the
  9389. preference will be restored to its default value. If setting the preference
  9390. fails then error will be populated with a detailed description of the
  9391. problem. This method must be called on the CEF UI thread.
  9392. Preferences set via the command-line usually cannot be modified.
  9393. </summary>
  9394. <param name="name">preference key</param>
  9395. <param name="value">preference value</param>
  9396. <param name="error">out error</param>
  9397. <returns>Returns true if the value is set successfully and false otherwise.</returns>
  9398. <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
  9399. <see cref="M:CefSharp.IBrowserProcessHandler.OnContextInitialized" /> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
  9400. executed on the CEF UI thread, so can be called directly.
  9401. When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
  9402. application thread will be the CEF UI thread.</remarks>
  9403. </member>
  9404. <member name="M:CefSharp.Core.RequestContext.CanSetPreference(System.String)">
  9405. <summary>
  9406. Returns true if the preference with the specified name can be modified
  9407. using SetPreference. As one example preferences set via the command-line
  9408. usually cannot be modified. This method must be called on the CEF UI thread.
  9409. </summary>
  9410. <param name="name">preference key</param>
  9411. <returns>Returns true if the preference with the specified name can be modified
  9412. using SetPreference</returns>
  9413. <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
  9414. <see cref="M:CefSharp.IBrowserProcessHandler.OnContextInitialized" /> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
  9415. executed on the CEF UI thread, so can be called directly.
  9416. When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
  9417. application thread will be the CEF UI thread.</remarks>
  9418. </member>
  9419. <member name="M:CefSharp.Core.RequestContext.GetAllPreferences(System.Boolean)">
  9420. <summary>
  9421. Returns all preferences as a dictionary. The returned
  9422. object contains a copy of the underlying preference values and
  9423. modifications to the returned object will not modify the underlying
  9424. preference values. This method must be called on the browser process UI
  9425. thread.
  9426. </summary>
  9427. <param name="includeDefaults">If true then
  9428. preferences currently at their default value will be included.</param>
  9429. <returns>Preferences (dictionary can have sub dictionaries)</returns>
  9430. </member>
  9431. <member name="M:CefSharp.Core.RequestContext.GetPreference(System.String)">
  9432. <summary>
  9433. Returns the value for the preference with the specified name. Returns
  9434. NULL if the preference does not exist. The returned object contains a copy
  9435. of the underlying preference value and modifications to the returned object
  9436. will not modify the underlying preference value. This method must be called
  9437. on the CEF UI thread.
  9438. </summary>
  9439. <param name="name">preference name</param>
  9440. <returns>Returns the value for the preference with the specified name</returns>
  9441. <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
  9442. <see cref="M:CefSharp.IBrowserProcessHandler.OnContextInitialized" /> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
  9443. executed on the CEF UI thread, so can be called directly.
  9444. When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
  9445. application thread will be the CEF UI thread.</remarks>
  9446. </member>
  9447. <member name="M:CefSharp.Core.RequestContext.HasPreference(System.String)">
  9448. <summary>
  9449. Returns true if a preference with the specified name exists. This method
  9450. must be called on the CEF UI thread.
  9451. </summary>
  9452. <param name="name">name of preference</param>
  9453. <returns>bool if the preference exists</returns>
  9454. <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
  9455. <see cref="M:CefSharp.IBrowserProcessHandler.OnContextInitialized" /> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
  9456. executed on the CEF UI thread, so can be called directly.
  9457. When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
  9458. application thread will be the CEF UI thread.</remarks>
  9459. </member>
  9460. <member name="P:CefSharp.Core.RequestContext.CachePath">
  9461. <summary>
  9462. Returns the cache path for this object. If empty an "incognito mode"
  9463. in-memory cache is being used.
  9464. </summary>
  9465. </member>
  9466. <member name="M:CefSharp.Core.RequestContext.ClearSchemeHandlerFactories">
  9467. <summary>
  9468. Clear all registered scheme handler factories.
  9469. </summary>
  9470. <returns>Returns false on error.</returns>
  9471. </member>
  9472. <member name="M:CefSharp.Core.RequestContext.RegisterSchemeHandlerFactory(System.String,System.String,CefSharp.ISchemeHandlerFactory)">
  9473. <summary>
  9474. Register a scheme handler factory for the specified schemeName and optional domainName.
  9475. An empty domainName value for a standard scheme will cause the factory to match all domain
  9476. names. The domainName value will be ignored for non-standard schemes. If schemeName is
  9477. a built-in scheme and no handler is returned by factory then the built-in scheme handler
  9478. factory will be called. If schemeName is a custom scheme then you must also implement the
  9479. IApp.OnRegisterCustomSchemes() method in all processes. This function may be called multiple
  9480. times to change or remove the factory that matches the specified schemeName and optional
  9481. domainName.
  9482. </summary>
  9483. <param name="schemeName">Scheme Name</param>
  9484. <param name="domainName">Optional domain name</param>
  9485. <param name="factory">Scheme handler factory</param>
  9486. <returns>Returns false if an error occurs.</returns>
  9487. </member>
  9488. <member name="P:CefSharp.Core.RequestContext.IsGlobal">
  9489. <summary>
  9490. Returns true if this object is the global context. The global context is
  9491. used by default when creating a browser or URL request with a NULL context
  9492. argument.
  9493. </summary>
  9494. </member>
  9495. <member name="M:CefSharp.Core.RequestContext.GetCookieManager(CefSharp.ICompletionCallback)">
  9496. <summary>
  9497. Returns the default cookie manager for this object. This will be the global
  9498. cookie manager if this object is the global request context.
  9499. </summary>
  9500. <param name="callback">If callback is non-NULL it will be executed asnychronously on the CEF IO thread
  9501. after the manager's storage has been initialized.</param>
  9502. <returns>Returns the default cookie manager for this object</returns>
  9503. </member>
  9504. <member name="M:CefSharp.Core.RequestContext.IsSharingWith(CefSharp.IRequestContext)">
  9505. <summary>
  9506. Returns true if this object is sharing the same storage as the specified context.
  9507. </summary>
  9508. <param name="context">context to compare</param>
  9509. <returns>Returns true if same storage</returns>
  9510. </member>
  9511. <member name="M:CefSharp.Core.RequestContext.IsSame(CefSharp.IRequestContext)">
  9512. <summary>
  9513. Returns true if this object is pointing to the same context object.
  9514. </summary>
  9515. <param name="context">context to compare</param>
  9516. <returns>Returns true if the same</returns>
  9517. </member>
  9518. <member name="M:CefSharp.Core.RequestContext.CreateContext(CefSharp.IRequestContext,CefSharp.IRequestContextHandler)">
  9519. <summary>
  9520. Creates a new context object that shares storage with other and uses an
  9521. optional handler.
  9522. </summary>
  9523. <param name="other">shares storage with this RequestContext</param>
  9524. <param name="requestContextHandler">optional requestContext handler</param>
  9525. <returns>Returns a new RequestContext</returns>
  9526. </member>
  9527. <member name="M:CefSharp.Core.RequestContext.#ctor(CefSharp.IRequestContext)">
  9528. Creates a new context object that shares storage with | other | and uses an optional | handler | .
  9529. </member>
  9530. <member name="T:CefSharp.Core.RequestContext">
  9531. <summary>
  9532. A request context provides request handling for a set of related browser objects.
  9533. A request context is specified when creating a new browser object via the CefBrowserHost
  9534. static factory methods. Browser objects with different request contexts will never be
  9535. hosted in the same render process. Browser objects with the same request context may or
  9536. may not be hosted in the same render process depending on the process model.
  9537. Browser objects created indirectly via the JavaScript window.open function or targeted
  9538. links will share the same render process and the same request context as the source browser.
  9539. When running in single-process mode there is only a single render process (the main process)
  9540. and so all browsers created in single-process mode will share the same request context.
  9541. This will be the first request context passed into a CefBrowserHost static factory method
  9542. and all other request context objects will be ignored.
  9543. </summary>
  9544. </member>
  9545. <member name="M:CefRequestContextHandler.GetResourceRequestHandler(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefRequest&gt;,System.Boolean,System.Boolean,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9546. Called on the browser process IO thread before a resource request is
  9547. initiated. The |browser| and |frame| values represent the source of the
  9548. request, and may be NULL for requests originating from service workers or
  9549. CefURLRequest. |request| represents the request contents and cannot be
  9550. modified in this callback. |is_navigation| will be true if the resource
  9551. request is a navigation. |is_download| will be true if the resource
  9552. request is a download. |request_initiator| is the origin (scheme + domain)
  9553. of the page that initiated the request. Set |disable_default_handling| to
  9554. true to disable default handling of the request, in which case it will
  9555. need to be handled via CefResourceRequestHandler::GetResourceHandler or it
  9556. will be canceled. To allow the resource load to proceed with default
  9557. handling return NULL. To specify a handler for the resource return a
  9558. CefResourceRequestHandler object. This method will not be called if the
  9559. client associated with |browser| returns a non-NULL value from
  9560. CefRequestHandler::GetResourceRequestHandler for the same request
  9561. (identified by CefRequest::GetIdentifier).
  9562. Called on the browser process IO thread before a resource request is
  9563. initiated. The |browser| and |frame| values represent the source of the
  9564. request, and may be NULL for requests originating from service workers or
  9565. CefURLRequest. |request| represents the request contents and cannot be
  9566. modified in this callback. |is_navigation| will be true if the resource
  9567. request is a navigation. |is_download| will be true if the resource
  9568. request is a download. |request_initiator| is the origin (scheme + domain)
  9569. of the page that initiated the request. Set |disable_default_handling| to
  9570. true to disable default handling of the request, in which case it will
  9571. need to be handled via CefResourceRequestHandler::GetResourceHandler or it
  9572. will be canceled. To allow the resource load to proceed with default
  9573. handling return NULL. To specify a handler for the resource return a
  9574. CefResourceRequestHandler object. This method will not be called if the
  9575. client associated with |browser| returns a non-NULL value from
  9576. CefRequestHandler::GetResourceRequestHandler for the same request
  9577. (identified by CefRequest::GetIdentifier).
  9578. </member>
  9579. <member name="M:CefRequestContextHandler.OnRequestContextInitialized(scoped_refptr&lt;CefRequestContext&gt;)">
  9580. Called on the browser process UI thread immediately after the request
  9581. context has been initialized.
  9582. Called on the browser process UI thread immediately after the request
  9583. context has been initialized.
  9584. </member>
  9585. <member name="T:CefRequestContextHandler">
  9586. Implement this interface to provide handler implementations. The handler
  9587. instance will not be released until all objects related to the context have
  9588. been destroyed.
  9589. Implement this interface to provide handler implementations. The handler
  9590. instance will not be released until all objects related to the context have
  9591. been destroyed.
  9592. </member>
  9593. <member name="M:CefCookieAccessFilter.CanSaveCookie(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefRequest&gt;,scoped_refptr&lt;CefResponse&gt;,CefStructBase&lt;CefCookieTraits&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9594. Called on the IO thread after a resource response is received. The
  9595. |browser| and |frame| values represent the source of the request, and may
  9596. be NULL for requests originating from service workers or CefURLRequest.
  9597. |request| cannot be modified in this callback. Return true if the
  9598. specified cookie returned with the response can be saved or false
  9599. otherwise.
  9600. </member>
  9601. <member name="M:CefCookieAccessFilter.CanSendCookie(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefRequest&gt;,CefStructBase&lt;CefCookieTraits&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9602. Called on the IO thread before a resource request is sent. The |browser|
  9603. and |frame| values represent the source of the request, and may be NULL
  9604. for requests originating from service workers or CefURLRequest. |request|
  9605. cannot be modified in this callback. Return true if the specified cookie
  9606. can be sent with the request or false otherwise.
  9607. </member>
  9608. <member name="T:CefCookieAccessFilter">
  9609. Implement this interface to filter cookies that may be sent or received from
  9610. resource requests. The methods of this class will be called on the IO thread
  9611. unless otherwise indicated.
  9612. </member>
  9613. <member name="M:CefResourceRequestHandler.OnProtocolExecution(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefRequest&gt;,System.Boolean*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9614. Called on the IO thread to handle requests for URLs with an unknown
  9615. protocol component. The |browser| and |frame| values represent the source
  9616. of the request, and may be NULL for requests originating from service
  9617. workers or CefURLRequest. |request| cannot be modified in this callback.
  9618. Set |allow_os_execution| to true to attempt execution via the registered
  9619. OS protocol handler, if any. SECURITY WARNING: YOU SHOULD USE THIS METHOD
  9620. TO ENFORCE RESTRICTIONS BASED ON SCHEME, HOST OR OTHER URL ANALYSIS BEFORE
  9621. ALLOWING OS EXECUTION.
  9622. </member>
  9623. <member name="M:CefResourceRequestHandler.OnResourceLoadComplete(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefRequest&gt;,scoped_refptr&lt;CefResponse&gt;,cef_urlrequest_status_t,System.Int64)">
  9624. Called on the IO thread when a resource load has completed. The |browser|
  9625. and |frame| values represent the source of the request, and may be NULL
  9626. for requests originating from service workers or CefURLRequest. |request|
  9627. and |response| represent the request and response respectively and cannot
  9628. be modified in this callback. |status| indicates the load completion
  9629. status. |received_content_length| is the number of response bytes actually
  9630. read. This method will be called for all requests, including requests that
  9631. are aborted due to CEF shutdown or destruction of the associated browser.
  9632. In cases where the associated browser is destroyed this callback may
  9633. arrive after the CefLifeSpanHandler::OnBeforeClose callback for that
  9634. browser. The CefFrame::IsValid method can be used to test for this
  9635. situation, and care should be taken not to call |browser| or |frame|
  9636. methods that modify state (like LoadURL, SendProcessMessage, etc.) if the
  9637. frame is invalid.
  9638. </member>
  9639. <member name="M:CefResourceRequestHandler.GetResourceResponseFilter(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefRequest&gt;,scoped_refptr&lt;CefResponse&gt;)">
  9640. Called on the IO thread to optionally filter resource response content.
  9641. The |browser| and |frame| values represent the source of the request, and
  9642. may be NULL for requests originating from service workers or
  9643. CefURLRequest. |request| and |response| represent the request and response
  9644. respectively and cannot be modified in this callback.
  9645. </member>
  9646. <member name="M:CefResourceRequestHandler.OnResourceResponse(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefRequest&gt;,scoped_refptr&lt;CefResponse&gt;)">
  9647. Called on the IO thread when a resource response is received. The
  9648. |browser| and |frame| values represent the source of the request, and may
  9649. be NULL for requests originating from service workers or CefURLRequest. To
  9650. allow the resource load to proceed without modification return false. To
  9651. redirect or retry the resource load optionally modify |request| and return
  9652. true. Modification of the request URL will be treated as a redirect.
  9653. Requests handled using the default network loader cannot be redirected in
  9654. this callback. The |response| object cannot be modified in this callback.
  9655. WARNING: Redirecting using this method is deprecated. Use
  9656. OnBeforeResourceLoad or GetResourceHandler to perform redirects.
  9657. </member>
  9658. <member name="M:CefResourceRequestHandler.OnResourceRedirect(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefRequest&gt;,scoped_refptr&lt;CefResponse&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9659. Called on the IO thread when a resource load is redirected. The |browser|
  9660. and |frame| values represent the source of the request, and may be NULL
  9661. for requests originating from service workers or CefURLRequest. The
  9662. |request| parameter will contain the old URL and other request-related
  9663. information. The |response| parameter will contain the response that
  9664. resulted in the redirect. The |new_url| parameter will contain the new URL
  9665. and can be changed if desired. The |request| and |response| objects cannot
  9666. be modified in this callback.
  9667. </member>
  9668. <member name="M:CefResourceRequestHandler.GetResourceHandler(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefRequest&gt;)">
  9669. Called on the IO thread before a resource is loaded. The |browser| and
  9670. |frame| values represent the source of the request, and may be NULL for
  9671. requests originating from service workers or CefURLRequest. To allow the
  9672. resource to load using the default network loader return NULL. To specify
  9673. a handler for the resource return a CefResourceHandler object. The
  9674. |request| object cannot not be modified in this callback.
  9675. </member>
  9676. <member name="M:CefResourceRequestHandler.OnBeforeResourceLoad(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefRequest&gt;,scoped_refptr&lt;CefCallback&gt;)">
  9677. Called on the IO thread before a resource request is loaded. The |browser|
  9678. and |frame| values represent the source of the request, and may be NULL
  9679. for requests originating from service workers or CefURLRequest. To
  9680. redirect or change the resource load optionally modify |request|.
  9681. Modification of the request URL will be treated as a redirect. Return
  9682. RV_CONTINUE to continue the request immediately. Return RV_CONTINUE_ASYNC
  9683. and call CefCallback methods at a later time to continue or cancel the
  9684. request asynchronously. Return RV_CANCEL to cancel the request
  9685. immediately.
  9686. </member>
  9687. <member name="M:CefResourceRequestHandler.GetCookieAccessFilter(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefRequest&gt;)">
  9688. Called on the IO thread before a resource request is loaded. The |browser|
  9689. and |frame| values represent the source of the request, and may be NULL
  9690. for requests originating from service workers or CefURLRequest. To
  9691. optionally filter cookies for the request return a CefCookieAccessFilter
  9692. object. The |request| object cannot not be modified in this callback.
  9693. </member>
  9694. <member name="T:CefResourceRequestHandler">
  9695. Implement this interface to handle events related to browser requests. The
  9696. methods of this class will be called on the IO thread unless otherwise
  9697. indicated.
  9698. </member>
  9699. <member name="M:CefResponseFilter.Filter(System.Void*,System.UInt64,System.UInt64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Void*,System.UInt64,System.UInt64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9700. Called to filter a chunk of data. Expected usage is as follows:
  9701. 1. Read input data from |data_in| and set |data_in_read| to the number of
  9702. bytes that were read up to a maximum of |data_in_size|. |data_in| will
  9703. be NULL if |data_in_size| is zero.
  9704. 2. Write filtered output data to |data_out| and set |data_out_written| to
  9705. the number of bytes that were written up to a maximum of
  9706. |data_out_size|. If no output data was written then all data must be
  9707. read from |data_in| (user must set |data_in_read| = |data_in_size|).
  9708. 3. Return RESPONSE_FILTER_DONE if all output data was written or
  9709. RESPONSE_FILTER_NEED_MORE_DATA if output data is still pending.
  9710. This method will be called repeatedly until the input buffer has been
  9711. fully read (user sets |data_in_read| = |data_in_size|) and there is no
  9712. more input data to filter (the resource response is complete). This method
  9713. may then be called an additional time with an empty input buffer if the
  9714. user filled the output buffer (set |data_out_written| = |data_out_size|)
  9715. and returned RESPONSE_FILTER_NEED_MORE_DATA to indicate that output data
  9716. is still pending.
  9717. Calls to this method will stop when one of the following conditions is
  9718. met:
  9719. 1. There is no more input data to filter (the resource response is
  9720. complete) and the user sets |data_out_written| = 0 or returns
  9721. RESPONSE_FILTER_DONE to indicate that all data has been written, or;
  9722. 2. The user returns RESPONSE_FILTER_ERROR to indicate an error.
  9723. Do not keep a reference to the buffers passed to this method.
  9724. </member>
  9725. <member name="M:CefResponseFilter.InitFilter">
  9726. Initialize the response filter. Will only be called a single time. The
  9727. filter will not be installed if this method returns false.
  9728. </member>
  9729. <member name="T:CefResponseFilter">
  9730. Implement this interface to filter resource response content. The methods of
  9731. this class will be called on the browser process IO thread.
  9732. </member>
  9733. <member name="M:CefResourceHandler.Cancel">
  9734. Request processing has been canceled.
  9735. </member>
  9736. <member name="M:CefResourceHandler.ReadResponse(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefCallback&gt;)">
  9737. Read response data. If data is available immediately copy up to
  9738. |bytes_to_read| bytes into |data_out|, set |bytes_read| to the number of
  9739. bytes copied, and return true. To read the data at a later time set
  9740. |bytes_read| to 0, return true and call CefCallback::Continue() when the
  9741. data is available. To indicate response completion return false.
  9742. WARNING: This method is deprecated. Use Skip and Read instead.
  9743. </member>
  9744. <member name="M:CefResourceHandler.GetResponseHeaders(scoped_refptr&lt;CefResponse&gt;,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9745. Retrieve response header information. If the response length is not known
  9746. set |response_length| to -1 and ReadResponse() will be called until it
  9747. returns false. If the response length is known set |response_length|
  9748. to a positive value and ReadResponse() will be called until it returns
  9749. false or the specified number of bytes have been read. Use the |response|
  9750. object to set the mime type, http status code and other optional header
  9751. values. To redirect the request to a new URL set |redirectUrl| to the new
  9752. URL. |redirectUrl| can be either a relative or fully qualified URL.
  9753. It is also possible to set |response| to a redirect http status code
  9754. and pass the new URL via a Location header. Likewise with |redirectUrl| it
  9755. is valid to set a relative or fully qualified URL as the Location header
  9756. value. If an error occured while setting up the request you can call
  9757. SetError() on |response| to indicate the error condition.
  9758. </member>
  9759. <member name="M:CefResourceHandler.ProcessRequest(scoped_refptr&lt;CefRequest&gt;,scoped_refptr&lt;CefCallback&gt;)">
  9760. Begin processing the request. To handle the request return true and call
  9761. CefCallback::Continue() once the response header information is available
  9762. (CefCallback::Continue() can also be called from inside this method if
  9763. header information is available immediately). To cancel the request return
  9764. false.
  9765. WARNING: This method is deprecated. Use Open instead.
  9766. </member>
  9767. <member name="M:CefResourceHandler.Open(scoped_refptr&lt;CefRequest&gt;,System.Boolean*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefCallback&gt;)">
  9768. Open the response stream. To handle the request immediately set
  9769. |handle_request| to true and return true. To decide at a later time set
  9770. |handle_request| to false, return true, and execute |callback| to continue
  9771. or cancel the request. To cancel the request immediately set
  9772. |handle_request| to true and return false. This method will be called in
  9773. sequence but not from a dedicated thread. For backwards compatibility set
  9774. |handle_request| to false and return false and the ProcessRequest method
  9775. will be called.
  9776. </member>
  9777. <member name="T:CefResourceHandler">
  9778. Class used to implement a custom request handler interface. The methods of
  9779. this class will be called on the IO thread unless otherwise indicated.
  9780. </member>
  9781. <member name="T:CefResourceReadCallback">
  9782. Callback for asynchronous continuation of CefResourceHandler::Read().
  9783. </member>
  9784. <member name="T:CefResourceSkipCallback">
  9785. Callback for asynchronous continuation of CefResourceHandler::Skip().
  9786. </member>
  9787. <member name="M:CefResponse.SetURL(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9788. Set the resolved URL after redirects or changed as a result of HSTS.
  9789. Set the resolved URL after redirects or changed as a result of HSTS.
  9790. Set the resolved URL after redirects or changed as a result of HSTS.
  9791. </member>
  9792. <member name="M:CefResponse.GetURL">
  9793. Get the resolved URL after redirects or changed as a result of HSTS.
  9794. Get the resolved URL after redirects or changed as a result of HSTS.
  9795. Get the resolved URL after redirects or changed as a result of HSTS.
  9796. </member>
  9797. <member name="M:CefResponse.SetHeaderMap(std.multimap&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;,std.less&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;,std.allocator&lt;std.pair&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst,CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9798. Set all response header fields.
  9799. Set all response header fields.
  9800. Set all response header fields.
  9801. </member>
  9802. <member name="M:CefResponse.GetHeaderMap(std.multimap&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;,std.less&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;,std.allocator&lt;std.pair&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst,CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9803. Get all response header fields.
  9804. Get all response header fields.
  9805. Get all response header fields.
  9806. </member>
  9807. <member name="M:CefResponse.SetHeaderByName(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean)">
  9808. Set the header |name| to |value|. If |overwrite| is true any existing
  9809. values will be replaced with the new value. If |overwrite| is false any
  9810. existing values will not be overwritten.
  9811. Set the header |name| to |value|. If |overwrite| is true any existing
  9812. values will be replaced with the new value. If |overwrite| is false any
  9813. existing values will not be overwritten.
  9814. Set the header |name| to |value|. If |overwrite| is true any existing
  9815. values will be replaced with the new value. If |overwrite| is false any
  9816. existing values will not be overwritten.
  9817. </member>
  9818. <member name="M:CefResponse.GetHeaderByName(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9819. Get the value for the specified response header field.
  9820. Get the value for the specified response header field.
  9821. Get the value for the specified response header field.
  9822. </member>
  9823. <member name="M:CefResponse.SetCharset(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9824. Set the response charset.
  9825. Set the response charset.
  9826. Set the response charset.
  9827. </member>
  9828. <member name="M:CefResponse.GetCharset">
  9829. Get the response charset.
  9830. Get the response charset.
  9831. Get the response charset.
  9832. </member>
  9833. <member name="M:CefResponse.SetMimeType(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9834. Set the response mime type.
  9835. Set the response mime type.
  9836. Set the response mime type.
  9837. </member>
  9838. <member name="M:CefResponse.GetMimeType">
  9839. Get the response mime type.
  9840. Get the response mime type.
  9841. Get the response mime type.
  9842. </member>
  9843. <member name="M:CefResponse.SetStatusText(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  9844. Set the response status text.
  9845. Set the response status text.
  9846. Set the response status text.
  9847. </member>
  9848. <member name="M:CefResponse.GetStatusText">
  9849. Get the response status text.
  9850. Get the response status text.
  9851. Get the response status text.
  9852. </member>
  9853. <member name="M:CefResponse.SetStatus(System.Int32)">
  9854. Set the response status code.
  9855. Set the response status code.
  9856. Set the response status code.
  9857. </member>
  9858. <member name="M:CefResponse.GetStatus">
  9859. Get the response status code.
  9860. Get the response status code.
  9861. Get the response status code.
  9862. </member>
  9863. <member name="M:CefResponse.SetError(cef_errorcode_t)">
  9864. Set the response error code. This can be used by custom scheme handlers
  9865. to return errors during initial request processing.
  9866. Set the response error code. This can be used by custom scheme handlers
  9867. to return errors during initial request processing.
  9868. Set the response error code. This can be used by custom scheme handlers
  9869. to return errors during initial request processing.
  9870. </member>
  9871. <member name="M:CefResponse.GetError">
  9872. Get the response error code. Returns ERR_NONE if there was no error.
  9873. Get the response error code. Returns ERR_NONE if there was no error.
  9874. Get the response error code. Returns ERR_NONE if there was no error.
  9875. </member>
  9876. <member name="M:CefResponse.IsReadOnly">
  9877. Returns true if this object is read-only.
  9878. Returns true if this object is read-only.
  9879. Returns true if this object is read-only.
  9880. </member>
  9881. <member name="M:CefResponse.Create">
  9882. Create a new CefResponse object.
  9883. Create a new CefResponse object.
  9884. Create a new CefResponse object.
  9885. </member>
  9886. <member name="T:CefResponse">
  9887. Class used to represent a web response. The methods of this class may be
  9888. called on any thread.
  9889. Class used to represent a web response. The methods of this class may be
  9890. called on any thread.
  9891. Class used to represent a web response. The methods of this class may be
  9892. called on any thread.
  9893. </member>
  9894. <member name="P:CefSharp.Core.RequestContextSettings.CookieableSchemesExcludeDefaults">
  9895. <summary>
  9896. If CookieableSchemesExcludeDefaults is false the
  9897. default schemes ("http", "https", "ws" and "wss") will also be supported.
  9898. Specifying a CookieableSchemesList value and setting
  9899. CookieableSchemesExcludeDefaults to true will disable all loading
  9900. and saving of cookies for this manager. This value will be ignored if
  9901. <see cref="P:CefSharp.Core.RequestContextSettings.CachePath" /> matches the <see cref="!:CefSettingsBase.CachePath" /> value.
  9902. </summary>
  9903. </member>
  9904. <member name="P:CefSharp.Core.RequestContextSettings.CookieableSchemesList">
  9905. <summary>
  9906. Comma delimited list of schemes supported by the associated
  9907. ICookieManager. If CookieableSchemesExcludeDefaults is false the
  9908. default schemes ("http", "https", "ws" and "wss") will also be supported.
  9909. Specifying a CookieableSchemesList value and setting
  9910. CookieableSchemesExcludeDefaults to true will disable all loading
  9911. and saving of cookies for this manager. This value will be ignored if
  9912. <see cref="P:CefSharp.Core.RequestContextSettings.CachePath" /> matches the <see cref="!:CefSettingsBase.CachePath" /> value.
  9913. </summary>
  9914. </member>
  9915. <member name="P:CefSharp.Core.RequestContextSettings.AcceptLanguageList">
  9916. <summary>
  9917. Comma delimited ordered list of language codes without any whitespace that
  9918. will be used in the "Accept-Language" HTTP header. Can be set globally
  9919. using the CefSettings.accept_language_list value or overridden on a per-
  9920. browser basis using the BrowserSettings.AcceptLanguageList value. If
  9921. all values are empty then "en-US,en" will be used. This value will be
  9922. ignored if CachePath matches the CefSettings.CachePath value.
  9923. </summary>
  9924. </member>
  9925. <member name="P:CefSharp.Core.RequestContextSettings.CachePath">
  9926. <summary>
  9927. The location where cache data for this request context will be stored on
  9928. disk. If this value is non-empty then it must be an absolute path that is
  9929. either equal to or a child directory of CefSettings.RootCachePath.
  9930. If the value is empty then browsers will be created in "incognito mode"
  9931. where in-memory caches are used for storage and no data is persisted to disk.
  9932. HTML5 databases such as localStorage will only persist across sessions if a
  9933. cache path is specified. To share the global browser cache and related
  9934. configuration set this value to match the CefSettings.CachePath value.
  9935. </summary>
  9936. </member>
  9937. <member name="P:CefSharp.Core.RequestContextSettings.PersistUserPreferences">
  9938. <summary>
  9939. To persist user preferences as a JSON file in the cache path directory set
  9940. this value to true. Can be set globally using the
  9941. CefSettings.PersistUserPreferences value. This value will be ignored if
  9942. CachePath is empty or if it matches the CefSettings.CachePath value.
  9943. </summary>
  9944. </member>
  9945. <member name="P:CefSharp.Core.RequestContextSettings.PersistSessionCookies">
  9946. <summary>
  9947. To persist session cookies (cookies without an expiry date or validity
  9948. interval) by default when using the global cookie manager set this value to
  9949. true. Session cookies are generally intended to be transient and most
  9950. Web browsers do not persist them. Can be set globally using the
  9951. CefSettings.PersistSessionCookies value. This value will be ignored if
  9952. CachePath is empty or if it matches the CefSettings.CachePath value.
  9953. </summary>
  9954. </member>
  9955. <member name="M:CefSharp.Core.RequestContextSettings.#ctor">
  9956. <summary>
  9957. Initializes a new instance of the RequestContextSettings class.
  9958. </summary>
  9959. </member>
  9960. <member name="T:CefSharp.Core.RequestContextSettings">
  9961. <summary>
  9962. RequestContextSettings
  9963. </summary>
  9964. </member>
  9965. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9966. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9967. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9968. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9969. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9970. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9971. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9972. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9973. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9974. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9975. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9976. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9977. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontList(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9978. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontListAt(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9979. <!-- Discarding badly formed XML document comment for member 'M:CefRenderHandler.UpdateDragCursor(scoped_refptr<CefBrowser>,cef_drag_operations_mask_t)'. -->
  9980. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9981. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9982. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9983. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9984. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserProcessHandler.OnScheduleMessagePumpWork(System.Int64)'. -->
  9985. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontList(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9986. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontListAt(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9987. <!-- Discarding badly formed XML document comment for member 'M:CefRenderHandler.UpdateDragCursor(scoped_refptr<CefBrowser>,cef_drag_operations_mask_t)'. -->
  9988. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9989. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9990. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9991. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9992. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserProcessHandler.OnScheduleMessagePumpWork(System.Int64)'. -->
  9993. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontList(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9994. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontListAt(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9995. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontList(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9996. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontListAt(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9997. <!-- Discarding badly formed XML document comment for member 'M:CefRenderHandler.UpdateDragCursor(scoped_refptr<CefBrowser>,cef_drag_operations_mask_t)'. -->
  9998. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9999. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  10000. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  10001. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  10002. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserProcessHandler.OnScheduleMessagePumpWork(System.Int64)'. -->
  10003. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontList(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  10004. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontListAt(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  10005. <!-- Discarding badly formed XML document comment for member 'M:CefRenderHandler.UpdateDragCursor(scoped_refptr<CefBrowser>,cef_drag_operations_mask_t)'. -->
  10006. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  10007. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  10008. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  10009. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  10010. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserProcessHandler.OnScheduleMessagePumpWork(System.Int64)'. -->
  10011. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  10012. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  10013. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  10014. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  10015. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  10016. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  10017. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  10018. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  10019. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontList(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  10020. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontListAt(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  10021. <!-- Discarding badly formed XML document comment for member 'M:CefRenderHandler.UpdateDragCursor(scoped_refptr<CefBrowser>,cef_drag_operations_mask_t)'. -->
  10022. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  10023. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  10024. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  10025. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  10026. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserProcessHandler.OnScheduleMessagePumpWork(System.Int64)'. -->
  10027. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  10028. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  10029. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  10030. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  10031. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontList(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  10032. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontListAt(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  10033. <!-- Discarding badly formed XML document comment for member 'M:CefRenderHandler.UpdateDragCursor(scoped_refptr<CefBrowser>,cef_drag_operations_mask_t)'. -->
  10034. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  10035. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  10036. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  10037. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  10038. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserProcessHandler.OnScheduleMessagePumpWork(System.Int64)'. -->
  10039. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  10040. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  10041. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  10042. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  10043. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontList(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  10044. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontListAt(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  10045. <!-- Discarding badly formed XML document comment for member 'M:CefRenderHandler.UpdateDragCursor(scoped_refptr<CefBrowser>,cef_drag_operations_mask_t)'. -->
  10046. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserProcessHandler.OnScheduleMessagePumpWork(System.Int64)'. -->
  10047. <!-- Discarding badly formed XML document comment for member 'M:_wassert(System.Char!System.Runtime.CompilerServices.IsConst*,System.Char!System.Runtime.CompilerServices.IsConst*,System.UInt32)'. -->
  10048. <!-- Discarding badly formed XML document comment for member 'T:_cef_basetime_t'. -->
  10049. <!-- Discarding badly formed XML document comment for member 'F:_cef_settings_t.browser_subprocess_path'. -->
  10050. <!-- Discarding badly formed XML document comment for member 'F:_cef_settings_t.remote_debugging_port'. -->
  10051. <!-- Discarding badly formed XML document comment for member 'F:RT_PING'. -->
  10052. <!-- Discarding badly formed XML document comment for member 'F:UU_URL_SPECIAL_CHARS_EXCEPT_PATH_SEPARATORS'. -->
  10053. <!-- Discarding badly formed XML document comment for member 'F:_cef_pdf_print_settings_t.header_template'. -->
  10054. <!-- Discarding badly formed XML document comment for member 'M:CefExtensionHandler.OnBeforeBackgroundBrowser(scoped_refptr<CefExtension>,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefClient>*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStructBase<CefBrowserSettingsTraits>*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  10055. <!-- Discarding badly formed XML document comment for member 'M:CefMediaRouter.GetSource(CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  10056. <!-- Discarding badly formed XML document comment for member 'M:CefRequestContext.LoadExtension(CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefDictionaryValue>,scoped_refptr<CefExtensionHandler>)'. -->
  10057. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserHost.DownloadImage(CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean,System.UInt32,System.Boolean,scoped_refptr<CefDownloadImageCallback>)'. -->
  10058. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserHost.SendDevToolsMessage(System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt64)'. -->
  10059. </members>
  10060. </doc>