CefSharp.Core.Runtime.xml 512 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. "CefSharp.Core.Runtime"
  5. </assembly>
  6. <members>
  7. <member name="P:CefSharp.Core.PostData.HasExcludedElements">
  8. <summary>
  9. Returns true if the underlying POST data includes elements that are not
  10. represented by this IPostData object (for example, multi-part file upload
  11. data). Modifying IPostData objects with excluded elements may result in
  12. the request failing.
  13. </summary>
  14. </member>
  15. <member name="M:CefSharp.Core.PostData.CreatePostDataElement">
  16. <summary>
  17. Create a new <see cref="T:CefSharp.IPostDataElement" /> instance
  18. </summary>
  19. <returns>PostDataElement</returns>
  20. </member>
  21. <member name="M:CefSharp.Core.PostData.RemoveElements">
  22. <summary>
  23. Remove all existing post data elements.
  24. </summary>
  25. </member>
  26. <member name="M:CefSharp.Core.PostData.RemoveElement(CefSharp.IPostDataElement)">
  27. <summary>
  28. Remove the specified <see cref="T:CefSharp.IPostDataElement" />.
  29. </summary>
  30. <param name="element">element to be removed.</param>
  31. <returns> Returns true if the add succeeds.</returns>
  32. </member>
  33. <member name="M:CefSharp.Core.PostData.AddElement(CefSharp.IPostDataElement)">
  34. <summary>
  35. Add the specified <see cref="T:CefSharp.IPostDataElement" />.
  36. </summary>
  37. <param name="element">element to be added.</param>
  38. <returns>Returns true if the add succeeds.</returns>
  39. </member>
  40. <member name="P:CefSharp.Core.PostData.Elements">
  41. <summary>
  42. Retrieve the post data elements.
  43. </summary>
  44. </member>
  45. <member name="P:CefSharp.Core.PostData.IsReadOnly">
  46. <summary>
  47. Returns true if this object is read-only.
  48. </summary>
  49. </member>
  50. <member name="M:CefSharp.Core.PostData.#ctor">
  51. <summary>
  52. Initializes a new instance of the PostData class.
  53. </summary>
  54. </member>
  55. <member name="M:CefSharp.Core.PostData.ThrowIfReadOnly">
  56. <summary>
  57. Throw exception if Readonly
  58. </summary>
  59. <exception cref="T:System.Exception">Thrown when an exception error condition occurs.</exception>
  60. </member>
  61. <member name="M:CefSharp.Core.PostData.Dispose">
  62. <summary>
  63. Destructor.
  64. </summary>
  65. </member>
  66. <member name="M:CefSharp.Core.PostData.Finalize">
  67. <summary>
  68. Finalizer.
  69. </summary>
  70. </member>
  71. <member name="T:CefSharp.Core.PostData">
  72. <summary>
  73. Form Post Data
  74. </summary>
  75. <seealso cref="!:T:IPostData" />
  76. </member>
  77. <member name="M:CefSharp.Core.PopupFeatures.#ctor(CefPopupFeatures!System.Runtime.CompilerServices.IsConst*)">
  78. <summary>
  79. Constructor.
  80. </summary>
  81. <param name="popupFeatures">The popup features.</param>
  82. </member>
  83. <member name="T:CefSharp.Core.PopupFeatures">
  84. <summary>
  85. Class representing popup window features.
  86. </summary>
  87. <exclude />
  88. </member>
  89. <member name="T:CefSharp.Core.NativeMethodWrapper">
  90. <exclude />
  91. </member>
  92. <member name="M:CefSharp.Core.Cef.PostAction(CefSharp.CefThreadIds,System.Action)">
  93. <summary>
  94. Post an action for execution on the specified thread.
  95. </summary>
  96. <param name="threadId">thread id</param>
  97. <param name="action">action to execute</param>
  98. <returns>bool</returns>
  99. </member>
  100. <member name="M:CefSharp.Core.Cef.PostDelayedAction(CefSharp.CefThreadIds,System.Action,System.Int32)">
  101. <summary>
  102. Post an action for delayed execution on the specified thread.
  103. </summary>
  104. <param name="threadId">thread id</param>
  105. <param name="action">action to execute</param>
  106. <param name="delayInMs">delay in ms</param>
  107. <returns>bool</returns>
  108. </member>
  109. <member name="M:CefSharp.Core.Cef.WaitForBrowsersToClose(System.Int32)">
  110. <summary>
  111. Helper method to ensure all ChromiumWebBrowser instances have been
  112. closed/disposed, should be called before Cef.Shutdown.
  113. Disposes all remaning ChromiumWebBrowser instances
  114. then waits for CEF to release it's remaning CefBrowser instances.
  115. Finally a small delay of 50ms to allow for CEF to finish it's cleanup.
  116. Should only be called when MultiThreadedMessageLoop = true;
  117. (Hasn't been tested when when CEF integrates into main message loop).
  118. </summary>
  119. <param name="timeoutInMiliseconds">The timeout in miliseconds.</param>
  120. </member>
  121. <member name="M:CefSharp.Core.Cef.WaitForBrowsersToClose">
  122. <summary>
  123. Helper method to ensure all ChromiumWebBrowser instances have been
  124. closed/disposed, should be called before Cef.Shutdown.
  125. Disposes all remaning ChromiumWebBrowser instances
  126. then waits for CEF to release it's remaning CefBrowser instances.
  127. Finally a small delay of 50ms to allow for CEF to finish it's cleanup.
  128. Should only be called when MultiThreadedMessageLoop = true;
  129. (Hasn't been tested when when CEF integrates into main message loop).
  130. </summary>
  131. </member>
  132. <member name="M:CefSharp.Core.Cef.EnableWaitForBrowsersToClose">
  133. <summary>
  134. WaitForBrowsersToClose is not enabled by default, call this method
  135. before Cef.Initialize to enable. If you aren't calling Cef.Initialize
  136. explicitly then this should be called before creating your first
  137. ChromiumWebBrowser instance.
  138. </summary>
  139. </member>
  140. <member name="M:CefSharp.Core.Cef.GetMimeType(System.String)">
  141. <summary>
  142. Returns the mime type for the specified file extension or an empty string if unknown.
  143. </summary>
  144. <param name="extension">file extension</param>
  145. <returns>Returns the mime type for the specified file extension or an empty string if unknown.</returns>
  146. </member>
  147. <member name="M:CefSharp.Core.Cef.SetCrashKeyValue(System.String,System.String)">
  148. <summary>
  149. Sets or clears a specific key-value pair from the crash metadata.
  150. </summary>
  151. </member>
  152. <member name="P:CefSharp.Core.Cef.CrashReportingEnabled">
  153. <summary>
  154. Crash reporting is configured using an INI-style config file named
  155. crash_reporter.cfg. This file must be placed next to
  156. the main application executable. File contents are as follows:
  157. # Comments start with a hash character and must be on their own line.
  158. [Config]
  159. ProductName=&lt;Value of the "prod" crash key; defaults to "cef"&gt;
  160. ProductVersion=&lt;Value of the "ver" crash key; defaults to the CEF version&gt;
  161. AppName=&lt;Windows only; App-specific folder name component for storing crash
  162. information; default to "CEF"&gt;
  163. ExternalHandler=&lt;Windows only; Name of the external handler exe to use
  164. instead of re-launching the main exe; default to empty&gt;
  165. ServerURL=&lt;crash server URL; default to empty&gt;
  166. RateLimitEnabled=&lt;True if uploads should be rate limited; default to true&gt;
  167. MaxUploadsPerDay=&lt;Max uploads per 24 hours, used if rate limit is enabled;
  168. default to 5&gt;
  169. MaxDatabaseSizeInMb=&lt;Total crash report disk usage greater than this value
  170. will cause older reports to be deleted; default to 20&gt;
  171. MaxDatabaseAgeInDays=&lt;Crash reports older than this value will be deleted;
  172. default to 5&gt;
  173. [CrashKeys]
  174. my_key1=&lt;small|medium|large&gt;
  175. my_key2=&lt;small|medium|large&gt;
  176. Config section:
  177. If "ProductName" and/or "ProductVersion" are set then the specified values
  178. will be included in the crash dump metadata.
  179. If "AppName" is set on Windows then crash report information (metrics,
  180. database and dumps) will be stored locally on disk under the
  181. "C:\Users\[CurrentUser]\AppData\Local\[AppName]\User Data" folder.
  182. If "ExternalHandler" is set on Windows then the specified exe will be
  183. launched as the crashpad-handler instead of re-launching the main process
  184. exe. The value can be an absolute path or a path relative to the main exe
  185. directory.
  186. If "ServerURL" is set then crashes will be uploaded as a multi-part POST
  187. request to the specified URL. Otherwise, reports will only be stored locally
  188. on disk.
  189. If "RateLimitEnabled" is set to true then crash report uploads will be rate
  190. limited as follows:
  191. 1. If "MaxUploadsPerDay" is set to a positive value then at most the
  192. specified number of crashes will be uploaded in each 24 hour period.
  193. 2. If crash upload fails due to a network or server error then an
  194. incremental backoff delay up to a maximum of 24 hours will be applied for
  195. retries.
  196. 3. If a backoff delay is applied and "MaxUploadsPerDay" is &gt; 1 then the
  197. "MaxUploadsPerDay" value will be reduced to 1 until the client is
  198. restarted. This helps to avoid an upload flood when the network or
  199. server error is resolved.
  200. If "MaxDatabaseSizeInMb" is set to a positive value then crash report storage
  201. on disk will be limited to that size in megabytes. For example, on Windows
  202. each dump is about 600KB so a "MaxDatabaseSizeInMb" value of 20 equates to
  203. about 34 crash reports stored on disk.
  204. If "MaxDatabaseAgeInDays" is set to a positive value then crash reports older
  205. than the specified age in days will be deleted.
  206. CrashKeys section:
  207. Any number of crash keys can be specified for use by the application. Crash
  208. key values will be truncated based on the specified size (small = 63 bytes,
  209. medium = 252 bytes, large = 1008 bytes). The value of crash keys can be set
  210. from any thread or process using the Cef.SetCrashKeyValue function. These
  211. key/value pairs will be sent to the crash server along with the crash dump
  212. file. Medium and large values will be chunked for submission. For example,
  213. if your key is named "mykey" then the value will be broken into ordered
  214. chunks and submitted using keys named "mykey-1", "mykey-2", etc.
  215. </summary>
  216. <returns>Returns true if crash reporting is enabled.</returns>
  217. </member>
  218. <member name="M:CefSharp.Core.Cef.ColorSetARGB(System.UInt32,System.UInt32,System.UInt32,System.UInt32)">
  219. <summary>
  220. Helper function (wrapper around the CefColorSetARGB macro) which combines
  221. the 4 color components into an uint32 for use with BackgroundColor property
  222. </summary>
  223. <param name="a">Alpha</param>
  224. <param name="r">Red</param>
  225. <param name="g">Green</param>
  226. <param name="b">Blue</param>
  227. <returns>Returns the color.</returns>
  228. </member>
  229. <member name="M:CefSharp.Core.Cef.GetGlobalRequestContext">
  230. <summary>
  231. Gets the Global Request Context. Make sure to Dispose of this object when finished.
  232. The earlier possible place to access the IRequestContext is in IBrowserProcessHandler.OnContextInitialized.
  233. Alternative use the ChromiumWebBrowser BrowserInitialized (OffScreen) or IsBrowserInitializedChanged (WinForms/WPF) events.
  234. </summary>
  235. <returns>Returns the global request context or null if the RequestContext has not been initialized yet.</returns>
  236. </member>
  237. <member name="M:CefSharp.Core.Cef.CurrentlyOnThread(CefSharp.CefThreadIds)">
  238. <summary>
  239. Returns true if called on the specified CEF thread.
  240. </summary>
  241. <returns>Returns true if called on the specified thread.</returns>
  242. </member>
  243. <member name="M:CefSharp.Core.Cef.EnableHighDPISupport">
  244. <summary>
  245. Call during process startup to enable High-DPI support on Windows 7 or newer.
  246. Older versions of Windows should be left DPI-unaware because they do not
  247. support DirectWrite and GDI fonts are kerned very badly.
  248. </summary>
  249. </member>
  250. <member name="M:CefSharp.Core.Cef.ClearSchemeHandlerFactories">
  251. <summary>
  252. Clear all scheme handler factories registered with the global request context.
  253. Returns false on error. This function may be called on any thread in the browser process.
  254. Using this function is equivalent to calling Cef.GetGlobalRequestContext().ClearSchemeHandlerFactories().
  255. </summary>
  256. <returns>Returns false on error.</returns>
  257. </member>
  258. <member name="M:CefSharp.Core.Cef.ShutdownWithoutChecks">
  259. <summary>
  260. This method should only be used by advanced users, if you're unsure then use Cef.Shutdown().
  261. This function should be called on the main application thread to shut down
  262. the CEF browser process before the application exits. This method simply obtains a lock
  263. and calls the native CefShutdown method, only IsInitialized is checked. All ChromiumWebBrowser
  264. instances MUST be Disposed of before calling this method. If calling this method results in a crash
  265. or hangs then you're likely hanging on to some unmanaged resources or haven't closed all of your browser
  266. instances
  267. </summary>
  268. </member>
  269. <member name="M:CefSharp.Core.Cef.Shutdown">
  270. <summary>
  271. Shuts down CefSharp and the underlying CEF infrastructure. This method is safe to call multiple times; it will only
  272. shut down CEF on the first call (all subsequent calls will be ignored).
  273. This method should be called on the main application thread to shut down the CEF browser process before the application exits.
  274. If you are Using CefSharp.OffScreen then you must call this explicitly before your application exits or it will hang.
  275. This method must be called on the same thread as Initialize. If you don't call Shutdown explicitly then CefSharp.Wpf and CefSharp.WinForms
  276. versions will do their best to call Shutdown for you, if your application is having trouble closing then call thus explicitly.
  277. </summary>
  278. </member>
  279. <member name="M:CefSharp.Core.Cef.PreShutdown">
  280. <summary>
  281. Called prior to calling Cef.Shutdown, this diposes of any remaning
  282. ChromiumWebBrowser instances. In WPF this is used from Dispatcher.ShutdownStarted
  283. to release the unmanaged resources held by the ChromiumWebBrowser instances.
  284. Generally speaking you don't need to call this yourself.
  285. </summary>
  286. </member>
  287. <member name="M:CefSharp.Core.Cef.GetGlobalCookieManager(CefSharp.ICompletionCallback)">
  288. <summary>
  289. Returns the global cookie manager. By default data will be stored at CefSettings.CachePath if specified or in memory otherwise.
  290. Using this method is equivalent to calling Cef.GetGlobalRequestContext().GetCookieManager()
  291. The cookie managers storage is created in an async fashion, whilst this method may return a cookie manager instance,
  292. there may be a short delay before you can Get/Write cookies.
  293. To be sure the cookie manager has been initialized use one of the following
  294. - Access the ICookieManager after ICompletionCallback.OnComplete has been called
  295. - Access the ICookieManager instance in IBrowserProcessHandler.OnContextInitialized.
  296. - Use the ChromiumWebBrowser BrowserInitialized (OffScreen) or IsBrowserInitializedChanged (WinForms/WPF) events.
  297. </summary>
  298. <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>
  299. <returns>A the global cookie manager or null if the RequestContext has not yet been initialized.</returns>
  300. </member>
  301. <member name="M:CefSharp.Core.Cef.GetGlobalCookieManager">
  302. <summary>
  303. Returns the global cookie manager. By default data will be stored at CefSettings.CachePath if specified or in memory otherwise.
  304. Using this method is equivalent to calling Cef.GetGlobalRequestContext().GetCookieManager()
  305. The cookie managers storage is created in an async fashion, whilst this method may return a cookie manager instance,
  306. there may be a short delay before you can Get/Write cookies.
  307. To be sure the cookie manager has been initialized use one of the following
  308. - Use the GetGlobalCookieManager(ICompletionCallback) overload and access the ICookieManager after
  309. ICompletionCallback.OnComplete has been called.
  310. - Access the ICookieManager instance in IBrowserProcessHandler.OnContextInitialized.
  311. - Use the ChromiumWebBrowser BrowserInitialized (OffScreen) or IsBrowserInitializedChanged (WinForms/WPF) events.
  312. </summary>
  313. <returns>A the global cookie manager or null if the RequestContext has not yet been initialized.</returns>
  314. </member>
  315. <member name="M:CefSharp.Core.Cef.ClearCrossOriginWhitelist">
  316. <summary>Remove all entries from the cross-origin access whitelist.</summary>
  317. <remarks>
  318. Remove all entries from the cross-origin access whitelist. Returns false if
  319. the whitelist cannot be accessed.
  320. </remarks>
  321. </member>
  322. <member name="M:CefSharp.Core.Cef.RemoveCrossOriginWhitelistEntry(System.String,System.String,System.String,System.Boolean)">
  323. <summary>Remove entry from cross-origin whitelist</summary>
  324. <param name="sourceOrigin">The origin allowed to be accessed by the target protocol/domain.</param>
  325. <param name="targetProtocol">The target protocol allowed to access the source origin.</param>
  326. <param name="targetDomain">The optional target domain allowed to access the source origin.</param>
  327. <param name="allowTargetSubdomains">If set to true would allow a blah.example.com if the
  328. <paramref name="targetDomain" /> was set to example.com
  329. </param>
  330. <remarks>
  331. Remove an entry from the cross-origin access whitelist. Returns false if
  332. <paramref name="sourceOrigin" /> is invalid or the whitelist cannot be accessed.
  333. </remarks>
  334. </member>
  335. <member name="M:CefSharp.Core.Cef.AddCrossOriginWhitelistEntry(System.String,System.String,System.String,System.Boolean)">
  336. <summary>Add an entry to the cross-origin whitelist.</summary>
  337. <param name="sourceOrigin">The origin allowed to be accessed by the target protocol/domain.</param>
  338. <param name="targetProtocol">The target protocol allowed to access the source origin.</param>
  339. <param name="targetDomain">The optional target domain allowed to access the source origin.</param>
  340. <param name="allowTargetSubdomains">If set to true would allow a blah.example.com if the
  341. <paramref name="targetDomain" /> was set to example.com
  342. </param>
  343. <returns>Returns false if is invalid or the whitelist cannot be accessed.</returns>
  344. <remarks>
  345. The same-origin policy restricts how scripts hosted from different origins
  346. (scheme + domain + port) can communicate. By default, scripts can only access
  347. resources with the same origin. Scripts hosted on the HTTP and HTTPS schemes
  348. (but no other schemes) can use the "Access-Control-Allow-Origin" header to
  349. allow cross-origin requests. For example, https://source.example.com can make
  350. XMLHttpRequest requests on http://target.example.com if the
  351. http://target.example.com request returns an "Access-Control-Allow-Origin:
  352. https://source.example.com" response header.
  353. Scripts in separate frames or iframes and hosted from the same protocol and
  354. domain suffix can execute cross-origin JavaScript if both pages set the
  355. document.domain value to the same domain suffix. For example,
  356. scheme://foo.example.com and scheme://bar.example.com can communicate using
  357. JavaScript if both domains set document.domain="example.com".
  358. This method is used to allow access to origins that would otherwise violate
  359. the same-origin policy. Scripts hosted underneath the fully qualified
  360. <paramref name="sourceOrigin" /> URL (like http://www.example.com) will be allowed access to
  361. all resources hosted on the specified <paramref name="targetProtocol" /> and <paramref name="targetDomain" />.
  362. If <paramref name="targetDomain" /> is non-empty and <paramref name="allowTargetSubdomains" /> if false only
  363. exact domain matches will be allowed. If <paramref name="targetDomain" /> contains a top-
  364. level domain component (like "example.com") and <paramref name="allowTargetSubdomains" /> is
  365. true sub-domain matches will be allowed. If <paramref name="targetDomain" /> is empty and
  366. <paramref name="allowTargetSubdomains" /> if true all domains and IP addresses will be
  367. allowed.
  368. This method cannot be used to bypass the restrictions on local or display
  369. isolated schemes. See the comments on <see cref="T:CefSharp.CefCustomScheme" /> for more
  370. information.
  371. This function may be called on any thread. Returns false if <paramref name="sourceOrigin" />
  372. is invalid or the whitelist cannot be accessed.
  373. </remarks>
  374. </member>
  375. <member name="M:CefSharp.Core.Cef.ExecuteProcess">
  376. <summary>
  377. This function should be called from the application entry point function to execute a secondary process.
  378. It can be used to run secondary processes from the browser client executable (default behavior) or
  379. from a separate executable specified by the CefSettings.browser_subprocess_path value.
  380. If called for the browser process (identified by no "type" command-line value) it will return immediately with a value of -1.
  381. If called for a recognized secondary process it will block until the process should exit and then return the process exit code.
  382. 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).
  383. </summary>
  384. </member>
  385. <member name="M:CefSharp.Core.Cef.DoMessageLoopWork">
  386. <summary>
  387. Perform a single iteration of CEF message loop processing.This function is
  388. provided for cases where the CEF message loop must be integrated into an
  389. existing application message loop. Use of this function is not recommended
  390. for most users; use CefSettings.MultiThreadedMessageLoop if possible (the default).
  391. When using this function care must be taken to balance performance
  392. against excessive CPU usage. It is recommended to enable the
  393. CefSettings.ExternalMessagePump option when using
  394. this function so that IBrowserProcessHandler.OnScheduleMessagePumpWork()
  395. callbacks can facilitate the scheduling process. This function should only be
  396. called on the main application thread and only if Cef.Initialize() is called
  397. with a CefSettings.MultiThreadedMessageLoop value of false. This function
  398. will not block.
  399. </summary>
  400. </member>
  401. <member name="M:CefSharp.Core.Cef.QuitMessageLoop">
  402. <summary>
  403. Quit the CEF message loop that was started by calling Cef.RunMessageLoop().
  404. This function should only be called on the main application thread and only
  405. if Cef.RunMessageLoop() was used.
  406. </summary>
  407. </member>
  408. <member name="M:CefSharp.Core.Cef.RunMessageLoop">
  409. <summary>
  410. Run the CEF message loop. Use this function instead of an application-
  411. provided message loop to get the best balance between performance and CPU
  412. usage. This function should only be called on the main application thread and
  413. only if Cef.Initialize() is called with a
  414. CefSettings.MultiThreadedMessageLoop value of false. This function will
  415. block until a quit message is received by the system.
  416. </summary>
  417. </member>
  418. <member name="M:CefSharp.Core.Cef.Initialize(CefSharp.Core.CefSettingsBase,System.Boolean,CefSharp.IApp)">
  419. <summary>
  420. Initializes CefSharp with user-provided settings.
  421. It's important to note that Initialize/Shutdown <strong>MUST</strong> be called on your main
  422. application thread (typically the UI thread). If you call them on different
  423. threads, your application will hang. See the documentation for Cef.Shutdown() for more details.
  424. </summary>
  425. <param name="cefSettings">CefSharp configuration settings.</param>
  426. <param name="performDependencyCheck">Check that all relevant dependencies avaliable, throws exception if any are missing</param>
  427. <param name="cefApp">Implement this interface to provide handler implementations. Null if you don't wish to handle these events</param>
  428. <returns>true if successful; otherwise, false.</returns>
  429. </member>
  430. <member name="M:CefSharp.Core.Cef.Initialize(CefSharp.Core.CefSettingsBase,System.Boolean,CefSharp.IBrowserProcessHandler)">
  431. <summary>
  432. Initializes CefSharp with user-provided settings.
  433. It's important to note that Initialize/Shutdown <strong>MUST</strong> be called on your main
  434. applicaiton thread (Typically the UI thead). If you call them on different
  435. threads, your application will hang. See the documentation for Cef.Shutdown() for more details.
  436. </summary>
  437. <param name="cefSettings">CefSharp configuration settings.</param>
  438. <param name="performDependencyCheck">Check that all relevant dependencies avaliable, throws exception if any are missing</param>
  439. <param name="browserProcessHandler">The handler for functionality specific to the browser process. Null if you don't wish to handle these events</param>
  440. <returns>true if successful; otherwise, false.</returns>
  441. </member>
  442. <member name="M:CefSharp.Core.Cef.Initialize(CefSharp.Core.CefSettingsBase,System.Boolean)">
  443. <summary>
  444. Initializes CefSharp with user-provided settings.
  445. It's important to note that Initialize/Shutdown <strong>MUST</strong> be called on your main
  446. application thread (typically the UI thread). If you call them on different
  447. threads, your application will hang. See the documentation for Cef.Shutdown() for more details.
  448. </summary>
  449. <param name="cefSettings">CefSharp configuration settings.</param>
  450. <param name="performDependencyCheck">Check that all relevant dependencies avaliable, throws exception if any are missing</param>
  451. <returns>true if successful; otherwise, false.</returns>
  452. </member>
  453. <member name="M:CefSharp.Core.Cef.Initialize(CefSharp.Core.CefSettingsBase)">
  454. <summary>
  455. Initializes CefSharp with user-provided settings.
  456. It's important to note that Initialize and Shutdown <strong>MUST</strong> be called on your main
  457. application thread (typically the UI thread). If you call them on different
  458. threads, your application will hang. See the documentation for Cef.Shutdown() for more details.
  459. </summary>
  460. <param name="cefSettings">CefSharp configuration settings.</param>
  461. <returns>true if successful; otherwise, false.</returns>
  462. </member>
  463. <member name="M:CefSharp.Core.Cef.ParseUrl(System.String)">
  464. <summary>
  465. Parse the specified url into its component parts.
  466. Uses a GURL to parse the Url. GURL is Google's URL parsing library.
  467. </summary>
  468. <param name="url">url</param>
  469. <returns>Returns null if the URL is empty or invalid.</returns>
  470. </member>
  471. <member name="P:CefSharp.Core.Cef.CefCommitHash">
  472. <summary>
  473. Gets a value that indicates the Git Hash for CEF version currently being used.
  474. </summary>
  475. <value>The Git Commit Hash</value>
  476. </member>
  477. <member name="P:CefSharp.Core.Cef.ChromiumVersion">
  478. <summary>Gets a value that indicates the Chromium version currently being used.</summary>
  479. <value>The Chromium version.</value>
  480. </member>
  481. <member name="P:CefSharp.Core.Cef.CefVersion">
  482. <summary>Gets a value that indicates the CEF version currently being used.</summary>
  483. <value>The CEF Version</value>
  484. </member>
  485. <member name="P:CefSharp.Core.Cef.CefSharpVersion">
  486. <summary>Gets a value that indicates the version of CefSharp currently being used.</summary>
  487. <value>The CefSharp version.</value>
  488. </member>
  489. <member name="P:CefSharp.Core.Cef.IsShutdown">
  490. <summary>Gets a value that indicates whether CefSharp was shutdown.</summary>
  491. <value>true if CefSharp was shutdown; otherwise, false.</value>
  492. </member>
  493. <member name="P:CefSharp.Core.Cef.IsInitialized">
  494. <summary>Gets a value that indicates whether CefSharp is initialized.</summary>
  495. <value>true if CefSharp is initialized; otherwise, false.</value>
  496. </member>
  497. <member name="T:CefSharp.Core.Cef">
  498. <summary>
  499. Global CEF methods are exposed through this class. e.g. CefInitalize maps to Cef.Initialize
  500. CEF API Doc https://magpcss.org/ceforum/apidocs3/projects/(default)/(_globals).html
  501. This class cannot be inherited.
  502. </summary>
  503. </member>
  504. <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;)">
  505. Create a new object with explicit response values.
  506. </member>
  507. <member name="M:CefStreamResourceHandler.#ctor(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefStreamReader&gt;)">
  508. Create a new object with default response values.
  509. </member>
  510. <member name="T:CefStreamResourceHandler">
  511. Implementation of the CefResourceHandler class for reading from a CefStream.
  512. </member>
  513. <member name="M:CefSharp.Core.CefSettingsBase.RegisterScheme(CefSharp.CefCustomScheme)">
  514. <summary>
  515. Registers a custom scheme using the provided settings.
  516. </summary>
  517. <param name="cefCustomScheme">The CefCustomScheme which provides the details about the scheme.</param>
  518. </member>
  519. <member name="P:CefSharp.Core.CefSettingsBase.CookieableSchemesExcludeDefaults">
  520. <summary>
  521. If CookieableSchemesExcludeDefaults is false the
  522. default schemes ("http", "https", "ws" and "wss") will also be supported.
  523. Specifying a CookieableSchemesList value and setting
  524. CookieableSchemesExcludeDefaults to true will disable all loading
  525. and saving of cookies for this manager. Can be overridden
  526. for individual RequestContext instances via the
  527. RequestContextSettings.CookieableSchemesList and
  528. RequestContextSettings.CookieableSchemesExcludeDefaults values.
  529. </summary>
  530. </member>
  531. <member name="P:CefSharp.Core.CefSettingsBase.CookieableSchemesList">
  532. <summary>
  533. Comma delimited list of schemes supported by the associated
  534. ICookieManager. If CookieableSchemesExcludeDefaults is false the
  535. default schemes ("http", "https", "ws" and "wss") will also be supported.
  536. Specifying a CookieableSchemesList value and setting
  537. CookieableSchemesExcludeDefaults to true will disable all loading
  538. and saving of cookies for this manager. Can be overridden
  539. for individual RequestContext instances via the
  540. RequestContextSettings.CookieableSchemesList and
  541. RequestContextSettings.CookieableSchemesExcludeDefaults values.
  542. </summary>
  543. </member>
  544. <member name="P:CefSharp.Core.CefSettingsBase.BackgroundColor">
  545. <summary>
  546. Background color used for the browser before a document is loaded and when no document color is specified. The alpha
  547. component must be either fully opaque (0xFF) or fully transparent (0x00). If the alpha component is fully opaque then the RGB
  548. components will be used as the background color. If the alpha component is fully transparent for a WinForms browser then the
  549. default value of opaque white be used. If the alpha component is fully transparent for a windowless (WPF/OffScreen) browser
  550. then transparent painting will be enabled.
  551. </summary>
  552. </member>
  553. <member name="P:CefSharp.Core.CefSettingsBase.AcceptLanguageList">
  554. <summary>
  555. Comma delimited ordered list of language codes without any whitespace that will be used in the "Accept-Language" HTTP header.
  556. May be set globally using the CefSettings.AcceptLanguageList value. If both values are empty then "en-US,en" will be used.
  557. </summary>
  558. </member>
  559. <member name="P:CefSharp.Core.CefSettingsBase.PersistUserPreferences">
  560. <summary>
  561. To persist user preferences as a JSON file in the cache path directory set this value to true. A CachePath value must also be
  562. specified to enable this feature. Also configurable using the "persist-user-preferences" command-line switch. Can be
  563. overridden for individual RequestContext instances via the RequestContextSettings.PersistUserPreferences value.
  564. </summary>
  565. </member>
  566. <member name="P:CefSharp.Core.CefSettingsBase.PersistSessionCookies">
  567. <summary>
  568. To persist session cookies (cookies without an expiry date or validity interval) by default when using the global cookie
  569. manager set this value to true. Session cookies are generally intended to be transient and most Web browsers do not persist
  570. them. A CachePath value must also be specified to enable this feature. Also configurable using the "persist-session-cookies"
  571. command-line switch. Can be overridden for individual RequestContext instances via the
  572. RequestContextSettings.PersistSessionCookies value.
  573. </summary>
  574. </member>
  575. <member name="P:CefSharp.Core.CefSettingsBase.WindowlessRenderingEnabled">
  576. <summary>
  577. Set to true (1) to enable windowless (off-screen) rendering support. Do not enable this value if the application does not use
  578. windowless rendering as it may reduce rendering performance on some systems.
  579. </summary>
  580. </member>
  581. <member name="P:CefSharp.Core.CefSettingsBase.UserAgent">
  582. <summary>
  583. Value that will be returned as the User-Agent HTTP header. If empty the default User-Agent string will be used. Also
  584. configurable using the "user-agent" command-line switch.
  585. </summary>
  586. </member>
  587. <member name="P:CefSharp.Core.CefSettingsBase.UncaughtExceptionStackSize">
  588. <summary>
  589. The number of stack trace frames to capture for uncaught exceptions. Specify a positive value to enable the
  590. CefRenderProcessHandler:: OnUncaughtException() callback. Specify 0 (default value) and OnUncaughtException() will not be
  591. called. Also configurable using the "uncaught-exception-stack-size" command-line switch.
  592. </summary>
  593. </member>
  594. <member name="P:CefSharp.Core.CefSettingsBase.RemoteDebuggingPort">
  595. <summary>
  596. Set to a value between 1024 and 65535 to enable remote debugging on the specified port. For example, if 8080 is specified the
  597. remote debugging URL will be http://localhost:8080. CEF can be remotely debugged from any CEF or Chrome browser window. Also
  598. configurable using the "remote-debugging-port" command-line switch.
  599. </summary>
  600. </member>
  601. <member name="P:CefSharp.Core.CefSettingsBase.UserAgentProduct">
  602. <summary>
  603. Value that will be inserted as the product portion of the default User-Agent string. If empty the Chromium product version
  604. will be used. If UserAgent is specified this value will be ignored. Also configurable using the "user-agent-product" command-
  605. line switch.
  606. </summary>
  607. </member>
  608. <member name="P:CefSharp.Core.CefSettingsBase.PackLoadingDisabled">
  609. <summary>
  610. Set to true to disable loading of pack files for resources and locales. A resource bundle handler must be provided for the
  611. browser and render processes via CefApp::GetResourceBundleHandler() if loading of pack files is disabled. Also configurable
  612. using the "disable-pack-loading" command- line switch.
  613. </summary>
  614. </member>
  615. <member name="P:CefSharp.Core.CefSettingsBase.JavascriptFlags">
  616. <summary>
  617. Custom flags that will be used when initializing the V8 JavaScript engine. The consequences of using custom flags may not be
  618. well tested. Also configurable using the "js-flags" command-line switch.
  619. </summary>
  620. </member>
  621. <member name="P:CefSharp.Core.CefSettingsBase.LogSeverity">
  622. <summary>
  623. The log severity. Only messages of this severity level or higher will be logged. When set to
  624. <see cref="F:CefSharp.LogSeverity.Disable" /> no messages will be written to the log file, but Fatal messages will still be
  625. output to stderr. Also configurable using the "log-severity" command-line switch with a value of "verbose", "info", "warning",
  626. "error", "fatal", "error-report" or "disable".
  627. </summary>
  628. </member>
  629. <member name="P:CefSharp.Core.CefSettingsBase.LogFile">
  630. <summary>
  631. 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
  632. a "debug.log" file will be written in the main executable directory. Also configurable using the"log-file" command- line
  633. switch.
  634. </summary>
  635. </member>
  636. <member name="P:CefSharp.Core.CefSettingsBase.ResourcesDirPath">
  637. <summary>
  638. The fully qualified path for the resources directory. If this value is empty the cef.pak and/or devtools_resources.pak files
  639. must be located in the module directory. Also configurable using the "resources-dir-path" command-line switch.
  640. </summary>
  641. </member>
  642. <member name="P:CefSharp.Core.CefSettingsBase.LocalesDirPath">
  643. <summary>
  644. The fully qualified path for the locales directory. If this value is empty the locales directory must be located in the
  645. module directory. If this value is non-empty then it must be an absolute path. Also configurable using the "locales-dir-path"
  646. command-line switch.
  647. </summary>
  648. </member>
  649. <member name="P:CefSharp.Core.CefSettingsBase.Locale">
  650. <summary>
  651. The locale string that will be passed to WebKit. If empty the default locale of "en-US" will be used. Also configurable using
  652. the "lang" command-line switch.
  653. </summary>
  654. </member>
  655. <member name="P:CefSharp.Core.CefSettingsBase.UserDataPath">
  656. <summary>
  657. The location where user data such as the Widevine CDM module and spell checking dictionary files will be stored on disk.
  658. If this value is empty then "Local Settings\Application Data\CEF\User Data" directory under the user profile directory
  659. will be used. If this value is non-empty then it must be an absolute path.
  660. </summary>
  661. </member>
  662. <member name="P:CefSharp.Core.CefSettingsBase.RootCachePath">
  663. <summary>
  664. The root directory that all CefSettings.CachePath and RequestContextSettings.CachePath values must have in common. If this
  665. value is empty and CefSettings.CachePath is non-empty then it will default to the CefSettings.CachePath value.
  666. If this value is non-empty then it must be an absolute path. Failure to set this value correctly may result in the sandbox
  667. blocking read/write access to the CachePath directory. NOTE: CefSharp does not implement the CHROMIUM SANDBOX. A non-empty
  668. RootCachePath can be used in conjuncation with an empty CefSettings.CachePath in instances where you would like browsers
  669. attached to the Global RequestContext (the default) created in "incognito mode" and instances created with a custom
  670. RequestContext using a disk based cache.
  671. </summary>
  672. </member>
  673. <member name="P:CefSharp.Core.CefSettingsBase.CachePath">
  674. <summary>
  675. The location where data for the global browser cache will be stored on disk. In this value is non-empty then it must be
  676. an absolute path that is must be either equal to or a child directory of CefSettings.RootCachePath (if RootCachePath is
  677. empty it will default to this value). If the value is empty then browsers will be created in "incognito mode" where
  678. in-memory caches are used for storage and no data is persisted to disk. HTML5 databases such as localStorage will only
  679. persist across sessions if a cache path is specified. Can be overridden for individual RequestContext instances via the
  680. RequestContextSettings.CachePath value.
  681. </summary>
  682. </member>
  683. <member name="P:CefSharp.Core.CefSettingsBase.BrowserSubprocessPath">
  684. <summary>
  685. The path to a separate executable that will be launched for sub-processes. By default the browser process executable is used.
  686. See the comments on Cef.ExecuteProcess() for details. If this value is non-empty then it must be an absolute path.
  687. Also configurable using the "browser-subprocess-path" command-line switch.
  688. Defaults to using the provided CefSharp.BrowserSubprocess.exe instance
  689. </summary>
  690. </member>
  691. <member name="P:CefSharp.Core.CefSettingsBase.MultiThreadedMessageLoop">
  692. <summary>
  693. Set to true to have the browser process message loop run in a separate thread. If false than the CefDoMessageLoopWork()
  694. function must be called from your application message loop. This option is only supported on Windows. The default value is
  695. true.
  696. </summary>
  697. </member>
  698. <member name="P:CefSharp.Core.CefSettingsBase.ExternalMessagePump">
  699. <summary>
  700. Set to true to control browser process main (UI) thread message pump scheduling via the
  701. IBrowserProcessHandler.OnScheduleMessagePumpWork callback. This option is recommended for use in combination with the
  702. Cef.DoMessageLoopWork() function in cases where the CEF message loop must be integrated into an existing application message
  703. loop (see additional comments and warnings on Cef.DoMessageLoopWork). Enabling this option is not recommended for most users;
  704. leave this option disabled and use either MultiThreadedMessageLoop (the default) if possible.
  705. </summary>
  706. </member>
  707. <member name="P:CefSharp.Core.CefSettingsBase.CommandLineArgsDisabled">
  708. <summary>
  709. Set to true to disable configuration of browser process features using standard CEF and Chromium command-line arguments.
  710. Configuration can still be specified using CEF data structures or by adding to CefCommandLineArgs.
  711. </summary>
  712. </member>
  713. <member name="P:CefSharp.Core.CefSettingsBase.ChromeRuntime">
  714. <summary>
  715. **Experimental**
  716. Set to true to enable use of the Chrome runtime in CEF. This feature is
  717. considered experimental and is not recommended for most users at this time.
  718. See issue https://bitbucket.org/chromiumembedded/cef/issues/2969/support-chrome-windows-with-cef-callbacks for details.
  719. </summary>
  720. </member>
  721. <member name="P:CefSharp.Core.CefSettingsBase.CefCommandLineArgs">
  722. <summary>
  723. Add custom command line argumens to this collection, they will be added in OnBeforeCommandLineProcessing. The
  724. CefSettings.CommandLineArgsDisabled value can be used to start with an empty command-line object. Any values specified in
  725. CefSettings that equate to command-line arguments will be set before this method is called.
  726. </summary>
  727. </member>
  728. <member name="P:CefSharp.Core.CefSettingsBase.CefCustomSchemes">
  729. <summary>
  730. Add Customs schemes to this collection.
  731. </summary>
  732. </member>
  733. <member name="M:CefSharp.Core.CefSettingsBase.Dispose">
  734. <summary>
  735. Destructor.
  736. </summary>
  737. </member>
  738. <member name="M:CefSharp.Core.CefSettingsBase.Finalize">
  739. <summary>
  740. Finalizer.
  741. </summary>
  742. </member>
  743. <member name="M:CefSharp.Core.CefSettingsBase.#ctor">
  744. <summary>
  745. Default Constructor.
  746. </summary>
  747. </member>
  748. <member name="F:CefSharp.Core.CefSettingsBase._cefCustomSchemes">
  749. <summary>
  750. CefCustomScheme collection
  751. </summary>
  752. </member>
  753. <member name="F:CefSharp.Core.CefSettingsBase._cefSettings">
  754. <summary>
  755. CefSettings unmanaged pointer
  756. </summary>
  757. </member>
  758. <member name="F:CefSharp.Core.CefSettingsBase._cefCommandLineArgs">
  759. <summary>
  760. Command Line Arguments Dictionary.
  761. </summary>
  762. </member>
  763. <member name="T:CefSharp.Core.CefSettingsBase">
  764. <summary>
  765. Initialization settings. Many of these and other settings can also configured using command-line switches.
  766. WPF/WinForms/OffScreen each have their own CefSettings implementation that sets
  767. relevant settings e.g. OffScreen starts with audio muted.
  768. </summary>
  769. </member>
  770. <member name="M:CefWriteJSON(scoped_refptr&lt;CefValue&gt;,cef_json_writer_options_t)">
  771. Generates a JSON string from the specified root |node| which should be a
  772. dictionary or list value. Returns an empty string on failure. This method
  773. requires exclusive access to |node| including any underlying data.
  774. </member>
  775. <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)">
  776. Parses the specified |json_string| and returns a dictionary or list
  777. representation. If JSON parsing fails this method returns NULL and populates
  778. |error_msg_out| with a formatted error message.
  779. </member>
  780. <member name="M:CefParseJSON(System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt32,cef_json_parser_options_t)">
  781. Parses the specified UTF8-encoded |json| buffer of size |json_size| and
  782. returns a dictionary or list representation. If JSON parsing fails this
  783. method returns NULL.
  784. </member>
  785. <member name="M:CefParseJSON(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_json_parser_options_t)">
  786. Parses the specified |json_string| and returns a dictionary or list
  787. representation. If JSON parsing fails this method returns NULL.
  788. </member>
  789. <member name="M:CefURIDecode(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean,cef_uri_unescape_rule_t)">
  790. Unescapes |text| and returns the result. Unescaping consists of looking for
  791. the exact pattern "%XX" where each X is a hex digit and converting to the
  792. character with the numerical value of those digits (e.g. "i%20=%203%3b"
  793. unescapes to "i = 3;"). If |convert_to_utf8| is true this function will
  794. attempt to interpret the initial decoded result as UTF-8. If the result is
  795. convertable into UTF-8 it will be returned as converted. Otherwise the
  796. initial decoded result will be returned. The |unescape_rule| parameter
  797. supports further customization the decoding process.
  798. </member>
  799. <member name="M:CefURIEncode(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean)">
  800. Escapes characters in |text| which are unsuitable for use as a query
  801. parameter value. Everything except alphanumerics and -_.!~*'() will be
  802. converted to "%XX". If |use_plus| is true spaces will change to "+". The
  803. result is basically the same as encodeURIComponent in Javacript.
  804. </member>
  805. <member name="M:CefBase64Decode(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  806. Decodes the base64 encoded string |data|. The returned value will be NULL if
  807. the decoding fails.
  808. </member>
  809. <member name="M:CefBase64Encode(System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt32)">
  810. Encodes |data| as a base64 string.
  811. </member>
  812. <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)">
  813. Get the extensions associated with the given mime type. This should be
  814. passed in lower case. There could be multiple extensions for a given mime
  815. type, like "html,htm" for "text/html", or "txt,text,html,..." for "text/*".
  816. Any existing elements in the provided vector will not be erased.
  817. </member>
  818. <member name="M:CefGetMimeType(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  819. Returns the mime type for the specified file extension or an empty string if
  820. unknown.
  821. </member>
  822. <member name="M:CefFormatUrlForSecurityDisplay(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  823. This is a convenience function for formatting a URL in a concise and human-
  824. friendly way to help users make security-related decisions (or in other
  825. circumstances when people need to distinguish sites, origins, or otherwise-
  826. simplified URLs from each other). Internationalized domain names (IDN) may
  827. be presented in Unicode if the conversion is considered safe. The returned
  828. value will (a) omit the path for standard schemes, excepting file and
  829. filesystem, and (b) omit the port if it is the default for the scheme. Do
  830. not use this for URLs which will be parsed or sent to other applications.
  831. </member>
  832. <member name="M:CefCreateURL(CefStructBase&lt;CefURLPartsTraits&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  833. Creates a URL from the specified |parts|, which must contain a non-empty
  834. spec or a non-empty host and path (at a minimum), but not both.
  835. Returns false if |parts| isn't initialized as described.
  836. </member>
  837. <member name="M:CefParseURL(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStructBase&lt;CefURLPartsTraits&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  838. Parse the specified |url| into its component parts.
  839. Returns false if the URL is empty or invalid.
  840. </member>
  841. <member name="M:CefSharp.Internals.CefUrlRequestClientAdapter.OnDownloadProgress(scoped_refptr&lt;CefURLRequest&gt;,System.Int64,System.Int64)">
  842. ref
  843. </member>
  844. <member name="T:CefSharp.Internals.CefUrlRequestClientAdapter">
  845. Interface that should be implemented by the CefUrlRequest client.
  846. The methods of this class will be called on the same thread that created
  847. the request unless otherwise documented.
  848. </member>
  849. <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;)">
  850. Called on the IO thread when the browser needs credentials from the user.
  851. |isProxy| indicates whether the host is a proxy server. |host| contains
  852. the hostname and |port| contains the port number. Return true to continue
  853. the request and call CefAuthCallback::Continue() when the authentication
  854. information is available. If the request has an associated browser/frame
  855. then returning false will result in a call to GetAuthCredentials on the
  856. CefRequestHandler associated with that browser, if any. Otherwise,
  857. returning false will cancel the request immediately. This method will only
  858. be called for requests initiated from the browser process.
  859. Called on the IO thread when the browser needs credentials from the user.
  860. |isProxy| indicates whether the host is a proxy server. |host| contains
  861. the hostname and |port| contains the port number. Return true to continue
  862. the request and call CefAuthCallback::Continue() when the authentication
  863. information is available. If the request has an associated browser/frame
  864. then returning false will result in a call to GetAuthCredentials on the
  865. CefRequestHandler associated with that browser, if any. Otherwise,
  866. returning false will cancel the request immediately. This method will only
  867. be called for requests initiated from the browser process.
  868. </member>
  869. <member name="M:CefURLRequestClient.OnDownloadData(scoped_refptr&lt;CefURLRequest&gt;,System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt32)">
  870. Called when some part of the response is read. |data| contains the current
  871. bytes received since the last call. This method will not be called if the
  872. UR_FLAG_NO_DOWNLOAD_DATA flag is set on the request.
  873. Called when some part of the response is read. |data| contains the current
  874. bytes received since the last call. This method will not be called if the
  875. UR_FLAG_NO_DOWNLOAD_DATA flag is set on the request.
  876. </member>
  877. <member name="M:CefURLRequestClient.OnDownloadProgress(scoped_refptr&lt;CefURLRequest&gt;,System.Int64,System.Int64)">
  878. Notifies the client of download progress. |current| denotes the number of
  879. bytes received up to the call and |total| is the expected total size of
  880. the response (or -1 if not determined).
  881. Notifies the client of download progress. |current| denotes the number of
  882. bytes received up to the call and |total| is the expected total size of
  883. the response (or -1 if not determined).
  884. </member>
  885. <member name="M:CefURLRequestClient.OnUploadProgress(scoped_refptr&lt;CefURLRequest&gt;,System.Int64,System.Int64)">
  886. Notifies the client of upload progress. |current| denotes the number of
  887. bytes sent so far and |total| is the total size of uploading data (or -1
  888. if chunked upload is enabled). This method will only be called if the
  889. UR_FLAG_REPORT_UPLOAD_PROGRESS flag is set on the request.
  890. Notifies the client of upload progress. |current| denotes the number of
  891. bytes sent so far and |total| is the total size of uploading data (or -1
  892. if chunked upload is enabled). This method will only be called if the
  893. UR_FLAG_REPORT_UPLOAD_PROGRESS flag is set on the request.
  894. </member>
  895. <member name="M:CefURLRequestClient.OnRequestComplete(scoped_refptr&lt;CefURLRequest&gt;)">
  896. Notifies the client that the request has completed. Use the
  897. CefURLRequest::GetRequestStatus method to determine if the request was
  898. successful or not.
  899. Notifies the client that the request has completed. Use the
  900. CefURLRequest::GetRequestStatus method to determine if the request was
  901. successful or not.
  902. </member>
  903. <member name="T:CefURLRequestClient">
  904. Interface that should be implemented by the CefURLRequest client. The
  905. methods of this class will be called on the same thread that created the
  906. request unless otherwise documented.
  907. Interface that should be implemented by the CefURLRequest client. The
  908. methods of this class will be called on the same thread that created the
  909. request unless otherwise documented.
  910. </member>
  911. <member name="M:CefURLRequest.Cancel">
  912. Cancel the request.
  913. Cancel the request.
  914. </member>
  915. <member name="M:CefURLRequest.ResponseWasCached">
  916. Returns true if the response body was served from the cache. This includes
  917. responses for which revalidation was required.
  918. Returns true if the response body was served from the cache. This includes
  919. responses for which revalidation was required.
  920. </member>
  921. <member name="M:CefURLRequest.GetResponse">
  922. Returns the response, or NULL if no response information is available.
  923. Response information will only be available after the upload has
  924. completed. The returned object is read-only and should not be modified.
  925. Returns the response, or NULL if no response information is available.
  926. Response information will only be available after the upload has
  927. completed. The returned object is read-only and should not be modified.
  928. </member>
  929. <member name="M:CefURLRequest.GetRequestError">
  930. Returns the request error if status is UR_CANCELED or UR_FAILED, or 0
  931. otherwise.
  932. Returns the request error if status is UR_CANCELED or UR_FAILED, or 0
  933. otherwise.
  934. </member>
  935. <member name="M:CefURLRequest.GetRequestStatus">
  936. Returns the request status.
  937. Returns the request status.
  938. </member>
  939. <member name="M:CefURLRequest.GetClient">
  940. Returns the client.
  941. Returns the client.
  942. </member>
  943. <member name="M:CefURLRequest.GetRequest">
  944. Returns the request object used to create this URL request. The returned
  945. object is read-only and should not be modified.
  946. Returns the request object used to create this URL request. The returned
  947. object is read-only and should not be modified.
  948. </member>
  949. <member name="M:CefURLRequest.Create(scoped_refptr&lt;CefRequest&gt;,scoped_refptr&lt;CefURLRequestClient&gt;,scoped_refptr&lt;CefRequestContext&gt;)">
  950. Create a new URL request that is not associated with a specific browser or
  951. frame. Use CefFrame::CreateURLRequest instead if you want the request to
  952. have this association, in which case it may be handled differently (see
  953. documentation on that method). A request created with this method may only
  954. originate from the browser process, and will behave as follows:
  955. - It may be intercepted by the client via CefResourceRequestHandler or
  956. CefSchemeHandlerFactory.
  957. - POST data may only contain only a single element of type PDE_TYPE_FILE
  958. or PDE_TYPE_BYTES.
  959. - If |request_context| is empty the global request context will be used.
  960. The |request| object will be marked as read-only after calling this
  961. method.
  962. Create a new URL request that is not associated with a specific browser or
  963. frame. Use CefFrame::CreateURLRequest instead if you want the request to
  964. have this association, in which case it may be handled differently (see
  965. documentation on that method). A request created with this method may only
  966. originate from the browser process, and will behave as follows:
  967. - It may be intercepted by the client via CefResourceRequestHandler or
  968. CefSchemeHandlerFactory.
  969. - POST data may only contain only a single element of type PDE_TYPE_FILE
  970. or PDE_TYPE_BYTES.
  971. - If |request_context| is empty the global request context will be used.
  972. The |request| object will be marked as read-only after calling this
  973. method.
  974. </member>
  975. <member name="T:CefURLRequest">
  976. Class used to make a URL request. URL requests are not associated with a
  977. browser instance so no CefClient callbacks will be executed. URL requests
  978. can be created on any valid CEF thread in either the browser or render
  979. process. Once created the methods of the URL request object must be accessed
  980. on the same thread that created it.
  981. Class used to make a URL request. URL requests are not associated with a
  982. browser instance so no CefClient callbacks will be executed. URL requests
  983. can be created on any valid CEF thread in either the browser or render
  984. process. Once created the methods of the URL request object must be accessed
  985. on the same thread that created it.
  986. </member>
  987. <member name="M:CefSharp.Internals.CefFrameWrapper.LoadRequest(CefSharp.IRequest)">
  988. Load the request represented by the |request| object.
  989. </member>
  990. <member name="T:CefSharp.Core.ManagedCefBrowserAdapter">
  991. <exclude />
  992. </member>
  993. <member name="P:CefSharp.Core.DragData.ImageHotspot">
  994. <summary>
  995. Get the image hotspot (drag start location relative to image dimensions).
  996. </summary>
  997. </member>
  998. <member name="P:CefSharp.Core.DragData.Image">
  999. <summary>
  1000. Get the image representation of drag data.
  1001. May return NULL if no image representation is available.
  1002. </summary>
  1003. </member>
  1004. <member name="P:CefSharp.Internals.CefImageWrapper.Width">
  1005. <summary>
  1006. Returns the image width in density independent pixel(DIP) units.
  1007. </summary>
  1008. </member>
  1009. <member name="M:CefSharp.Internals.CefImageWrapper.RemoveRepresentation(System.Single)">
  1010. <summary>
  1011. Removes the representation for scaleFactor.
  1012. </summary>
  1013. <param name="scaleFactor" />
  1014. <returns>true for success</returns>
  1015. </member>
  1016. <member name="M:CefSharp.Internals.CefImageWrapper.IsSame(CefSharp.IImage)">
  1017. <summary>
  1018. Returns true if this Image and that Image share the same underlying storage.
  1019. </summary>
  1020. <param name="that">image to compare</param>
  1021. <returns>returns true if share same underlying storage</returns>
  1022. </member>
  1023. <member name="P:CefSharp.Internals.CefImageWrapper.IsEmpty">
  1024. <summary>
  1025. Returns true if this Image is empty.
  1026. </summary>
  1027. <returns />
  1028. </member>
  1029. <member name="M:CefSharp.Internals.CefImageWrapper.HasRepresentation(System.Single)">
  1030. <summary>
  1031. Returns true if this image contains a representation for scaleFactor.
  1032. </summary>
  1033. <param name="scaleFactor" />
  1034. <returns />
  1035. </member>
  1036. <member name="P:CefSharp.Internals.CefImageWrapper.Height">
  1037. <summary>
  1038. Returns the image height in density independent pixel(DIP) units.
  1039. </summary>
  1040. </member>
  1041. <member name="M:CefSharp.Internals.CefImageWrapper.GetRepresentationInfo(System.Single,System.Single@,System.Int32@,System.Int32@)">
  1042. <summary>
  1043. Returns information for the representation that most closely matches scaleFactor.
  1044. </summary>
  1045. <param name="scaleFactor">scale factor</param>
  1046. <param name="actualScaleFactor">actual scale factor</param>
  1047. <param name="pixelWidth">pixel width</param>
  1048. <param name="pixelHeight">pixel height</param>
  1049. <returns>return if information found for scale factor</returns>
  1050. </member>
  1051. <member name="M:CefSharp.Internals.CefImageWrapper.GetAsPNG(System.Single,System.Boolean,System.Int32@,System.Int32@)">
  1052. <summary>
  1053. Returns the PNG representation that most closely matches scaleFactor.
  1054. </summary>
  1055. <param name="scaleFactor">scale factor</param>
  1056. <param name="withTransparency">is the PNG transparent</param>
  1057. <param name="pixelWidth">pixel width</param>
  1058. <param name="pixelHeight">pixel height</param>
  1059. <returns>A stream represending the PNG or null.</returns>
  1060. </member>
  1061. <member name="M:CefSharp.Internals.CefImageWrapper.GetAsJPEG(System.Single,System.Int32,System.Int32@,System.Int32@)">
  1062. <summary>
  1063. Returns the JPEG representation that most closely matches scaleFactor.
  1064. </summary>
  1065. <param name="scaleFactor">scale factor</param>
  1066. <param name="quality">image quality</param>
  1067. <param name="pixelWidth">pixel width</param>
  1068. <param name="pixelHeight">pixel height</param>
  1069. <returns>A stream representing the JPEG or null.</returns>
  1070. </member>
  1071. <member name="M:CefSharp.Internals.CefImageWrapper.GetAsBitmap(System.Single,CefSharp.Enums.ColorType,CefSharp.Enums.AlphaType,System.Int32@,System.Int32@)">
  1072. <summary>
  1073. Returns the bitmap representation that most closely matches scaleFactor.
  1074. </summary>
  1075. <param name="scaleFactor">scale factor</param>
  1076. <param name="colorType">color type</param>
  1077. <param name="alphaType">alpha type</param>
  1078. <param name="pixelWidth">pixel width</param>
  1079. <param name="pixelHeight">pixel height</param>
  1080. <returns>A stream represending the bitmap or null.</returns>
  1081. </member>
  1082. <member name="M:CefApp.GetRenderProcessHandler">
  1083. Return the handler for functionality specific to the render process. This
  1084. method is called on the render process main thread.
  1085. </member>
  1086. <member name="M:CefApp.GetBrowserProcessHandler">
  1087. Return the handler for functionality specific to the browser process. This
  1088. method is called on multiple threads in the browser process.
  1089. </member>
  1090. <member name="M:CefApp.GetResourceBundleHandler">
  1091. Return the handler for resource bundle events. If
  1092. cef_settings_t.pack_loading_disabled is true a handler must be returned.
  1093. If no handler is returned resources will be loaded from pack files. This
  1094. method is called by the browser and render processes on multiple threads.
  1095. </member>
  1096. <member name="M:CefApp.OnRegisterCustomSchemes(CefSchemeRegistrar*)">
  1097. Provides an opportunity to register custom schemes. Do not keep a
  1098. reference to the |registrar| object. This method is called on the main
  1099. thread for each process and the registered schemes should be the same
  1100. across all processes.
  1101. </member>
  1102. <member name="M:CefApp.OnBeforeCommandLineProcessing(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefCommandLine&gt;)">
  1103. Provides an opportunity to view and/or modify command-line arguments
  1104. before processing by CEF and Chromium. The |process_type| value will be
  1105. empty for the browser process. Do not keep a reference to the
  1106. CefCommandLine object passed to this method. The
  1107. cef_settings_t.command_line_args_disabled value can be used to start with
  1108. an empty command-line object. Any values specified in CefSettings that
  1109. equate to command-line arguments will be set before this method is called.
  1110. Be cautious when using this method to modify command-line arguments for
  1111. non-browser processes as this may result in undefined behavior including
  1112. crashes.
  1113. </member>
  1114. <member name="T:CefApp">
  1115. Implement this interface to provide handler implementations. Methods will be
  1116. called by the process and/or thread indicated.
  1117. </member>
  1118. <member name="M:CefEnableHighDPISupport">
  1119. Call during process startup to enable High-DPI support on Windows 7 or
  1120. newer. Older versions of Windows should be left DPI-unaware because they do
  1121. not support DirectWrite and GDI fonts are kerned very badly.
  1122. </member>
  1123. <member name="M:CefSetOSModalLoop(System.Boolean)">
  1124. Set to true before calling Windows APIs like TrackPopupMenu that enter a
  1125. modal message loop. Set to false after exiting the modal message loop.
  1126. </member>
  1127. <member name="M:CefQuitMessageLoop">
  1128. Quit the CEF message loop that was started by calling CefRunMessageLoop().
  1129. This function should only be called on the main application thread and only
  1130. if CefRunMessageLoop() was used.
  1131. </member>
  1132. <member name="M:CefRunMessageLoop">
  1133. Run the CEF message loop. Use this function instead of an application-
  1134. provided message loop to get the best balance between performance and CPU
  1135. usage. This function should only be called on the main application thread
  1136. and only if CefInitialize() is called with a
  1137. cef_settings_t.multi_threaded_message_loop value of false. This function
  1138. will block until a quit message is received by the system.
  1139. </member>
  1140. <member name="M:CefDoMessageLoopWork">
  1141. Perform a single iteration of CEF message loop processing. This function is
  1142. provided for cases where the CEF message loop must be integrated into an
  1143. existing application message loop. Use of this function is not recommended
  1144. for most users; use either the CefRunMessageLoop() function or
  1145. cef_settings_t.multi_threaded_message_loop if possible. When using this
  1146. function care must be taken to balance performance against excessive CPU
  1147. usage. It is recommended to enable the cef_settings_t.external_message_pump
  1148. option when using this function so that
  1149. CefBrowserProcessHandler::OnScheduleMessagePumpWork() callbacks can
  1150. facilitate the scheduling process. This function should only be called on
  1151. the main application thread and only if CefInitialize() is called with a
  1152. cef_settings_t.multi_threaded_message_loop value of false. This function
  1153. will not block.
  1154. </member>
  1155. <member name="M:CefShutdown">
  1156. This function should be called on the main application thread to shut down
  1157. the CEF browser process before the application exits.
  1158. </member>
  1159. <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*)">
  1160. This function should be called on the main application thread to initialize
  1161. the CEF browser process. The |application| parameter may be empty. A return
  1162. value of true indicates that it succeeded and false indicates that it
  1163. failed. The |windows_sandbox_info| parameter is only used on Windows and may
  1164. be NULL (see cef_sandbox_win.h for details).
  1165. </member>
  1166. <member name="M:CefExecuteProcess(CefMainArgs!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefApp&gt;,System.Void*)">
  1167. This function should be called from the application entry point function to
  1168. execute a secondary process. It can be used to run secondary processes from
  1169. the browser client executable (default behavior) or from a separate
  1170. executable specified by the cef_settings_t.browser_subprocess_path value. If
  1171. called for the browser process (identified by no "type" command-line value)
  1172. it will return immediately with a value of -1. If called for a recognized
  1173. secondary process it will block until the process should exit and then
  1174. return the process exit code. The |application| parameter may be empty. The
  1175. |windows_sandbox_info| parameter is only used on Windows and may be NULL
  1176. (see cef_sandbox_win.h for details).
  1177. </member>
  1178. <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;)">
  1179. Return a new resource handler instance to handle the request or an empty
  1180. reference to allow default handling of the request. |browser| and |frame|
  1181. will be the browser window and frame respectively that originated the
  1182. request or NULL if the request did not originate from a browser window
  1183. (for example, if the request came from CefURLRequest). The |request|
  1184. object passed to this method cannot be modified.
  1185. Return a new resource handler instance to handle the request or an empty
  1186. reference to allow default handling of the request. |browser| and |frame|
  1187. will be the browser window and frame respectively that originated the
  1188. request or NULL if the request did not originate from a browser window
  1189. (for example, if the request came from CefURLRequest). The |request|
  1190. object passed to this method cannot be modified.
  1191. </member>
  1192. <member name="T:CefSchemeHandlerFactory">
  1193. Class that creates CefResourceHandler instances for handling scheme
  1194. requests. The methods of this class will always be called on the IO thread.
  1195. Class that creates CefResourceHandler instances for handling scheme
  1196. requests. The methods of this class will always be called on the IO thread.
  1197. </member>
  1198. <member name="M:CefSchemeRegistrar.AddCustomScheme(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32)">
  1199. Register a custom scheme. This method should not be called for the
  1200. built-in HTTP, HTTPS, FILE, FTP, ABOUT and DATA schemes.
  1201. See cef_scheme_options_t for possible values for |options|.
  1202. This function may be called on any thread. It should only be called once
  1203. per unique |scheme_name| value. If |scheme_name| is already registered or
  1204. if an error occurs this method will return false.
  1205. Register a custom scheme. This method should not be called for the
  1206. built-in HTTP, HTTPS, FILE, FTP, ABOUT and DATA schemes.
  1207. See cef_scheme_options_t for possible values for |options|.
  1208. This function may be called on any thread. It should only be called once
  1209. per unique |scheme_name| value. If |scheme_name| is already registered or
  1210. if an error occurs this method will return false.
  1211. </member>
  1212. <member name="T:CefSchemeRegistrar">
  1213. Class that manages custom scheme registrations.
  1214. Class that manages custom scheme registrations.
  1215. </member>
  1216. <member name="M:CefClearSchemeHandlerFactories">
  1217. Clear all scheme handler factories registered with the global request
  1218. context. Returns false on error. This function may be called on any thread
  1219. in the browser process. Using this function is equivalent to calling
  1220. CefRequestContext::GetGlobalContext()-&gt;ClearSchemeHandlerFactories().
  1221. Clear all scheme handler factories registered with the global request
  1222. context. Returns false on error. This function may be called on any thread
  1223. in the browser process. Using this function is equivalent to calling
  1224. CefRequestContext::GetGlobalContext()-&gt;ClearSchemeHandlerFactories().
  1225. </member>
  1226. <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;)">
  1227. Register a scheme handler factory with the global request context. An empty
  1228. |domain_name| value for a standard scheme will cause the factory to match
  1229. all domain names. The |domain_name| value will be ignored for non-standard
  1230. schemes. If |scheme_name| is a built-in scheme and no handler is returned by
  1231. |factory| then the built-in scheme handler factory will be called. If
  1232. |scheme_name| is a custom scheme then you must also implement the
  1233. CefApp::OnRegisterCustomSchemes() method in all processes. This function may
  1234. be called multiple times to change or remove the factory that matches the
  1235. specified |scheme_name| and optional |domain_name|. Returns false if an
  1236. error occurs. This function may be called on any thread in the browser
  1237. process. Using this function is equivalent to calling
  1238. CefRequestContext::GetGlobalContext()-&gt;RegisterSchemeHandlerFactory().
  1239. Register a scheme handler factory with the global request context. An empty
  1240. |domain_name| value for a standard scheme will cause the factory to match
  1241. all domain names. The |domain_name| value will be ignored for non-standard
  1242. schemes. If |scheme_name| is a built-in scheme and no handler is returned by
  1243. |factory| then the built-in scheme handler factory will be called. If
  1244. |scheme_name| is a custom scheme then you must also implement the
  1245. CefApp::OnRegisterCustomSchemes() method in all processes. This function may
  1246. be called multiple times to change or remove the factory that matches the
  1247. specified |scheme_name| and optional |domain_name|. Returns false if an
  1248. error occurs. This function may be called on any thread in the browser
  1249. process. Using this function is equivalent to calling
  1250. CefRequestContext::GetGlobalContext()-&gt;RegisterSchemeHandlerFactory().
  1251. </member>
  1252. <member name="M:CefResourceBundleHandler.GetDataResourceForScale(System.Int32,cef_scale_factor_t,System.Void**!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.UInt32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1253. Called to retrieve data for the specified |resource_id| nearest the scale
  1254. factor |scale_factor|. To provide the resource data set |data| and
  1255. |data_size| to the data pointer and size respectively and return true. To
  1256. use the default resource data return false. The resource data will not be
  1257. copied and must remain resident in memory. Include cef_pack_resources.h
  1258. for a listing of valid resource ID values.
  1259. </member>
  1260. <member name="M:CefResourceBundleHandler.GetDataResource(System.Int32,System.Void**!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.UInt32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1261. Called to retrieve data for the specified scale independent |resource_id|.
  1262. To provide the resource data set |data| and |data_size| to the data
  1263. pointer and size respectively and return true. To use the default resource
  1264. data return false. The resource data will not be copied and must remain
  1265. resident in memory. Include cef_pack_resources.h for a listing of valid
  1266. resource ID values.
  1267. </member>
  1268. <member name="M:CefResourceBundleHandler.GetLocalizedString(System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1269. Called to retrieve a localized translation for the specified |string_id|.
  1270. To provide the translation set |string| to the translation string and
  1271. return true. To use the default translation return false. Include
  1272. cef_pack_strings.h for a listing of valid string ID values.
  1273. </member>
  1274. <member name="T:CefResourceBundleHandler">
  1275. Class used to implement a custom resource bundle interface. See CefSettings
  1276. for additional options related to resource bundle loading. The methods of
  1277. this class may be called on multiple threads.
  1278. </member>
  1279. <member name="M:CefRenderProcessHandler.OnProcessMessageReceived(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,cef_process_id_t,scoped_refptr&lt;CefProcessMessage&gt;)">
  1280. Called when a new message is received from a different process. Return
  1281. true if the message was handled or false otherwise. It is safe to keep a
  1282. reference to |message| outside of this callback.
  1283. </member>
  1284. <member name="M:CefRenderProcessHandler.OnFocusedNodeChanged(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefDOMNode&gt;)">
  1285. Called when a new node in the the browser gets focus. The |node| value may
  1286. be empty if no specific node has gained focus. The node object passed to
  1287. this method represents a snapshot of the DOM at the time this method is
  1288. executed. DOM objects are only valid for the scope of this method. Do not
  1289. keep references to or attempt to access any DOM objects outside the scope
  1290. of this method.
  1291. </member>
  1292. <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;)">
  1293. Called for global uncaught exceptions in a frame. Execution of this
  1294. callback is disabled by default. To enable set
  1295. cef_settings_t.uncaught_exception_stack_size &gt; 0.
  1296. </member>
  1297. <member name="M:CefRenderProcessHandler.OnContextReleased(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefV8Context&gt;)">
  1298. Called immediately before the V8 context for a frame is released. No
  1299. references to the context should be kept after this method is called.
  1300. </member>
  1301. <member name="M:CefRenderProcessHandler.OnContextCreated(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefV8Context&gt;)">
  1302. Called immediately after the V8 context for a frame has been created. To
  1303. retrieve the JavaScript 'window' object use the CefV8Context::GetGlobal()
  1304. method. V8 handles can only be accessed from the thread on which they are
  1305. created. A task runner for posting tasks on the associated thread can be
  1306. retrieved via the CefV8Context::GetTaskRunner() method.
  1307. </member>
  1308. <member name="M:CefRenderProcessHandler.GetLoadHandler">
  1309. Return the handler for browser load status events.
  1310. </member>
  1311. <member name="M:CefRenderProcessHandler.OnBrowserDestroyed(scoped_refptr&lt;CefBrowser&gt;)">
  1312. Called before a browser is destroyed.
  1313. </member>
  1314. <member name="M:CefRenderProcessHandler.OnBrowserCreated(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefDictionaryValue&gt;)">
  1315. Called after a browser has been created. When browsing cross-origin a new
  1316. browser will be created before the old browser with the same identifier is
  1317. destroyed. |extra_info| is an optional read-only value originating from
  1318. CefBrowserHost::CreateBrowser(), CefBrowserHost::CreateBrowserSync(),
  1319. CefLifeSpanHandler::OnBeforePopup() or
  1320. CefBrowserView::CreateBrowserView().
  1321. </member>
  1322. <member name="M:CefRenderProcessHandler.OnWebKitInitialized">
  1323. Called after WebKit has been initialized.
  1324. </member>
  1325. <member name="T:CefRenderProcessHandler">
  1326. Class used to implement render process callbacks. The methods of this class
  1327. will be called on the render process main thread (TID_RENDERER) unless
  1328. otherwise indicated.
  1329. </member>
  1330. <member name="M:CefBrowserProcessHandler.GetDefaultClient">
  1331. Return the default client for use with a newly created browser window. If
  1332. null is returned the browser will be unmanaged (no callbacks will be
  1333. executed for that browser) and application shutdown will be blocked until
  1334. the browser window is closed manually. This method is currently only used
  1335. with the chrome runtime.
  1336. </member>
  1337. <member name="M:CefBrowserProcessHandler.OnBeforeChildProcessLaunch(scoped_refptr&lt;CefCommandLine&gt;)">
  1338. Called before a child process is launched. Will be called on the browser
  1339. process UI thread when launching a render process and on the browser
  1340. process IO thread when launching a GPU process. Provides an opportunity to
  1341. modify the child process command line. Do not keep a reference to
  1342. |command_line| outside of this method.
  1343. </member>
  1344. <member name="M:CefBrowserProcessHandler.OnContextInitialized">
  1345. Called on the browser process UI thread immediately after the CEF context
  1346. has been initialized.
  1347. </member>
  1348. <member name="T:CefBrowserProcessHandler">
  1349. Class used to implement browser process callbacks. The methods of this class
  1350. will be called on the browser process main thread unless otherwise
  1351. indicated.
  1352. </member>
  1353. <member name="M:CefCommandLine.PrependWrapper(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1354. Insert a command before the current command.
  1355. Common for debuggers, like "valgrind" or "gdb --args".
  1356. </member>
  1357. <member name="M:CefCommandLine.AppendArgument(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1358. Add an argument to the end of the command line.
  1359. </member>
  1360. <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)">
  1361. Get the remaining command line arguments.
  1362. </member>
  1363. <member name="M:CefCommandLine.HasArguments">
  1364. True if there are remaining command line arguments.
  1365. </member>
  1366. <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)">
  1367. Add a switch with the specified value to the end of the command line.
  1368. </member>
  1369. <member name="M:CefCommandLine.AppendSwitch(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1370. Add a switch to the end of the command line. If the switch has no value
  1371. pass an empty value string.
  1372. </member>
  1373. <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)">
  1374. Returns the map of switch names and values. If a switch has no value an
  1375. empty string is returned.
  1376. </member>
  1377. <member name="M:CefCommandLine.GetSwitchValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1378. Returns the value associated with the given switch. If the switch has no
  1379. value or isn't present this method returns the empty string.
  1380. </member>
  1381. <member name="M:CefCommandLine.HasSwitch(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1382. Returns true if the command line contains the given switch.
  1383. </member>
  1384. <member name="M:CefCommandLine.HasSwitches">
  1385. Returns true if the command line has switches.
  1386. </member>
  1387. <member name="M:CefCommandLine.SetProgram(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1388. Set the program part of the command line string (the first item).
  1389. </member>
  1390. <member name="M:CefCommandLine.GetProgram">
  1391. Get the program part of the command line string (the first item).
  1392. </member>
  1393. <member name="M:CefCommandLine.GetCommandLineString">
  1394. Constructs and returns the represented command line string. Use this
  1395. method cautiously because quoting behavior is unclear.
  1396. </member>
  1397. <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)">
  1398. Retrieve the original command line string as a vector of strings.
  1399. The argv array:
  1400. `{ program, [(--|-|/)switch[=value]]*, [--], [argument]* }`
  1401. </member>
  1402. <member name="M:CefCommandLine.Reset">
  1403. Reset the command-line switches and arguments but leave the program
  1404. component unchanged.
  1405. </member>
  1406. <member name="M:CefCommandLine.InitFromString(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  1407. Initialize the command line with the string returned by calling
  1408. GetCommandLineW(). This method is only supported on Windows.
  1409. </member>
  1410. <member name="M:CefCommandLine.InitFromArgv(System.Int32,System.SByte!System.Runtime.CompilerServices.IsSignUnspecifiedByte!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsConst*)">
  1411. Initialize the command line with the specified |argc| and |argv| values.
  1412. The first argument must be the name of the program. This method is only
  1413. supported on non-Windows platforms.
  1414. </member>
  1415. <member name="M:CefCommandLine.Copy">
  1416. Returns a writable copy of this object.
  1417. </member>
  1418. <member name="M:CefCommandLine.IsReadOnly">
  1419. Returns true if the values of this object are read-only. Some APIs may
  1420. expose read-only objects.
  1421. </member>
  1422. <member name="M:CefCommandLine.IsValid">
  1423. Returns true if this object is valid. Do not call any other methods if
  1424. this function returns false.
  1425. </member>
  1426. <member name="M:CefCommandLine.GetGlobalCommandLine">
  1427. Returns the singleton global CefCommandLine object. The returned object
  1428. will be read-only.
  1429. </member>
  1430. <member name="M:CefCommandLine.CreateCommandLine">
  1431. Create a new CefCommandLine instance.
  1432. </member>
  1433. <member name="T:CefCommandLine">
  1434. Class used to create and/or parse command line arguments. Arguments with
  1435. "--", "-" and, on Windows, "/" prefixes are considered switches. Switches
  1436. will always precede any arguments without switch prefixes. Switches can
  1437. optionally have a value specified using the "=" delimiter (e.g.
  1438. "-switch=value"). An argument of "--" will terminate switch parsing with all
  1439. subsequent tokens, regardless of prefix, being interpreted as non-switch
  1440. arguments. Switch names should be lowercase ASCII and will be converted to
  1441. such if necessary. Switch values will retain the original case and UTF8
  1442. encoding. This class can be used before CefInitialize() is called.
  1443. </member>
  1444. <member name="M:CefSharp.Core.RequestContext.UnWrap">
  1445. <summary>
  1446. Gets the inner most instance
  1447. </summary>
  1448. <returns>current instance</returns>
  1449. </member>
  1450. <member name="M:CefSharp.Core.RequestContext.LoadExtension(System.String,System.String,CefSharp.IExtensionHandler)">
  1451. <summary>
  1452. Load an extension. If extension resources will be read from disk using the default load implementation then rootDirectoy
  1453. should be the absolute path to the extension resources directory and manifestJson should be null.
  1454. If extension resources will be provided by the client (e.g. via IRequestHandler and/or IExtensionHandler) then rootDirectory
  1455. should be a path component unique to the extension (if not absolute this will be internally prefixed with the PK_DIR_RESOURCES path)
  1456. and manifestJson should contain the contents that would otherwise be read from the "manifest.json" file on disk.
  1457. The loaded extension will be accessible in all contexts sharing the same storage (HasExtension returns true).
  1458. However, only the context on which this method was called is considered the loader (DidLoadExtension returns true) and only the
  1459. loader will receive IRequestContextHandler callbacks for the extension. <see cref="M:CefSharp.IExtensionHandler.OnExtensionLoaded(CefSharp.IExtension)" /> will be
  1460. called on load success or <see cref="M:CefSharp.IExtensionHandler.OnExtensionLoadFailed(CefSharp.CefErrorCode)" /> will be called on load failure.
  1461. 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)" />
  1462. will be called to create the background browser. See that method for additional information about background scripts.
  1463. For visible extension views the client application should evaluate the manifest to determine the correct extension URL to load and then pass
  1464. that URL to the IBrowserHost.CreateBrowser* function after the extension has loaded. For example, the client can look for the "browser_action"
  1465. manifest key as documented at https://developer.chrome.com/extensions/browserAction. Extension URLs take the form "chrome-extension:///".
  1466. Browsers that host extensions differ from normal browsers as follows: - Can access chrome.* JavaScript APIs if allowed by the manifest.
  1467. Visit chrome://extensions-support for the list of extension APIs currently supported by CEF. - Main frame navigation to non-extension
  1468. content is blocked.
  1469. - Pinch-zooming is disabled.
  1470. - <see cref="P:CefSharp.IBrowserHost.Extension" /> returns the hosted extension.
  1471. - CefBrowserHost::IsBackgroundHost returns true for background hosts. See https://developer.chrome.com/extensions for extension implementation and usage documentation.
  1472. </summary>
  1473. <param name="rootDirectory">If extension resources will be read from disk using the default load implementation then rootDirectoy
  1474. should be the absolute path to the extension resources directory and manifestJson should be null</param>
  1475. <param name="manifestJson">If extension resources will be provided by the client then rootDirectory should be a path component unique to the extension
  1476. and manifestJson should contain the contents that would otherwise be read from the manifest.json file on disk</param>
  1477. <param name="handler">handle events related to browser extensions</param>
  1478. </member>
  1479. <member name="M:CefSharp.Core.RequestContext.HasExtension(System.String)">
  1480. <summary>
  1481. Returns true if this context has access to the extension identified by extensionId.
  1482. This may not be the context that was used to load the extension (see DidLoadExtension).
  1483. This method must be called on the CEF UI thread.
  1484. </summary>
  1485. <param name="extensionId">extension id</param>
  1486. <returns>Returns true if this context has access to the extension identified by extensionId</returns>
  1487. <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
  1488. <see cref="M:CefSharp.IBrowserProcessHandler.OnContextInitialized" /> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
  1489. executed on the CEF UI thread, so can be called directly.
  1490. When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
  1491. application thread will be the CEF UI thread.</remarks>
  1492. </member>
  1493. <member name="M:CefSharp.Core.RequestContext.GetExtensions(System.Collections.Generic.IList`1{System.String}@)">
  1494. <summary>
  1495. Retrieve the list of all extensions that this context has access to (see HasExtension).
  1496. <paramref name="extensionIds" /> will be populated with the list of extension ID values.
  1497. This method must be called on the CEF UI thread.
  1498. </summary>
  1499. <param name="extensionIds">output a list of extensions Ids</param>
  1500. <returns>returns true on success otherwise false</returns>
  1501. <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
  1502. <see cref="M:CefSharp.IBrowserProcessHandler.OnContextInitialized" /> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
  1503. executed on the CEF UI thread, so can be called directly.
  1504. When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
  1505. application thread will be the CEF UI thread.</remarks>
  1506. </member>
  1507. <member name="M:CefSharp.Core.RequestContext.GetExtension(System.String)">
  1508. <summary>
  1509. Returns the extension matching extensionId or null if no matching extension is accessible in this context (see HasExtension).
  1510. This method must be called on the CEF UI thread.
  1511. </summary>
  1512. <param name="extensionId">extension Id</param>
  1513. <returns>Returns the extension matching extensionId or null if no matching extension is accessible in this context</returns>
  1514. <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
  1515. <see cref="M:CefSharp.IBrowserProcessHandler.OnContextInitialized" /> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
  1516. executed on the CEF UI thread, so can be called directly.
  1517. When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
  1518. application thread will be the CEF UI thread.</remarks>
  1519. </member>
  1520. <member name="M:CefSharp.Core.RequestContext.DidLoadExtension(System.String)">
  1521. <summary>
  1522. 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).
  1523. This method must be called on the CEF UI thread.
  1524. </summary>
  1525. <returns>Returns true if this context was used to load the extension identified by extensionId</returns>
  1526. <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
  1527. <see cref="M:CefSharp.IBrowserProcessHandler.OnContextInitialized" /> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
  1528. executed on the CEF UI thread, so can be called directly.
  1529. When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
  1530. application thread will be the CEF UI thread.</remarks>
  1531. </member>
  1532. <member name="M:CefSharp.Core.RequestContext.ResolveHostAsync(System.Uri)">
  1533. <summary>
  1534. Attempts to resolve origin to a list of associated IP addresses.
  1535. </summary>
  1536. <param name="origin">host name to resolve</param>
  1537. <returns>A task that represents the Resoolve Host operation. The value of the TResult parameter contains ResolveCallbackResult.</returns>
  1538. </member>
  1539. <member name="M:CefSharp.Core.RequestContext.CloseAllConnections(CefSharp.ICompletionCallback)">
  1540. <summary>
  1541. Clears all active and idle connections that Chromium currently has.
  1542. This is only recommended if you have released all other CEF objects but
  1543. don't yet want to call Cef.Shutdown().
  1544. </summary>
  1545. <param name="callback">If is non-NULL it will be executed on the CEF UI thread after
  1546. completion. This param is optional</param>
  1547. </member>
  1548. <member name="M:CefSharp.Core.RequestContext.ClearHttpAuthCredentials(CefSharp.ICompletionCallback)">
  1549. <summary>
  1550. Clears all HTTP authentication credentials that were added as part of handling
  1551. <see cref="M:CefSharp.IRequestHandler.GetAuthCredentials(CefSharp.IWebBrowser,CefSharp.IBrowser,System.String,System.Boolean,System.String,System.Int32,System.String,System.String,CefSharp.IAuthCallback)" />.
  1552. </summary>
  1553. <param name="callback">If is non-NULL it will be executed on the CEF UI thread after
  1554. completion. This param is optional</param>
  1555. </member>
  1556. <member name="M:CefSharp.Core.RequestContext.ClearCertificateExceptions(CefSharp.ICompletionCallback)">
  1557. <summary>
  1558. Clears all certificate exceptions that were added as part of handling
  1559. <see cref="M:CefSharp.IRequestHandler.OnCertificateError(CefSharp.IWebBrowser,CefSharp.IBrowser,CefSharp.CefErrorCode,System.String,CefSharp.ISslInfo,CefSharp.IRequestCallback)" />. If you call this it is
  1560. recommended that you also call <see cref="M:CefSharp.IRequestContext.CloseAllConnections(CefSharp.ICompletionCallback)" /> or you risk not
  1561. being prompted again for server certificates if you reconnect quickly.
  1562. </summary>
  1563. <param name="callback">If is non-NULL it will be executed on the CEF UI thread after
  1564. completion. This param is optional</param>
  1565. </member>
  1566. <member name="M:CefSharp.Core.RequestContext.SetPreference(System.String,System.Object,System.String@)">
  1567. <summary>
  1568. Set the value associated with preference name. If value is null the
  1569. preference will be restored to its default value. If setting the preference
  1570. fails then error will be populated with a detailed description of the
  1571. problem. This method must be called on the CEF UI thread.
  1572. Preferences set via the command-line usually cannot be modified.
  1573. </summary>
  1574. <param name="name">preference key</param>
  1575. <param name="value">preference value</param>
  1576. <param name="error">out error</param>
  1577. <returns>Returns true if the value is set successfully and false otherwise.</returns>
  1578. <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
  1579. <see cref="M:CefSharp.IBrowserProcessHandler.OnContextInitialized" /> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
  1580. executed on the CEF UI thread, so can be called directly.
  1581. When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
  1582. application thread will be the CEF UI thread.</remarks>
  1583. </member>
  1584. <member name="M:CefSharp.Core.RequestContext.CanSetPreference(System.String)">
  1585. <summary>
  1586. Returns true if the preference with the specified name can be modified
  1587. using SetPreference. As one example preferences set via the command-line
  1588. usually cannot be modified. This method must be called on the CEF UI thread.
  1589. </summary>
  1590. <param name="name">preference key</param>
  1591. <returns>Returns true if the preference with the specified name can be modified
  1592. using SetPreference</returns>
  1593. <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
  1594. <see cref="M:CefSharp.IBrowserProcessHandler.OnContextInitialized" /> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
  1595. executed on the CEF UI thread, so can be called directly.
  1596. When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
  1597. application thread will be the CEF UI thread.</remarks>
  1598. </member>
  1599. <member name="M:CefSharp.Core.RequestContext.GetAllPreferences(System.Boolean)">
  1600. <summary>
  1601. Returns all preferences as a dictionary. The returned
  1602. object contains a copy of the underlying preference values and
  1603. modifications to the returned object will not modify the underlying
  1604. preference values. This method must be called on the browser process UI
  1605. thread.
  1606. </summary>
  1607. <param name="includeDefaults">If true then
  1608. preferences currently at their default value will be included.</param>
  1609. <returns>Preferences (dictionary can have sub dictionaries)</returns>
  1610. </member>
  1611. <member name="M:CefSharp.Core.RequestContext.GetPreference(System.String)">
  1612. <summary>
  1613. Returns the value for the preference with the specified name. Returns
  1614. NULL if the preference does not exist. The returned object contains a copy
  1615. of the underlying preference value and modifications to the returned object
  1616. will not modify the underlying preference value. This method must be called
  1617. on the CEF UI thread.
  1618. </summary>
  1619. <param name="name">preference name</param>
  1620. <returns>Returns the value for the preference with the specified name</returns>
  1621. <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
  1622. <see cref="M:CefSharp.IBrowserProcessHandler.OnContextInitialized" /> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
  1623. executed on the CEF UI thread, so can be called directly.
  1624. When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
  1625. application thread will be the CEF UI thread.</remarks>
  1626. </member>
  1627. <member name="M:CefSharp.Core.RequestContext.HasPreference(System.String)">
  1628. <summary>
  1629. Returns true if a preference with the specified name exists. This method
  1630. must be called on the CEF UI thread.
  1631. </summary>
  1632. <param name="name">name of preference</param>
  1633. <returns>bool if the preference exists</returns>
  1634. <remarks>Use Cef.UIThreadTaskFactory to execute this method if required,
  1635. <see cref="M:CefSharp.IBrowserProcessHandler.OnContextInitialized" /> and ChromiumWebBrowser.IsBrowserInitializedChanged are both
  1636. executed on the CEF UI thread, so can be called directly.
  1637. When CefSettings.MultiThreadedMessageLoop == false (the default is true) then the main
  1638. application thread will be the CEF UI thread.</remarks>
  1639. </member>
  1640. <member name="P:CefSharp.Core.RequestContext.CachePath">
  1641. <summary>
  1642. Returns the cache path for this object. If empty an "incognito mode"
  1643. in-memory cache is being used.
  1644. </summary>
  1645. </member>
  1646. <member name="M:CefSharp.Core.RequestContext.ClearSchemeHandlerFactories">
  1647. <summary>
  1648. Clear all registered scheme handler factories.
  1649. </summary>
  1650. <returns>Returns false on error.</returns>
  1651. </member>
  1652. <member name="M:CefSharp.Core.RequestContext.RegisterSchemeHandlerFactory(System.String,System.String,CefSharp.ISchemeHandlerFactory)">
  1653. <summary>
  1654. Register a scheme handler factory for the specified schemeName and optional domainName.
  1655. An empty domainName value for a standard scheme will cause the factory to match all domain
  1656. names. The domainName value will be ignored for non-standard schemes. If schemeName is
  1657. a built-in scheme and no handler is returned by factory then the built-in scheme handler
  1658. factory will be called. If schemeName is a custom scheme then you must also implement the
  1659. IApp.OnRegisterCustomSchemes() method in all processes. This function may be called multiple
  1660. times to change or remove the factory that matches the specified schemeName and optional
  1661. domainName.
  1662. </summary>
  1663. <param name="schemeName">Scheme Name</param>
  1664. <param name="domainName">Optional domain name</param>
  1665. <param name="factory">Scheme handler factory</param>
  1666. <returns>Returns false if an error occurs.</returns>
  1667. </member>
  1668. <member name="P:CefSharp.Core.RequestContext.IsGlobal">
  1669. <summary>
  1670. Returns true if this object is the global context. The global context is
  1671. used by default when creating a browser or URL request with a NULL context
  1672. argument.
  1673. </summary>
  1674. </member>
  1675. <member name="M:CefSharp.Core.RequestContext.GetCookieManager(CefSharp.ICompletionCallback)">
  1676. <summary>
  1677. Returns the default cookie manager for this object. This will be the global
  1678. cookie manager if this object is the global request context.
  1679. </summary>
  1680. <param name="callback">If callback is non-NULL it will be executed asnychronously on the CEF IO thread
  1681. after the manager's storage has been initialized.</param>
  1682. <returns>Returns the default cookie manager for this object</returns>
  1683. </member>
  1684. <member name="M:CefSharp.Core.RequestContext.IsSharingWith(CefSharp.IRequestContext)">
  1685. <summary>
  1686. Returns true if this object is sharing the same storage as the specified context.
  1687. </summary>
  1688. <param name="context">context to compare</param>
  1689. <returns>Returns true if same storage</returns>
  1690. </member>
  1691. <member name="M:CefSharp.Core.RequestContext.IsSame(CefSharp.IRequestContext)">
  1692. <summary>
  1693. Returns true if this object is pointing to the same context object.
  1694. </summary>
  1695. <param name="context">context to compare</param>
  1696. <returns>Returns true if the same</returns>
  1697. </member>
  1698. <member name="M:CefSharp.Core.RequestContext.CreateContext(CefSharp.IRequestContext,CefSharp.IRequestContextHandler)">
  1699. <summary>
  1700. Creates a new context object that shares storage with other and uses an
  1701. optional handler.
  1702. </summary>
  1703. <param name="other">shares storage with this RequestContext</param>
  1704. <param name="requestContextHandler">optional requestContext handler</param>
  1705. <returns>Returns a new RequestContext</returns>
  1706. </member>
  1707. <member name="M:CefSharp.Core.RequestContext.#ctor(CefSharp.IRequestContext)">
  1708. Creates a new context object that shares storage with | other | and uses an optional | handler | .
  1709. </member>
  1710. <member name="T:CefSharp.Core.RequestContext">
  1711. <summary>
  1712. A request context provides request handling for a set of related browser objects.
  1713. A request context is specified when creating a new browser object via the CefBrowserHost
  1714. static factory methods. Browser objects with different request contexts will never be
  1715. hosted in the same render process. Browser objects with the same request context may or
  1716. may not be hosted in the same render process depending on the process model.
  1717. Browser objects created indirectly via the JavaScript window.open function or targeted
  1718. links will share the same render process and the same request context as the source browser.
  1719. When running in single-process mode there is only a single render process (the main process)
  1720. and so all browsers created in single-process mode will share the same request context.
  1721. This will be the first request context passed into a CefBrowserHost static factory method
  1722. and all other request context objects will be ignored.
  1723. </summary>
  1724. </member>
  1725. <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)">
  1726. Called on the browser process IO thread before a resource request is
  1727. initiated. The |browser| and |frame| values represent the source of the
  1728. request, and may be NULL for requests originating from service workers or
  1729. CefURLRequest. |request| represents the request contents and cannot be
  1730. modified in this callback. |is_navigation| will be true if the resource
  1731. request is a navigation. |is_download| will be true if the resource
  1732. request is a download. |request_initiator| is the origin (scheme + domain)
  1733. of the page that initiated the request. Set |disable_default_handling| to
  1734. true to disable default handling of the request, in which case it will
  1735. need to be handled via CefResourceRequestHandler::GetResourceHandler or it
  1736. will be canceled. To allow the resource load to proceed with default
  1737. handling return NULL. To specify a handler for the resource return a
  1738. CefResourceRequestHandler object. This method will not be called if the
  1739. client associated with |browser| returns a non-NULL value from
  1740. CefRequestHandler::GetResourceRequestHandler for the same request
  1741. (identified by CefRequest::GetIdentifier).
  1742. </member>
  1743. <member name="M:CefRequestContextHandler.OnRequestContextInitialized(scoped_refptr&lt;CefRequestContext&gt;)">
  1744. Called on the browser process UI thread immediately after the request
  1745. context has been initialized.
  1746. </member>
  1747. <member name="T:CefRequestContextHandler">
  1748. Implement this interface to provide handler implementations. The handler
  1749. instance will not be released until all objects related to the context have
  1750. been destroyed.
  1751. </member>
  1752. <member name="P:CefSharp.Core.RequestContextSettings.CookieableSchemesExcludeDefaults">
  1753. <summary>
  1754. If CookieableSchemesExcludeDefaults is false the
  1755. default schemes ("http", "https", "ws" and "wss") will also be supported.
  1756. Specifying a CookieableSchemesList value and setting
  1757. CookieableSchemesExcludeDefaults to true will disable all loading
  1758. and saving of cookies for this manager. This value will be ignored if
  1759. <see cref="P:CefSharp.Core.RequestContextSettings.CachePath" /> matches the <see cref="!:CefSettingsBase.CachePath" /> value.
  1760. </summary>
  1761. </member>
  1762. <member name="P:CefSharp.Core.RequestContextSettings.CookieableSchemesList">
  1763. <summary>
  1764. Comma delimited list of schemes supported by the associated
  1765. ICookieManager. If CookieableSchemesExcludeDefaults is false the
  1766. default schemes ("http", "https", "ws" and "wss") will also be supported.
  1767. Specifying a CookieableSchemesList value and setting
  1768. CookieableSchemesExcludeDefaults to true will disable all loading
  1769. and saving of cookies for this manager. This value will be ignored if
  1770. <see cref="P:CefSharp.Core.RequestContextSettings.CachePath" /> matches the <see cref="!:CefSettingsBase.CachePath" /> value.
  1771. </summary>
  1772. </member>
  1773. <member name="P:CefSharp.Core.RequestContextSettings.AcceptLanguageList">
  1774. <summary>
  1775. Comma delimited ordered list of language codes without any whitespace that
  1776. will be used in the "Accept-Language" HTTP header. Can be set globally
  1777. using the CefSettings.accept_language_list value or overridden on a per-
  1778. browser basis using the BrowserSettings.AcceptLanguageList value. If
  1779. all values are empty then "en-US,en" will be used. This value will be
  1780. ignored if CachePath matches the CefSettings.CachePath value.
  1781. </summary>
  1782. </member>
  1783. <member name="P:CefSharp.Core.RequestContextSettings.CachePath">
  1784. <summary>
  1785. The location where cache data for this request context will be stored on
  1786. disk. If this value is non-empty then it must be an absolute path that is
  1787. either equal to or a child directory of CefSettings.RootCachePath.
  1788. If the value is empty then browsers will be created in "incognito mode"
  1789. where in-memory caches are used for storage and no data is persisted to disk.
  1790. HTML5 databases such as localStorage will only persist across sessions if a
  1791. cache path is specified. To share the global browser cache and related
  1792. configuration set this value to match the CefSettings.CachePath value.
  1793. </summary>
  1794. </member>
  1795. <member name="P:CefSharp.Core.RequestContextSettings.PersistUserPreferences">
  1796. <summary>
  1797. To persist user preferences as a JSON file in the cache path directory set
  1798. this value to true. Can be set globally using the
  1799. CefSettings.PersistUserPreferences value. This value will be ignored if
  1800. CachePath is empty or if it matches the CefSettings.CachePath value.
  1801. </summary>
  1802. </member>
  1803. <member name="P:CefSharp.Core.RequestContextSettings.PersistSessionCookies">
  1804. <summary>
  1805. To persist session cookies (cookies without an expiry date or validity
  1806. interval) by default when using the global cookie manager set this value to
  1807. true. Session cookies are generally intended to be transient and most
  1808. Web browsers do not persist them. Can be set globally using the
  1809. CefSettings.PersistSessionCookies value. This value will be ignored if
  1810. CachePath is empty or if it matches the CefSettings.CachePath value.
  1811. </summary>
  1812. </member>
  1813. <member name="M:CefSharp.Core.RequestContextSettings.#ctor">
  1814. <summary>
  1815. Initializes a new instance of the RequestContextSettings class.
  1816. </summary>
  1817. </member>
  1818. <member name="T:CefSharp.Core.RequestContextSettings">
  1819. <summary>
  1820. RequestContextSettings
  1821. </summary>
  1822. </member>
  1823. <member name="P:CefSharp.Core.BrowserSettings.AutoDispose">
  1824. <summary>
  1825. True if dispose should be called after this object is used
  1826. </summary>
  1827. </member>
  1828. <member name="P:CefSharp.Core.BrowserSettings.IsDisposed">
  1829. <summary>
  1830. Gets a value indicating if the browser settings has been disposed.
  1831. </summary>
  1832. </member>
  1833. <member name="P:CefSharp.Core.BrowserSettings.WindowlessFrameRate">
  1834. <summary>
  1835. The maximum rate in frames per second (fps) that CefRenderHandler::OnPaint
  1836. will be called for a windowless browser. The actual fps may be lower if
  1837. the browser cannot generate frames at the requested rate. The minimum
  1838. value is 1 and the maximum value is 60 (default 30). This value can also be
  1839. changed dynamically via IBrowserHost.SetWindowlessFrameRate.
  1840. </summary>
  1841. </member>
  1842. <member name="P:CefSharp.Core.BrowserSettings.AcceptLanguageList">
  1843. <summary>
  1844. Comma delimited ordered list of language codes without any whitespace that
  1845. will be used in the "Accept-Language" HTTP header. May be overridden on a
  1846. per-browser basis using the CefBrowserSettings.AcceptLanguageList value.
  1847. If both values are empty then "en-US,en" will be used. Can be overridden
  1848. for individual RequestContext instances via the
  1849. RequestContextSettings.AcceptLanguageList value.
  1850. </summary>
  1851. </member>
  1852. <member name="P:CefSharp.Core.BrowserSettings.BackgroundColor">
  1853. <summary>
  1854. Background color used for the browser before a document is loaded and when no document color
  1855. is specified. The alpha component must be either fully opaque (0xFF) or fully transparent (0x00).
  1856. If the alpha component is fully opaque then the RGB components will be used as the background
  1857. color. If the alpha component is fully transparent for a WinForms browser then the
  1858. CefSettings.BackgroundColor value will be used. If the alpha component is fully transparent
  1859. for a windowless (WPF/OffScreen) browser then transparent painting will be enabled.
  1860. </summary>
  1861. </member>
  1862. <member name="P:CefSharp.Core.BrowserSettings.WebGl">
  1863. <summary>
  1864. Controls whether WebGL can be used. Note that WebGL requires hardware
  1865. support and may not work on all systems even when enabled. Also
  1866. configurable using the "disable-webgl" command-line switch.
  1867. </summary>
  1868. </member>
  1869. <member name="P:CefSharp.Core.BrowserSettings.Databases">
  1870. <summary>
  1871. Controls whether databases can be used. Also configurable using the
  1872. "disable-databases" command-line switch.
  1873. </summary>
  1874. </member>
  1875. <member name="P:CefSharp.Core.BrowserSettings.LocalStorage">
  1876. <summary>
  1877. Controls whether local storage can be used. Also configurable using the
  1878. "disable-local-storage" command-line switch.
  1879. </summary>
  1880. </member>
  1881. <member name="P:CefSharp.Core.BrowserSettings.TabToLinks">
  1882. <summary>
  1883. Controls whether the tab key can advance focus to links. Also configurable
  1884. using the "disable-tab-to-links" command-line switch.
  1885. </summary>
  1886. </member>
  1887. <member name="P:CefSharp.Core.BrowserSettings.TextAreaResize">
  1888. <summary>
  1889. Controls whether text areas can be resized. Also configurable using the
  1890. "disable-text-area-resize" command-line switch.
  1891. </summary>
  1892. </member>
  1893. <member name="P:CefSharp.Core.BrowserSettings.ImageShrinkStandaloneToFit">
  1894. <summary>
  1895. Controls whether standalone images will be shrunk to fit the page. Also
  1896. configurable using the "image-shrink-standalone-to-fit" command-line
  1897. switch.
  1898. </summary>
  1899. </member>
  1900. <member name="P:CefSharp.Core.BrowserSettings.ImageLoading">
  1901. <summary>
  1902. Controls whether image URLs will be loaded from the network. A cached image
  1903. will still be rendered if requested. Also configurable using the
  1904. "disable-image-loading" command-line switch.
  1905. </summary>
  1906. </member>
  1907. <member name="P:CefSharp.Core.BrowserSettings.JavascriptDomPaste">
  1908. <summary>
  1909. Controls whether DOM pasting is supported in the editor via
  1910. execCommand("paste"). The |javascript_access_clipboard| setting must also
  1911. be enabled. Also configurable using the "disable-javascript-dom-paste"
  1912. command-line switch.
  1913. </summary>
  1914. </member>
  1915. <member name="P:CefSharp.Core.BrowserSettings.JavascriptAccessClipboard">
  1916. <summary>
  1917. Controls whether JavaScript can access the clipboard. Also configurable
  1918. using the "disable-javascript-access-clipboard" command-line switch.
  1919. </summary>
  1920. </member>
  1921. <member name="P:CefSharp.Core.BrowserSettings.JavascriptCloseWindows">
  1922. <summary>
  1923. Controls whether JavaScript can be used to close windows that were not
  1924. opened via JavaScript. JavaScript can still be used to close windows that
  1925. were opened via JavaScript. Also configurable using the
  1926. "disable-javascript-close-windows" command-line switch.
  1927. </summary>
  1928. </member>
  1929. <member name="P:CefSharp.Core.BrowserSettings.Javascript">
  1930. <summary>
  1931. Controls whether JavaScript can be executed. (Used to Enable/Disable javascript)
  1932. Also configurable using the "disable-javascript" command-line switch.
  1933. </summary>
  1934. </member>
  1935. <member name="P:CefSharp.Core.BrowserSettings.RemoteFonts">
  1936. <summary>
  1937. Controls the loading of fonts from remote sources. Also configurable using
  1938. the "disable-remote-fonts" command-line switch.
  1939. </summary>
  1940. </member>
  1941. <member name="P:CefSharp.Core.BrowserSettings.DefaultEncoding">
  1942. <summary>
  1943. Default encoding for Web content. If empty "ISO-8859-1" will be used. Also
  1944. configurable using the "default-encoding" command-line switch.
  1945. </summary>
  1946. </member>
  1947. <member name="P:CefSharp.Core.BrowserSettings.MinimumLogicalFontSize">
  1948. <summary>
  1949. MinimumLogicalFontSize
  1950. </summary>
  1951. </member>
  1952. <member name="P:CefSharp.Core.BrowserSettings.MinimumFontSize">
  1953. <summary>
  1954. MinimumFontSize
  1955. </summary>
  1956. </member>
  1957. <member name="P:CefSharp.Core.BrowserSettings.DefaultFixedFontSize">
  1958. <summary>
  1959. DefaultFixedFontSize
  1960. </summary>
  1961. </member>
  1962. <member name="P:CefSharp.Core.BrowserSettings.DefaultFontSize">
  1963. <summary>
  1964. DefaultFontSize
  1965. </summary>
  1966. </member>
  1967. <member name="P:CefSharp.Core.BrowserSettings.FantasyFontFamily">
  1968. <summary>
  1969. FantasyFontFamily
  1970. </summary>
  1971. </member>
  1972. <member name="P:CefSharp.Core.BrowserSettings.CursiveFontFamily">
  1973. <summary>
  1974. CursiveFontFamily
  1975. </summary>
  1976. </member>
  1977. <member name="P:CefSharp.Core.BrowserSettings.SansSerifFontFamily">
  1978. <summary>
  1979. SansSerifFontFamily
  1980. </summary>
  1981. </member>
  1982. <member name="P:CefSharp.Core.BrowserSettings.SerifFontFamily">
  1983. <summary>
  1984. SerifFontFamily
  1985. </summary>
  1986. </member>
  1987. <member name="P:CefSharp.Core.BrowserSettings.FixedFontFamily">
  1988. <summary>
  1989. FixedFontFamily
  1990. </summary>
  1991. </member>
  1992. <member name="P:CefSharp.Core.BrowserSettings.StandardFontFamily">
  1993. <summary>
  1994. StandardFontFamily
  1995. </summary>
  1996. </member>
  1997. <member name="M:CefSharp.Core.BrowserSettings.Dispose">
  1998. <summary>
  1999. Destructor.
  2000. </summary>
  2001. </member>
  2002. <member name="M:CefSharp.Core.BrowserSettings.Finalize">
  2003. <summary>
  2004. Finalizer.
  2005. </summary>
  2006. </member>
  2007. <member name="M:CefSharp.Core.BrowserSettings.#ctor">
  2008. <summary>
  2009. Default Constructor
  2010. </summary>
  2011. </member>
  2012. <member name="M:CefSharp.Core.BrowserSettings.#ctor(CefStructBase&lt;CefBrowserSettingsTraits&gt;*)">
  2013. <summary>
  2014. Internal Constructor
  2015. </summary>
  2016. </member>
  2017. <member name="T:CefSharp.Core.BrowserSettings">
  2018. <summary>
  2019. Browser initialization settings. Specify NULL or 0 to get the recommended
  2020. default values. The consequences of using custom values may not be well
  2021. tested. Many of these and other settings can also configured using command-
  2022. line switches.
  2023. </summary>
  2024. </member>
  2025. <member name="M:CefClient.OnProcessMessageReceived(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,cef_process_id_t,scoped_refptr&lt;CefProcessMessage&gt;)">
  2026. Called when a new message is received from a different process. Return
  2027. true if the message was handled or false otherwise. It is safe to keep a
  2028. reference to |message| outside of this callback.
  2029. Called when a new message is received from a different process. Return
  2030. true if the message was handled or false otherwise. It is safe to keep a
  2031. reference to |message| outside of this callback.
  2032. </member>
  2033. <member name="M:CefClient.GetRequestHandler">
  2034. Return the handler for browser request events.
  2035. Return the handler for browser request events.
  2036. </member>
  2037. <member name="M:CefClient.GetRenderHandler">
  2038. Return the handler for off-screen rendering events.
  2039. Return the handler for off-screen rendering events.
  2040. </member>
  2041. <member name="M:CefClient.GetPrintHandler">
  2042. Return the handler for printing on Linux. If a print handler is not
  2043. provided then printing will not be supported on the Linux platform.
  2044. Return the handler for printing on Linux. If a print handler is not
  2045. provided then printing will not be supported on the Linux platform.
  2046. </member>
  2047. <member name="M:CefClient.GetLoadHandler">
  2048. Return the handler for browser load status events.
  2049. Return the handler for browser load status events.
  2050. </member>
  2051. <member name="M:CefClient.GetLifeSpanHandler">
  2052. Return the handler for browser life span events.
  2053. Return the handler for browser life span events.
  2054. </member>
  2055. <member name="M:CefClient.GetKeyboardHandler">
  2056. Return the handler for keyboard events.
  2057. Return the handler for keyboard events.
  2058. </member>
  2059. <member name="M:CefClient.GetJSDialogHandler">
  2060. Return the handler for JavaScript dialogs. If no handler is provided the
  2061. default implementation will be used.
  2062. Return the handler for JavaScript dialogs. If no handler is provided the
  2063. default implementation will be used.
  2064. </member>
  2065. <member name="M:CefClient.GetPermissionHandler">
  2066. Return the handler for permission requests.
  2067. Return the handler for permission requests.
  2068. </member>
  2069. <member name="M:CefClient.GetFrameHandler">
  2070. Return the handler for events related to CefFrame lifespan. This method
  2071. will be called once during CefBrowser creation and the result will be
  2072. cached for performance reasons.
  2073. Return the handler for events related to CefFrame lifespan. This method
  2074. will be called once during CefBrowser creation and the result will be
  2075. cached for performance reasons.
  2076. </member>
  2077. <member name="M:CefClient.GetFocusHandler">
  2078. Return the handler for focus events.
  2079. Return the handler for focus events.
  2080. </member>
  2081. <member name="M:CefClient.GetFindHandler">
  2082. Return the handler for find result events.
  2083. Return the handler for find result events.
  2084. </member>
  2085. <member name="M:CefClient.GetDragHandler">
  2086. Return the handler for drag events.
  2087. Return the handler for drag events.
  2088. </member>
  2089. <member name="M:CefClient.GetDownloadHandler">
  2090. Return the handler for download events. If no handler is returned
  2091. downloads will not be allowed.
  2092. Return the handler for download events. If no handler is returned
  2093. downloads will not be allowed.
  2094. </member>
  2095. <member name="M:CefClient.GetDisplayHandler">
  2096. Return the handler for browser display state events.
  2097. Return the handler for browser display state events.
  2098. </member>
  2099. <member name="M:CefClient.GetDialogHandler">
  2100. Return the handler for dialogs. If no handler is provided the default
  2101. implementation will be used.
  2102. Return the handler for dialogs. If no handler is provided the default
  2103. implementation will be used.
  2104. </member>
  2105. <member name="M:CefClient.GetContextMenuHandler">
  2106. Return the handler for context menus. If no handler is provided the
  2107. default implementation will be used.
  2108. Return the handler for context menus. If no handler is provided the
  2109. default implementation will be used.
  2110. </member>
  2111. <member name="M:CefClient.GetCommandHandler">
  2112. Return the handler for commands. If no handler is provided the default
  2113. implementation will be used.
  2114. Return the handler for commands. If no handler is provided the default
  2115. implementation will be used.
  2116. </member>
  2117. <member name="M:CefClient.GetAudioHandler">
  2118. Return the handler for audio rendering events.
  2119. Return the handler for audio rendering events.
  2120. </member>
  2121. <member name="T:CefClient">
  2122. Implement this interface to provide handler implementations.
  2123. Implement this interface to provide handler implementations.
  2124. </member>
  2125. <member name="M:CefRequestHandler.OnDocumentAvailableInMainFrame(scoped_refptr&lt;CefBrowser&gt;)">
  2126. Called on the browser process UI thread when the window.document object of
  2127. the main frame has been created.
  2128. </member>
  2129. <member name="M:CefRequestHandler.OnRenderProcessTerminated(scoped_refptr&lt;CefBrowser&gt;,cef_termination_status_t)">
  2130. Called on the browser process UI thread when the render process
  2131. terminates unexpectedly. |status| indicates how the process
  2132. terminated.
  2133. </member>
  2134. <member name="M:CefRequestHandler.OnRenderViewReady(scoped_refptr&lt;CefBrowser&gt;)">
  2135. Called on the browser process UI thread when the render view associated
  2136. with |browser| is ready to receive/handle IPC messages in the render
  2137. process.
  2138. </member>
  2139. <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;)">
  2140. Called on the UI thread when a client certificate is being requested for
  2141. authentication. Return false to use the default behavior and automatically
  2142. select the first certificate available. Return true and call
  2143. CefSelectClientCertificateCallback::Select either in this method or at a
  2144. later time to select a certificate. Do not call Select or call it with
  2145. NULL to continue without using any certificate. |isProxy| indicates
  2146. whether the host is an HTTPS proxy or the origin server. |host| and |port|
  2147. contains the hostname and port of the SSL server. |certificates| is the
  2148. list of certificates to choose from; this list has already been pruned by
  2149. Chromium so that it only contains certificates from issuers that the
  2150. server trusts.
  2151. </member>
  2152. <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;)">
  2153. Called on the UI thread to handle requests for URLs with an invalid
  2154. SSL certificate. Return true and call CefCallback methods either in this
  2155. method or at a later time to continue or cancel the request. Return false
  2156. to cancel the request immediately. If
  2157. cef_settings_t.ignore_certificate_errors is set all invalid certificates
  2158. will be accepted without calling this method.
  2159. </member>
  2160. <member name="M:CefRequestHandler.OnQuotaRequest(scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int64,scoped_refptr&lt;CefCallback&gt;)">
  2161. Called on the IO thread when JavaScript requests a specific storage quota
  2162. size via the webkitStorageInfo.requestQuota function. |origin_url| is the
  2163. origin of the page making the request. |new_size| is the requested quota
  2164. size in bytes. Return true to continue the request and call CefCallback
  2165. methods either in this method or at a later time to grant or deny the
  2166. request. Return false to cancel the request immediately.
  2167. </member>
  2168. <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;)">
  2169. Called on the IO thread when the browser needs credentials from the user.
  2170. |origin_url| is the origin making this authentication request. |isProxy|
  2171. indicates whether the host is a proxy server. |host| contains the hostname
  2172. and |port| contains the port number. |realm| is the realm of the challenge
  2173. and may be empty. |scheme| is the authentication scheme used, such as
  2174. "basic" or "digest", and will be empty if the source of the request is an
  2175. FTP server. Return true to continue the request and call
  2176. CefAuthCallback::Continue() either in this method or at a later time when
  2177. the authentication information is available. Return false to cancel the
  2178. request immediately.
  2179. </member>
  2180. <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)">
  2181. Called on the browser process IO thread before a resource request is
  2182. initiated. The |browser| and |frame| values represent the source of the
  2183. request. |request| represents the request contents and cannot be modified
  2184. in this callback. |is_navigation| will be true if the resource request is
  2185. a navigation. |is_download| will be true if the resource request is a
  2186. download. |request_initiator| is the origin (scheme + domain) of the page
  2187. that initiated the request. Set |disable_default_handling| to true to
  2188. disable default handling of the request, in which case it will need to be
  2189. handled via CefResourceRequestHandler::GetResourceHandler or it will be
  2190. canceled. To allow the resource load to proceed with default handling
  2191. return NULL. To specify a handler for the resource return a
  2192. CefResourceRequestHandler object. If this callback returns NULL the same
  2193. method will be called on the associated CefRequestContextHandler, if any.
  2194. </member>
  2195. <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)">
  2196. Called on the UI thread before OnBeforeBrowse in certain limited cases
  2197. where navigating a new or different browser might be desirable. This
  2198. includes user-initiated navigation that might open in a special way (e.g.
  2199. links clicked via middle-click or ctrl + left-click) and certain types of
  2200. cross-origin navigation initiated from the renderer process (e.g.
  2201. navigating the top-level frame to/from a file URL). The |browser| and
  2202. |frame| values represent the source of the navigation. The
  2203. |target_disposition| value indicates where the user intended to navigate
  2204. the browser based on standard Chromium behaviors (e.g. current tab,
  2205. new tab, etc). The |user_gesture| value will be true if the browser
  2206. navigated via explicit user gesture (e.g. clicking a link) or false if it
  2207. navigated automatically (e.g. via the DomContentLoaded event). Return true
  2208. to cancel the navigation or false to allow the navigation to proceed in
  2209. the source browser's top-level frame.
  2210. </member>
  2211. <member name="M:CefRequestHandler.OnBeforeBrowse(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefRequest&gt;,System.Boolean,System.Boolean)">
  2212. Called on the UI thread before browser navigation. Return true to cancel
  2213. the navigation or false to allow the navigation to proceed. The |request|
  2214. object cannot be modified in this callback.
  2215. CefLoadHandler::OnLoadingStateChange will be called twice in all cases.
  2216. If the navigation is allowed CefLoadHandler::OnLoadStart and
  2217. CefLoadHandler::OnLoadEnd will be called. If the navigation is canceled
  2218. CefLoadHandler::OnLoadError will be called with an |errorCode| value of
  2219. ERR_ABORTED. The |user_gesture| value will be true if the browser
  2220. navigated via explicit user gesture (e.g. clicking a link) or false if it
  2221. navigated automatically (e.g. via the DomContentLoaded event).
  2222. </member>
  2223. <member name="T:CefRequestHandler">
  2224. Implement this interface to handle events related to browser requests. The
  2225. methods of this class will be called on the thread indicated.
  2226. </member>
  2227. <member name="M:CefSelectClientCertificateCallback.Select(scoped_refptr&lt;CefX509Certificate&gt;)">
  2228. Chooses the specified certificate for client certificate authentication.
  2229. NULL value means that no client certificate should be used.
  2230. </member>
  2231. <member name="T:CefSelectClientCertificateCallback">
  2232. Callback interface used to select a client certificate for authentication.
  2233. </member>
  2234. <member name="M:CefIsCertStatusError(cef_cert_status_t)">
  2235. Returns true if the certificate status represents an error.
  2236. </member>
  2237. <member name="M:CefSSLInfo.GetX509Certificate">
  2238. Returns the X.509 certificate.
  2239. </member>
  2240. <member name="M:CefSSLInfo.GetCertStatus">
  2241. Returns a bitmask containing any and all problems verifying the server
  2242. certificate.
  2243. </member>
  2244. <member name="T:CefSSLInfo">
  2245. Class representing SSL information.
  2246. </member>
  2247. <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)">
  2248. Called on the IO thread after a resource response is received. The
  2249. |browser| and |frame| values represent the source of the request, and may
  2250. be NULL for requests originating from service workers or CefURLRequest.
  2251. |request| cannot be modified in this callback. Return true if the
  2252. specified cookie returned with the response can be saved or false
  2253. otherwise.
  2254. </member>
  2255. <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)">
  2256. Called on the IO thread before a resource request is sent. The |browser|
  2257. and |frame| values represent the source of the request, and may be NULL
  2258. for requests originating from service workers or CefURLRequest. |request|
  2259. cannot be modified in this callback. Return true if the specified cookie
  2260. can be sent with the request or false otherwise.
  2261. </member>
  2262. <member name="T:CefCookieAccessFilter">
  2263. Implement this interface to filter cookies that may be sent or received from
  2264. resource requests. The methods of this class will be called on the IO thread
  2265. unless otherwise indicated.
  2266. </member>
  2267. <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)">
  2268. Called on the IO thread to handle requests for URLs with an unknown
  2269. protocol component. The |browser| and |frame| values represent the source
  2270. of the request, and may be NULL for requests originating from service
  2271. workers or CefURLRequest. |request| cannot be modified in this callback.
  2272. Set |allow_os_execution| to true to attempt execution via the registered
  2273. OS protocol handler, if any. SECURITY WARNING: YOU SHOULD USE THIS METHOD
  2274. TO ENFORCE RESTRICTIONS BASED ON SCHEME, HOST OR OTHER URL ANALYSIS BEFORE
  2275. ALLOWING OS EXECUTION.
  2276. </member>
  2277. <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)">
  2278. Called on the IO thread when a resource load has completed. The |browser|
  2279. and |frame| values represent the source of the request, and may be NULL
  2280. for requests originating from service workers or CefURLRequest. |request|
  2281. and |response| represent the request and response respectively and cannot
  2282. be modified in this callback. |status| indicates the load completion
  2283. status. |received_content_length| is the number of response bytes actually
  2284. read. This method will be called for all requests, including requests that
  2285. are aborted due to CEF shutdown or destruction of the associated browser.
  2286. In cases where the associated browser is destroyed this callback may
  2287. arrive after the CefLifeSpanHandler::OnBeforeClose callback for that
  2288. browser. The CefFrame::IsValid method can be used to test for this
  2289. situation, and care should be taken not to call |browser| or |frame|
  2290. methods that modify state (like LoadURL, SendProcessMessage, etc.) if the
  2291. frame is invalid.
  2292. </member>
  2293. <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;)">
  2294. Called on the IO thread to optionally filter resource response content.
  2295. The |browser| and |frame| values represent the source of the request, and
  2296. may be NULL for requests originating from service workers or
  2297. CefURLRequest. |request| and |response| represent the request and response
  2298. respectively and cannot be modified in this callback.
  2299. </member>
  2300. <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;)">
  2301. Called on the IO thread when a resource response is received. The
  2302. |browser| and |frame| values represent the source of the request, and may
  2303. be NULL for requests originating from service workers or CefURLRequest. To
  2304. allow the resource load to proceed without modification return false. To
  2305. redirect or retry the resource load optionally modify |request| and return
  2306. true. Modification of the request URL will be treated as a redirect.
  2307. Requests handled using the default network loader cannot be redirected in
  2308. this callback. The |response| object cannot be modified in this callback.
  2309. WARNING: Redirecting using this method is deprecated. Use
  2310. OnBeforeResourceLoad or GetResourceHandler to perform redirects.
  2311. </member>
  2312. <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)">
  2313. Called on the IO thread when a resource load is redirected. The |browser|
  2314. and |frame| values represent the source of the request, and may be NULL
  2315. for requests originating from service workers or CefURLRequest. The
  2316. |request| parameter will contain the old URL and other request-related
  2317. information. The |response| parameter will contain the response that
  2318. resulted in the redirect. The |new_url| parameter will contain the new URL
  2319. and can be changed if desired. The |request| and |response| objects cannot
  2320. be modified in this callback.
  2321. </member>
  2322. <member name="M:CefResourceRequestHandler.GetResourceHandler(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefRequest&gt;)">
  2323. Called on the IO thread before a resource is loaded. The |browser| and
  2324. |frame| values represent the source of the request, and may be NULL for
  2325. requests originating from service workers or CefURLRequest. To allow the
  2326. resource to load using the default network loader return NULL. To specify
  2327. a handler for the resource return a CefResourceHandler object. The
  2328. |request| object cannot not be modified in this callback.
  2329. </member>
  2330. <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;)">
  2331. Called on the IO thread before a resource request is loaded. The |browser|
  2332. and |frame| values represent the source of the request, and may be NULL
  2333. for requests originating from service workers or CefURLRequest. To
  2334. redirect or change the resource load optionally modify |request|.
  2335. Modification of the request URL will be treated as a redirect. Return
  2336. RV_CONTINUE to continue the request immediately. Return RV_CONTINUE_ASYNC
  2337. and call CefCallback methods at a later time to continue or cancel the
  2338. request asynchronously. Return RV_CANCEL to cancel the request
  2339. immediately.
  2340. </member>
  2341. <member name="M:CefResourceRequestHandler.GetCookieAccessFilter(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefRequest&gt;)">
  2342. Called on the IO thread before a resource request is loaded. The |browser|
  2343. and |frame| values represent the source of the request, and may be NULL
  2344. for requests originating from service workers or CefURLRequest. To
  2345. optionally filter cookies for the request return a CefCookieAccessFilter
  2346. object. The |request| object cannot not be modified in this callback.
  2347. </member>
  2348. <member name="T:CefResourceRequestHandler">
  2349. Implement this interface to handle events related to browser requests. The
  2350. methods of this class will be called on the IO thread unless otherwise
  2351. indicated.
  2352. </member>
  2353. <member name="M:CefResponseFilter.Filter(System.Void*,System.UInt32,System.UInt32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Void*,System.UInt32,System.UInt32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2354. Called to filter a chunk of data. Expected usage is as follows:
  2355. 1. Read input data from |data_in| and set |data_in_read| to the number of
  2356. bytes that were read up to a maximum of |data_in_size|. |data_in| will
  2357. be NULL if |data_in_size| is zero.
  2358. 2. Write filtered output data to |data_out| and set |data_out_written| to
  2359. the number of bytes that were written up to a maximum of
  2360. |data_out_size|. If no output data was written then all data must be
  2361. read from |data_in| (user must set |data_in_read| = |data_in_size|).
  2362. 3. Return RESPONSE_FILTER_DONE if all output data was written or
  2363. RESPONSE_FILTER_NEED_MORE_DATA if output data is still pending.
  2364. This method will be called repeatedly until the input buffer has been
  2365. fully read (user sets |data_in_read| = |data_in_size|) and there is no
  2366. more input data to filter (the resource response is complete). This method
  2367. may then be called an additional time with an empty input buffer if the
  2368. user filled the output buffer (set |data_out_written| = |data_out_size|)
  2369. and returned RESPONSE_FILTER_NEED_MORE_DATA to indicate that output data
  2370. is still pending.
  2371. Calls to this method will stop when one of the following conditions is
  2372. met:
  2373. 1. There is no more input data to filter (the resource response is
  2374. complete) and the user sets |data_out_written| = 0 or returns
  2375. RESPONSE_FILTER_DONE to indicate that all data has been written, or;
  2376. 2. The user returns RESPONSE_FILTER_ERROR to indicate an error.
  2377. Do not keep a reference to the buffers passed to this method.
  2378. </member>
  2379. <member name="M:CefResponseFilter.InitFilter">
  2380. Initialize the response filter. Will only be called a single time. The
  2381. filter will not be installed if this method returns false.
  2382. </member>
  2383. <member name="T:CefResponseFilter">
  2384. Implement this interface to filter resource response content. The methods of
  2385. this class will be called on the browser process IO thread.
  2386. </member>
  2387. <member name="M:CefResourceHandler.Cancel">
  2388. Request processing has been canceled.
  2389. </member>
  2390. <member name="M:CefResourceHandler.ReadResponse(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefCallback&gt;)">
  2391. Read response data. If data is available immediately copy up to
  2392. |bytes_to_read| bytes into |data_out|, set |bytes_read| to the number of
  2393. bytes copied, and return true. To read the data at a later time set
  2394. |bytes_read| to 0, return true and call CefCallback::Continue() when the
  2395. data is available. To indicate response completion return false.
  2396. WARNING: This method is deprecated. Use Skip and Read instead.
  2397. </member>
  2398. <member name="M:CefResourceHandler.GetResponseHeaders(scoped_refptr&lt;CefResponse&gt;,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2399. Retrieve response header information. If the response length is not known
  2400. set |response_length| to -1 and ReadResponse() will be called until it
  2401. returns false. If the response length is known set |response_length|
  2402. to a positive value and ReadResponse() will be called until it returns
  2403. false or the specified number of bytes have been read. Use the |response|
  2404. object to set the mime type, http status code and other optional header
  2405. values. To redirect the request to a new URL set |redirectUrl| to the new
  2406. URL. |redirectUrl| can be either a relative or fully qualified URL.
  2407. It is also possible to set |response| to a redirect http status code
  2408. and pass the new URL via a Location header. Likewise with |redirectUrl| it
  2409. is valid to set a relative or fully qualified URL as the Location header
  2410. value. If an error occured while setting up the request you can call
  2411. SetError() on |response| to indicate the error condition.
  2412. </member>
  2413. <member name="M:CefResourceHandler.ProcessRequest(scoped_refptr&lt;CefRequest&gt;,scoped_refptr&lt;CefCallback&gt;)">
  2414. Begin processing the request. To handle the request return true and call
  2415. CefCallback::Continue() once the response header information is available
  2416. (CefCallback::Continue() can also be called from inside this method if
  2417. header information is available immediately). To cancel the request return
  2418. false.
  2419. WARNING: This method is deprecated. Use Open instead.
  2420. </member>
  2421. <member name="M:CefResourceHandler.Open(scoped_refptr&lt;CefRequest&gt;,System.Boolean*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefCallback&gt;)">
  2422. Open the response stream. To handle the request immediately set
  2423. |handle_request| to true and return true. To decide at a later time set
  2424. |handle_request| to false, return true, and execute |callback| to continue
  2425. or cancel the request. To cancel the request immediately set
  2426. |handle_request| to true and return false. This method will be called in
  2427. sequence but not from a dedicated thread. For backwards compatibility set
  2428. |handle_request| to false and return false and the ProcessRequest method
  2429. will be called.
  2430. </member>
  2431. <member name="T:CefResourceHandler">
  2432. Class used to implement a custom request handler interface. The methods of
  2433. this class will be called on the IO thread unless otherwise indicated.
  2434. </member>
  2435. <member name="T:CefResourceReadCallback">
  2436. Callback for asynchronous continuation of CefResourceHandler::Read().
  2437. </member>
  2438. <member name="T:CefResourceSkipCallback">
  2439. Callback for asynchronous continuation of CefResourceHandler::Skip().
  2440. </member>
  2441. <member name="M:CefAuthCallback.Cancel">
  2442. Cancel the authentication request.
  2443. Cancel the authentication request.
  2444. </member>
  2445. <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)">
  2446. Continue the authentication request.
  2447. Continue the authentication request.
  2448. </member>
  2449. <member name="T:CefAuthCallback">
  2450. Callback interface used for asynchronous continuation of authentication
  2451. requests.
  2452. Callback interface used for asynchronous continuation of authentication
  2453. requests.
  2454. </member>
  2455. <member name="M:CefRenderHandler.OnVirtualKeyboardRequested(scoped_refptr&lt;CefBrowser&gt;,cef_text_input_mode_t)">
  2456. Called when an on-screen keyboard should be shown or hidden for the
  2457. specified |browser|. |input_mode| specifies what kind of keyboard
  2458. should be opened. If |input_mode| is CEF_TEXT_INPUT_MODE_NONE, any
  2459. existing keyboard for this browser should be hidden.
  2460. </member>
  2461. <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)">
  2462. Called when text selection has changed for the specified |browser|.
  2463. |selected_text| is the currently selected text and |selected_range| is
  2464. the character range.
  2465. </member>
  2466. <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)">
  2467. Called when the IME composition range has changed. |selected_range| is the
  2468. range of characters that have been selected. |character_bounds| is the
  2469. bounds of each character in view coordinates.
  2470. </member>
  2471. <member name="M:CefRenderHandler.OnScrollOffsetChanged(scoped_refptr&lt;CefBrowser&gt;,System.Double,System.Double)">
  2472. Called when the scroll offset has changed.
  2473. </member>
  2474. <member name="M:CefRenderHandler.StartDragging(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefDragData&gt;,cef_drag_operations_mask_t,System.Int32,System.Int32)">
  2475. Called when the user starts dragging content in the web view. Contextual
  2476. information about the dragged content is supplied by |drag_data|.
  2477. (|x|, |y|) is the drag start location in screen coordinates.
  2478. OS APIs that run a system message loop may be used within the
  2479. StartDragging call.
  2480. Return false to abort the drag operation. Don't call any of
  2481. CefBrowserHost::DragSource*Ended* methods after returning false.
  2482. Return true to handle the drag operation. Call
  2483. CefBrowserHost::DragSourceEndedAt and DragSourceSystemDragEnded either
  2484. synchronously or asynchronously to inform the web view that the drag
  2485. operation has ended.
  2486. </member>
  2487. <member name="M:CefRenderHandler.OnTouchHandleStateChanged(scoped_refptr&lt;CefBrowser&gt;,CefTouchHandleState!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2488. Called when touch handle state is updated. The client is responsible for
  2489. rendering the touch handles.
  2490. </member>
  2491. <member name="M:CefRenderHandler.GetTouchHandleSize(scoped_refptr&lt;CefBrowser&gt;,cef_horizontal_alignment_t,CefSize*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2492. Called to retrieve the size of the touch handle for the specified
  2493. |orientation|.
  2494. </member>
  2495. <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,System.Void*)">
  2496. Called when an element has been rendered to the shared texture handle.
  2497. |type| indicates whether the element is the view or the popup widget.
  2498. |dirtyRects| contains the set of rectangles in pixel coordinates that need
  2499. to be repainted. |shared_handle| is the handle for a D3D11 Texture2D that
  2500. can be accessed via ID3D11Device using the OpenSharedResource method. This
  2501. method is only called when CefWindowInfo::shared_texture_enabled is set to
  2502. true, and is currently only supported on Windows.
  2503. </member>
  2504. <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)">
  2505. Called when an element should be painted. Pixel values passed to this
  2506. method are scaled relative to view coordinates based on the value of
  2507. CefScreenInfo.device_scale_factor returned from GetScreenInfo. |type|
  2508. indicates whether the element is the view or the popup widget. |buffer|
  2509. contains the pixel data for the whole image. |dirtyRects| contains the set
  2510. of rectangles in pixel coordinates that need to be repainted. |buffer|
  2511. will be |width|*|height|*4 bytes in size and represents a BGRA image with
  2512. an upper-left origin. This method is only called when
  2513. CefWindowInfo::shared_texture_enabled is set to false.
  2514. </member>
  2515. <member name="M:CefRenderHandler.OnPopupSize(scoped_refptr&lt;CefBrowser&gt;,CefRect!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2516. Called when the browser wants to move or resize the popup widget. |rect|
  2517. contains the new location and size in view coordinates.
  2518. </member>
  2519. <member name="M:CefRenderHandler.OnPopupShow(scoped_refptr&lt;CefBrowser&gt;,System.Boolean)">
  2520. Called when the browser wants to show or hide the popup widget. The popup
  2521. should be shown if |show| is true and hidden if |show| is false.
  2522. </member>
  2523. <member name="M:CefRenderHandler.GetScreenInfo(scoped_refptr&lt;CefBrowser&gt;,CefScreenInfo*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2524. Called to allow the client to fill in the CefScreenInfo object with
  2525. appropriate values. Return true if the |screen_info| structure has been
  2526. modified.
  2527. If the screen info rectangle is left empty the rectangle from GetViewRect
  2528. will be used. If the rectangle is still empty or invalid popups may not be
  2529. drawn correctly.
  2530. </member>
  2531. <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)">
  2532. Called to retrieve the translation from view DIP coordinates to screen
  2533. coordinates. Windows/Linux should provide screen device (pixel)
  2534. coordinates and MacOS should provide screen DIP coordinates. Return true
  2535. if the requested coordinates were provided.
  2536. </member>
  2537. <member name="M:CefRenderHandler.GetViewRect(scoped_refptr&lt;CefBrowser&gt;,CefRect*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2538. Called to retrieve the view rectangle in screen DIP coordinates. This
  2539. method must always provide a non-empty rectangle.
  2540. </member>
  2541. <member name="M:CefRenderHandler.GetRootScreenRect(scoped_refptr&lt;CefBrowser&gt;,CefRect*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2542. Called to retrieve the root window rectangle in screen DIP coordinates.
  2543. Return true if the rectangle was provided. If this method returns false
  2544. the rectangle from GetViewRect will be used.
  2545. </member>
  2546. <member name="M:CefRenderHandler.GetAccessibilityHandler">
  2547. Return the handler for accessibility notifications. If no handler is
  2548. provided the default implementation will be used.
  2549. </member>
  2550. <member name="T:CefRenderHandler">
  2551. Implement this interface to handle events when window rendering is disabled.
  2552. The methods of this class will be called on the UI thread.
  2553. </member>
  2554. <member name="M:CefAccessibilityHandler.OnAccessibilityLocationChange(scoped_refptr&lt;CefValue&gt;)">
  2555. Called after renderer process sends accessibility location changes to the
  2556. browser process.
  2557. </member>
  2558. <member name="M:CefAccessibilityHandler.OnAccessibilityTreeChange(scoped_refptr&lt;CefValue&gt;)">
  2559. Called after renderer process sends accessibility tree changes to the
  2560. browser process.
  2561. </member>
  2562. <member name="T:CefAccessibilityHandler">
  2563. Implement this interface to receive accessibility notification when
  2564. accessibility events have been registered. The methods of this class will
  2565. be called on the UI thread.
  2566. </member>
  2567. <member name="M:CefPrintHandler.GetPdfPaperSize(scoped_refptr&lt;CefBrowser&gt;,System.Int32)">
  2568. Return the PDF paper size in device units. Used in combination with
  2569. CefBrowserHost::PrintToPDF().
  2570. </member>
  2571. <member name="M:CefPrintHandler.OnPrintReset(scoped_refptr&lt;CefBrowser&gt;)">
  2572. Reset client state related to printing.
  2573. </member>
  2574. <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;)">
  2575. Send the print job to the printer. Execute |callback| once the job is
  2576. completed. Return true if the job will proceed or false to cancel the job
  2577. immediately.
  2578. </member>
  2579. <member name="M:CefPrintHandler.OnPrintDialog(scoped_refptr&lt;CefBrowser&gt;,System.Boolean,scoped_refptr&lt;CefPrintDialogCallback&gt;)">
  2580. Show the print dialog. Execute |callback| once the dialog is dismissed.
  2581. Return true if the dialog will be displayed or false to cancel the
  2582. printing immediately.
  2583. </member>
  2584. <member name="M:CefPrintHandler.OnPrintSettings(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefPrintSettings&gt;,System.Boolean)">
  2585. Synchronize |settings| with client state. If |get_defaults| is true then
  2586. populate |settings| with the default print settings. Do not keep a
  2587. reference to |settings| outside of this callback.
  2588. </member>
  2589. <member name="M:CefPrintHandler.OnPrintStart(scoped_refptr&lt;CefBrowser&gt;)">
  2590. Called when printing has started for the specified |browser|. This method
  2591. will be called before the other OnPrint*() methods and irrespective of how
  2592. printing was initiated (e.g. CefBrowserHost::Print(), JavaScript
  2593. window.print() or PDF extension print button).
  2594. </member>
  2595. <member name="T:CefPrintHandler">
  2596. Implement this interface to handle printing on Linux. Each browser will have
  2597. only one print job in progress at a time. The methods of this class will be
  2598. called on the browser process UI thread.
  2599. </member>
  2600. <member name="M:CefPrintJobCallback.Continue">
  2601. Indicate completion of the print job.
  2602. </member>
  2603. <member name="T:CefPrintJobCallback">
  2604. Callback interface for asynchronous continuation of print job requests.
  2605. </member>
  2606. <member name="M:CefPrintDialogCallback.Cancel">
  2607. Cancel the printing.
  2608. </member>
  2609. <member name="M:CefPrintDialogCallback.Continue(scoped_refptr&lt;CefPrintSettings&gt;)">
  2610. Continue printing with the specified |settings|.
  2611. </member>
  2612. <member name="T:CefPrintDialogCallback">
  2613. Callback interface for asynchronous continuation of print dialog requests.
  2614. </member>
  2615. <member name="M:CefPrintSettings.GetDuplexMode">
  2616. Get the duplex mode.
  2617. </member>
  2618. <member name="M:CefPrintSettings.SetDuplexMode(cef_duplex_mode_t)">
  2619. Set the duplex mode.
  2620. </member>
  2621. <member name="M:CefPrintSettings.GetCopies">
  2622. Get the number of copies.
  2623. </member>
  2624. <member name="M:CefPrintSettings.SetCopies(System.Int32)">
  2625. Set the number of copies.
  2626. </member>
  2627. <member name="M:CefPrintSettings.GetColorModel">
  2628. Get the color model.
  2629. </member>
  2630. <member name="M:CefPrintSettings.SetColorModel(cef_color_model_t)">
  2631. Set the color model.
  2632. </member>
  2633. <member name="M:CefPrintSettings.WillCollate">
  2634. Returns true if pages will be collated.
  2635. </member>
  2636. <member name="M:CefPrintSettings.SetCollate(System.Boolean)">
  2637. Set whether pages will be collated.
  2638. </member>
  2639. <member name="M:CefPrintSettings.IsSelectionOnly">
  2640. Returns true if only the selection will be printed.
  2641. </member>
  2642. <member name="M:CefPrintSettings.SetSelectionOnly(System.Boolean)">
  2643. Set whether only the selection will be printed.
  2644. </member>
  2645. <member name="M:CefPrintSettings.GetPageRanges(std.vector&lt;CefRange,std.allocator&lt;CefRange&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2646. Retrieve the page ranges.
  2647. </member>
  2648. <member name="M:CefPrintSettings.GetPageRangesCount">
  2649. Returns the number of page ranges that currently exist.
  2650. </member>
  2651. <member name="M:CefPrintSettings.SetPageRanges(std.vector&lt;CefRange,std.allocator&lt;CefRange&gt;&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2652. Set the page ranges.
  2653. </member>
  2654. <member name="M:CefPrintSettings.GetDPI">
  2655. Get the DPI (dots per inch).
  2656. </member>
  2657. <member name="M:CefPrintSettings.SetDPI(System.Int32)">
  2658. Set the DPI (dots per inch).
  2659. </member>
  2660. <member name="M:CefPrintSettings.GetDeviceName">
  2661. Get the device name.
  2662. </member>
  2663. <member name="M:CefPrintSettings.SetDeviceName(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2664. Set the device name.
  2665. </member>
  2666. <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)">
  2667. Set the printer printable area in device units.
  2668. Some platforms already provide flipped area. Set |landscape_needs_flip|
  2669. to false on those platforms to avoid double flipping.
  2670. </member>
  2671. <member name="M:CefPrintSettings.IsLandscape">
  2672. Returns true if the orientation is landscape.
  2673. </member>
  2674. <member name="M:CefPrintSettings.SetOrientation(System.Boolean)">
  2675. Set the page orientation.
  2676. </member>
  2677. <member name="M:CefPrintSettings.IsReadOnly">
  2678. Returns true if the values of this object are read-only. Some APIs may
  2679. expose read-only objects.
  2680. </member>
  2681. <member name="M:CefPrintSettings.IsValid">
  2682. Returns true if this object is valid. Do not call any other methods if
  2683. this function returns false.
  2684. </member>
  2685. <member name="M:CefPrintSettings.Create">
  2686. Create a new CefPrintSettings object.
  2687. </member>
  2688. <member name="T:CefPrintSettings">
  2689. Class representing print settings.
  2690. </member>
  2691. <member name="M:CefPermissionHandler.OnDismissPermissionPrompt(scoped_refptr&lt;CefBrowser&gt;,System.UInt64,cef_permission_request_result_t)">
  2692. Called when a permission prompt handled via OnShowPermissionPrompt is
  2693. dismissed. |prompt_id| will match the value that was passed to
  2694. OnShowPermissionPrompt. |result| will be the value passed to
  2695. CefPermissionPromptCallback::Continue or CEF_PERMISSION_RESULT_IGNORE if
  2696. the dialog was dismissed for other reasons such as navigation, browser
  2697. closure, etc. This method will not be called if OnShowPermissionPrompt
  2698. returned false for |prompt_id|.
  2699. </member>
  2700. <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;)">
  2701. Called when a page should show a permission prompt. |prompt_id| uniquely
  2702. identifies the prompt. |requesting_origin| is the URL origin requesting
  2703. permission. |requested_permissions| is a combination of values from
  2704. cef_permission_request_types_t that represent the requested permissions.
  2705. Return true and call CefPermissionPromptCallback::Continue either in this
  2706. method or at a later time to continue or cancel the request. Return false
  2707. to proceed with default handling. With the Chrome runtime, default
  2708. handling will display the permission prompt UI. With the Alloy runtime,
  2709. default handling is CEF_PERMISSION_RESULT_IGNORE.
  2710. </member>
  2711. <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;)">
  2712. Called when a page requests permission to access media.
  2713. |requesting_origin| is the URL origin requesting permission.
  2714. |requested_permissions| is a combination of values from
  2715. cef_media_access_permission_types_t that represent the requested
  2716. permissions. Return true and call CefMediaAccessCallback methods either in
  2717. this method or at a later time to continue or cancel the request. Return
  2718. false to proceed with default handling. With the Chrome runtime, default
  2719. handling will display the permission request UI. With the Alloy runtime,
  2720. default handling will deny the request. This method will not be called if
  2721. the "--enable-media-stream" command-line switch is used to grant all
  2722. permissions.
  2723. </member>
  2724. <member name="T:CefPermissionHandler">
  2725. Implement this interface to handle events related to permission requests.
  2726. The methods of this class will be called on the browser process UI thread.
  2727. </member>
  2728. <member name="M:CefPermissionPromptCallback.Continue(cef_permission_request_result_t)">
  2729. Complete the permissions request with the specified |result|.
  2730. </member>
  2731. <member name="T:CefPermissionPromptCallback">
  2732. Callback interface used for asynchronous continuation of permission prompts.
  2733. </member>
  2734. <member name="M:CefMediaAccessCallback.Cancel">
  2735. Cancel the media access request.
  2736. </member>
  2737. <member name="M:CefMediaAccessCallback.Continue(System.UInt32)">
  2738. Call to allow or deny media access. If this callback was initiated in
  2739. response to a getUserMedia (indicated by
  2740. CEF_MEDIA_PERMISSION_DEVICE_AUDIO_CAPTURE and/or
  2741. CEF_MEDIA_PERMISSION_DEVICE_VIDEO_CAPTURE being set) then
  2742. |allowed_permissions| must match |required_permissions| passed to
  2743. OnRequestMediaAccessPermission.
  2744. </member>
  2745. <member name="T:CefMediaAccessCallback">
  2746. Callback interface used for asynchronous continuation of media access
  2747. permission requests.
  2748. </member>
  2749. <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)">
  2750. Called when a navigation fails or is canceled. This method may be called
  2751. by itself if before commit or in combination with OnLoadStart/OnLoadEnd if
  2752. after commit. |errorCode| is the error code number, |errorText| is the
  2753. error text and |failedUrl| is the URL that failed to load.
  2754. See net\base\net_error_list.h for complete descriptions of the error
  2755. codes.
  2756. </member>
  2757. <member name="M:CefLoadHandler.OnLoadEnd(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,System.Int32)">
  2758. Called when the browser is done loading a frame. The |frame| value will
  2759. never be empty -- call the IsMain() method to check if this frame is the
  2760. main frame. Multiple frames may be loading at the same time. Sub-frames
  2761. may start or continue loading after the main frame load has ended. This
  2762. method will not be called for same page navigations (fragments, history
  2763. state, etc.) or for navigations that fail or are canceled before commit.
  2764. For notification of overall browser load status use OnLoadingStateChange
  2765. instead.
  2766. </member>
  2767. <member name="M:CefLoadHandler.OnLoadStart(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,cef_transition_type_t)">
  2768. Called after a navigation has been committed and before the browser begins
  2769. loading contents in the frame. The |frame| value will never be empty --
  2770. call the IsMain() method to check if this frame is the main frame.
  2771. |transition_type| provides information about the source of the navigation
  2772. and an accurate value is only available in the browser process. Multiple
  2773. frames may be loading at the same time. Sub-frames may start or continue
  2774. loading after the main frame load has ended. This method will not be
  2775. called for same page navigations (fragments, history state, etc.) or for
  2776. navigations that fail or are canceled before commit. For notification of
  2777. overall browser load status use OnLoadingStateChange instead.
  2778. </member>
  2779. <member name="M:CefLoadHandler.OnLoadingStateChange(scoped_refptr&lt;CefBrowser&gt;,System.Boolean,System.Boolean,System.Boolean)">
  2780. Called when the loading state has changed. This callback will be executed
  2781. twice -- once when loading is initiated either programmatically or by user
  2782. action, and once when loading is terminated due to completion,
  2783. cancellation of failure. It will be called before any calls to OnLoadStart
  2784. and after all calls to OnLoadError and/or OnLoadEnd.
  2785. </member>
  2786. <member name="T:CefLoadHandler">
  2787. Implement this interface to handle events related to browser load status.
  2788. The methods of this class will be called on the browser process UI thread or
  2789. render process main thread (TID_RENDERER).
  2790. </member>
  2791. <member name="M:CefLifeSpanHandler.OnBeforeClose(scoped_refptr&lt;CefBrowser&gt;)">
  2792. Called just before a browser is destroyed. Release all references to the
  2793. browser object and do not attempt to execute any methods on the browser
  2794. object (other than IsValid, GetIdentifier or IsSame) after this callback
  2795. returns. CefFrameHandler callbacks related to final main frame destruction
  2796. will arrive after this callback and CefBrowser::IsValid will return false
  2797. at that time. Any in-progress network requests associated with |browser|
  2798. will be aborted when the browser is destroyed, and
  2799. CefResourceRequestHandler callbacks related to those requests may still
  2800. arrive on the IO thread after this callback. See CefFrameHandler and
  2801. DoClose() documentation for additional usage information.
  2802. </member>
  2803. <member name="M:CefLifeSpanHandler.DoClose(scoped_refptr&lt;CefBrowser&gt;)">
  2804. Called when a browser has recieved a request to close. This may result
  2805. directly from a call to CefBrowserHost::*CloseBrowser() or indirectly if
  2806. the browser is parented to a top-level window created by CEF and the user
  2807. attempts to close that window (by clicking the 'X', for example). The
  2808. DoClose() method will be called after the JavaScript 'onunload' event has
  2809. been fired.
  2810. An application should handle top-level owner window close notifications by
  2811. calling CefBrowserHost::TryCloseBrowser() or
  2812. CefBrowserHost::CloseBrowser(false) instead of allowing the window to
  2813. close immediately (see the examples below). This gives CEF an opportunity
  2814. to process the 'onbeforeunload' event and optionally cancel the close
  2815. before DoClose() is called.
  2816. When windowed rendering is enabled CEF will internally create a window or
  2817. view to host the browser. In that case returning false from DoClose() will
  2818. send the standard close notification to the browser's top-level owner
  2819. window (e.g. WM_CLOSE on Windows, performClose: on OS X, "delete_event" on
  2820. Linux or CefWindowDelegate::CanClose() callback from Views). If the
  2821. browser's host window/view has already been destroyed (via view hierarchy
  2822. tear-down, for example) then DoClose() will not be called for that browser
  2823. since is no longer possible to cancel the close.
  2824. When windowed rendering is disabled returning false from DoClose() will
  2825. cause the browser object to be destroyed immediately.
  2826. If the browser's top-level owner window requires a non-standard close
  2827. notification then send that notification from DoClose() and return true.
  2828. The CefLifeSpanHandler::OnBeforeClose() method will be called after
  2829. DoClose() (if DoClose() is called) and immediately before the browser
  2830. object is destroyed. The application should only exit after
  2831. OnBeforeClose() has been called for all existing browsers.
  2832. The below examples describe what should happen during window close when
  2833. the browser is parented to an application-provided top-level window.
  2834. Example 1: Using CefBrowserHost::TryCloseBrowser(). This is recommended
  2835. for clients using standard close handling and windows created on the
  2836. browser process UI thread.
  2837. 1. User clicks the window close button which sends a close notification
  2838. to the application's top-level window.
  2839. 2. Application's top-level window receives the close notification and
  2840. calls TryCloseBrowser() (which internally calls CloseBrowser(false)).
  2841. TryCloseBrowser() returns false so the client cancels the window
  2842. close.
  2843. 3. JavaScript 'onbeforeunload' handler executes and shows the close
  2844. confirmation dialog (which can be overridden via
  2845. CefJSDialogHandler::OnBeforeUnloadDialog()).
  2846. 4. User approves the close.
  2847. 5. JavaScript 'onunload' handler executes.
  2848. 6. CEF sends a close notification to the application's top-level window
  2849. (because DoClose() returned false by default).
  2850. 7. Application's top-level window receives the close notification and
  2851. calls TryCloseBrowser(). TryCloseBrowser() returns true so the client
  2852. allows the window close.
  2853. 8. Application's top-level window is destroyed.
  2854. 9. Application's OnBeforeClose() handler is called and the browser object
  2855. is destroyed.
  2856. 10. Application exits by calling CefQuitMessageLoop() if no other browsers
  2857. exist.
  2858. Example 2: Using CefBrowserHost::CloseBrowser(false) and implementing the
  2859. DoClose() callback. This is recommended for clients using non-standard
  2860. close handling or windows that were not created on the browser process UI
  2861. thread.
  2862. 1. User clicks the window close button which sends a close notification
  2863. to the application's top-level window.
  2864. 2. Application's top-level window receives the close notification and:
  2865. A. Calls CefBrowserHost::CloseBrowser(false).
  2866. B. Cancels the window close.
  2867. 3. JavaScript 'onbeforeunload' handler executes and shows the close
  2868. confirmation dialog (which can be overridden via
  2869. CefJSDialogHandler::OnBeforeUnloadDialog()).
  2870. 4. User approves the close.
  2871. 5. JavaScript 'onunload' handler executes.
  2872. 6. Application's DoClose() handler is called. Application will:
  2873. A. Set a flag to indicate that the next close attempt will be allowed.
  2874. B. Return false.
  2875. 7. CEF sends an close notification to the application's top-level window.
  2876. 8. Application's top-level window receives the close notification and
  2877. allows the window to close based on the flag from #6B.
  2878. 9. Application's top-level window is destroyed.
  2879. 10. Application's OnBeforeClose() handler is called and the browser object
  2880. is destroyed.
  2881. 11. Application exits by calling CefQuitMessageLoop() if no other browsers
  2882. exist.
  2883. </member>
  2884. <member name="M:CefLifeSpanHandler.OnAfterCreated(scoped_refptr&lt;CefBrowser&gt;)">
  2885. Called after a new browser is created. It is now safe to begin performing
  2886. actions with |browser|. CefFrameHandler callbacks related to initial main
  2887. frame creation will arrive before this callback. See CefFrameHandler
  2888. documentation for additional usage information.
  2889. </member>
  2890. <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">
  2891. Called on the UI thread before a new popup browser is created. The
  2892. |browser| and |frame| values represent the source of the popup request.
  2893. The |target_url| and |target_frame_name| values indicate where the popup
  2894. browser should navigate and may be empty if not specified with the
  2895. request. The |target_disposition| value indicates where the user intended
  2896. to open the popup (e.g. current tab, new tab, etc). The |user_gesture|
  2897. value will be true if the popup was opened via explicit user gesture (e.g.
  2898. clicking a link) or false if the popup opened automatically (e.g. via the
  2899. DomContentLoaded event). The |popupFeatures| structure contains additional
  2900. information about the requested popup window. To allow creation of the
  2901. popup browser optionally modify |windowInfo|, |client|, |settings| and
  2902. |no_javascript_access| and return false. To cancel creation of the popup
  2903. browser return true. The |client| and |settings| values will default to
  2904. the source browser's values. If the |no_javascript_access| value is set to
  2905. false the new browser will not be scriptable and may not be hosted in the
  2906. same renderer process as the source browser. Any modifications to
  2907. |windowInfo| will be ignored if the parent browser is wrapped in a
  2908. CefBrowserView. Popup browser creation will be canceled if the parent
  2909. browser is destroyed before the popup browser creation completes
  2910. (indicated by a call to OnAfterCreated for the popup browser). The
  2911. |extra_info| parameter provides an opportunity to specify extra
  2912. information specific to the created popup browser that will be passed to
  2913. CefRenderProcessHandler::OnBrowserCreated() in the render process.
  2914. </member>
  2915. <member name="T:CefLifeSpanHandler">
  2916. Implement this interface to handle events related to browser life span. The
  2917. methods of this class will be called on the UI thread unless otherwise
  2918. indicated.
  2919. </member>
  2920. <member name="M:CefKeyboardHandler.OnKeyEvent(scoped_refptr&lt;CefBrowser&gt;,CefKeyEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,tagMSG*)">
  2921. Called after the renderer and JavaScript in the page has had a chance to
  2922. handle the event. |event| contains information about the keyboard event.
  2923. |os_event| is the operating system event message, if any. Return true if
  2924. the keyboard event was handled or false otherwise.
  2925. </member>
  2926. <member name="M:CefKeyboardHandler.OnPreKeyEvent(scoped_refptr&lt;CefBrowser&gt;,CefKeyEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,tagMSG*,System.Boolean*)">
  2927. Called before a keyboard event is sent to the renderer. |event| contains
  2928. information about the keyboard event. |os_event| is the operating system
  2929. event message, if any. Return true if the event was handled or false
  2930. otherwise. If the event will be handled in OnKeyEvent() as a keyboard
  2931. shortcut set |is_keyboard_shortcut| to true and return false.
  2932. </member>
  2933. <member name="T:CefKeyboardHandler">
  2934. Implement this interface to handle events related to keyboard input. The
  2935. methods of this class will be called on the UI thread.
  2936. </member>
  2937. <member name="M:CefJSDialogHandler.OnDialogClosed(scoped_refptr&lt;CefBrowser&gt;)">
  2938. Called when the dialog is closed.
  2939. </member>
  2940. <member name="M:CefJSDialogHandler.OnResetDialogState(scoped_refptr&lt;CefBrowser&gt;)">
  2941. Called to cancel any pending dialogs and reset any saved dialog state.
  2942. Will be called due to events like page navigation irregardless of whether
  2943. any dialogs are currently pending.
  2944. </member>
  2945. <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;)">
  2946. Called to run a dialog asking the user if they want to leave a page.
  2947. Return false to use the default dialog implementation. Return true if the
  2948. application will use a custom dialog or if the callback has been executed
  2949. immediately. Custom dialogs may be either modal or modeless. If a custom
  2950. dialog is used the application must execute |callback| once the custom
  2951. dialog is dismissed.
  2952. </member>
  2953. <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)">
  2954. Called to run a JavaScript dialog. If |origin_url| is non-empty it can be
  2955. passed to the CefFormatUrlForSecurityDisplay function to retrieve a secure
  2956. and user-friendly display string. The |default_prompt_text| value will be
  2957. specified for prompt dialogs only. Set |suppress_message| to true and
  2958. return false to suppress the message (suppressing messages is preferable
  2959. to immediately executing the callback as this is used to detect presumably
  2960. malicious behavior like spamming alert messages in onbeforeunload). Set
  2961. |suppress_message| to false and return false to use the default
  2962. implementation (the default implementation will show one modal dialog at a
  2963. time and suppress any additional dialog requests until the displayed
  2964. dialog is dismissed). Return true if the application will use a custom
  2965. dialog or if the callback has been executed immediately. Custom dialogs
  2966. may be either modal or modeless. If a custom dialog is used the
  2967. application must execute |callback| once the custom dialog is dismissed.
  2968. </member>
  2969. <member name="T:CefJSDialogHandler">
  2970. Implement this interface to handle events related to JavaScript dialogs. The
  2971. methods of this class will be called on the UI thread.
  2972. </member>
  2973. <member name="M:CefJSDialogCallback.Continue(System.Boolean,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  2974. Continue the JS dialog request. Set |success| to true if the OK button was
  2975. pressed. The |user_input| value should be specified for prompt dialogs.
  2976. </member>
  2977. <member name="T:CefJSDialogCallback">
  2978. Callback interface used for asynchronous continuation of JavaScript dialog
  2979. requests.
  2980. </member>
  2981. <member name="M:CefFrameHandler.OnMainFrameChanged(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,scoped_refptr&lt;CefFrame&gt;)">
  2982. Called when the main frame changes due to (a) initial browser creation,
  2983. (b) final browser destruction, (c) cross-origin navigation or (d)
  2984. re-navigation after renderer process termination (due to crashes, etc).
  2985. |old_frame| will be NULL and |new_frame| will be non-NULL when a main
  2986. frame is assigned to |browser| for the first time. |old_frame| will be
  2987. non-NULL and |new_frame| will be NULL and when a main frame is removed
  2988. from |browser| for the last time. Both |old_frame| and |new_frame| will be
  2989. non-NULL for cross-origin navigations or re-navigation after renderer
  2990. process termination. This method will be called after OnFrameCreated() for
  2991. |new_frame| and/or after OnFrameDetached() for |old_frame|. If called
  2992. after CefLifeSpanHandler::OnBeforeClose() during browser destruction then
  2993. CefBrowser::IsValid() will return false for |browser|.
  2994. </member>
  2995. <member name="M:CefFrameHandler.OnFrameDetached(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;)">
  2996. Called when a frame loses its connection to the renderer process and will
  2997. be destroyed. Any pending or future commands will be discarded and
  2998. CefFrame::IsValid() will now return false for |frame|. If called after
  2999. CefLifeSpanHandler::OnBeforeClose() during browser destruction then
  3000. CefBrowser::IsValid() will return false for |browser|.
  3001. </member>
  3002. <member name="M:CefFrameHandler.OnFrameAttached(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,System.Boolean)">
  3003. Called when a frame can begin routing commands to/from the associated
  3004. renderer process. |reattached| will be true if the frame was re-attached
  3005. after exiting the BackForwardCache. Any commands that were queued have now
  3006. been dispatched.
  3007. </member>
  3008. <member name="M:CefFrameHandler.OnFrameCreated(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;)">
  3009. Called when a new frame is created. This will be the first notification
  3010. that references |frame|. Any commands that require transport to the
  3011. associated renderer process (LoadRequest, SendProcessMessage, GetSource,
  3012. etc.) will be queued until OnFrameAttached is called for |frame|.
  3013. </member>
  3014. <member name="T:CefFrameHandler">
  3015. Implement this interface to handle events related to CefFrame life span. The
  3016. order of callbacks is:
  3017. (1) During initial CefBrowserHost creation and navigation of the main frame:
  3018. - CefFrameHandler::OnFrameCreated =&gt; The initial main frame object has been
  3019. created. Any commands will be queued until the frame is attached.
  3020. - CefFrameHandler::OnMainFrameChanged =&gt; The initial main frame object has
  3021. been assigned to the browser.
  3022. - CefLifeSpanHandler::OnAfterCreated =&gt; The browser is now valid and can be
  3023. used.
  3024. - CefFrameHandler::OnFrameAttached =&gt; The initial main frame object is now
  3025. connected to its peer in the renderer process. Commands can be routed.
  3026. (2) During further CefBrowserHost navigation/loading of the main frame
  3027. and/or sub-frames:
  3028. - CefFrameHandler::OnFrameCreated =&gt; A new main frame or sub-frame object
  3029. has been created. Any commands will be queued until the frame is attached.
  3030. - CefFrameHandler::OnFrameAttached =&gt; A new main frame or sub-frame object
  3031. is now connected to its peer in the renderer process. Commands can be
  3032. routed.
  3033. - CefFrameHandler::OnFrameDetached =&gt; An existing main frame or sub-frame
  3034. object has lost its connection to the renderer process. If multiple
  3035. objects are detached at the same time then notifications will be sent for
  3036. any sub-frame objects before the main frame object. Commands can no longer
  3037. be routed and will be discarded.
  3038. - CefFrameHandler::OnMainFrameChanged =&gt; A new main frame object has been
  3039. assigned to the browser. This will only occur with cross-origin navigation
  3040. or re-navigation after renderer process termination (due to crashes, etc).
  3041. (3) During final CefBrowserHost destruction of the main frame:
  3042. - CefFrameHandler::OnFrameDetached =&gt; Any sub-frame objects have lost their
  3043. connection to the renderer process. Commands can no longer be routed and
  3044. will be discarded.
  3045. - CefLifeSpanHandler::OnBeforeClose =&gt; The browser has been destroyed.
  3046. - CefFrameHandler::OnFrameDetached =&gt; The main frame object have lost its
  3047. connection to the renderer process. Notifications will be sent for any
  3048. sub-frame objects before the main frame object. Commands can no longer be
  3049. routed and will be discarded.
  3050. - CefFrameHandler::OnMainFrameChanged =&gt; The final main frame object has
  3051. been removed from the browser.
  3052. Cross-origin navigation and/or loading receives special handling.
  3053. When the main frame navigates to a different origin the OnMainFrameChanged
  3054. callback (2) will be executed with the old and new main frame objects.
  3055. When a new sub-frame is loaded in, or an existing sub-frame is navigated to,
  3056. a different origin from the parent frame, a temporary sub-frame object will
  3057. first be created in the parent's renderer process. That temporary sub-frame
  3058. will then be discarded after the real cross-origin sub-frame is created in
  3059. the new/target renderer process. The client will receive cross-origin
  3060. navigation callbacks (2) for the transition from the temporary sub-frame to
  3061. the real sub-frame. The temporary sub-frame will not recieve or execute
  3062. commands during this transitional period (any sent commands will be
  3063. discarded).
  3064. When a new popup browser is created in a different origin from the parent
  3065. browser, a temporary main frame object for the popup will first be created
  3066. in the parent's renderer process. That temporary main frame will then be
  3067. discarded after the real cross-origin main frame is created in the
  3068. new/target renderer process. The client will recieve creation and initial
  3069. navigation callbacks (1) for the temporary main frame, followed by
  3070. cross-origin navigation callbacks (2) for the transition from the temporary
  3071. main frame to the real main frame. The temporary main frame may receive and
  3072. execute commands during this transitional period (any sent commands may be
  3073. executed, but the behavior is potentially undesirable since they execute in
  3074. the parent browser's renderer process and not the new/target renderer
  3075. process).
  3076. Callbacks will not be executed for placeholders that may be created during
  3077. pre-commit navigation for sub-frames that do not yet exist in the renderer
  3078. process. Placeholders will have CefFrame::GetIdentifier() == -4.
  3079. The methods of this class will be called on the UI thread unless otherwise
  3080. indicated.
  3081. </member>
  3082. <member name="M:CefFocusHandler.OnGotFocus(scoped_refptr&lt;CefBrowser&gt;)">
  3083. Called when the browser component has received focus.
  3084. </member>
  3085. <member name="M:CefFocusHandler.OnSetFocus(scoped_refptr&lt;CefBrowser&gt;,cef_focus_source_t)">
  3086. Called when the browser component is requesting focus. |source| indicates
  3087. where the focus request is originating from. Return false to allow the
  3088. focus to be set or true to cancel setting the focus.
  3089. </member>
  3090. <member name="M:CefFocusHandler.OnTakeFocus(scoped_refptr&lt;CefBrowser&gt;,System.Boolean)">
  3091. Called when the browser component is about to loose focus. For instance,
  3092. if focus was on the last HTML element and the user pressed the TAB key.
  3093. |next| will be true if the browser is giving focus to the next component
  3094. and false if the browser is giving focus to the previous component.
  3095. </member>
  3096. <member name="T:CefFocusHandler">
  3097. Implement this interface to handle events related to focus. The methods of
  3098. this class will be called on the UI thread.
  3099. </member>
  3100. <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)">
  3101. Called to report find results returned by CefBrowserHost::Find().
  3102. |identifer| is a unique incremental identifier for the currently active
  3103. search, |count| is the number of matches currently identified,
  3104. |selectionRect| is the location of where the match was found (in window
  3105. coordinates), |activeMatchOrdinal| is the current position in the search
  3106. results, and |finalUpdate| is true if this is the last find notification.
  3107. </member>
  3108. <member name="T:CefFindHandler">
  3109. Implement this interface to handle events related to find results. The
  3110. methods of this class will be called on the UI thread.
  3111. </member>
  3112. <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)">
  3113. Called whenever draggable regions for the browser window change. These can
  3114. be specified using the '-webkit-app-region: drag/no-drag' CSS-property. If
  3115. draggable regions are never defined in a document this method will also
  3116. never be called. If the last draggable region is removed from a document
  3117. this method will be called with an empty vector.
  3118. </member>
  3119. <member name="M:CefDragHandler.OnDragEnter(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefDragData&gt;,cef_drag_operations_mask_t)">
  3120. Called when an external drag event enters the browser window. |dragData|
  3121. contains the drag event data and |mask| represents the type of drag
  3122. operation. Return false for default drag handling behavior or true to
  3123. cancel the drag event.
  3124. </member>
  3125. <member name="T:CefDragHandler">
  3126. Implement this interface to handle events related to dragging. The methods
  3127. of this class will be called on the UI thread.
  3128. </member>
  3129. <member name="M:CefDownloadHandler.OnDownloadUpdated(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefDownloadItem&gt;,scoped_refptr&lt;CefDownloadItemCallback&gt;)">
  3130. Called when a download's status or progress information has been updated.
  3131. This may be called multiple times before and after OnBeforeDownload().
  3132. Execute |callback| either asynchronously or in this method to cancel the
  3133. download if desired. Do not keep a reference to |download_item| outside of
  3134. this method.
  3135. Called when a download's status or progress information has been updated.
  3136. This may be called multiple times before and after OnBeforeDownload().
  3137. Execute |callback| either asynchronously or in this method to cancel the
  3138. download if desired. Do not keep a reference to |download_item| outside of
  3139. this method.
  3140. </member>
  3141. <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;)">
  3142. Called before a download begins. |suggested_name| is the suggested name
  3143. for the download file. By default the download will be canceled. Execute
  3144. |callback| either asynchronously or in this method to continue the
  3145. download if desired. Do not keep a reference to |download_item| outside of
  3146. this method.
  3147. Called before a download begins. |suggested_name| is the suggested name
  3148. for the download file. By default the download will be canceled. Execute
  3149. |callback| either asynchronously or in this method to continue the
  3150. download if desired. Do not keep a reference to |download_item| outside of
  3151. this method.
  3152. </member>
  3153. <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)">
  3154. Called before a download begins in response to a user-initiated action
  3155. (e.g. alt + link click or link click that returns a `Content-Disposition:
  3156. attachment` response from the server). |url| is the target download URL
  3157. and |request_method| is the target method (GET, POST, etc). Return true to
  3158. proceed with the download or false to cancel the download.
  3159. Called before a download begins in response to a user-initiated action
  3160. (e.g. alt + link click or link click that returns a `Content-Disposition:
  3161. attachment` response from the server). |url| is the target download URL
  3162. and |request_method| is the target method (GET, POST, etc). Return true to
  3163. proceed with the download or false to cancel the download.
  3164. </member>
  3165. <member name="T:CefDownloadHandler">
  3166. Class used to handle file downloads. The methods of this class will called
  3167. on the browser process UI thread.
  3168. Class used to handle file downloads. The methods of this class will called
  3169. on the browser process UI thread.
  3170. </member>
  3171. <member name="M:CefDownloadItemCallback.Resume">
  3172. Call to resume the download.
  3173. Call to resume the download.
  3174. </member>
  3175. <member name="M:CefDownloadItemCallback.Pause">
  3176. Call to pause the download.
  3177. Call to pause the download.
  3178. </member>
  3179. <member name="M:CefDownloadItemCallback.Cancel">
  3180. Call to cancel the download.
  3181. Call to cancel the download.
  3182. </member>
  3183. <member name="T:CefDownloadItemCallback">
  3184. Callback interface used to asynchronously cancel a download.
  3185. Callback interface used to asynchronously cancel a download.
  3186. </member>
  3187. <member name="M:CefBeforeDownloadCallback.Continue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean)">
  3188. Call to continue the download. Set |download_path| to the full file path
  3189. for the download including the file name or leave blank to use the
  3190. suggested name and the default temp directory. Set |show_dialog| to true
  3191. if you do wish to show the default "Save As" dialog.
  3192. Call to continue the download. Set |download_path| to the full file path
  3193. for the download including the file name or leave blank to use the
  3194. suggested name and the default temp directory. Set |show_dialog| to true
  3195. if you do wish to show the default "Save As" dialog.
  3196. </member>
  3197. <member name="T:CefBeforeDownloadCallback">
  3198. Callback interface used to asynchronously continue a download.
  3199. Callback interface used to asynchronously continue a download.
  3200. </member>
  3201. <member name="M:CefDisplayHandler.OnMediaAccessChange(scoped_refptr&lt;CefBrowser&gt;,System.Boolean,System.Boolean)">
  3202. Called when the browser's access to an audio and/or video source has
  3203. changed.
  3204. </member>
  3205. <member name="M:CefDisplayHandler.OnCursorChange(scoped_refptr&lt;CefBrowser&gt;,HICON__*,cef_cursor_type_t,CefCursorInfo!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3206. Called when the browser's cursor has changed. If |type| is CT_CUSTOM then
  3207. |custom_cursor_info| will be populated with the custom cursor information.
  3208. Return true if the cursor change was handled or false for default
  3209. handling.
  3210. </member>
  3211. <member name="M:CefDisplayHandler.OnLoadingProgressChange(scoped_refptr&lt;CefBrowser&gt;,System.Double)">
  3212. Called when the overall page loading progress has changed. |progress|
  3213. ranges from 0.0 to 1.0.
  3214. </member>
  3215. <member name="M:CefDisplayHandler.OnAutoResize(scoped_refptr&lt;CefBrowser&gt;,CefSize!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3216. Called when auto-resize is enabled via
  3217. CefBrowserHost::SetAutoResizeEnabled and the contents have auto-resized.
  3218. |new_size| will be the desired size in view coordinates. Return true if
  3219. the resize was handled or false for default handling.
  3220. </member>
  3221. <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)">
  3222. Called to display a console message. Return true to stop the message from
  3223. being output to the console.
  3224. </member>
  3225. <member name="M:CefDisplayHandler.OnStatusMessage(scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3226. Called when the browser receives a status message. |value| contains the
  3227. text that will be displayed in the status message.
  3228. </member>
  3229. <member name="M:CefDisplayHandler.OnTooltip(scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3230. Called when the browser is about to display a tooltip. |text| contains the
  3231. text that will be displayed in the tooltip. To handle the display of the
  3232. tooltip yourself return true. Otherwise, you can optionally modify |text|
  3233. and then return false to allow the browser to display the tooltip.
  3234. When window rendering is disabled the application is responsible for
  3235. drawing tooltips and the return value is ignored.
  3236. </member>
  3237. <member name="M:CefDisplayHandler.OnFullscreenModeChange(scoped_refptr&lt;CefBrowser&gt;,System.Boolean)">
  3238. Called when web content in the page has toggled fullscreen mode. If
  3239. |fullscreen| is true the content will automatically be sized to fill the
  3240. browser content area. If |fullscreen| is false the content will
  3241. automatically return to its original size and position. The client is
  3242. responsible for resizing the browser if desired.
  3243. </member>
  3244. <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)">
  3245. Called when the page icon changes.
  3246. </member>
  3247. <member name="M:CefDisplayHandler.OnTitleChange(scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3248. Called when the page title changes.
  3249. </member>
  3250. <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)">
  3251. Called when a frame's address has changed.
  3252. </member>
  3253. <member name="T:CefDisplayHandler">
  3254. Implement this interface to handle events related to browser display state.
  3255. The methods of this class will be called on the UI thread.
  3256. </member>
  3257. <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,scoped_refptr&lt;CefFileDialogCallback&gt;)">
  3258. Called to run a file chooser dialog. |mode| represents the type of dialog
  3259. to display. |title| to the title to be used for the dialog and may be
  3260. empty to show the default title ("Open" or "Save" depending on the mode).
  3261. |default_file_path| is the path with optional directory and/or file name
  3262. component that should be initially selected in the dialog.
  3263. |accept_filters| are used to restrict the selectable file types and may
  3264. any combination of (a) valid lower-cased MIME types (e.g. "text/*" or
  3265. "image/*"), (b) individual file extensions (e.g. ".txt" or ".png"), or (c)
  3266. combined description and file extension delimited using "|" and ";" (e.g.
  3267. "Image Types|.png;.gif;.jpg"). To display a custom dialog return true and
  3268. execute |callback| either inline or at a later time. To display the
  3269. default dialog return false.
  3270. </member>
  3271. <member name="T:CefDialogHandler">
  3272. Implement this interface to handle dialog events. The methods of this class
  3273. will be called on the browser process UI thread.
  3274. </member>
  3275. <member name="M:CefFileDialogCallback.Cancel">
  3276. Cancel the file selection.
  3277. </member>
  3278. <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)">
  3279. Continue the file selection. |file_paths| should be a single value or a
  3280. list of values depending on the dialog mode. An empty |file_paths| value
  3281. is treated the same as calling Cancel().
  3282. </member>
  3283. <member name="T:CefFileDialogCallback">
  3284. Callback interface for asynchronous continuation of file dialog requests.
  3285. </member>
  3286. <member name="M:CefContextMenuParams.IsCustomMenu">
  3287. Returns true if the context menu contains items specified by the renderer
  3288. process.
  3289. Returns true if the context menu contains items specified by the renderer
  3290. process.
  3291. </member>
  3292. <member name="M:CefContextMenuParams.GetEditStateFlags">
  3293. Returns flags representing the actions supported by the editable node, if
  3294. any, that the context menu was invoked on.
  3295. Returns flags representing the actions supported by the editable node, if
  3296. any, that the context menu was invoked on.
  3297. </member>
  3298. <member name="M:CefContextMenuParams.IsSpellCheckEnabled">
  3299. Returns true if the context menu was invoked on an editable node where
  3300. spell-check is enabled.
  3301. Returns true if the context menu was invoked on an editable node where
  3302. spell-check is enabled.
  3303. </member>
  3304. <member name="M:CefContextMenuParams.IsEditable">
  3305. Returns true if the context menu was invoked on an editable node.
  3306. Returns true if the context menu was invoked on an editable node.
  3307. </member>
  3308. <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)">
  3309. Returns true if suggestions exist, false otherwise. Fills in |suggestions|
  3310. from the spell check service for the misspelled word if there is one.
  3311. Returns true if suggestions exist, false otherwise. Fills in |suggestions|
  3312. from the spell check service for the misspelled word if there is one.
  3313. </member>
  3314. <member name="M:CefContextMenuParams.GetMisspelledWord">
  3315. Returns the text of the misspelled word, if any, that the context menu was
  3316. invoked on.
  3317. Returns the text of the misspelled word, if any, that the context menu was
  3318. invoked on.
  3319. </member>
  3320. <member name="M:CefContextMenuParams.GetSelectionText">
  3321. Returns the text of the selection, if any, that the context menu was
  3322. invoked on.
  3323. Returns the text of the selection, if any, that the context menu was
  3324. invoked on.
  3325. </member>
  3326. <member name="M:CefContextMenuParams.GetMediaStateFlags">
  3327. Returns flags representing the actions supported by the media element, if
  3328. any, that the context menu was invoked on.
  3329. Returns flags representing the actions supported by the media element, if
  3330. any, that the context menu was invoked on.
  3331. </member>
  3332. <member name="M:CefContextMenuParams.GetMediaType">
  3333. Returns the type of context node that the context menu was invoked on.
  3334. Returns the type of context node that the context menu was invoked on.
  3335. </member>
  3336. <member name="M:CefContextMenuParams.GetFrameCharset">
  3337. Returns the character encoding of the subframe that the context menu was
  3338. invoked on.
  3339. Returns the character encoding of the subframe that the context menu was
  3340. invoked on.
  3341. </member>
  3342. <member name="M:CefContextMenuParams.GetFrameUrl">
  3343. Returns the URL of the subframe that the context menu was invoked on.
  3344. Returns the URL of the subframe that the context menu was invoked on.
  3345. </member>
  3346. <member name="M:CefContextMenuParams.GetPageUrl">
  3347. Returns the URL of the top level page that the context menu was invoked
  3348. on.
  3349. Returns the URL of the top level page that the context menu was invoked
  3350. on.
  3351. </member>
  3352. <member name="M:CefContextMenuParams.GetTitleText">
  3353. Returns the title text or the alt text if the context menu was invoked on
  3354. an image.
  3355. Returns the title text or the alt text if the context menu was invoked on
  3356. an image.
  3357. </member>
  3358. <member name="M:CefContextMenuParams.HasImageContents">
  3359. Returns true if the context menu was invoked on an image which has
  3360. non-empty contents.
  3361. Returns true if the context menu was invoked on an image which has
  3362. non-empty contents.
  3363. </member>
  3364. <member name="M:CefContextMenuParams.GetSourceUrl">
  3365. Returns the source URL, if any, for the element that the context menu was
  3366. invoked on. Example of elements with source URLs are img, audio, and
  3367. video.
  3368. Returns the source URL, if any, for the element that the context menu was
  3369. invoked on. Example of elements with source URLs are img, audio, and
  3370. video.
  3371. </member>
  3372. <member name="M:CefContextMenuParams.GetUnfilteredLinkUrl">
  3373. Returns the link URL, if any, to be used ONLY for "copy link address". We
  3374. don't validate this field in the frontend process.
  3375. Returns the link URL, if any, to be used ONLY for "copy link address". We
  3376. don't validate this field in the frontend process.
  3377. </member>
  3378. <member name="M:CefContextMenuParams.GetLinkUrl">
  3379. Returns the URL of the link, if any, that encloses the node that the
  3380. context menu was invoked on.
  3381. Returns the URL of the link, if any, that encloses the node that the
  3382. context menu was invoked on.
  3383. </member>
  3384. <member name="M:CefContextMenuParams.GetTypeFlags">
  3385. Returns flags representing the type of node that the context menu was
  3386. invoked on.
  3387. Returns flags representing the type of node that the context menu was
  3388. invoked on.
  3389. </member>
  3390. <member name="M:CefContextMenuParams.GetYCoord">
  3391. Returns the Y coordinate of the mouse where the context menu was invoked.
  3392. Coords are relative to the associated RenderView's origin.
  3393. Returns the Y coordinate of the mouse where the context menu was invoked.
  3394. Coords are relative to the associated RenderView's origin.
  3395. </member>
  3396. <member name="M:CefContextMenuParams.GetXCoord">
  3397. Returns the X coordinate of the mouse where the context menu was invoked.
  3398. Coords are relative to the associated RenderView's origin.
  3399. Returns the X coordinate of the mouse where the context menu was invoked.
  3400. Coords are relative to the associated RenderView's origin.
  3401. </member>
  3402. <member name="T:CefContextMenuParams">
  3403. Provides information about the context menu state. The methods of this class
  3404. can only be accessed on browser process the UI thread.
  3405. Provides information about the context menu state. The methods of this class
  3406. can only be accessed on browser process the UI thread.
  3407. </member>
  3408. <member name="M:CefContextMenuHandler.OnQuickMenuDismissed(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;)">
  3409. Called when the quick menu for a windowless browser is dismissed
  3410. irregardless of whether the menu was canceled or a command was selected.
  3411. Called when the quick menu for a windowless browser is dismissed
  3412. irregardless of whether the menu was canceled or a command was selected.
  3413. </member>
  3414. <member name="M:CefContextMenuHandler.OnQuickMenuCommand(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;,System.Int32,cef_event_flags_t)">
  3415. Called to execute a command selected from the quick menu for a windowless
  3416. browser. Return true if the command was handled or false for the default
  3417. implementation. See cef_menu_id_t for command IDs that have default
  3418. implementations.
  3419. Called to execute a command selected from the quick menu for a windowless
  3420. browser. Return true if the command was handled or false for the default
  3421. implementation. See cef_menu_id_t for command IDs that have default
  3422. implementations.
  3423. </member>
  3424. <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;)">
  3425. Called to allow custom display of the quick menu for a windowless browser.
  3426. |location| is the top left corner of the selected region. |size| is the
  3427. size of the selected region. |edit_state_flags| is a combination of flags
  3428. that represent the state of the quick menu. Return true if the menu will
  3429. be handled and execute |callback| either synchronously or asynchronously
  3430. with the selected command ID. Return false to cancel the menu.
  3431. Called to allow custom display of the quick menu for a windowless browser.
  3432. |location| is the top left corner of the selected region. |size| is the
  3433. size of the selected region. |edit_state_flags| is a combination of flags
  3434. that represent the state of the quick menu. Return true if the menu will
  3435. be handled and execute |callback| either synchronously or asynchronously
  3436. with the selected command ID. Return false to cancel the menu.
  3437. </member>
  3438. <member name="M:CefContextMenuHandler.OnContextMenuDismissed(scoped_refptr&lt;CefBrowser&gt;,scoped_refptr&lt;CefFrame&gt;)">
  3439. Called when the context menu is dismissed irregardless of whether the menu
  3440. was canceled or a command was selected.
  3441. Called when the context menu is dismissed irregardless of whether the menu
  3442. was canceled or a command was selected.
  3443. </member>
  3444. <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)">
  3445. Called to execute a command selected from the context menu. Return true if
  3446. the command was handled or false for the default implementation. See
  3447. cef_menu_id_t for the command ids that have default implementations. All
  3448. user-defined command ids should be between MENU_ID_USER_FIRST and
  3449. MENU_ID_USER_LAST. |params| will have the same values as what was passed
  3450. to OnBeforeContextMenu(). Do not keep a reference to |params| outside of
  3451. this callback.
  3452. Called to execute a command selected from the context menu. Return true if
  3453. the command was handled or false for the default implementation. See
  3454. cef_menu_id_t for the command ids that have default implementations. All
  3455. user-defined command ids should be between MENU_ID_USER_FIRST and
  3456. MENU_ID_USER_LAST. |params| will have the same values as what was passed
  3457. to OnBeforeContextMenu(). Do not keep a reference to |params| outside of
  3458. this callback.
  3459. </member>
  3460. <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;)">
  3461. Called to allow custom display of the context menu. |params| provides
  3462. information about the context menu state. |model| contains the context
  3463. menu model resulting from OnBeforeContextMenu. For custom display return
  3464. true and execute |callback| either synchronously or asynchronously with
  3465. the selected command ID. For default display return false. Do not keep
  3466. references to |params| or |model| outside of this callback.
  3467. Called to allow custom display of the context menu. |params| provides
  3468. information about the context menu state. |model| contains the context
  3469. menu model resulting from OnBeforeContextMenu. For custom display return
  3470. true and execute |callback| either synchronously or asynchronously with
  3471. the selected command ID. For default display return false. Do not keep
  3472. references to |params| or |model| outside of this callback.
  3473. </member>
  3474. <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;)">
  3475. Called before a context menu is displayed. |params| provides information
  3476. about the context menu state. |model| initially contains the default
  3477. context menu. The |model| can be cleared to show no context menu or
  3478. modified to show a custom menu. Do not keep references to |params| or
  3479. |model| outside of this callback.
  3480. Called before a context menu is displayed. |params| provides information
  3481. about the context menu state. |model| initially contains the default
  3482. context menu. The |model| can be cleared to show no context menu or
  3483. modified to show a custom menu. Do not keep references to |params| or
  3484. |model| outside of this callback.
  3485. </member>
  3486. <member name="T:CefContextMenuHandler">
  3487. Implement this interface to handle context menu events. The methods of this
  3488. class will be called on the UI thread.
  3489. Implement this interface to handle context menu events. The methods of this
  3490. class will be called on the UI thread.
  3491. </member>
  3492. <member name="M:CefRunQuickMenuCallback.Cancel">
  3493. Cancel quick menu display.
  3494. Cancel quick menu display.
  3495. </member>
  3496. <member name="M:CefRunQuickMenuCallback.Continue(System.Int32,cef_event_flags_t)">
  3497. Complete quick menu display by selecting the specified |command_id| and
  3498. |event_flags|.
  3499. Complete quick menu display by selecting the specified |command_id| and
  3500. |event_flags|.
  3501. </member>
  3502. <member name="T:CefRunQuickMenuCallback">
  3503. Callback interface used for continuation of custom quick menu display.
  3504. Callback interface used for continuation of custom quick menu display.
  3505. </member>
  3506. <member name="M:CefRunContextMenuCallback.Cancel">
  3507. Cancel context menu display.
  3508. Cancel context menu display.
  3509. </member>
  3510. <member name="M:CefRunContextMenuCallback.Continue(System.Int32,cef_event_flags_t)">
  3511. Complete context menu display by selecting the specified |command_id| and
  3512. |event_flags|.
  3513. Complete context menu display by selecting the specified |command_id| and
  3514. |event_flags|.
  3515. </member>
  3516. <member name="T:CefRunContextMenuCallback">
  3517. Callback interface used for continuation of custom context menu display.
  3518. Callback interface used for continuation of custom context menu display.
  3519. </member>
  3520. <member name="M:CefMenuModel.GetColorAt(System.Int32,cef_menu_color_type_t,System.UInt32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3521. Returns in |color| the color that was explicitly set for |command_id| and
  3522. |color_type|. Specify an |index| value of -1 to return the default color
  3523. in |color|. If a color was not set then 0 will be returned in |color|.
  3524. Returns true on success.
  3525. </member>
  3526. <member name="M:CefMenuModel.GetColor(System.Int32,cef_menu_color_type_t,System.UInt32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3527. Returns in |color| the color that was explicitly set for |command_id| and
  3528. |color_type|. If a color was not set then 0 will be returned in |color|.
  3529. Returns true on success.
  3530. </member>
  3531. <member name="M:CefMenuModel.SetColorAt(System.Int32,cef_menu_color_type_t,System.UInt32)">
  3532. Set the explicit color for |command_id| and |index| to |color|. Specify a
  3533. |color| value of 0 to remove the explicit color. Specify an |index| value
  3534. of -1 to set the default color for items that do not have an explicit
  3535. color set. If no explicit color or default color is set for |color_type|
  3536. then the system color will be used. Returns true on success.
  3537. </member>
  3538. <member name="M:CefMenuModel.SetColor(System.Int32,cef_menu_color_type_t,System.UInt32)">
  3539. Set the explicit color for |command_id| and |color_type| to |color|.
  3540. Specify a |color| value of 0 to remove the explicit color. If no explicit
  3541. color or default color is set for |color_type| then the system color will
  3542. be used. Returns true on success.
  3543. </member>
  3544. <member name="M:CefMenuModel.GetAcceleratorAt(System.UInt32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3545. Retrieves the keyboard accelerator for the specified |index|. Returns true
  3546. on success.
  3547. </member>
  3548. <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)">
  3549. Retrieves the keyboard accelerator for the specified |command_id|. Returns
  3550. true on success.
  3551. </member>
  3552. <member name="M:CefMenuModel.RemoveAcceleratorAt(System.UInt32)">
  3553. Remove the keyboard accelerator at the specified |index|. Returns true on
  3554. success.
  3555. </member>
  3556. <member name="M:CefMenuModel.RemoveAccelerator(System.Int32)">
  3557. Remove the keyboard accelerator for the specified |command_id|. Returns
  3558. true on success.
  3559. </member>
  3560. <member name="M:CefMenuModel.SetAcceleratorAt(System.UInt32,System.Int32,System.Boolean,System.Boolean,System.Boolean)">
  3561. Set the keyboard accelerator at the specified |index|. |key_code| can be
  3562. any virtual key or character value. Returns true on success.
  3563. </member>
  3564. <member name="M:CefMenuModel.SetAccelerator(System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean)">
  3565. Set the keyboard accelerator for the specified |command_id|. |key_code|
  3566. can be any virtual key or character value. Returns true on success.
  3567. </member>
  3568. <member name="M:CefMenuModel.HasAcceleratorAt(System.UInt32)">
  3569. Returns true if the specified |index| has a keyboard accelerator assigned.
  3570. </member>
  3571. <member name="M:CefMenuModel.HasAccelerator(System.Int32)">
  3572. Returns true if the specified |command_id| has a keyboard accelerator
  3573. assigned.
  3574. </member>
  3575. <member name="M:CefMenuModel.SetCheckedAt(System.UInt32,System.Boolean)">
  3576. Check the specified |index|. Only applies to check and radio items.
  3577. Returns true on success.
  3578. </member>
  3579. <member name="M:CefMenuModel.SetChecked(System.Int32,System.Boolean)">
  3580. Check the specified |command_id|. Only applies to check and radio items.
  3581. Returns true on success.
  3582. </member>
  3583. <member name="M:CefMenuModel.IsCheckedAt(System.UInt32)">
  3584. Returns true if the specified |index| is checked. Only applies to check
  3585. and radio items.
  3586. </member>
  3587. <member name="M:CefMenuModel.IsChecked(System.Int32)">
  3588. Returns true if the specified |command_id| is checked. Only applies to
  3589. check and radio items.
  3590. </member>
  3591. <member name="M:CefMenuModel.SetEnabledAt(System.UInt32,System.Boolean)">
  3592. Change the enabled status at the specified |index|. Returns true on
  3593. success.
  3594. </member>
  3595. <member name="M:CefMenuModel.SetEnabled(System.Int32,System.Boolean)">
  3596. Change the enabled status of the specified |command_id|. Returns true on
  3597. success.
  3598. </member>
  3599. <member name="M:CefMenuModel.IsEnabledAt(System.UInt32)">
  3600. Returns true if the specified |index| is enabled.
  3601. </member>
  3602. <member name="M:CefMenuModel.IsEnabled(System.Int32)">
  3603. Returns true if the specified |command_id| is enabled.
  3604. </member>
  3605. <member name="M:CefMenuModel.SetVisibleAt(System.UInt32,System.Boolean)">
  3606. Change the visibility at the specified |index|. Returns true on success.
  3607. </member>
  3608. <member name="M:CefMenuModel.SetVisible(System.Int32,System.Boolean)">
  3609. Change the visibility of the specified |command_id|. Returns true on
  3610. success.
  3611. </member>
  3612. <member name="M:CefMenuModel.IsVisibleAt(System.UInt32)">
  3613. Returns true if the specified |index| is visible.
  3614. </member>
  3615. <member name="M:CefMenuModel.IsVisible(System.Int32)">
  3616. Returns true if the specified |command_id| is visible.
  3617. </member>
  3618. <member name="M:CefMenuModel.GetSubMenuAt(System.UInt32)">
  3619. Returns the submenu at the specified |index| or empty if invalid.
  3620. </member>
  3621. <member name="M:CefMenuModel.GetSubMenu(System.Int32)">
  3622. Returns the submenu for the specified |command_id| or empty if invalid.
  3623. </member>
  3624. <member name="M:CefMenuModel.SetGroupIdAt(System.UInt32,System.Int32)">
  3625. Sets the group id at the specified |index|. Returns true on success.
  3626. </member>
  3627. <member name="M:CefMenuModel.SetGroupId(System.Int32,System.Int32)">
  3628. Sets the group id for the specified |command_id|. Returns true on success.
  3629. </member>
  3630. <member name="M:CefMenuModel.GetGroupIdAt(System.UInt32)">
  3631. Returns the group id at the specified |index| or -1 if invalid.
  3632. </member>
  3633. <member name="M:CefMenuModel.GetGroupId(System.Int32)">
  3634. Returns the group id for the specified |command_id| or -1 if invalid.
  3635. </member>
  3636. <member name="M:CefMenuModel.GetTypeAt(System.UInt32)">
  3637. Returns the item type at the specified |index|.
  3638. </member>
  3639. <member name="M:CefMenuModel.GetType(System.Int32)">
  3640. Returns the item type for the specified |command_id|.
  3641. </member>
  3642. <member name="M:CefMenuModel.SetLabelAt(System.UInt32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3643. Set the label at the specified |index|. Returns true on success.
  3644. </member>
  3645. <member name="M:CefMenuModel.SetLabel(System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3646. Sets the label for the specified |command_id|. Returns true on success.
  3647. </member>
  3648. <member name="M:CefMenuModel.GetLabelAt(System.UInt32)">
  3649. Returns the label at the specified |index| or empty if not found due to
  3650. invalid range or the index being a separator.
  3651. </member>
  3652. <member name="M:CefMenuModel.GetLabel(System.Int32)">
  3653. Returns the label for the specified |command_id| or empty if not found.
  3654. </member>
  3655. <member name="M:CefMenuModel.SetCommandIdAt(System.UInt32,System.Int32)">
  3656. Sets the command id at the specified |index|. Returns true on success.
  3657. </member>
  3658. <member name="M:CefMenuModel.GetCommandIdAt(System.UInt32)">
  3659. Returns the command id at the specified |index| or -1 if not found due to
  3660. invalid range or the index being a separator.
  3661. </member>
  3662. <member name="M:CefMenuModel.GetIndexOf(System.Int32)">
  3663. Returns the index associated with the specified |command_id| or -1 if not
  3664. found due to the command id not existing in the menu.
  3665. </member>
  3666. <member name="M:CefMenuModel.RemoveAt(System.UInt32)">
  3667. Removes the item at the specified |index|. Returns true on success.
  3668. </member>
  3669. <member name="M:CefMenuModel.Remove(System.Int32)">
  3670. Removes the item with the specified |command_id|. Returns true on success.
  3671. </member>
  3672. <member name="M:CefMenuModel.InsertSubMenuAt(System.UInt32,System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3673. Insert a sub-menu in the menu at the specified |index|. The new sub-menu
  3674. is returned.
  3675. </member>
  3676. <member name="M:CefMenuModel.InsertRadioItemAt(System.UInt32,System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32)">
  3677. Insert a radio item in the menu at the specified |index|. Only a single
  3678. item with the specified |group_id| can be checked at a time. Returns true
  3679. on success.
  3680. </member>
  3681. <member name="M:CefMenuModel.InsertCheckItemAt(System.UInt32,System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3682. Insert a check item in the menu at the specified |index|. Returns true on
  3683. success.
  3684. </member>
  3685. <member name="M:CefMenuModel.InsertItemAt(System.UInt32,System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3686. Insert an item in the menu at the specified |index|. Returns true on
  3687. success.
  3688. </member>
  3689. <member name="M:CefMenuModel.InsertSeparatorAt(System.UInt32)">
  3690. Insert a separator in the menu at the specified |index|. Returns true on
  3691. success.
  3692. </member>
  3693. <member name="M:CefMenuModel.AddSubMenu(System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3694. Add a sub-menu to the menu. The new sub-menu is returned.
  3695. </member>
  3696. <member name="M:CefMenuModel.AddRadioItem(System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32)">
  3697. Add a radio item to the menu. Only a single item with the specified
  3698. |group_id| can be checked at a time. Returns true on success.
  3699. </member>
  3700. <member name="M:CefMenuModel.AddCheckItem(System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3701. Add a check item to the menu. Returns true on success.
  3702. </member>
  3703. <member name="M:CefMenuModel.AddItem(System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3704. Add an item to the menu. Returns true on success.
  3705. </member>
  3706. <member name="M:CefMenuModel.AddSeparator">
  3707. Add a separator to the menu. Returns true on success.
  3708. </member>
  3709. <member name="M:CefMenuModel.GetCount">
  3710. Returns the number of items in this menu.
  3711. </member>
  3712. <member name="M:CefMenuModel.Clear">
  3713. Clears the menu. Returns true on success.
  3714. </member>
  3715. <member name="M:CefMenuModel.IsSubMenu">
  3716. Returns true if this menu is a submenu.
  3717. </member>
  3718. <member name="M:CefMenuModel.CreateMenuModel(scoped_refptr&lt;CefMenuModelDelegate&gt;)">
  3719. Create a new MenuModel with the specified |delegate|.
  3720. </member>
  3721. <member name="T:CefMenuModel">
  3722. Supports creation and modification of menus. See cef_menu_id_t for the
  3723. command ids that have default implementations. All user-defined command ids
  3724. should be between MENU_ID_USER_FIRST and MENU_ID_USER_LAST. The methods of
  3725. this class can only be accessed on the browser process the UI thread.
  3726. </member>
  3727. <member name="M:CefMenuModelDelegate.FormatLabel(scoped_refptr&lt;CefMenuModel&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3728. Optionally modify a menu item label. Return true if |label| was modified.
  3729. </member>
  3730. <member name="M:CefMenuModelDelegate.MenuClosed(scoped_refptr&lt;CefMenuModel&gt;)">
  3731. The menu has closed.
  3732. </member>
  3733. <member name="M:CefMenuModelDelegate.MenuWillShow(scoped_refptr&lt;CefMenuModel&gt;)">
  3734. The menu is about to show.
  3735. </member>
  3736. <member name="M:CefMenuModelDelegate.UnhandledCloseSubmenu(scoped_refptr&lt;CefMenuModel&gt;,System.Boolean)">
  3737. Called on unhandled close submenu keyboard commands. |is_rtl| will be true
  3738. if the menu is displaying a right-to-left language.
  3739. </member>
  3740. <member name="M:CefMenuModelDelegate.UnhandledOpenSubmenu(scoped_refptr&lt;CefMenuModel&gt;,System.Boolean)">
  3741. Called on unhandled open submenu keyboard commands. |is_rtl| will be true
  3742. if the menu is displaying a right-to-left language.
  3743. </member>
  3744. <member name="M:CefMenuModelDelegate.MouseOutsideMenu(scoped_refptr&lt;CefMenuModel&gt;,CefPoint!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3745. Called when the user moves the mouse outside the menu and over the owning
  3746. window.
  3747. </member>
  3748. <member name="M:CefMenuModelDelegate.ExecuteCommand(scoped_refptr&lt;CefMenuModel&gt;,System.Int32,cef_event_flags_t)">
  3749. Perform the action associated with the specified |command_id| and
  3750. optional |event_flags|.
  3751. </member>
  3752. <member name="T:CefMenuModelDelegate">
  3753. Implement this interface to handle menu model events. The methods of this
  3754. class will be called on the browser process UI thread unless otherwise
  3755. indicated.
  3756. </member>
  3757. <member name="M:CefCommandHandler.OnChromeCommand(scoped_refptr&lt;CefBrowser&gt;,System.Int32,cef_window_open_disposition_t)">
  3758. Called to execute a Chrome command triggered via menu selection or
  3759. keyboard shortcut. Values for |command_id| can be found in the
  3760. cef_command_ids.h file. |disposition| provides information about the
  3761. intended command target. Return true if the command was handled or false
  3762. for the default implementation. For context menu commands this will be
  3763. called after CefContextMenuHandler::OnContextMenuCommand. Only used with
  3764. the Chrome runtime.
  3765. </member>
  3766. <member name="T:CefCommandHandler">
  3767. Implement this interface to handle events related to commands. The methods
  3768. of this class will be called on the UI thread.
  3769. </member>
  3770. <member name="M:CefAudioHandler.OnAudioStreamError(scoped_refptr&lt;CefBrowser&gt;,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3771. Called on the UI or audio stream thread when an error occurred. During the
  3772. stream creation phase this callback will be called on the UI thread while
  3773. in the capturing phase it will be called on the audio stream thread. The
  3774. stream will be stopped immediately.
  3775. </member>
  3776. <member name="M:CefAudioHandler.OnAudioStreamStopped(scoped_refptr&lt;CefBrowser&gt;)">
  3777. Called on the UI thread when the stream has stopped. OnAudioSteamStopped
  3778. will always be called after OnAudioStreamStarted; both methods may be
  3779. called multiple times for the same stream.
  3780. </member>
  3781. <member name="M:CefAudioHandler.OnAudioStreamPacket(scoped_refptr&lt;CefBrowser&gt;,System.Single!System.Runtime.CompilerServices.IsConst**,System.Int32,System.Int64)">
  3782. Called on the audio stream thread when a PCM packet is received for the
  3783. stream. |data| is an array representing the raw PCM data as a floating
  3784. point type, i.e. 4-byte value(s). |frames| is the number of frames in the
  3785. PCM packet. |pts| is the presentation timestamp (in milliseconds since the
  3786. Unix Epoch) and represents the time at which the decompressed packet
  3787. should be presented to the user. Based on |frames| and the
  3788. |channel_layout| value passed to OnAudioStreamStarted you can calculate
  3789. the size of the |data| array in bytes.
  3790. </member>
  3791. <member name="M:CefAudioHandler.OnAudioStreamStarted(scoped_refptr&lt;CefBrowser&gt;,CefAudioParameters!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32)">
  3792. Called on a browser audio capture thread when the browser starts
  3793. streaming audio. OnAudioStreamStopped will always be called after
  3794. OnAudioStreamStarted; both methods may be called multiple times
  3795. for the same browser. |params| contains the audio parameters like
  3796. sample rate and channel layout. |channels| is the number of channels.
  3797. </member>
  3798. <member name="M:CefAudioHandler.GetAudioParameters(scoped_refptr&lt;CefBrowser&gt;,CefAudioParameters*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3799. Called on the UI thread to allow configuration of audio stream parameters.
  3800. Return true to proceed with audio stream capture, or false to cancel it.
  3801. All members of |params| can optionally be configured here, but they are
  3802. also pre-filled with some sensible defaults.
  3803. </member>
  3804. <member name="T:CefAudioHandler">
  3805. Implement this interface to handle audio events.
  3806. </member>
  3807. <member name="M:CefSharp.Internals.StringUtils.CreateExceptionString(scoped_refptr&lt;CefV8Exception&gt;)">
  3808. <summary>
  3809. Creates a detailed expection string from a provided Cef V8 exception.
  3810. </summary>
  3811. <param name="exception">The exception which will be used as base for the message</param>
  3812. </member>
  3813. <member name="M:CefSharp.Internals.StringUtils.AssignNativeFromClr(_cef_string_utf16_t*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.String)">
  3814. <summary>
  3815. Assigns the provided cef_string_t object from the given .NET string.
  3816. </summary>
  3817. <param name="cefStr">The cef_string_t that should be updated.</param>
  3818. <param name="str">The .NET string whose value should be used to update cefStr.</param>
  3819. </member>
  3820. <member name="M:CefSharp.Internals.StringUtils.ToNative(System.Collections.Generic.IEnumerable`1{System.String})">
  3821. <summary>
  3822. Converts a .NET List of strings to native (unmanaged) format.
  3823. </summary>
  3824. <param name="str">The List of strings that should be converted.</param>
  3825. <returns>An unmanaged representation of the provided List of strings, or an empty List if the input is a nullptr.</returns>
  3826. </member>
  3827. <member name="M:CefSharp.Internals.StringUtils.ToNative(System.String)">
  3828. <summary>
  3829. Converts a .NET string to native (unmanaged) format. Note that this method does not allocate a new copy of the
  3830. </summary>
  3831. <param name="str">The string that should be converted.</param>
  3832. <returns>An unmanaged representation of the provided string, or an empty string if the input string is a nullptr.</returns>
  3833. </member>
  3834. <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)">
  3835. <summary>
  3836. Converts an unmanaged vector of strings to a (managed) .NET List of strings.
  3837. </summary>
  3838. <param name="cefStr">The vector of strings that should be converted.</param>
  3839. <returns>A .NET List of strings.</returns>
  3840. </member>
  3841. <member name="M:CefSharp.Internals.StringUtils.ToClr(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3842. <summary>
  3843. Converts an unmanaged string to a (managed) .NET string.
  3844. </summary>
  3845. <param name="cefStr">The string that should be converted.</param>
  3846. <returns>A .NET string.</returns>
  3847. </member>
  3848. <member name="M:CefSharp.Internals.StringUtils.ToClr(_cef_string_utf16_t!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  3849. <summary>
  3850. Converts an unmanaged string to a (managed) .NET string.
  3851. </summary>
  3852. <param name="cefStr">The string that should be converted.</param>
  3853. <returns>A .NET string.</returns>
  3854. </member>
  3855. <member name="M:CefV8StackFrame.IsConstructor">
  3856. Returns true if the function was called as a constructor via "new".
  3857. </member>
  3858. <member name="M:CefV8StackFrame.IsEval">
  3859. Returns true if the function was compiled using eval().
  3860. </member>
  3861. <member name="M:CefV8StackFrame.GetColumn">
  3862. Returns the 1-based column offset on the line for the function call or 0
  3863. if unknown.
  3864. </member>
  3865. <member name="M:CefV8StackFrame.GetLineNumber">
  3866. Returns the 1-based line number for the function call or 0 if unknown.
  3867. </member>
  3868. <member name="M:CefV8StackFrame.GetFunctionName">
  3869. Returns the name of the function.
  3870. </member>
  3871. <member name="M:CefV8StackFrame.GetScriptNameOrSourceURL">
  3872. Returns the name of the resource script that contains the function or the
  3873. sourceURL value if the script name is undefined and its source ends with
  3874. a "//@ sourceURL=..." string.
  3875. </member>
  3876. <member name="M:CefV8StackFrame.GetScriptName">
  3877. Returns the name of the resource script that contains the function.
  3878. </member>
  3879. <member name="M:CefV8StackFrame.IsValid">
  3880. Returns true if the underlying handle is valid and it can be accessed on
  3881. the current thread. Do not call any other methods if this method returns
  3882. false.
  3883. </member>
  3884. <member name="T:CefV8StackFrame">
  3885. Class representing a V8 stack frame handle. V8 handles can only be accessed
  3886. from the thread on which they are created. Valid threads for creating a V8
  3887. handle include the render process main thread (TID_RENDERER) and WebWorker
  3888. threads. A task runner for posting tasks on the associated thread can be
  3889. retrieved via the CefV8Context::GetTaskRunner() method.
  3890. </member>
  3891. <member name="M:CefV8StackTrace.GetFrame(System.Int32)">
  3892. Returns the stack frame at the specified 0-based index.
  3893. </member>
  3894. <member name="M:CefV8StackTrace.GetFrameCount">
  3895. Returns the number of stack frames.
  3896. </member>
  3897. <member name="M:CefV8StackTrace.IsValid">
  3898. Returns true if the underlying handle is valid and it can be accessed on
  3899. the current thread. Do not call any other methods if this method returns
  3900. false.
  3901. </member>
  3902. <member name="M:CefV8StackTrace.GetCurrent(System.Int32)">
  3903. Returns the stack trace for the currently active context. |frame_limit| is
  3904. the maximum number of frames that will be captured.
  3905. </member>
  3906. <member name="T:CefV8StackTrace">
  3907. Class representing a V8 stack trace handle. V8 handles can only be accessed
  3908. from the thread on which they are created. Valid threads for creating a V8
  3909. handle include the render process main thread (TID_RENDERER) and WebWorker
  3910. threads. A task runner for posting tasks on the associated thread can be
  3911. retrieved via the CefV8Context::GetTaskRunner() method.
  3912. </member>
  3913. <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)">
  3914. Execute the function using the specified V8 context. |object| is the
  3915. receiver ('this' object) of the function. If |object| is empty the
  3916. specified context's global object will be used. |arguments| is the list of
  3917. arguments that will be passed to the function. Returns the function return
  3918. value on success. Returns NULL if this method is called incorrectly or an
  3919. exception is thrown.
  3920. </member>
  3921. <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)">
  3922. Execute the function using the current V8 context. This method should only
  3923. be called from within the scope of a CefV8Handler or CefV8Accessor
  3924. callback, or in combination with calling Enter() and Exit() on a stored
  3925. CefV8Context reference. |object| is the receiver ('this' object) of the
  3926. function. If |object| is empty the current context's global object will be
  3927. used. |arguments| is the list of arguments that will be passed to the
  3928. function. Returns the function return value on success. Returns NULL if
  3929. this method is called incorrectly or an exception is thrown.
  3930. </member>
  3931. <member name="M:CefV8Value.GetFunctionHandler">
  3932. Returns the function handler or NULL if not a CEF-created function.
  3933. </member>
  3934. <member name="M:CefV8Value.GetFunctionName">
  3935. Returns the function name.
  3936. </member>
  3937. <member name="M:CefV8Value.NeuterArrayBuffer">
  3938. Prevent the ArrayBuffer from using it's memory block by setting the length
  3939. to zero. This operation cannot be undone. If the ArrayBuffer was created
  3940. with CreateArrayBuffer then CefV8ArrayBufferReleaseCallback::ReleaseBuffer
  3941. will be called to release the underlying buffer.
  3942. </member>
  3943. <member name="M:CefV8Value.GetArrayBufferReleaseCallback">
  3944. Returns the ReleaseCallback object associated with the ArrayBuffer or NULL
  3945. if the ArrayBuffer was not created with CreateArrayBuffer.
  3946. </member>
  3947. <member name="M:CefV8Value.GetArrayLength">
  3948. Returns the number of elements in the array.
  3949. </member>
  3950. <member name="M:CefV8Value.AdjustExternallyAllocatedMemory(System.Int32)">
  3951. Adjusts the amount of registered external memory for the object. Used to
  3952. give V8 an indication of the amount of externally allocated memory that is
  3953. kept alive by JavaScript objects. V8 uses this information to decide when
  3954. to perform global garbage collection. Each CefV8Value tracks the amount of
  3955. external memory associated with it and automatically decreases the global
  3956. total by the appropriate amount on its destruction. |change_in_bytes|
  3957. specifies the number of bytes to adjust by. This method returns the number
  3958. of bytes associated with the object after the adjustment. This method can
  3959. only be called on user created objects.
  3960. </member>
  3961. <member name="M:CefV8Value.GetExternallyAllocatedMemory">
  3962. Returns the amount of externally allocated memory registered for the
  3963. object.
  3964. </member>
  3965. <member name="M:CefV8Value.GetUserData">
  3966. Returns the user data, if any, assigned to this object.
  3967. </member>
  3968. <member name="M:CefV8Value.SetUserData(scoped_refptr&lt;CefBaseRefCounted&gt;)">
  3969. Sets the user data for this object and returns true on success. Returns
  3970. false if this method is called incorrectly. This method can only be called
  3971. on user created objects.
  3972. </member>
  3973. <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)">
  3974. Read the keys for the object's values into the specified vector. Integer-
  3975. based keys will also be returned as strings.
  3976. </member>
  3977. <member name="M:CefV8Value.SetValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_v8_accesscontrol_t,cef_v8_propertyattribute_t)">
  3978. Registers an identifier and returns true on success. Access to the
  3979. identifier will be forwarded to the CefV8Accessor instance passed to
  3980. CefV8Value::CreateObject(). Returns false if this method is called
  3981. incorrectly or an exception is thrown. For read-only values this method
  3982. will return true even though assignment failed.
  3983. </member>
  3984. <member name="M:CefV8Value.SetValue(System.Int32,scoped_refptr&lt;CefV8Value&gt;)">
  3985. Associates a value with the specified identifier and returns true on
  3986. success. Returns false if this method is called incorrectly or an
  3987. exception is thrown. For read-only values this method will return true
  3988. even though assignment failed.
  3989. </member>
  3990. <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)">
  3991. Associates a value with the specified identifier and returns true on
  3992. success. Returns false if this method is called incorrectly or an
  3993. exception is thrown. For read-only values this method will return true
  3994. even though assignment failed.
  3995. </member>
  3996. <member name="M:CefV8Value.GetValue(System.Int32)">
  3997. Returns the value with the specified identifier on success. Returns NULL
  3998. if this method is called incorrectly or an exception is thrown.
  3999. </member>
  4000. <member name="M:CefV8Value.GetValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  4001. Returns the value with the specified identifier on success. Returns NULL
  4002. if this method is called incorrectly or an exception is thrown.
  4003. </member>
  4004. <member name="M:CefV8Value.DeleteValue(System.Int32)">
  4005. Deletes the value with the specified identifier and returns true on
  4006. success. Returns false if this method is called incorrectly, deletion
  4007. fails or an exception is thrown. For read-only and don't-delete values
  4008. this method will return true even though deletion failed.
  4009. </member>
  4010. <member name="M:CefV8Value.DeleteValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  4011. Deletes the value with the specified identifier and returns true on
  4012. success. Returns false if this method is called incorrectly or an
  4013. exception is thrown. For read-only and don't-delete values this method
  4014. will return true even though deletion failed.
  4015. </member>
  4016. <member name="M:CefV8Value.HasValue(System.Int32)">
  4017. Returns true if the object has a value with the specified identifier.
  4018. </member>
  4019. <member name="M:CefV8Value.HasValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  4020. Returns true if the object has a value with the specified identifier.
  4021. </member>
  4022. <member name="M:CefV8Value.SetRethrowExceptions(System.Boolean)">
  4023. Set whether this object will re-throw future exceptions. By default
  4024. exceptions are not re-thrown. If a exception is re-thrown the current
  4025. context should not be accessed again until after the exception has been
  4026. caught and not re-thrown. Returns true on success. This attribute exists
  4027. only in the scope of the current CEF value object.
  4028. </member>
  4029. <member name="M:CefV8Value.WillRethrowExceptions">
  4030. Returns true if this object will re-throw future exceptions. This
  4031. attribute exists only in the scope of the current CEF value object.
  4032. </member>
  4033. <member name="M:CefV8Value.ClearException">
  4034. Clears the last exception and returns true on success.
  4035. </member>
  4036. <member name="M:CefV8Value.GetException">
  4037. Returns the exception resulting from the last method call. This attribute
  4038. exists only in the scope of the current CEF value object.
  4039. </member>
  4040. <member name="M:CefV8Value.HasException">
  4041. Returns true if the last method call resulted in an exception. This
  4042. attribute exists only in the scope of the current CEF value object.
  4043. </member>
  4044. <member name="M:CefV8Value.IsUserCreated">
  4045. OBJECT METHODS - These methods are only available on objects. Arrays and
  4046. functions are also objects. String- and integer-based keys can be used
  4047. interchangably with the framework converting between them as necessary.
  4048. Returns true if this is a user created object.
  4049. </member>
  4050. <member name="M:CefV8Value.GetStringValue">
  4051. Return a string value.
  4052. </member>
  4053. <member name="M:CefV8Value.GetDateValue">
  4054. Return a Date value.
  4055. </member>
  4056. <member name="M:CefV8Value.GetDoubleValue">
  4057. Return a double value.
  4058. </member>
  4059. <member name="M:CefV8Value.GetUIntValue">
  4060. Return an unsigned int value.
  4061. </member>
  4062. <member name="M:CefV8Value.GetIntValue">
  4063. Return an int value.
  4064. </member>
  4065. <member name="M:CefV8Value.GetBoolValue">
  4066. Return a bool value.
  4067. </member>
  4068. <member name="M:CefV8Value.IsSame(scoped_refptr&lt;CefV8Value&gt;)">
  4069. Returns true if this object is pointing to the same handle as |that|
  4070. object.
  4071. </member>
  4072. <member name="M:CefV8Value.IsFunction">
  4073. True if the value type is function.
  4074. </member>
  4075. <member name="M:CefV8Value.IsArrayBuffer">
  4076. True if the value type is an ArrayBuffer.
  4077. </member>
  4078. <member name="M:CefV8Value.IsArray">
  4079. True if the value type is array.
  4080. </member>
  4081. <member name="M:CefV8Value.IsObject">
  4082. True if the value type is object.
  4083. </member>
  4084. <member name="M:CefV8Value.IsString">
  4085. True if the value type is string.
  4086. </member>
  4087. <member name="M:CefV8Value.IsDate">
  4088. True if the value type is Date.
  4089. </member>
  4090. <member name="M:CefV8Value.IsDouble">
  4091. True if the value type is double.
  4092. </member>
  4093. <member name="M:CefV8Value.IsUInt">
  4094. True if the value type is unsigned int.
  4095. </member>
  4096. <member name="M:CefV8Value.IsInt">
  4097. True if the value type is int.
  4098. </member>
  4099. <member name="M:CefV8Value.IsBool">
  4100. True if the value type is bool.
  4101. </member>
  4102. <member name="M:CefV8Value.IsNull">
  4103. True if the value type is null.
  4104. </member>
  4105. <member name="M:CefV8Value.IsUndefined">
  4106. True if the value type is undefined.
  4107. </member>
  4108. <member name="M:CefV8Value.IsValid">
  4109. Returns true if the underlying handle is valid and it can be accessed on
  4110. the current thread. Do not call any other methods if this method returns
  4111. false.
  4112. </member>
  4113. <member name="M:CefV8Value.CreateFunction(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefV8Handler&gt;)">
  4114. Create a new CefV8Value object of type function. This method should only
  4115. be called from within the scope of a CefRenderProcessHandler, CefV8Handler
  4116. or CefV8Accessor callback, or in combination with calling Enter() and
  4117. Exit() on a stored CefV8Context reference.
  4118. </member>
  4119. <member name="M:CefV8Value.CreateArrayBuffer(System.Void*,System.UInt32,scoped_refptr&lt;CefV8ArrayBufferReleaseCallback&gt;)">
  4120. Create a new CefV8Value object of type ArrayBuffer which wraps the
  4121. provided |buffer| of size |length| bytes. The ArrayBuffer is externalized,
  4122. meaning that it does not own |buffer|. The caller is responsible for
  4123. freeing |buffer| when requested via a call to
  4124. CefV8ArrayBufferReleaseCallback::ReleaseBuffer. This method should only
  4125. be called from within the scope of a CefRenderProcessHandler, CefV8Handler
  4126. or CefV8Accessor callback, or in combination with calling Enter() and
  4127. Exit() on a stored CefV8Context reference.
  4128. </member>
  4129. <member name="M:CefV8Value.CreateArray(System.Int32)">
  4130. Create a new CefV8Value object of type array with the specified |length|.
  4131. If |length| is negative the returned array will have length 0. This method
  4132. should only be called from within the scope of a CefRenderProcessHandler,
  4133. CefV8Handler or CefV8Accessor callback, or in combination with calling
  4134. Enter() and Exit() on a stored CefV8Context reference.
  4135. </member>
  4136. <member name="M:CefV8Value.CreateObject(scoped_refptr&lt;CefV8Accessor&gt;,scoped_refptr&lt;CefV8Interceptor&gt;)">
  4137. Create a new CefV8Value object of type object with optional accessor
  4138. and/or interceptor. This method should only be called from within the
  4139. scope of a CefRenderProcessHandler, CefV8Handler or CefV8Accessor
  4140. callback, or in combination with calling Enter() and Exit() on a stored
  4141. CefV8Context reference.
  4142. </member>
  4143. <member name="M:CefV8Value.CreateString(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  4144. Create a new CefV8Value object of type string.
  4145. </member>
  4146. <member name="M:CefV8Value.CreateDate(CefBaseTime)">
  4147. Create a new CefV8Value object of type Date. This method should only be
  4148. called from within the scope of a CefRenderProcessHandler, CefV8Handler or
  4149. CefV8Accessor callback, or in combination with calling Enter() and Exit()
  4150. on a stored CefV8Context reference.
  4151. </member>
  4152. <member name="M:CefV8Value.CreateDouble(System.Double)">
  4153. Create a new CefV8Value object of type double.
  4154. </member>
  4155. <member name="M:CefV8Value.CreateUInt(System.UInt32)">
  4156. Create a new CefV8Value object of type unsigned int.
  4157. </member>
  4158. <member name="M:CefV8Value.CreateInt(System.Int32)">
  4159. Create a new CefV8Value object of type int.
  4160. </member>
  4161. <member name="M:CefV8Value.CreateBool(System.Boolean)">
  4162. Create a new CefV8Value object of type bool.
  4163. </member>
  4164. <member name="M:CefV8Value.CreateNull">
  4165. Create a new CefV8Value object of type null.
  4166. </member>
  4167. <member name="M:CefV8Value.CreateUndefined">
  4168. Create a new CefV8Value object of type undefined.
  4169. </member>
  4170. <member name="T:CefV8Value">
  4171. Class representing a V8 value handle. V8 handles can only be accessed from
  4172. the thread on which they are created. Valid threads for creating a V8 handle
  4173. include the render process main thread (TID_RENDERER) and WebWorker threads.
  4174. A task runner for posting tasks on the associated thread can be retrieved
  4175. via the CefV8Context::GetTaskRunner() method.
  4176. </member>
  4177. <member name="M:CefV8ArrayBufferReleaseCallback.ReleaseBuffer(System.Void*)">
  4178. Called to release |buffer| when the ArrayBuffer JS object is garbage
  4179. collected. |buffer| is the value that was passed to CreateArrayBuffer
  4180. along with this object.
  4181. </member>
  4182. <member name="T:CefV8ArrayBufferReleaseCallback">
  4183. Callback interface that is passed to CefV8Value::CreateArrayBuffer.
  4184. </member>
  4185. <member name="M:CefV8Exception.GetEndColumn">
  4186. Returns the index within the line of the last character where the error
  4187. occurred.
  4188. </member>
  4189. <member name="M:CefV8Exception.GetStartColumn">
  4190. Returns the index within the line of the first character where the error
  4191. occurred.
  4192. </member>
  4193. <member name="M:CefV8Exception.GetEndPosition">
  4194. Returns the index within the script of the last character where the error
  4195. occurred.
  4196. </member>
  4197. <member name="M:CefV8Exception.GetStartPosition">
  4198. Returns the index within the script of the first character where the error
  4199. occurred.
  4200. </member>
  4201. <member name="M:CefV8Exception.GetLineNumber">
  4202. Returns the 1-based number of the line where the error occurred or 0 if
  4203. the line number is unknown.
  4204. </member>
  4205. <member name="M:CefV8Exception.GetScriptResourceName">
  4206. Returns the resource name for the script from where the function causing
  4207. the error originates.
  4208. </member>
  4209. <member name="M:CefV8Exception.GetSourceLine">
  4210. Returns the line of source code that the exception occurred within.
  4211. </member>
  4212. <member name="M:CefV8Exception.GetMessage">
  4213. Returns the exception message.
  4214. </member>
  4215. <member name="T:CefV8Exception">
  4216. Class representing a V8 exception. The methods of this class may be called
  4217. on any render process thread.
  4218. </member>
  4219. <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)">
  4220. Handle assignment of the interceptor value identified by |index|. |object|
  4221. is the receiver ('this' object) of the interceptor. |value| is the new
  4222. value being assigned to the interceptor. If assignment fails, set
  4223. |exception| to the exception that will be thrown.
  4224. Return true if interceptor assignment was handled, false otherwise.
  4225. </member>
  4226. <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)">
  4227. Handle assignment of the interceptor value identified by |name|. |object|
  4228. is the receiver ('this' object) of the interceptor. |value| is the new
  4229. value being assigned to the interceptor. If assignment fails, set
  4230. |exception| to the exception that will be thrown. This setter will always
  4231. be called, even when the property has an associated accessor.
  4232. Return true if interceptor assignment was handled, false otherwise.
  4233. </member>
  4234. <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)">
  4235. Handle retrieval of the interceptor value identified by |index|. |object|
  4236. is the receiver ('this' object) of the interceptor. If retrieval succeeds,
  4237. set |retval| to the return value. If the requested value does not exist,
  4238. don't set either |retval| or |exception|. If retrieval fails, set
  4239. |exception| to the exception that will be thrown.
  4240. Return true if interceptor retrieval was handled, false otherwise.
  4241. </member>
  4242. <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)">
  4243. Handle retrieval of the interceptor value identified by |name|. |object|
  4244. is the receiver ('this' object) of the interceptor. If retrieval succeeds,
  4245. set |retval| to the return value. If the requested value does not exist,
  4246. don't set either |retval| or |exception|. If retrieval fails, set
  4247. |exception| to the exception that will be thrown. If the property has an
  4248. associated accessor, it will be called only if you don't set |retval|.
  4249. Return true if interceptor retrieval was handled, false otherwise.
  4250. </member>
  4251. <member name="T:CefV8Interceptor">
  4252. Interface that should be implemented to handle V8 interceptor calls. The
  4253. methods of this class will be called on the thread associated with the V8
  4254. interceptor. Interceptor's named property handlers (with first argument of
  4255. type CefString) are called when object is indexed by string. Indexed
  4256. property handlers (with first argument of type int) are called when object
  4257. is indexed by integer.
  4258. </member>
  4259. <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)">
  4260. Handle assignment of the accessor value identified by |name|. |object| is
  4261. the receiver ('this' object) of the accessor. |value| is the new value
  4262. being assigned to the accessor. If assignment fails set |exception| to the
  4263. exception that will be thrown. Return true if accessor assignment was
  4264. handled.
  4265. </member>
  4266. <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)">
  4267. Handle retrieval the accessor value identified by |name|. |object| is the
  4268. receiver ('this' object) of the accessor. If retrieval succeeds set
  4269. |retval| to the return value. If retrieval fails set |exception| to the
  4270. exception that will be thrown. Return true if accessor retrieval was
  4271. handled.
  4272. </member>
  4273. <member name="T:CefV8Accessor">
  4274. Interface that should be implemented to handle V8 accessor calls. Accessor
  4275. identifiers are registered by calling CefV8Value::SetValue(). The methods
  4276. of this class will be called on the thread associated with the V8 accessor.
  4277. </member>
  4278. <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)">
  4279. Handle execution of the function identified by |name|. |object| is the
  4280. receiver ('this' object) of the function. |arguments| is the list of
  4281. arguments passed to the function. If execution succeeds set |retval| to
  4282. the function return value. If execution fails set |exception| to the
  4283. exception that will be thrown. Return true if execution was handled.
  4284. </member>
  4285. <member name="T:CefV8Handler">
  4286. Interface that should be implemented to handle V8 function calls. The
  4287. methods of this class will be called on the thread associated with the V8
  4288. function.
  4289. </member>
  4290. <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)">
  4291. Execute a string of JavaScript code in this V8 context. The |script_url|
  4292. parameter is the URL where the script in question can be found, if any.
  4293. The |start_line| parameter is the base line number to use for error
  4294. reporting. On success |retval| will be set to the return value, if any,
  4295. and the function will return true. On failure |exception| will be set to
  4296. the exception, if any, and the function will return false.
  4297. </member>
  4298. <member name="M:CefV8Context.IsSame(scoped_refptr&lt;CefV8Context&gt;)">
  4299. Returns true if this object is pointing to the same handle as |that|
  4300. object.
  4301. </member>
  4302. <member name="M:CefV8Context.Exit">
  4303. Exit this context. Call this method only after calling Enter(). Returns
  4304. true if the scope was exited successfully.
  4305. </member>
  4306. <member name="M:CefV8Context.Enter">
  4307. Enter this context. A context must be explicitly entered before creating a
  4308. V8 Object, Array, Function or Date asynchronously. Exit() must be called
  4309. the same number of times as Enter() before releasing this context. V8
  4310. objects belong to the context in which they are created. Returns true if
  4311. the scope was entered successfully.
  4312. </member>
  4313. <member name="M:CefV8Context.GetGlobal">
  4314. Returns the global object for this context. The context must be entered
  4315. before calling this method.
  4316. </member>
  4317. <member name="M:CefV8Context.GetFrame">
  4318. Returns the frame for this context. This method will return an empty
  4319. reference for WebWorker contexts.
  4320. </member>
  4321. <member name="M:CefV8Context.GetBrowser">
  4322. Returns the browser for this context. This method will return an empty
  4323. reference for WebWorker contexts.
  4324. </member>
  4325. <member name="M:CefV8Context.IsValid">
  4326. Returns true if the underlying handle is valid and it can be accessed on
  4327. the current thread. Do not call any other methods if this method returns
  4328. false.
  4329. </member>
  4330. <member name="M:CefV8Context.GetTaskRunner">
  4331. Returns the task runner associated with this context. V8 handles can only
  4332. be accessed from the thread on which they are created. This method can be
  4333. called on any render process thread.
  4334. </member>
  4335. <member name="M:CefV8Context.InContext">
  4336. Returns true if V8 is currently inside a context.
  4337. </member>
  4338. <member name="M:CefV8Context.GetEnteredContext">
  4339. Returns the entered (bottom) context object in the V8 context stack.
  4340. </member>
  4341. <member name="M:CefV8Context.GetCurrentContext">
  4342. Returns the current (top) context object in the V8 context stack.
  4343. </member>
  4344. <member name="T:CefV8Context">
  4345. Class representing a V8 context handle. V8 handles can only be accessed from
  4346. the thread on which they are created. Valid threads for creating a V8 handle
  4347. include the render process main thread (TID_RENDERER) and WebWorker threads.
  4348. A task runner for posting tasks on the associated thread can be retrieved
  4349. via the CefV8Context::GetTaskRunner() method.
  4350. </member>
  4351. <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;)">
  4352. Register a new V8 extension with the specified JavaScript extension code and
  4353. handler. Functions implemented by the handler are prototyped using the
  4354. keyword 'native'. The calling of a native function is restricted to the
  4355. scope in which the prototype of the native function is defined. This
  4356. function may only be called on the render process main thread.
  4357. Example JavaScript extension code:
  4358. <pre>
  4359. // create the 'example' global object if it doesn't already exist.
  4360. if (!example)
  4361. example = {};
  4362. // create the 'example.test' global object if it doesn't already exist.
  4363. if (!example.test)
  4364. example.test = {};
  4365. (function() {
  4366. // Define the function 'example.test.myfunction'.
  4367. example.test.myfunction = function() {
  4368. // Call CefV8Handler::Execute() with the function name 'MyFunction'
  4369. // and no arguments.
  4370. native function MyFunction();
  4371. return MyFunction();
  4372. };
  4373. // Define the getter function for parameter 'example.test.myparam'.
  4374. example.test.__defineGetter__('myparam', function() {
  4375. // Call CefV8Handler::Execute() with the function name 'GetMyParam'
  4376. // and no arguments.
  4377. native function GetMyParam();
  4378. return GetMyParam();
  4379. });
  4380. // Define the setter function for parameter 'example.test.myparam'.
  4381. example.test.__defineSetter__('myparam', function(b) {
  4382. // Call CefV8Handler::Execute() with the function name 'SetMyParam'
  4383. // and a single argument.
  4384. native function SetMyParam();
  4385. if(b) SetMyParam(b);
  4386. });
  4387. // Extension definitions can also contain normal JavaScript variables
  4388. // and functions.
  4389. var myint = 0;
  4390. example.test.increment = function() {
  4391. myint += 1;
  4392. return myint;
  4393. };
  4394. })();
  4395. </pre>
  4396. Example usage in the page:
  4397. <pre>
  4398. // Call the function.
  4399. example.test.myfunction();
  4400. // Set the parameter.
  4401. example.test.myparam = value;
  4402. // Get the parameter.
  4403. value = example.test.myparam;
  4404. // Call another function.
  4405. example.test.increment();
  4406. </pre></member>
  4407. <member name="M:CefPostDelayedTask(cef_thread_id_t,scoped_refptr&lt;CefTask&gt;,System.Int64)">
  4408. Post a task for delayed execution on the specified thread. Equivalent to
  4409. using CefTaskRunner::GetForThread(threadId)-&gt;PostDelayedTask(task,
  4410. delay_ms).
  4411. </member>
  4412. <member name="M:CefPostTask(cef_thread_id_t,scoped_refptr&lt;CefTask&gt;)">
  4413. Post a task for execution on the specified thread. Equivalent to
  4414. using CefTaskRunner::GetForThread(threadId)-&gt;PostTask(task).
  4415. </member>
  4416. <member name="M:CefCurrentlyOn(cef_thread_id_t)">
  4417. Returns true if called on the specified thread. Equivalent to using
  4418. CefTaskRunner::GetForThread(threadId)-&gt;BelongsToCurrentThread().
  4419. </member>
  4420. <member name="M:CefTaskRunner.PostDelayedTask(scoped_refptr&lt;CefTask&gt;,System.Int64)">
  4421. Post a task for delayed execution on the thread associated with this task
  4422. runner. Execution will occur asynchronously. Delayed tasks are not
  4423. supported on V8 WebWorker threads and will be executed without the
  4424. specified delay.
  4425. </member>
  4426. <member name="M:CefTaskRunner.PostTask(scoped_refptr&lt;CefTask&gt;)">
  4427. Post a task for execution on the thread associated with this task runner.
  4428. Execution will occur asynchronously.
  4429. </member>
  4430. <member name="M:CefTaskRunner.BelongsToThread(cef_thread_id_t)">
  4431. Returns true if this task runner is for the specified CEF thread.
  4432. </member>
  4433. <member name="M:CefTaskRunner.BelongsToCurrentThread">
  4434. Returns true if this task runner belongs to the current thread.
  4435. </member>
  4436. <member name="M:CefTaskRunner.IsSame(scoped_refptr&lt;CefTaskRunner&gt;)">
  4437. Returns true if this object is pointing to the same task runner as |that|
  4438. object.
  4439. </member>
  4440. <member name="M:CefTaskRunner.GetForThread(cef_thread_id_t)">
  4441. Returns the task runner for the specified CEF thread.
  4442. </member>
  4443. <member name="M:CefTaskRunner.GetForCurrentThread">
  4444. Returns the task runner for the current thread. Only CEF threads will have
  4445. task runners. An empty reference will be returned if this method is called
  4446. on an invalid thread.
  4447. </member>
  4448. <member name="T:CefTaskRunner">
  4449. Class that asynchronously executes tasks on the associated thread. It is
  4450. safe to call the methods of this class on any thread.
  4451. CEF maintains multiple internal threads that are used for handling different
  4452. types of tasks in different processes. The cef_thread_id_t definitions in
  4453. cef_types.h list the common CEF threads. Task runners are also available for
  4454. other CEF threads as appropriate (for example, V8 WebWorker threads).
  4455. </member>
  4456. <member name="M:CefTask.Execute">
  4457. Method that will be executed on the target thread.
  4458. </member>
  4459. <member name="T:CefTask">
  4460. Implement this interface for asynchronous task execution. If the task is
  4461. posted successfully and if the associated message loop is still running then
  4462. the Execute() method will be called on the target thread. If the task fails
  4463. to post then the task object may be destroyed on the source thread instead
  4464. of the target thread. For this reason be cautious when performing work in
  4465. the task object destructor.
  4466. </member>
  4467. <member name="M:CefBrowserHost.IsAudioMuted">
  4468. Returns true if the browser's audio is muted. This method can only be
  4469. called on the UI thread.
  4470. </member>
  4471. <member name="M:CefBrowserHost.SetAudioMuted(System.Boolean)">
  4472. Set whether the browser's audio is muted.
  4473. </member>
  4474. <member name="M:CefBrowserHost.IsBackgroundHost">
  4475. Returns true if this browser is hosting an extension background script.
  4476. Background hosts do not have a window and are not displayable. See
  4477. CefRequestContext::LoadExtension for details.
  4478. </member>
  4479. <member name="M:CefBrowserHost.GetExtension">
  4480. Returns the extension hosted in this browser or NULL if no extension is
  4481. hosted. See CefRequestContext::LoadExtension for details.
  4482. </member>
  4483. <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)">
  4484. Enable notifications of auto resize via CefDisplayHandler::OnAutoResize.
  4485. Notifications are disabled by default. |min_size| and |max_size| define
  4486. the range of allowed sizes.
  4487. </member>
  4488. <member name="M:CefBrowserHost.SetAccessibilityState(cef_state_t)">
  4489. Set accessibility state for all frames. |accessibility_state| may be
  4490. default, enabled or disabled. If |accessibility_state| is STATE_DEFAULT
  4491. then accessibility will be disabled by default and the state may be
  4492. further controlled with the "force-renderer-accessibility" and
  4493. "disable-renderer-accessibility" command-line switches. If
  4494. |accessibility_state| is STATE_ENABLED then accessibility will be enabled.
  4495. If |accessibility_state| is STATE_DISABLED then accessibility will be
  4496. completely disabled.
  4497. For windowed browsers accessibility will be enabled in Complete mode
  4498. (which corresponds to kAccessibilityModeComplete in Chromium). In this
  4499. mode all platform accessibility objects will be created and managed by
  4500. Chromium's internal implementation. The client needs only to detect the
  4501. screen reader and call this method appropriately. For example, on macOS
  4502. the client can handle the @"AXEnhancedUserInterface" accessibility
  4503. attribute to detect VoiceOver state changes and on Windows the client can
  4504. handle WM_GETOBJECT with OBJID_CLIENT to detect accessibility readers.
  4505. For windowless browsers accessibility will be enabled in TreeOnly mode
  4506. (which corresponds to kAccessibilityModeWebContentsOnly in Chromium). In
  4507. this mode renderer accessibility is enabled, the full tree is computed,
  4508. and events are passed to CefAccessibiltyHandler, but platform
  4509. accessibility objects are not created. The client may implement platform
  4510. accessibility objects using CefAccessibiltyHandler callbacks if desired.
  4511. </member>
  4512. <member name="M:CefBrowserHost.GetVisibleNavigationEntry">
  4513. Returns the current visible navigation entry for this browser. This method
  4514. can only be called on the UI thread.
  4515. </member>
  4516. <member name="M:CefBrowserHost.DragSourceSystemDragEnded">
  4517. Call this method when the drag operation started by a
  4518. CefRenderHandler::StartDragging call has completed. This method may be
  4519. called immediately without first calling DragSourceEndedAt to cancel a
  4520. drag operation. If the web view is both the drag source and the drag
  4521. target then all DragTarget* methods should be called before DragSource*
  4522. mthods.
  4523. This method is only used when window rendering is disabled.
  4524. </member>
  4525. <member name="M:CefBrowserHost.DragSourceEndedAt(System.Int32,System.Int32,cef_drag_operations_mask_t)">
  4526. Call this method when the drag operation started by a
  4527. CefRenderHandler::StartDragging call has ended either in a drop or
  4528. by being cancelled. |x| and |y| are mouse coordinates relative to the
  4529. upper-left corner of the view. If the web view is both the drag source
  4530. and the drag target then all DragTarget* methods should be called before
  4531. DragSource* mthods.
  4532. This method is only used when window rendering is disabled.
  4533. </member>
  4534. <member name="M:CefBrowserHost.DragTargetDrop(CefMouseEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  4535. Call this method when the user completes the drag operation by dropping
  4536. the object onto the web view (after calling DragTargetDragEnter).
  4537. The object being dropped is |drag_data|, given as an argument to
  4538. the previous DragTargetDragEnter call.
  4539. This method is only used when window rendering is disabled.
  4540. </member>
  4541. <member name="M:CefBrowserHost.DragTargetDragLeave">
  4542. Call this method when the user drags the mouse out of the web view (after
  4543. calling DragTargetDragEnter).
  4544. This method is only used when window rendering is disabled.
  4545. </member>
  4546. <member name="M:CefBrowserHost.DragTargetDragOver(CefMouseEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_drag_operations_mask_t)">
  4547. Call this method each time the mouse is moved across the web view during
  4548. a drag operation (after calling DragTargetDragEnter and before calling
  4549. DragTargetDragLeave/DragTargetDrop).
  4550. This method is only used when window rendering is disabled.
  4551. </member>
  4552. <member name="M:CefBrowserHost.DragTargetDragEnter(scoped_refptr&lt;CefDragData&gt;,CefMouseEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_drag_operations_mask_t)">
  4553. Call this method when the user drags the mouse into the web view (before
  4554. calling DragTargetDragOver/DragTargetLeave/DragTargetDrop).
  4555. |drag_data| should not contain file contents as this type of data is not
  4556. allowed to be dragged into the web view. File contents can be removed
  4557. using CefDragData::ResetFileContents (for example, if |drag_data| comes
  4558. from CefRenderHandler::StartDragging). This method is only used when
  4559. window rendering is disabled.
  4560. </member>
  4561. <member name="M:CefBrowserHost.ImeCancelComposition">
  4562. Cancels the existing composition and discards the composition node
  4563. contents without applying them. See comments on ImeSetComposition for
  4564. usage.
  4565. This method is only used when window rendering is disabled.
  4566. </member>
  4567. <member name="M:CefBrowserHost.ImeFinishComposingText(System.Boolean)">
  4568. Completes the existing composition by applying the current composition
  4569. node contents. If |keep_selection| is false the current selection, if any,
  4570. will be discarded. See comments on ImeSetComposition for usage. This
  4571. method is only used when window rendering is disabled.
  4572. </member>
  4573. <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)">
  4574. Completes the existing composition by optionally inserting the specified
  4575. |text| into the composition node. |replacement_range| is an optional range
  4576. of the existing text that will be replaced. |relative_cursor_pos| is where
  4577. the cursor will be positioned relative to the current cursor position. See
  4578. comments on ImeSetComposition for usage. The |replacement_range| and
  4579. |relative_cursor_pos| values are only used on OS X.
  4580. This method is only used when window rendering is disabled.
  4581. </member>
  4582. <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)">
  4583. Begins a new composition or updates the existing composition. Blink has a
  4584. special node (a composition node) that allows the input method to change
  4585. text without affecting other DOM nodes. |text| is the optional text that
  4586. will be inserted into the composition node. |underlines| is an optional
  4587. set of ranges that will be underlined in the resulting text.
  4588. |replacement_range| is an optional range of the existing text that will be
  4589. replaced. |selection_range| is an optional range of the resulting text
  4590. that will be selected after insertion or replacement. The
  4591. |replacement_range| value is only used on OS X.
  4592. This method may be called multiple times as the composition changes. When
  4593. the client is done making changes the composition should either be
  4594. canceled or completed. To cancel the composition call
  4595. ImeCancelComposition. To complete the composition call either
  4596. ImeCommitText or ImeFinishComposingText. Completion is usually signaled
  4597. when:
  4598. 1. The client receives a WM_IME_COMPOSITION message with a GCS_RESULTSTR
  4599. flag (on Windows), or;
  4600. 2. The client receives a "commit" signal of GtkIMContext (on Linux), or;
  4601. 3. insertText of NSTextInput is called (on Mac).
  4602. This method is only used when window rendering is disabled.
  4603. </member>
  4604. <member name="M:CefBrowserHost.SetWindowlessFrameRate(System.Int32)">
  4605. Set the maximum rate in frames per second (fps) that CefRenderHandler::
  4606. OnPaint will be called for a windowless browser. The actual fps may be
  4607. lower if the browser cannot generate frames at the requested rate. The
  4608. minimum value is 1 and the maximum value is 60 (default 30). Can also be
  4609. set at browser creation via CefBrowserSettings.windowless_frame_rate.
  4610. </member>
  4611. <member name="M:CefBrowserHost.GetWindowlessFrameRate">
  4612. Returns the maximum rate in frames per second (fps) that
  4613. CefRenderHandler::OnPaint will be called for a windowless browser. The
  4614. actual fps may be lower if the browser cannot generate frames at the
  4615. requested rate. The minimum value is 1 and the maximum value is 60
  4616. (default 30). This method can only be called on the UI thread.
  4617. </member>
  4618. <member name="M:CefBrowserHost.NotifyMoveOrResizeStarted">
  4619. Notify the browser that the window hosting it is about to be moved or
  4620. resized. This method is only used on Windows and Linux.
  4621. </member>
  4622. <member name="M:CefBrowserHost.SendCaptureLostEvent">
  4623. Send a capture lost event to the browser.
  4624. </member>
  4625. <member name="M:CefBrowserHost.SendTouchEvent(CefTouchEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  4626. Send a touch event to the browser for a windowless browser.
  4627. </member>
  4628. <member name="M:CefBrowserHost.SendMouseWheelEvent(CefMouseEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32,System.Int32)">
  4629. Send a mouse wheel event to the browser. The |x| and |y| coordinates are
  4630. relative to the upper-left corner of the view. The |deltaX| and |deltaY|
  4631. values represent the movement delta in the X and Y directions
  4632. respectively. In order to scroll inside select popups with window
  4633. rendering disabled CefRenderHandler::GetScreenPoint should be implemented
  4634. properly.
  4635. </member>
  4636. <member name="M:CefBrowserHost.SendMouseMoveEvent(CefMouseEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean)">
  4637. Send a mouse move event to the browser. The |x| and |y| coordinates are
  4638. relative to the upper-left corner of the view.
  4639. </member>
  4640. <member name="M:CefBrowserHost.SendMouseClickEvent(CefMouseEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_mouse_button_type_t,System.Boolean,System.Int32)">
  4641. Send a mouse click event to the browser. The |x| and |y| coordinates are
  4642. relative to the upper-left corner of the view.
  4643. </member>
  4644. <member name="M:CefBrowserHost.SendKeyEvent(CefKeyEvent!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  4645. Send a key event to the browser.
  4646. </member>
  4647. <member name="M:CefBrowserHost.SendExternalBeginFrame">
  4648. Issue a BeginFrame request to Chromium. Only valid when
  4649. CefWindowInfo::external_begin_frame_enabled is set to true.
  4650. </member>
  4651. <member name="M:CefBrowserHost.Invalidate(cef_paint_element_type_t)">
  4652. Invalidate the view. The browser will call CefRenderHandler::OnPaint
  4653. asynchronously. This method is only used when window rendering is
  4654. disabled.
  4655. </member>
  4656. <member name="M:CefBrowserHost.NotifyScreenInfoChanged">
  4657. Send a notification to the browser that the screen info has changed. The
  4658. browser will then call CefRenderHandler::GetScreenInfo to update the
  4659. screen information with the new values. This simulates moving the webview
  4660. window from one display to another, or changing the properties of the
  4661. current display. This method is only used when window rendering is
  4662. disabled.
  4663. </member>
  4664. <member name="M:CefBrowserHost.WasHidden(System.Boolean)">
  4665. Notify the browser that it has been hidden or shown. Layouting and
  4666. CefRenderHandler::OnPaint notification will stop when the browser is
  4667. hidden. This method is only used when window rendering is disabled.
  4668. </member>
  4669. <member name="M:CefBrowserHost.WasResized">
  4670. Notify the browser that the widget has been resized. The browser will
  4671. first call CefRenderHandler::GetViewRect to get the new size and then call
  4672. CefRenderHandler::OnPaint asynchronously with the updated regions. This
  4673. method is only used when window rendering is disabled.
  4674. </member>
  4675. <member name="M:CefBrowserHost.IsWindowRenderingDisabled">
  4676. Returns true if window rendering is disabled.
  4677. </member>
  4678. <member name="M:CefBrowserHost.AddWordToDictionary(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  4679. Add the specified |word| to the spelling dictionary.
  4680. </member>
  4681. <member name="M:CefBrowserHost.ReplaceMisspelling(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  4682. If a misspelled word is currently selected in an editable node calling
  4683. this method will replace it with the specified |word|.
  4684. </member>
  4685. <member name="M:CefBrowserHost.GetNavigationEntries(scoped_refptr&lt;CefNavigationEntryVisitor&gt;,System.Boolean)">
  4686. Retrieve a snapshot of current navigation entries as values sent to the
  4687. specified visitor. If |current_only| is true only the current navigation
  4688. entry will be sent, otherwise all navigation entries will be sent.
  4689. </member>
  4690. <member name="M:CefBrowserHost.AddDevToolsMessageObserver(scoped_refptr&lt;CefDevToolsMessageObserver&gt;)">
  4691. Add an observer for DevTools protocol messages (method results and
  4692. events). The observer will remain registered until the returned
  4693. Registration object is destroyed. See the SendDevToolsMessage
  4694. documentation for additional usage information.
  4695. </member>
  4696. <member name="M:CefBrowserHost.ExecuteDevToolsMethod(System.Int32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefDictionaryValue&gt;)">
  4697. Execute a method call over the DevTools protocol. This is a more
  4698. structured version of SendDevToolsMessage. |message_id| is an incremental
  4699. number that uniquely identifies the message (pass 0 to have the next
  4700. number assigned automatically based on previous values). |method| is the
  4701. method name. |params| are the method parameters, which may be empty. See
  4702. the DevTools protocol documentation (linked above) for details of
  4703. supported methods and the expected |params| dictionary contents. This
  4704. method will return the assigned message ID if called on the UI thread and
  4705. the message was successfully submitted for validation, otherwise 0. See
  4706. the SendDevToolsMessage documentation for additional usage information.
  4707. </member>
  4708. <member name="M:CefBrowserHost.HasDevTools">
  4709. Returns true if this browser currently has an associated DevTools browser.
  4710. Must be called on the browser process UI thread.
  4711. </member>
  4712. <member name="M:CefBrowserHost.CloseDevTools">
  4713. Explicitly close the associated DevTools browser, if any.
  4714. </member>
  4715. <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)">
  4716. Open developer tools (DevTools) in its own browser. The DevTools browser
  4717. will remain associated with this browser. If the DevTools browser is
  4718. already open then it will be focused, in which case the |windowInfo|,
  4719. |client| and |settings| parameters will be ignored. If
  4720. |inspect_element_at| is non-empty then the element at the specified (x,y)
  4721. location will be inspected. The |windowInfo| parameter will be ignored if
  4722. this browser is wrapped in a CefBrowserView.
  4723. </member>
  4724. <member name="M:CefBrowserHost.StopFinding(System.Boolean)">
  4725. Cancel all searches that are currently going on.
  4726. </member>
  4727. <member name="M:CefBrowserHost.Find(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean,System.Boolean,System.Boolean)">
  4728. Search for |searchText|. |forward| indicates whether to search forward or
  4729. backward within the page. |matchCase| indicates whether the search should
  4730. be case-sensitive. |findNext| indicates whether this is the first request
  4731. or a follow-up. The search will be restarted if |searchText| or
  4732. |matchCase| change. The search will be stopped if |searchText| is empty.
  4733. The CefFindHandler instance, if any, returned via
  4734. CefClient::GetFindHandler will be called to report find results.
  4735. </member>
  4736. <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;)">
  4737. Print the current browser contents to the PDF file specified by |path| and
  4738. execute |callback| on completion. The caller is responsible for deleting
  4739. |path| when done. For PDF printing to work on Linux you must implement the
  4740. CefPrintHandler::GetPdfPaperSize method.
  4741. </member>
  4742. <member name="M:CefBrowserHost.Print">
  4743. Print the current browser contents.
  4744. </member>
  4745. <member name="M:CefBrowserHost.StartDownload(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  4746. Download the file at |url| using CefDownloadHandler.
  4747. </member>
  4748. <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;)">
  4749. Call to run a file chooser dialog. Only a single file chooser dialog may
  4750. be pending at any given time. |mode| represents the type of dialog to
  4751. display. |title| to the title to be used for the dialog and may be empty
  4752. to show the default title ("Open" or "Save" depending on the mode).
  4753. |default_file_path| is the path with optional directory and/or file name
  4754. component that will be initially selected in the dialog. |accept_filters|
  4755. are used to restrict the selectable file types and may any combination of
  4756. (a) valid lower-cased MIME types (e.g. "text/*" or "image/*"), (b)
  4757. individual file extensions (e.g.
  4758. ".txt" or ".png"), or (c) combined description and file extension
  4759. delimited using "|" and ";" (e.g. "Image Types|.png;.gif;.jpg").
  4760. |callback| will be executed after the dialog is dismissed or immediately
  4761. if another dialog is already pending. The dialog will be initiated
  4762. asynchronously on the UI thread.
  4763. </member>
  4764. <member name="M:CefBrowserHost.SetZoomLevel(System.Double)">
  4765. Change the zoom level to the specified value. Specify 0.0 to reset the
  4766. zoom level. If called on the UI thread the change will be applied
  4767. immediately. Otherwise, the change will be applied asynchronously on the
  4768. UI thread.
  4769. </member>
  4770. <member name="M:CefBrowserHost.GetZoomLevel">
  4771. Get the current zoom level. The default zoom level is 0.0. This method can
  4772. only be called on the UI thread.
  4773. </member>
  4774. <member name="M:CefBrowserHost.GetRequestContext">
  4775. Returns the request context for this browser.
  4776. </member>
  4777. <member name="M:CefBrowserHost.GetClient">
  4778. Returns the client for this browser.
  4779. </member>
  4780. <member name="M:CefBrowserHost.HasView">
  4781. Returns true if this browser is wrapped in a CefBrowserView.
  4782. </member>
  4783. <member name="M:CefBrowserHost.GetOpenerWindowHandle">
  4784. Retrieve the window handle (if any) of the browser that opened this
  4785. browser. Will return NULL for non-popup browsers or if this browser is
  4786. wrapped in a CefBrowserView. This method can be used in combination with
  4787. custom handling of modal windows.
  4788. </member>
  4789. <member name="M:CefBrowserHost.GetWindowHandle">
  4790. Retrieve the window handle (if any) for this browser. If this browser is
  4791. wrapped in a CefBrowserView this method should be called on the browser
  4792. process UI thread and it will return the handle for the top-level native
  4793. window.
  4794. </member>
  4795. <member name="M:CefBrowserHost.SetFocus(System.Boolean)">
  4796. Set whether the browser is focused.
  4797. </member>
  4798. <member name="M:CefBrowserHost.TryCloseBrowser">
  4799. Helper for closing a browser. Call this method from the top-level window
  4800. close handler (if any). Internally this calls CloseBrowser(false) if the
  4801. close has not yet been initiated. This method returns false while the
  4802. close is pending and true after the close has completed. See
  4803. CloseBrowser() and CefLifeSpanHandler::DoClose() documentation for
  4804. additional usage information. This method must be called on the browser
  4805. process UI thread.
  4806. </member>
  4807. <member name="M:CefBrowserHost.CloseBrowser(System.Boolean)">
  4808. Request that the browser close. The JavaScript 'onbeforeunload' event will
  4809. be fired. If |force_close| is false the event handler, if any, will be
  4810. allowed to prompt the user and the user can optionally cancel the close.
  4811. If |force_close| is true the prompt will not be displayed and the close
  4812. will proceed. Results in a call to CefLifeSpanHandler::DoClose() if the
  4813. event handler allows the close or if |force_close| is true. See
  4814. CefLifeSpanHandler::DoClose() documentation for additional usage
  4815. information.
  4816. </member>
  4817. <member name="M:CefBrowserHost.GetBrowser">
  4818. Returns the hosted browser object.
  4819. </member>
  4820. <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;)">
  4821. Create a new browser using the window parameters specified by
  4822. |windowInfo|. If |request_context| is empty the global request context
  4823. will be used. This method can only be called on the browser process UI
  4824. thread. The optional |extra_info| parameter provides an opportunity to
  4825. specify extra information specific to the created browser that will be
  4826. passed to CefRenderProcessHandler::OnBrowserCreated() in the render
  4827. process.
  4828. </member>
  4829. <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;)">
  4830. Create a new browser using the window parameters specified by
  4831. |windowInfo|. All values will be copied internally and the actual window
  4832. (if any) will be created on the UI thread. If |request_context| is empty
  4833. the global request context will be used. This method can be called on any
  4834. browser process thread and will not block. The optional |extra_info|
  4835. parameter provides an opportunity to specify extra information specific to
  4836. the created browser that will be passed to
  4837. CefRenderProcessHandler::OnBrowserCreated() in the render process.
  4838. </member>
  4839. <member name="T:CefBrowserHost">
  4840. Class used to represent the browser process aspects of a browser. The
  4841. methods of this class can only be called in the browser process. They may be
  4842. called on any thread in that process unless otherwise indicated in the
  4843. comments.
  4844. </member>
  4845. <member name="M:CefDownloadImageCallback.OnDownloadImageFinished(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32,scoped_refptr&lt;CefImage&gt;)">
  4846. Method that will be executed when the image download has completed.
  4847. |image_url| is the URL that was downloaded and |http_status_code| is the
  4848. resulting HTTP status code. |image| is the resulting image, possibly at
  4849. multiple scale factors, or empty if the download failed.
  4850. </member>
  4851. <member name="T:CefDownloadImageCallback">
  4852. Callback interface for CefBrowserHost::DownloadImage. The methods of this
  4853. class will be called on the browser process UI thread.
  4854. </member>
  4855. <member name="M:CefPdfPrintCallback.OnPdfPrintFinished(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean)">
  4856. Method that will be executed when the PDF printing has completed. |path|
  4857. is the output path. |ok| will be true if the printing completed
  4858. successfully or false otherwise.
  4859. </member>
  4860. <member name="T:CefPdfPrintCallback">
  4861. Callback interface for CefBrowserHost::PrintToPDF. The methods of this class
  4862. will be called on the browser process UI thread.
  4863. </member>
  4864. <member name="M:CefNavigationEntryVisitor.Visit(scoped_refptr&lt;CefNavigationEntry&gt;,System.Boolean,System.Int32,System.Int32)">
  4865. Method that will be executed. Do not keep a reference to |entry| outside
  4866. of this callback. Return true to continue visiting entries or false to
  4867. stop. |current| is true if this entry is the currently loaded navigation
  4868. entry. |index| is the 0-based index of this entry and |total| is the total
  4869. number of entries.
  4870. </member>
  4871. <member name="T:CefNavigationEntryVisitor">
  4872. Callback interface for CefBrowserHost::GetNavigationEntries. The methods of
  4873. this class will be called on the browser process UI thread.
  4874. </member>
  4875. <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)">
  4876. Called asynchronously after the file dialog is dismissed.
  4877. |file_paths| will be a single value or a list of values depending on the
  4878. dialog mode. If the selection was cancelled |file_paths| will be empty.
  4879. </member>
  4880. <member name="T:CefRunFileDialogCallback">
  4881. Callback interface for CefBrowserHost::RunFileDialog. The methods of this
  4882. class will be called on the browser process UI thread.
  4883. </member>
  4884. <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)">
  4885. Returns the names of all existing frames.
  4886. </member>
  4887. <member name="M:CefBrowser.GetFrameIdentifiers(std.vector&lt;System.Int64,std.allocator&lt;System.Int64&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  4888. Returns the identifiers of all existing frames.
  4889. </member>
  4890. <member name="M:CefBrowser.GetFrameCount">
  4891. Returns the number of frames that currently exist.
  4892. </member>
  4893. <member name="M:CefBrowser.GetFrame(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  4894. Returns the frame with the specified name, or NULL if not found.
  4895. </member>
  4896. <member name="M:CefBrowser.GetFrame(System.Int64)">
  4897. Returns the frame with the specified identifier, or NULL if not found.
  4898. </member>
  4899. <member name="M:CefBrowser.GetFocusedFrame">
  4900. Returns the focused frame for the browser.
  4901. </member>
  4902. <member name="M:CefBrowser.GetMainFrame">
  4903. Returns the main (top-level) frame for the browser. In the browser process
  4904. this will return a valid object until after
  4905. CefLifeSpanHandler::OnBeforeClose is called. In the renderer process this
  4906. will return NULL if the main frame is hosted in a different renderer
  4907. process (e.g. for cross-origin sub-frames). The main frame object will
  4908. change during cross-origin navigation or re-navigation after renderer
  4909. process termination (due to crashes, etc).
  4910. </member>
  4911. <member name="M:CefBrowser.HasDocument">
  4912. Returns true if a document has been loaded in the browser.
  4913. </member>
  4914. <member name="M:CefBrowser.IsPopup">
  4915. Returns true if the browser is a popup.
  4916. </member>
  4917. <member name="M:CefBrowser.IsSame(scoped_refptr&lt;CefBrowser&gt;)">
  4918. Returns true if this object is pointing to the same handle as |that|
  4919. object.
  4920. </member>
  4921. <member name="M:CefBrowser.GetIdentifier">
  4922. Returns the globally unique identifier for this browser. This value is
  4923. also used as the tabId for extension APIs.
  4924. </member>
  4925. <member name="M:CefBrowser.StopLoad">
  4926. Stop loading the page.
  4927. </member>
  4928. <member name="M:CefBrowser.ReloadIgnoreCache">
  4929. Reload the current page ignoring any cached data.
  4930. </member>
  4931. <member name="M:CefBrowser.Reload">
  4932. Reload the current page.
  4933. </member>
  4934. <member name="M:CefBrowser.IsLoading">
  4935. Returns true if the browser is currently loading.
  4936. </member>
  4937. <member name="M:CefBrowser.GoForward">
  4938. Navigate forwards.
  4939. </member>
  4940. <member name="M:CefBrowser.CanGoForward">
  4941. Returns true if the browser can navigate forwards.
  4942. </member>
  4943. <member name="M:CefBrowser.GoBack">
  4944. Navigate backwards.
  4945. </member>
  4946. <member name="M:CefBrowser.CanGoBack">
  4947. Returns true if the browser can navigate backwards.
  4948. </member>
  4949. <member name="M:CefBrowser.GetHost">
  4950. Returns the browser host object. This method can only be called in the
  4951. browser process.
  4952. </member>
  4953. <member name="M:CefBrowser.IsValid">
  4954. True if this object is currently valid. This will return false after
  4955. CefLifeSpanHandler::OnBeforeClose is called.
  4956. </member>
  4957. <member name="T:CefBrowser">
  4958. Class used to represent a browser. When used in the browser process the
  4959. methods of this class may be called on any thread unless otherwise indicated
  4960. in the comments. When used in the render process the methods of this class
  4961. may only be called on the main thread.
  4962. </member>
  4963. <member name="M:CefRequestContext.GetMediaRouter(scoped_refptr&lt;CefCompletionCallback&gt;)">
  4964. Returns the MediaRouter object associated with this context. If
  4965. |callback| is non-NULL it will be executed asnychronously on the UI thread
  4966. after the manager's context has been initialized.
  4967. </member>
  4968. <member name="M:CefRequestContext.GetExtension(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  4969. Returns the extension matching |extension_id| or NULL if no matching
  4970. extension is accessible in this context (see HasExtension). This method
  4971. must be called on the browser process UI thread.
  4972. </member>
  4973. <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)">
  4974. Retrieve the list of all extensions that this context has access to (see
  4975. HasExtension). |extension_ids| will be populated with the list of
  4976. extension ID values. Returns true on success. This method must be called
  4977. on the browser process UI thread.
  4978. </member>
  4979. <member name="M:CefRequestContext.HasExtension(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  4980. Returns true if this context has access to the extension identified by
  4981. |extension_id|. This may not be the context that was used to load the
  4982. extension (see DidLoadExtension). This method must be called on the
  4983. browser process UI thread.
  4984. </member>
  4985. <member name="M:CefRequestContext.DidLoadExtension(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  4986. Returns true if this context was used to load the extension identified by
  4987. |extension_id|. Other contexts sharing the same storage will also have
  4988. access to the extension (see HasExtension). This method must be called on
  4989. the browser process UI thread.
  4990. </member>
  4991. <member name="M:CefRequestContext.ResolveHost(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefResolveCallback&gt;)">
  4992. Attempts to resolve |origin| to a list of associated IP addresses.
  4993. |callback| will be executed on the UI thread after completion.
  4994. </member>
  4995. <member name="M:CefRequestContext.CloseAllConnections(scoped_refptr&lt;CefCompletionCallback&gt;)">
  4996. Clears all active and idle connections that Chromium currently has.
  4997. This is only recommended if you have released all other CEF objects but
  4998. don't yet want to call CefShutdown(). If |callback| is non-NULL it will be
  4999. executed on the UI thread after completion.
  5000. </member>
  5001. <member name="M:CefRequestContext.ClearHttpAuthCredentials(scoped_refptr&lt;CefCompletionCallback&gt;)">
  5002. Clears all HTTP authentication credentials that were added as part of
  5003. handling GetAuthCredentials. If |callback| is non-NULL it will be executed
  5004. on the UI thread after completion.
  5005. </member>
  5006. <member name="M:CefRequestContext.ClearCertificateExceptions(scoped_refptr&lt;CefCompletionCallback&gt;)">
  5007. Clears all certificate exceptions that were added as part of handling
  5008. CefRequestHandler::OnCertificateError(). If you call this it is
  5009. recommended that you also call CloseAllConnections() or you risk not
  5010. being prompted again for server certificates if you reconnect quickly.
  5011. If |callback| is non-NULL it will be executed on the UI thread after
  5012. completion.
  5013. </member>
  5014. <member name="M:CefRequestContext.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)">
  5015. Set the |value| associated with preference |name|. Returns true if the
  5016. value is set successfully and false otherwise. If |value| is NULL the
  5017. preference will be restored to its default value. If setting the
  5018. preference fails then |error| will be populated with a detailed
  5019. description of the problem. This method must be called on the browser
  5020. process UI thread.
  5021. </member>
  5022. <member name="M:CefRequestContext.CanSetPreference(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5023. Returns true if the preference with the specified |name| can be modified
  5024. using SetPreference. As one example preferences set via the command-line
  5025. usually cannot be modified. This method must be called on the browser
  5026. process UI thread.
  5027. </member>
  5028. <member name="M:CefRequestContext.GetAllPreferences(System.Boolean)">
  5029. Returns all preferences as a dictionary. If |include_defaults| is true
  5030. then preferences currently at their default value will be included. The
  5031. returned object contains a copy of the underlying preference values and
  5032. modifications to the returned object will not modify the underlying
  5033. preference values. This method must be called on the browser process UI
  5034. thread.
  5035. </member>
  5036. <member name="M:CefRequestContext.GetPreference(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5037. Returns the value for the preference with the specified |name|. Returns
  5038. NULL if the preference does not exist. The returned object contains a copy
  5039. of the underlying preference value and modifications to the returned
  5040. object will not modify the underlying preference value. This method must
  5041. be called on the browser process UI thread.
  5042. </member>
  5043. <member name="M:CefRequestContext.HasPreference(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5044. Returns true if a preference with the specified |name| exists. This method
  5045. must be called on the browser process UI thread.
  5046. </member>
  5047. <member name="M:CefRequestContext.ClearSchemeHandlerFactories">
  5048. Clear all registered scheme handler factories. Returns false on error.
  5049. This function may be called on any thread in the browser process.
  5050. </member>
  5051. <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;)">
  5052. Register a scheme handler factory for the specified |scheme_name| and
  5053. optional |domain_name|. An empty |domain_name| value for a standard scheme
  5054. will cause the factory to match all domain names. The |domain_name| value
  5055. will be ignored for non-standard schemes. If |scheme_name| is a built-in
  5056. scheme and no handler is returned by |factory| then the built-in scheme
  5057. handler factory will be called. If |scheme_name| is a custom scheme then
  5058. you must also implement the CefApp::OnRegisterCustomSchemes() method in
  5059. all processes. This function may be called multiple times to change or
  5060. remove the factory that matches the specified |scheme_name| and optional
  5061. |domain_name|. Returns false if an error occurs. This function may be
  5062. called on any thread in the browser process.
  5063. </member>
  5064. <member name="M:CefRequestContext.GetCookieManager(scoped_refptr&lt;CefCompletionCallback&gt;)">
  5065. Returns the cookie manager for this object. If |callback| is non-NULL it
  5066. will be executed asnychronously on the UI thread after the manager's
  5067. storage has been initialized.
  5068. </member>
  5069. <member name="M:CefRequestContext.GetCachePath">
  5070. Returns the cache path for this object. If empty an "incognito mode"
  5071. in-memory cache is being used.
  5072. </member>
  5073. <member name="M:CefRequestContext.GetHandler">
  5074. Returns the handler for this context if any.
  5075. </member>
  5076. <member name="M:CefRequestContext.IsGlobal">
  5077. Returns true if this object is the global context. The global context is
  5078. used by default when creating a browser or URL request with a NULL context
  5079. argument.
  5080. </member>
  5081. <member name="M:CefRequestContext.IsSharingWith(scoped_refptr&lt;CefRequestContext&gt;)">
  5082. Returns true if this object is sharing the same storage as |that| object.
  5083. </member>
  5084. <member name="M:CefRequestContext.IsSame(scoped_refptr&lt;CefRequestContext&gt;)">
  5085. Returns true if this object is pointing to the same context as |that|
  5086. object.
  5087. </member>
  5088. <member name="M:CefRequestContext.CreateContext(scoped_refptr&lt;CefRequestContext&gt;,scoped_refptr&lt;CefRequestContextHandler&gt;)">
  5089. Creates a new context object that shares storage with |other| and uses an
  5090. optional |handler|.
  5091. </member>
  5092. <member name="M:CefRequestContext.CreateContext(CefStructBase&lt;CefRequestContextSettingsTraits&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefRequestContextHandler&gt;)">
  5093. Creates a new context object with the specified |settings| and optional
  5094. |handler|.
  5095. </member>
  5096. <member name="M:CefRequestContext.GetGlobalContext">
  5097. Returns the global context object.
  5098. </member>
  5099. <member name="T:CefRequestContext">
  5100. A request context provides request handling for a set of related browser
  5101. or URL request objects. A request context can be specified when creating a
  5102. new browser via the CefBrowserHost static factory methods or when creating a
  5103. new URL request via the CefURLRequest static factory methods. Browser
  5104. objects with different request contexts will never be hosted in the same
  5105. render process. Browser objects with the same request context may or may not
  5106. be hosted in the same render process depending on the process model. Browser
  5107. objects created indirectly via the JavaScript window.open function or
  5108. targeted links will share the same render process and the same request
  5109. context as the source browser. When running in single-process mode there is
  5110. only a single render process (the main process) and so all browsers created
  5111. in single-process mode will share the same request context. This will be the
  5112. first request context passed into a CefBrowserHost static factory method and
  5113. all other request context objects will be ignored.
  5114. </member>
  5115. <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)">
  5116. Called on the UI thread after the ResolveHost request has completed.
  5117. |result| will be the result code. |resolved_ips| will be the list of
  5118. resolved IP addresses or empty if the resolution failed.
  5119. </member>
  5120. <member name="T:CefResolveCallback">
  5121. Callback interface for CefRequestContext::ResolveHost.
  5122. </member>
  5123. <member name="M:CefMediaSource.IsDialSource">
  5124. Returns true if this source outputs its content via DIAL.
  5125. </member>
  5126. <member name="M:CefMediaSource.IsCastSource">
  5127. Returns true if this source outputs its content via Cast.
  5128. </member>
  5129. <member name="M:CefMediaSource.GetId">
  5130. Returns the ID (media source URN or URL) for this source.
  5131. </member>
  5132. <member name="T:CefMediaSource">
  5133. Represents a source from which media can be routed. Instances of this object
  5134. are retrieved via CefMediaRouter::GetSource. The methods of this class may
  5135. be called on any browser process thread unless otherwise indicated.
  5136. </member>
  5137. <member name="M:CefMediaSinkDeviceInfoCallback.OnMediaSinkDeviceInfo(CefStructBase&lt;CefMediaSinkDeviceInfoTraits&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5138. Method that will be executed asyncronously once device information has
  5139. been retrieved.
  5140. </member>
  5141. <member name="T:CefMediaSinkDeviceInfoCallback">
  5142. Callback interface for CefMediaSink::GetDeviceInfo. The methods of this
  5143. class will be called on the browser process UI thread.
  5144. </member>
  5145. <member name="M:CefMediaSink.IsCompatibleWith(scoped_refptr&lt;CefMediaSource&gt;)">
  5146. Returns true if this sink is compatible with |source|.
  5147. </member>
  5148. <member name="M:CefMediaSink.IsDialSink">
  5149. Returns true if this sink accepts content via DIAL.
  5150. </member>
  5151. <member name="M:CefMediaSink.IsCastSink">
  5152. Returns true if this sink accepts content via Cast.
  5153. </member>
  5154. <member name="M:CefMediaSink.GetDeviceInfo(scoped_refptr&lt;CefMediaSinkDeviceInfoCallback&gt;)">
  5155. Asynchronously retrieves device info.
  5156. </member>
  5157. <member name="M:CefMediaSink.GetIconType">
  5158. Returns the icon type for this sink.
  5159. </member>
  5160. <member name="M:CefMediaSink.GetDescription">
  5161. Returns the description of this sink.
  5162. </member>
  5163. <member name="M:CefMediaSink.GetName">
  5164. Returns the name of this sink.
  5165. </member>
  5166. <member name="M:CefMediaSink.GetId">
  5167. Returns the ID for this sink.
  5168. </member>
  5169. <member name="T:CefMediaSink">
  5170. Represents a sink to which media can be routed. Instances of this object are
  5171. retrieved via CefMediaObserver::OnSinks. The methods of this class may
  5172. be called on any browser process thread unless otherwise indicated.
  5173. </member>
  5174. <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;)">
  5175. Method that will be executed when the route creation has finished.
  5176. |result| will be CEF_MRCR_OK if the route creation succeeded. |error| will
  5177. be a description of the error if the route creation failed. |route| is the
  5178. resulting route, or empty if the route creation failed.
  5179. </member>
  5180. <member name="T:CefMediaRouteCreateCallback">
  5181. Callback interface for CefMediaRouter::CreateRoute. The methods of this
  5182. class will be called on the browser process UI thread.
  5183. </member>
  5184. <member name="M:CefMediaRoute.Terminate">
  5185. Terminate this route. Will result in an asynchronous call to
  5186. CefMediaObserver::OnRoutes on all registered observers.
  5187. </member>
  5188. <member name="M:CefMediaRoute.SendRouteMessage(System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt32)">
  5189. Send a message over this route. |message| will be copied if necessary.
  5190. </member>
  5191. <member name="M:CefMediaRoute.GetSink">
  5192. Returns the sink associated with this route.
  5193. </member>
  5194. <member name="M:CefMediaRoute.GetSource">
  5195. Returns the source associated with this route.
  5196. </member>
  5197. <member name="M:CefMediaRoute.GetId">
  5198. Returns the ID for this route.
  5199. </member>
  5200. <member name="T:CefMediaRoute">
  5201. Represents the route between a media source and sink. Instances of this
  5202. object are created via CefMediaRouter::CreateRoute and retrieved via
  5203. CefMediaObserver::OnRoutes. Contains the status and metadata of a
  5204. routing operation. The methods of this class may be called on any browser
  5205. process thread unless otherwise indicated.
  5206. </member>
  5207. <member name="M:CefMediaObserver.OnRouteMessageReceived(scoped_refptr&lt;CefMediaRoute&gt;,System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt32)">
  5208. A message was recieved over |route|. |message| is only valid for
  5209. the scope of this callback and should be copied if necessary.
  5210. </member>
  5211. <member name="M:CefMediaObserver.OnRouteStateChanged(scoped_refptr&lt;CefMediaRoute&gt;,cef_media_route_connection_state_t)">
  5212. The connection state of |route| has changed.
  5213. </member>
  5214. <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)">
  5215. The list of available media routes has changed or
  5216. CefMediaRouter::NotifyCurrentRoutes was called.
  5217. </member>
  5218. <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)">
  5219. The list of available media sinks has changed or
  5220. CefMediaRouter::NotifyCurrentSinks was called.
  5221. </member>
  5222. <member name="T:CefMediaObserver">
  5223. Implemented by the client to observe MediaRouter events and registered via
  5224. CefMediaRouter::AddObserver. The methods of this class will be called on the
  5225. browser process UI thread.
  5226. </member>
  5227. <member name="M:CefMediaRouter.NotifyCurrentRoutes">
  5228. Trigger an asynchronous call to CefMediaObserver::OnRoutes on all
  5229. registered observers.
  5230. </member>
  5231. <member name="M:CefMediaRouter.CreateRoute(scoped_refptr&lt;CefMediaSource&gt;,scoped_refptr&lt;CefMediaSink&gt;,scoped_refptr&lt;CefMediaRouteCreateCallback&gt;)">
  5232. Create a new route between |source| and |sink|. Source and sink must be
  5233. valid, compatible (as reported by CefMediaSink::IsCompatibleWith), and a
  5234. route between them must not already exist. |callback| will be executed
  5235. on success or failure. If route creation succeeds it will also trigger an
  5236. asynchronous call to CefMediaObserver::OnRoutes on all registered
  5237. observers.
  5238. </member>
  5239. <member name="M:CefMediaRouter.NotifyCurrentSinks">
  5240. Trigger an asynchronous call to CefMediaObserver::OnSinks on all
  5241. registered observers.
  5242. </member>
  5243. <member name="M:CefMediaRouter.AddObserver(scoped_refptr&lt;CefMediaObserver&gt;)">
  5244. Add an observer for MediaRouter events. The observer will remain
  5245. registered until the returned Registration object is destroyed.
  5246. </member>
  5247. <member name="M:CefMediaRouter.GetGlobalMediaRouter(scoped_refptr&lt;CefCompletionCallback&gt;)">
  5248. Returns the MediaRouter object associated with the global request context.
  5249. If |callback| is non-NULL it will be executed asnychronously on the UI
  5250. thread after the manager's storage has been initialized. Equivalent to
  5251. calling CefRequestContext::GetGlobalContext()-&gt;GetMediaRouter().
  5252. </member>
  5253. <member name="T:CefMediaRouter">
  5254. Supports discovery of and communication with media devices on the local
  5255. network via the Cast and DIAL protocols. The methods of this class may be
  5256. called on any browser process thread unless otherwise indicated.
  5257. </member>
  5258. <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;)">
  5259. Called to retrieve an extension resource that would normally be loaded
  5260. from disk (e.g. if a file parameter is specified to
  5261. chrome.tabs.executeScript). |extension| and |browser| are the source of
  5262. the resource request. |file| is the requested relative file path. To
  5263. handle the resource request return true and execute |callback| either
  5264. synchronously or asynchronously. For the default behavior which reads the
  5265. resource from the extension directory on disk return false. Localization
  5266. substitutions will not be applied to resources handled via this method.
  5267. </member>
  5268. <member name="M:CefExtensionHandler.CanAccessBrowser(scoped_refptr&lt;CefExtension&gt;,scoped_refptr&lt;CefBrowser&gt;,System.Boolean,scoped_refptr&lt;CefBrowser&gt;)">
  5269. Called when the tabId associated with |target_browser| is specified to an
  5270. extension API call that accepts a tabId parameter (e.g. chrome.tabs.*).
  5271. |extension| and |browser| are the source of the API call. Return true
  5272. to allow access of false to deny access. Access to incognito browsers
  5273. should not be allowed unless the source extension has incognito access
  5274. enabled, in which case |include_incognito| will be true.
  5275. </member>
  5276. <member name="M:CefExtensionHandler.GetActiveBrowser(scoped_refptr&lt;CefExtension&gt;,scoped_refptr&lt;CefBrowser&gt;,System.Boolean)">
  5277. Called when no tabId is specified to an extension API call that accepts a
  5278. tabId parameter (e.g. chrome.tabs.*). |extension| and |browser| are the
  5279. source of the API call. Return the browser that will be acted on by the
  5280. API call or return NULL to act on |browser|. The returned browser must
  5281. share the same CefRequestContext as |browser|. Incognito browsers should
  5282. not be considered unless the source extension has incognito access
  5283. enabled, in which case |include_incognito| will be true.
  5284. </member>
  5285. <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)">
  5286. Called when an extension API (e.g. chrome.tabs.create) requests creation
  5287. of a new browser. |extension| and |browser| are the source of the API
  5288. call. |active_browser| may optionally be specified via the windowId
  5289. property or returned via the GetActiveBrowser() callback and provides the
  5290. default |client| and |settings| values for the new browser. |index| is the
  5291. position value optionally specified via the index property. |url| is the
  5292. URL that will be loaded in the browser. |active| is true if the new
  5293. browser should be active when opened. To allow creation of the browser
  5294. optionally modify |windowInfo|, |client| and |settings| and return false.
  5295. To cancel creation of the browser return true. Successful creation will be
  5296. indicated by a call to CefLifeSpanHandler::OnAfterCreated. Any
  5297. modifications to |windowInfo| will be ignored if |active_browser| is
  5298. wrapped in a CefBrowserView.
  5299. </member>
  5300. <member name="M:CefExtensionHandler.OnExtensionUnloaded(scoped_refptr&lt;CefExtension&gt;)">
  5301. Called after the CefExtension::Unload request has completed.
  5302. </member>
  5303. <member name="M:CefExtensionHandler.OnExtensionLoaded(scoped_refptr&lt;CefExtension&gt;)">
  5304. Called if the CefRequestContext::LoadExtension request succeeds.
  5305. |extension| is the loaded extension.
  5306. </member>
  5307. <member name="M:CefExtensionHandler.OnExtensionLoadFailed(cef_errorcode_t)">
  5308. Called if the CefRequestContext::LoadExtension request fails. |result|
  5309. will be the error code.
  5310. </member>
  5311. <member name="T:CefExtensionHandler">
  5312. Implement this interface to handle events related to browser extensions.
  5313. The methods of this class will be called on the UI thread. See
  5314. CefRequestContext::LoadExtension for information about extension loading.
  5315. </member>
  5316. <member name="M:CefGetExtensionResourceCallback.Cancel">
  5317. Cancel the request.
  5318. </member>
  5319. <member name="M:CefGetExtensionResourceCallback.Continue(scoped_refptr&lt;CefStreamReader&gt;)">
  5320. Continue the request. Read the resource contents from |stream|.
  5321. </member>
  5322. <member name="T:CefGetExtensionResourceCallback">
  5323. Callback interface used for asynchronous continuation of
  5324. CefExtensionHandler::GetExtensionResource.
  5325. </member>
  5326. <member name="M:CefExtension.Unload">
  5327. Unload this extension if it is not an internal extension and is currently
  5328. loaded. Will result in a call to CefExtensionHandler::OnExtensionUnloaded
  5329. on success.
  5330. </member>
  5331. <member name="M:CefExtension.IsLoaded">
  5332. Returns true if this extension is currently loaded. Must be called on the
  5333. browser process UI thread.
  5334. </member>
  5335. <member name="M:CefExtension.GetLoaderContext">
  5336. Returns the request context that loaded this extension. Will return NULL
  5337. for internal extensions or if the extension has been unloaded. See the
  5338. CefRequestContext::LoadExtension documentation for more information about
  5339. loader contexts. Must be called on the browser process UI thread.
  5340. </member>
  5341. <member name="M:CefExtension.GetHandler">
  5342. Returns the handler for this extension. Will return NULL for internal
  5343. extensions or if no handler was passed to
  5344. CefRequestContext::LoadExtension.
  5345. </member>
  5346. <member name="M:CefExtension.IsSame(scoped_refptr&lt;CefExtension&gt;)">
  5347. Returns true if this object is the same extension as |that| object.
  5348. Extensions are considered the same if identifier, path and loader context
  5349. match.
  5350. </member>
  5351. <member name="M:CefExtension.GetManifest">
  5352. Returns the extension manifest contents as a CefDictionaryValue object.
  5353. See https://developer.chrome.com/extensions/manifest for details.
  5354. </member>
  5355. <member name="M:CefExtension.GetPath">
  5356. Returns the absolute path to the extension directory on disk. This value
  5357. will be prefixed with PK_DIR_RESOURCES if a relative path was passed to
  5358. CefRequestContext::LoadExtension.
  5359. </member>
  5360. <member name="M:CefExtension.GetIdentifier">
  5361. Returns the unique extension identifier. This is calculated based on the
  5362. extension public key, if available, or on the extension path. See
  5363. https://developer.chrome.com/extensions/manifest/key for details.
  5364. </member>
  5365. <member name="T:CefExtension">
  5366. Object representing an extension. Methods may be called on any thread unless
  5367. otherwise indicated.
  5368. </member>
  5369. <member name="M:CefDeleteCookiesCallback.OnComplete(System.Int32)">
  5370. Method that will be called upon completion. |num_deleted| will be the
  5371. number of cookies that were deleted.
  5372. </member>
  5373. <member name="T:CefDeleteCookiesCallback">
  5374. Interface to implement to be notified of asynchronous completion via
  5375. CefCookieManager::DeleteCookies().
  5376. </member>
  5377. <member name="M:CefSetCookieCallback.OnComplete(System.Boolean)">
  5378. Method that will be called upon completion. |success| will be true if the
  5379. cookie was set successfully.
  5380. </member>
  5381. <member name="T:CefSetCookieCallback">
  5382. Interface to implement to be notified of asynchronous completion via
  5383. CefCookieManager::SetCookie().
  5384. </member>
  5385. <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)">
  5386. Method that will be called once for each cookie. |count| is the 0-based
  5387. index for the current cookie. |total| is the total number of cookies.
  5388. Set |deleteCookie| to true to delete the cookie currently being visited.
  5389. Return false to stop visiting cookies. This method may never be called if
  5390. no cookies are found.
  5391. </member>
  5392. <member name="T:CefCookieVisitor">
  5393. Interface to implement for visiting cookie values. The methods of this class
  5394. will always be called on the UI thread.
  5395. </member>
  5396. <member name="M:CefCookieManager.FlushStore(scoped_refptr&lt;CefCompletionCallback&gt;)">
  5397. Flush the backing store (if any) to disk. If |callback| is non-NULL it
  5398. will be executed asnychronously on the UI thread after the flush is
  5399. complete. Returns false if cookies cannot be accessed.
  5400. </member>
  5401. <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;)">
  5402. Delete all cookies that match the specified parameters. If both |url| and
  5403. |cookie_name| values are specified all host and domain cookies matching
  5404. both will be deleted. If only |url| is specified all host cookies (but not
  5405. domain cookies) irrespective of path will be deleted. If |url| is empty
  5406. all cookies for all hosts and domains will be deleted. If |callback| is
  5407. non-NULL it will be executed asnychronously on the UI thread after the
  5408. cookies have been deleted. Returns false if a non-empty invalid URL is
  5409. specified or if cookies cannot be accessed. Cookies can alternately be
  5410. deleted using the Visit*Cookies() methods.
  5411. </member>
  5412. <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;)">
  5413. Sets a cookie given a valid URL and explicit user-provided cookie
  5414. attributes. This function expects each attribute to be well-formed. It
  5415. will check for disallowed characters (e.g. the ';' character is disallowed
  5416. within the cookie value attribute) and fail without setting the cookie if
  5417. such characters are found. If |callback| is non-NULL it will be executed
  5418. asnychronously on the UI thread after the cookie has been set. Returns
  5419. false if an invalid URL is specified or if cookies cannot be accessed.
  5420. </member>
  5421. <member name="M:CefCookieManager.VisitUrlCookies(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean,scoped_refptr&lt;CefCookieVisitor&gt;)">
  5422. Visit a subset of cookies on the UI thread. The results are filtered by
  5423. the given url scheme, host, domain and path. If |includeHttpOnly| is true
  5424. HTTP-only cookies will also be included in the results. The returned
  5425. cookies are ordered by longest path, then by earliest creation date.
  5426. Returns false if cookies cannot be accessed.
  5427. </member>
  5428. <member name="M:CefCookieManager.VisitAllCookies(scoped_refptr&lt;CefCookieVisitor&gt;)">
  5429. Visit all cookies on the UI thread. The returned cookies are ordered by
  5430. longest path, then by earliest creation date. Returns false if cookies
  5431. cannot be accessed.
  5432. </member>
  5433. <member name="M:CefCookieManager.GetGlobalManager(scoped_refptr&lt;CefCompletionCallback&gt;)">
  5434. Returns the global cookie manager. By default data will be stored at
  5435. cef_settings_t.cache_path if specified or in memory otherwise. If
  5436. |callback| is non-NULL it will be executed asnychronously on the UI thread
  5437. after the manager's storage has been initialized. Using this method is
  5438. equivalent to calling
  5439. CefRequestContext::GetGlobalContext()-&gt;GetDefaultCookieManager().
  5440. </member>
  5441. <member name="T:CefCookieManager">
  5442. Class used for managing cookies. The methods of this class may be called on
  5443. any thread unless otherwise indicated.
  5444. </member>
  5445. <member name="M:CefCompletionCallback.OnComplete">
  5446. Method that will be called once the task is complete.
  5447. </member>
  5448. <member name="T:CefCompletionCallback">
  5449. Generic callback interface used for asynchronous completion.
  5450. </member>
  5451. <member name="M:CefCallback.Cancel">
  5452. Cancel processing.
  5453. </member>
  5454. <member name="M:CefCallback.Continue">
  5455. Continue processing.
  5456. </member>
  5457. <member name="T:CefCallback">
  5458. Generic callback interface used for asynchronous continuation.
  5459. </member>
  5460. <member name="T:CefRegistration">
  5461. Generic callback interface used for managing the lifespan of a registration.
  5462. </member>
  5463. <member name="M:CefNavigationEntry.GetSSLStatus">
  5464. Returns the SSL information for this navigation entry.
  5465. </member>
  5466. <member name="M:CefNavigationEntry.GetHttpStatusCode">
  5467. Returns the HTTP status code for the last known successful navigation
  5468. response. May be 0 if the response has not yet been received or if the
  5469. navigation has not yet completed.
  5470. </member>
  5471. <member name="M:CefNavigationEntry.GetCompletionTime">
  5472. Returns the time for the last known successful navigation completion. A
  5473. navigation may be completed more than once if the page is reloaded. May be
  5474. 0 if the navigation has not yet completed.
  5475. </member>
  5476. <member name="M:CefNavigationEntry.HasPostData">
  5477. Returns true if this navigation includes post data.
  5478. </member>
  5479. <member name="M:CefNavigationEntry.GetTransitionType">
  5480. Returns the transition type which indicates what the user did to move to
  5481. this page from the previous page.
  5482. </member>
  5483. <member name="M:CefNavigationEntry.GetTitle">
  5484. Returns the title set by the page. This value may be empty.
  5485. </member>
  5486. <member name="M:CefNavigationEntry.GetOriginalURL">
  5487. Returns the original URL that was entered by the user before any
  5488. redirects.
  5489. </member>
  5490. <member name="M:CefNavigationEntry.GetDisplayURL">
  5491. Returns a display-friendly version of the URL.
  5492. </member>
  5493. <member name="M:CefNavigationEntry.GetURL">
  5494. Returns the actual URL of the page. For some pages this may be data: URL
  5495. or similar. Use GetDisplayURL() to return a display-friendly version.
  5496. </member>
  5497. <member name="M:CefNavigationEntry.IsValid">
  5498. Returns true if this object is valid. Do not call any other methods if
  5499. this function returns false.
  5500. </member>
  5501. <member name="T:CefNavigationEntry">
  5502. Class used to represent an entry in navigation history.
  5503. </member>
  5504. <member name="M:CefSSLStatus.GetX509Certificate">
  5505. Returns the X.509 certificate.
  5506. </member>
  5507. <member name="M:CefSSLStatus.GetContentStatus">
  5508. Returns a bitmask containing the page security content status.
  5509. </member>
  5510. <member name="M:CefSSLStatus.GetSSLVersion">
  5511. Returns the SSL version used for the SSL connection.
  5512. </member>
  5513. <member name="M:CefSSLStatus.GetCertStatus">
  5514. Returns a bitmask containing any and all problems verifying the server
  5515. certificate.
  5516. </member>
  5517. <member name="M:CefSSLStatus.IsSecureConnection">
  5518. Returns true if the status is related to a secure SSL/TLS connection.
  5519. </member>
  5520. <member name="T:CefSSLStatus">
  5521. Class representing the SSL information for a navigation entry.
  5522. </member>
  5523. <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)">
  5524. Returns the PEM encoded data for the certificate issuer chain.
  5525. If we failed to encode a certificate in the chain it is still
  5526. present in the array but is an empty string.
  5527. </member>
  5528. <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)">
  5529. Returns the DER encoded data for the certificate issuer chain.
  5530. If we failed to encode a certificate in the chain it is still
  5531. present in the array but is an empty string.
  5532. </member>
  5533. <member name="M:CefX509Certificate.GetIssuerChainSize">
  5534. Returns the number of certificates in the issuer chain.
  5535. If 0, the certificate is self-signed.
  5536. </member>
  5537. <member name="M:CefX509Certificate.GetPEMEncoded">
  5538. Returns the PEM encoded data for the X.509 certificate.
  5539. </member>
  5540. <member name="M:CefX509Certificate.GetDEREncoded">
  5541. Returns the DER encoded data for the X.509 certificate.
  5542. </member>
  5543. <member name="M:CefX509Certificate.GetValidExpiry">
  5544. Returns the date after which the X.509 certificate is invalid.
  5545. CefBaseTime.GetTimeT() will return 0 if no date was specified.
  5546. </member>
  5547. <member name="M:CefX509Certificate.GetValidStart">
  5548. Returns the date before which the X.509 certificate is invalid.
  5549. CefBaseTime.GetTimeT() will return 0 if no date was specified.
  5550. </member>
  5551. <member name="M:CefX509Certificate.GetSerialNumber">
  5552. Returns the DER encoded serial number for the X.509 certificate. The value
  5553. possibly includes a leading 00 byte.
  5554. </member>
  5555. <member name="M:CefX509Certificate.GetIssuer">
  5556. Returns the issuer of the X.509 certificate.
  5557. </member>
  5558. <member name="M:CefX509Certificate.GetSubject">
  5559. Returns the subject of the X.509 certificate. For HTTPS server
  5560. certificates this represents the web server. The common name of the
  5561. subject should match the host name of the web server.
  5562. </member>
  5563. <member name="T:CefX509Certificate">
  5564. Class representing a X.509 certificate.
  5565. </member>
  5566. <member name="M:CefX509CertPrincipal.GetDomainComponents(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5567. Retrieve the list of domain components.
  5568. </member>
  5569. <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)">
  5570. Retrieve the list of organization unit names.
  5571. </member>
  5572. <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)">
  5573. Retrieve the list of organization names.
  5574. </member>
  5575. <member name="M:CefX509CertPrincipal.GetStreetAddresses(std.vector&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;,std.allocator&lt;CefStringBase&lt;CefStringTraitsUTF16&gt;&gt;&gt;*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5576. Retrieve the list of street addresses.
  5577. </member>
  5578. <member name="M:CefX509CertPrincipal.GetCountryName">
  5579. Returns the country name.
  5580. </member>
  5581. <member name="M:CefX509CertPrincipal.GetStateOrProvinceName">
  5582. Returns the state or province name.
  5583. </member>
  5584. <member name="M:CefX509CertPrincipal.GetLocalityName">
  5585. Returns the locality name.
  5586. </member>
  5587. <member name="M:CefX509CertPrincipal.GetCommonName">
  5588. Returns the common name.
  5589. </member>
  5590. <member name="M:CefX509CertPrincipal.GetDisplayName">
  5591. Returns a name that can be used to represent the issuer. It tries in this
  5592. order: Common Name (CN), Organization Name (O) and Organizational Unit
  5593. Name (OU) and returns the first non-empty one found.
  5594. </member>
  5595. <member name="T:CefX509CertPrincipal">
  5596. Class representing the issuer or subject field of an X.509 certificate.
  5597. </member>
  5598. <member name="M:CefFrame.SendProcessMessage(cef_process_id_t,scoped_refptr&lt;CefProcessMessage&gt;)">
  5599. Send a message to the specified |target_process|. Ownership of the message
  5600. contents will be transferred and the |message| reference will be
  5601. invalidated. Message delivery is not guaranteed in all cases (for example,
  5602. if the browser is closing, navigating, or if the target process crashes).
  5603. Send an ACK message back from the target process if confirmation is
  5604. required.
  5605. </member>
  5606. <member name="M:CefFrame.CreateURLRequest(scoped_refptr&lt;CefRequest&gt;,scoped_refptr&lt;CefURLRequestClient&gt;)">
  5607. Create a new URL request that will be treated as originating from this
  5608. frame and the associated browser. This request may be intercepted by the
  5609. client via CefResourceRequestHandler or CefSchemeHandlerFactory. Use
  5610. CefURLRequest::Create instead if you do not want the request to have this
  5611. association, in which case it may be handled differently (see
  5612. documentation on that method). Requests may originate from both the
  5613. browser process and the render process.
  5614. For requests originating from the browser process:
  5615. - POST data may only contain a single element of type PDE_TYPE_FILE or
  5616. PDE_TYPE_BYTES.
  5617. For requests originating from the render process:
  5618. - POST data may only contain a single element of type PDE_TYPE_BYTES.
  5619. - If the response contains Content-Disposition or Mime-Type header
  5620. values that would not normally be rendered then the response may
  5621. receive special handling inside the browser (for example, via the
  5622. file download code path instead of the URL request code path).
  5623. The |request| object will be marked as read-only after calling this
  5624. method.
  5625. </member>
  5626. <member name="M:CefFrame.VisitDOM(scoped_refptr&lt;CefDOMVisitor&gt;)">
  5627. Visit the DOM document. This method can only be called from the render
  5628. process.
  5629. </member>
  5630. <member name="M:CefFrame.GetV8Context">
  5631. Get the V8 context associated with the frame. This method can only be
  5632. called from the render process.
  5633. </member>
  5634. <member name="M:CefFrame.GetBrowser">
  5635. Returns the browser that this frame belongs to.
  5636. </member>
  5637. <member name="M:CefFrame.GetURL">
  5638. Returns the URL currently loaded in this frame.
  5639. </member>
  5640. <member name="M:CefFrame.GetParent">
  5641. Returns the parent of this frame or NULL if this is the main (top-level)
  5642. frame.
  5643. </member>
  5644. <member name="M:CefFrame.GetName">
  5645. Returns the name for this frame. If the frame has an assigned name (for
  5646. example, set via the iframe "name" attribute) then that value will be
  5647. returned. Otherwise a unique name will be constructed based on the frame
  5648. parent hierarchy. The main (top-level) frame will always have an empty
  5649. name value.
  5650. </member>
  5651. <member name="M:CefFrame.IsFocused">
  5652. Returns true if this is the focused frame.
  5653. </member>
  5654. <member name="M:CefFrame.IsMain">
  5655. Returns true if this is the main (top-level) frame.
  5656. </member>
  5657. <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)">
  5658. Execute a string of JavaScript code in this frame. The |script_url|
  5659. parameter is the URL where the script in question can be found, if any.
  5660. The renderer may request this URL to show the developer the source of the
  5661. error. The |start_line| parameter is the base line number to use for
  5662. error reporting.
  5663. </member>
  5664. <member name="M:CefFrame.LoadURL(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5665. Load the specified |url|.
  5666. </member>
  5667. <member name="M:CefFrame.LoadRequest(scoped_refptr&lt;CefRequest&gt;)">
  5668. Load the request represented by the |request| object.
  5669. WARNING: This method will fail with "bad IPC message" reason
  5670. INVALID_INITIATOR_ORIGIN (213) unless you first navigate to the
  5671. request origin using some other mechanism (LoadURL, link click, etc).
  5672. </member>
  5673. <member name="M:CefFrame.GetText(scoped_refptr&lt;CefStringVisitor&gt;)">
  5674. Retrieve this frame's display text as a string sent to the specified
  5675. visitor.
  5676. </member>
  5677. <member name="M:CefFrame.GetSource(scoped_refptr&lt;CefStringVisitor&gt;)">
  5678. Retrieve this frame's HTML source as a string sent to the specified
  5679. visitor.
  5680. </member>
  5681. <member name="M:CefFrame.ViewSource">
  5682. Save this frame's HTML source to a temporary file and open it in the
  5683. default text viewing application. This method can only be called from the
  5684. browser process.
  5685. </member>
  5686. <member name="M:CefFrame.SelectAll">
  5687. Execute select all in this frame.
  5688. </member>
  5689. <member name="M:CefFrame.Delete">
  5690. Execute delete in this frame.
  5691. </member>
  5692. <member name="M:CefFrame.Paste">
  5693. Execute paste in this frame.
  5694. </member>
  5695. <member name="M:CefFrame.Copy">
  5696. Execute copy in this frame.
  5697. </member>
  5698. <member name="M:CefFrame.Cut">
  5699. Execute cut in this frame.
  5700. </member>
  5701. <member name="M:CefFrame.Redo">
  5702. Execute redo in this frame.
  5703. </member>
  5704. <member name="M:CefFrame.Undo">
  5705. Execute undo in this frame.
  5706. </member>
  5707. <member name="M:CefFrame.IsValid">
  5708. True if this object is currently attached to a valid frame.
  5709. </member>
  5710. <member name="T:CefFrame">
  5711. Class used to represent a frame in the browser window. When used in the
  5712. browser process the methods of this class may be called on any thread unless
  5713. otherwise indicated in the comments. When used in the render process the
  5714. methods of this class may only be called on the main thread.
  5715. </member>
  5716. <member name="M:CefStringVisitor.Visit(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5717. Method that will be executed.
  5718. </member>
  5719. <member name="T:CefStringVisitor">
  5720. Implement this interface to receive string values asynchronously.
  5721. </member>
  5722. <member name="M:CefPostDataElement.GetBytes(System.UInt32,System.Void*)">
  5723. Read up to |size| bytes into |bytes| and return the number of bytes
  5724. actually read.
  5725. </member>
  5726. <member name="M:CefPostDataElement.GetBytesCount">
  5727. Return the number of bytes.
  5728. </member>
  5729. <member name="M:CefPostDataElement.GetFile">
  5730. Return the file name.
  5731. </member>
  5732. <member name="M:CefPostDataElement.GetType">
  5733. Return the type of this post data element.
  5734. </member>
  5735. <member name="M:CefPostDataElement.SetToBytes(System.UInt32,System.Void!System.Runtime.CompilerServices.IsConst*)">
  5736. The post data element will represent bytes. The bytes passed
  5737. in will be copied.
  5738. </member>
  5739. <member name="M:CefPostDataElement.SetToFile(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5740. The post data element will represent a file.
  5741. </member>
  5742. <member name="M:CefPostDataElement.SetToEmpty">
  5743. Remove all contents from the post data element.
  5744. </member>
  5745. <member name="M:CefPostDataElement.IsReadOnly">
  5746. Returns true if this object is read-only.
  5747. </member>
  5748. <member name="M:CefPostDataElement.Create">
  5749. Create a new CefPostDataElement object.
  5750. </member>
  5751. <member name="D:CefPostDataElement.Type">
  5752. Post data elements may represent either bytes or files.
  5753. </member>
  5754. <member name="T:CefPostDataElement">
  5755. Class used to represent a single element in the request post data. The
  5756. methods of this class may be called on any thread.
  5757. </member>
  5758. <member name="M:CefPostData.RemoveElements">
  5759. Remove all existing post data elements.
  5760. </member>
  5761. <member name="M:CefPostData.AddElement(scoped_refptr&lt;CefPostDataElement&gt;)">
  5762. Add the specified post data element. Returns true if the add succeeds.
  5763. </member>
  5764. <member name="M:CefPostData.RemoveElement(scoped_refptr&lt;CefPostDataElement&gt;)">
  5765. Remove the specified post data element. Returns true if the removal
  5766. succeeds.
  5767. </member>
  5768. <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)">
  5769. Retrieve the post data elements.
  5770. </member>
  5771. <member name="M:CefPostData.GetElementCount">
  5772. Returns the number of existing post data elements.
  5773. </member>
  5774. <member name="M:CefPostData.HasExcludedElements">
  5775. Returns true if the underlying POST data includes elements that are not
  5776. represented by this CefPostData object (for example, multi-part file
  5777. upload data). Modifying CefPostData objects with excluded elements may
  5778. result in the request failing.
  5779. </member>
  5780. <member name="M:CefPostData.IsReadOnly">
  5781. Returns true if this object is read-only.
  5782. </member>
  5783. <member name="M:CefPostData.Create">
  5784. Create a new CefPostData object.
  5785. </member>
  5786. <member name="T:CefPostData">
  5787. Class used to represent post data for a web request. The methods of this
  5788. class may be called on any thread.
  5789. </member>
  5790. <member name="M:CefRequest.GetIdentifier">
  5791. Returns the globally unique identifier for this request or 0 if not
  5792. specified. Can be used by CefResourceRequestHandler implementations in the
  5793. browser process to track a single request across multiple callbacks.
  5794. </member>
  5795. <member name="M:CefRequest.GetTransitionType">
  5796. Get the transition type for this request. Only available in the browser
  5797. process and only applies to requests that represent a main frame or
  5798. sub-frame navigation.
  5799. </member>
  5800. <member name="M:CefRequest.GetResourceType">
  5801. Get the resource type for this request. Only available in the browser
  5802. process.
  5803. </member>
  5804. <member name="M:CefRequest.SetFirstPartyForCookies(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5805. Set the URL to the first party for cookies used in combination with
  5806. CefURLRequest.
  5807. </member>
  5808. <member name="M:CefRequest.GetFirstPartyForCookies">
  5809. Get the URL to the first party for cookies used in combination with
  5810. CefURLRequest.
  5811. </member>
  5812. <member name="M:CefRequest.SetFlags(System.Int32)">
  5813. Set the flags used in combination with CefURLRequest. See
  5814. cef_urlrequest_flags_t for supported values.
  5815. </member>
  5816. <member name="M:CefRequest.GetFlags">
  5817. Get the flags used in combination with CefURLRequest. See
  5818. cef_urlrequest_flags_t for supported values.
  5819. </member>
  5820. <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)">
  5821. Set all values at one time.
  5822. </member>
  5823. <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)">
  5824. Set the header |name| to |value|. If |overwrite| is true any existing
  5825. values will be replaced with the new value. If |overwrite| is false any
  5826. existing values will not be overwritten. The Referer value cannot be set
  5827. using this method.
  5828. </member>
  5829. <member name="M:CefRequest.GetHeaderByName(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5830. Returns the first header value for |name| or an empty string if not found.
  5831. Will not return the Referer value if any. Use GetHeaderMap instead if
  5832. |name| might have multiple values.
  5833. </member>
  5834. <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)">
  5835. Set the header values. If a Referer value exists in the header map it will
  5836. be removed and ignored.
  5837. </member>
  5838. <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)">
  5839. Get the header values. Will not include the Referer value if any.
  5840. </member>
  5841. <member name="M:CefRequest.SetPostData(scoped_refptr&lt;CefPostData&gt;)">
  5842. Set the post data.
  5843. </member>
  5844. <member name="M:CefRequest.GetPostData">
  5845. Get the post data.
  5846. </member>
  5847. <member name="M:CefRequest.GetReferrerPolicy">
  5848. Get the referrer policy.
  5849. </member>
  5850. <member name="M:CefRequest.GetReferrerURL">
  5851. Get the referrer URL.
  5852. </member>
  5853. <member name="M:CefRequest.SetReferrer(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,cef_referrer_policy_t)">
  5854. Set the referrer URL and policy. If non-empty the referrer URL must be
  5855. fully qualified with an HTTP or HTTPS scheme component. Any username,
  5856. password or ref component will be removed.
  5857. </member>
  5858. <member name="M:CefRequest.SetMethod(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5859. Set the request method type.
  5860. </member>
  5861. <member name="M:CefRequest.GetMethod">
  5862. Get the request method type. The value will default to POST if post data
  5863. is provided and GET otherwise.
  5864. </member>
  5865. <member name="M:CefRequest.SetURL(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5866. Set the fully qualified URL.
  5867. </member>
  5868. <member name="M:CefRequest.GetURL">
  5869. Get the fully qualified URL.
  5870. </member>
  5871. <member name="M:CefRequest.IsReadOnly">
  5872. Returns true if this object is read-only.
  5873. </member>
  5874. <member name="M:CefRequest.Create">
  5875. Create a new CefRequest object.
  5876. </member>
  5877. <member name="T:CefRequest">
  5878. Class used to represent a web request. The methods of this class may be
  5879. called on any thread.
  5880. </member>
  5881. <member name="M:CefProcessMessage.GetSharedMemoryRegion">
  5882. Returns the shared memory region.
  5883. Returns nullptr when message contains an argument list.
  5884. </member>
  5885. <member name="M:CefProcessMessage.GetArgumentList">
  5886. Returns the list of arguments.
  5887. Returns nullptr when message contains a shared memory region.
  5888. </member>
  5889. <member name="M:CefProcessMessage.GetName">
  5890. Returns the message name.
  5891. </member>
  5892. <member name="M:CefProcessMessage.Copy">
  5893. Returns a writable copy of this object.
  5894. Returns nullptr when message contains a shared memory region.
  5895. </member>
  5896. <member name="M:CefProcessMessage.IsReadOnly">
  5897. Returns true if the values of this object are read-only. Some APIs may
  5898. expose read-only objects.
  5899. </member>
  5900. <member name="M:CefProcessMessage.IsValid">
  5901. Returns true if this object is valid. Do not call any other methods if
  5902. this function returns false.
  5903. </member>
  5904. <member name="M:CefProcessMessage.Create(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5905. Create a new CefProcessMessage object with the specified name.
  5906. </member>
  5907. <member name="T:CefProcessMessage">
  5908. Class representing a message. Can be used on any process and thread.
  5909. </member>
  5910. <member name="M:CefSharedMemoryRegion.Memory">
  5911. Returns the pointer to the memory. Returns nullptr for invalid instances.
  5912. The returned pointer is only valid for the life span of this object.
  5913. </member>
  5914. <member name="M:CefSharedMemoryRegion.Size">
  5915. Returns the size of the mapping in bytes. Returns 0 for invalid instances.
  5916. </member>
  5917. <member name="M:CefSharedMemoryRegion.IsValid">
  5918. Returns true if the mapping is valid.
  5919. </member>
  5920. <member name="T:CefSharedMemoryRegion">
  5921. Class that wraps platform-dependent share memory region mapping.
  5922. </member>
  5923. <member name="M:CefDOMNode.GetElementBounds">
  5924. Returns the bounds of the element in device pixels. Use
  5925. "window.devicePixelRatio" to convert to/from CSS pixels.
  5926. </member>
  5927. <member name="M:CefDOMNode.GetElementInnerText">
  5928. Returns the inner text of the element.
  5929. </member>
  5930. <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)">
  5931. Set the value for the element attribute named |attrName|. Returns true on
  5932. success.
  5933. </member>
  5934. <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)">
  5935. Returns a map of all element attributes.
  5936. </member>
  5937. <member name="M:CefDOMNode.GetElementAttribute(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5938. Returns the element attribute named |attrName|.
  5939. </member>
  5940. <member name="M:CefDOMNode.HasElementAttribute(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5941. Returns true if this element has an attribute named |attrName|.
  5942. </member>
  5943. <member name="M:CefDOMNode.HasElementAttributes">
  5944. Returns true if this element has attributes.
  5945. </member>
  5946. <member name="M:CefDOMNode.GetElementTagName">
  5947. Returns the tag name of this element.
  5948. </member>
  5949. <member name="M:CefDOMNode.GetLastChild">
  5950. Returns the last child node.
  5951. </member>
  5952. <member name="M:CefDOMNode.GetFirstChild">
  5953. Return the first child node.
  5954. </member>
  5955. <member name="M:CefDOMNode.HasChildren">
  5956. Returns true if this node has child nodes.
  5957. </member>
  5958. <member name="M:CefDOMNode.GetNextSibling">
  5959. Returns the next sibling node.
  5960. </member>
  5961. <member name="M:CefDOMNode.GetPreviousSibling">
  5962. Returns the previous sibling node.
  5963. </member>
  5964. <member name="M:CefDOMNode.GetParent">
  5965. Returns the parent node.
  5966. </member>
  5967. <member name="M:CefDOMNode.GetDocument">
  5968. Returns the document associated with this node.
  5969. </member>
  5970. <member name="M:CefDOMNode.GetAsMarkup">
  5971. Returns the contents of this node as markup.
  5972. </member>
  5973. <member name="M:CefDOMNode.SetValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  5974. Set the value of this node. Returns true on success.
  5975. </member>
  5976. <member name="M:CefDOMNode.GetValue">
  5977. Returns the value of this node.
  5978. </member>
  5979. <member name="M:CefDOMNode.GetName">
  5980. Returns the name of this node.
  5981. </member>
  5982. <member name="M:CefDOMNode.IsSame(scoped_refptr&lt;CefDOMNode&gt;)">
  5983. Returns true if this object is pointing to the same handle as |that|
  5984. object.
  5985. </member>
  5986. <member name="M:CefDOMNode.GetFormControlElementType">
  5987. Returns the type of this form control element node.
  5988. </member>
  5989. <member name="M:CefDOMNode.IsFormControlElement">
  5990. Returns true if this is a form control element node.
  5991. </member>
  5992. <member name="M:CefDOMNode.IsEditable">
  5993. Returns true if this is an editable node.
  5994. </member>
  5995. <member name="M:CefDOMNode.IsElement">
  5996. Returns true if this is an element node.
  5997. </member>
  5998. <member name="M:CefDOMNode.IsText">
  5999. Returns true if this is a text node.
  6000. </member>
  6001. <member name="M:CefDOMNode.GetType">
  6002. Returns the type for this node.
  6003. </member>
  6004. <member name="T:CefDOMNode">
  6005. Class used to represent a DOM node. The methods of this class should only be
  6006. called on the render process main thread.
  6007. </member>
  6008. <member name="M:CefDOMDocument.GetCompleteURL(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6009. Returns a complete URL based on the document base URL and the specified
  6010. partial URL.
  6011. </member>
  6012. <member name="M:CefDOMDocument.GetBaseURL">
  6013. Returns the base URL for the document.
  6014. </member>
  6015. <member name="M:CefDOMDocument.GetSelectionAsText">
  6016. Returns the contents of this selection as text.
  6017. </member>
  6018. <member name="M:CefDOMDocument.GetSelectionAsMarkup">
  6019. Returns the contents of this selection as markup.
  6020. </member>
  6021. <member name="M:CefDOMDocument.GetSelectionEndOffset">
  6022. Returns the selection offset within the end node.
  6023. </member>
  6024. <member name="M:CefDOMDocument.GetSelectionStartOffset">
  6025. Returns the selection offset within the start node.
  6026. </member>
  6027. <member name="M:CefDOMDocument.HasSelection">
  6028. Returns true if a portion of the document is selected.
  6029. </member>
  6030. <member name="M:CefDOMDocument.GetFocusedNode">
  6031. Returns the node that currently has keyboard focus.
  6032. </member>
  6033. <member name="M:CefDOMDocument.GetElementById(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6034. Returns the document element with the specified ID value.
  6035. </member>
  6036. <member name="M:CefDOMDocument.GetTitle">
  6037. Returns the title of an HTML document.
  6038. </member>
  6039. <member name="M:CefDOMDocument.GetHead">
  6040. Returns the HEAD node of an HTML document.
  6041. </member>
  6042. <member name="M:CefDOMDocument.GetBody">
  6043. Returns the BODY node of an HTML document.
  6044. </member>
  6045. <member name="M:CefDOMDocument.GetDocument">
  6046. Returns the root document node.
  6047. </member>
  6048. <member name="M:CefDOMDocument.GetType">
  6049. Returns the document type.
  6050. </member>
  6051. <member name="T:CefDOMDocument">
  6052. Class used to represent a DOM document. The methods of this class should
  6053. only be called on the render process main thread thread.
  6054. </member>
  6055. <member name="M:CefDOMVisitor.Visit(scoped_refptr&lt;CefDOMDocument&gt;)">
  6056. Method executed for visiting the DOM. The document object passed to this
  6057. method represents a snapshot of the DOM at the time this method is
  6058. executed. DOM objects are only valid for the scope of this method. Do not
  6059. keep references to or attempt to access any DOM objects outside the scope
  6060. of this method.
  6061. </member>
  6062. <member name="T:CefDOMVisitor">
  6063. Interface to implement for visiting the DOM. The methods of this class will
  6064. be called on the render process main thread.
  6065. </member>
  6066. <member name="M:CefDragData.HasImage">
  6067. Returns true if an image representation of drag data is available.
  6068. </member>
  6069. <member name="M:CefDragData.GetImageHotspot">
  6070. Get the image hotspot (drag start location relative to image dimensions).
  6071. </member>
  6072. <member name="M:CefDragData.GetImage">
  6073. Get the image representation of drag data. May return NULL if no image
  6074. representation is available.
  6075. </member>
  6076. <member name="M:CefDragData.ClearFilenames">
  6077. Clear list of filenames.
  6078. </member>
  6079. <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)">
  6080. Add a file that is being dragged into the webview.
  6081. </member>
  6082. <member name="M:CefDragData.ResetFileContents">
  6083. Reset the file contents. You should do this before calling
  6084. CefBrowserHost::DragTargetDragEnter as the web view does not allow us to
  6085. drag in this kind of data.
  6086. </member>
  6087. <member name="M:CefDragData.SetFragmentBaseURL(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6088. Set the base URL that the fragment came from.
  6089. </member>
  6090. <member name="M:CefDragData.SetFragmentHtml(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6091. Set the text/html fragment that is being dragged.
  6092. </member>
  6093. <member name="M:CefDragData.SetFragmentText(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6094. Set the plain text fragment that is being dragged.
  6095. </member>
  6096. <member name="M:CefDragData.SetLinkMetadata(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6097. Set the metadata associated with the link being dragged.
  6098. </member>
  6099. <member name="M:CefDragData.SetLinkTitle(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6100. Set the title associated with the link being dragged.
  6101. </member>
  6102. <member name="M:CefDragData.SetLinkURL(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6103. Set the link URL that is being dragged.
  6104. </member>
  6105. <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)">
  6106. Retrieve the list of file names that are being dragged into the browser
  6107. window.
  6108. </member>
  6109. <member name="M:CefDragData.GetFileContents(scoped_refptr&lt;CefStreamWriter&gt;)">
  6110. Write the contents of the file being dragged out of the web view into
  6111. |writer|. Returns the number of bytes sent to |writer|. If |writer| is
  6112. NULL this method will return the size of the file contents in bytes.
  6113. Call GetFileName() to get a suggested name for the file.
  6114. </member>
  6115. <member name="M:CefDragData.GetFileName">
  6116. Return the name of the file being dragged out of the browser window.
  6117. </member>
  6118. <member name="M:CefDragData.GetFragmentBaseURL">
  6119. Return the base URL that the fragment came from. This value is used for
  6120. resolving relative URLs and may be empty.
  6121. </member>
  6122. <member name="M:CefDragData.GetFragmentHtml">
  6123. Return the text/html fragment that is being dragged.
  6124. </member>
  6125. <member name="M:CefDragData.GetFragmentText">
  6126. Return the plain text fragment that is being dragged.
  6127. </member>
  6128. <member name="M:CefDragData.GetLinkMetadata">
  6129. Return the metadata, if any, associated with the link being dragged.
  6130. </member>
  6131. <member name="M:CefDragData.GetLinkTitle">
  6132. Return the title associated with the link being dragged.
  6133. </member>
  6134. <member name="M:CefDragData.GetLinkURL">
  6135. Return the link URL that is being dragged.
  6136. </member>
  6137. <member name="M:CefDragData.IsFile">
  6138. Returns true if the drag data is a file.
  6139. </member>
  6140. <member name="M:CefDragData.IsFragment">
  6141. Returns true if the drag data is a text or html fragment.
  6142. </member>
  6143. <member name="M:CefDragData.IsLink">
  6144. Returns true if the drag data is a link.
  6145. </member>
  6146. <member name="M:CefDragData.IsReadOnly">
  6147. Returns true if this object is read-only.
  6148. </member>
  6149. <member name="M:CefDragData.Clone">
  6150. Returns a copy of the current object.
  6151. </member>
  6152. <member name="M:CefDragData.Create">
  6153. Create a new CefDragData object.
  6154. </member>
  6155. <member name="T:CefDragData">
  6156. Class used to represent drag data. The methods of this class may be called
  6157. on any thread.
  6158. </member>
  6159. <member name="M:CefStreamWriter.MayBlock">
  6160. Returns true if this writer performs work like accessing the file system
  6161. which may block. Used as a hint for determining the thread to access the
  6162. writer from.
  6163. </member>
  6164. <member name="M:CefStreamWriter.Flush">
  6165. Flush the stream.
  6166. </member>
  6167. <member name="M:CefStreamWriter.Tell">
  6168. Return the current offset position.
  6169. </member>
  6170. <member name="M:CefStreamWriter.Seek(System.Int64,System.Int32)">
  6171. Seek to the specified offset position. |whence| may be any one of
  6172. SEEK_CUR, SEEK_END or SEEK_SET. Returns zero on success and non-zero on
  6173. failure.
  6174. </member>
  6175. <member name="M:CefStreamWriter.Write(System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt32,System.UInt32)">
  6176. Write raw binary data.
  6177. </member>
  6178. <member name="M:CefStreamWriter.CreateForHandler(scoped_refptr&lt;CefWriteHandler&gt;)">
  6179. Create a new CefStreamWriter object for a custom handler.
  6180. </member>
  6181. <member name="M:CefStreamWriter.CreateForFile(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6182. Create a new CefStreamWriter object for a file.
  6183. </member>
  6184. <member name="T:CefStreamWriter">
  6185. Class used to write data to a stream. The methods of this class may be
  6186. called on any thread.
  6187. </member>
  6188. <member name="M:CefWriteHandler.MayBlock">
  6189. Return true if this handler performs work like accessing the file system
  6190. which may block. Used as a hint for determining the thread to access the
  6191. handler from.
  6192. </member>
  6193. <member name="M:CefWriteHandler.Flush">
  6194. Flush the stream.
  6195. </member>
  6196. <member name="M:CefWriteHandler.Tell">
  6197. Return the current offset position.
  6198. </member>
  6199. <member name="M:CefWriteHandler.Seek(System.Int64,System.Int32)">
  6200. Seek to the specified offset position. |whence| may be any one of
  6201. SEEK_CUR, SEEK_END or SEEK_SET. Return zero on success and non-zero on
  6202. failure.
  6203. </member>
  6204. <member name="M:CefWriteHandler.Write(System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt32,System.UInt32)">
  6205. Write raw binary data.
  6206. </member>
  6207. <member name="T:CefWriteHandler">
  6208. Interface the client can implement to provide a custom stream writer. The
  6209. methods of this class may be called on any thread.
  6210. </member>
  6211. <member name="M:CefStreamReader.MayBlock">
  6212. Returns true if this reader performs work like accessing the file system
  6213. which may block. Used as a hint for determining the thread to access the
  6214. reader from.
  6215. </member>
  6216. <member name="M:CefStreamReader.Eof">
  6217. Return non-zero if at end of file.
  6218. </member>
  6219. <member name="M:CefStreamReader.Tell">
  6220. Return the current offset position.
  6221. </member>
  6222. <member name="M:CefStreamReader.Seek(System.Int64,System.Int32)">
  6223. Seek to the specified offset position. |whence| may be any one of
  6224. SEEK_CUR, SEEK_END or SEEK_SET. Returns zero on success and non-zero on
  6225. failure.
  6226. </member>
  6227. <member name="M:CefStreamReader.Read(System.Void*,System.UInt32,System.UInt32)">
  6228. Read raw binary data.
  6229. </member>
  6230. <member name="M:CefStreamReader.CreateForHandler(scoped_refptr&lt;CefReadHandler&gt;)">
  6231. Create a new CefStreamReader object from a custom handler.
  6232. </member>
  6233. <member name="M:CefStreamReader.CreateForData(System.Void*,System.UInt32)">
  6234. Create a new CefStreamReader object from data.
  6235. </member>
  6236. <member name="M:CefStreamReader.CreateForFile(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6237. Create a new CefStreamReader object from a file.
  6238. </member>
  6239. <member name="T:CefStreamReader">
  6240. Class used to read data from a stream. The methods of this class may be
  6241. called on any thread.
  6242. </member>
  6243. <member name="M:CefReadHandler.MayBlock">
  6244. Return true if this handler performs work like accessing the file system
  6245. which may block. Used as a hint for determining the thread to access the
  6246. handler from.
  6247. </member>
  6248. <member name="M:CefReadHandler.Eof">
  6249. Return non-zero if at end of file.
  6250. </member>
  6251. <member name="M:CefReadHandler.Tell">
  6252. Return the current offset position.
  6253. </member>
  6254. <member name="M:CefReadHandler.Seek(System.Int64,System.Int32)">
  6255. Seek to the specified offset position. |whence| may be any one of
  6256. SEEK_CUR, SEEK_END or SEEK_SET. Return zero on success and non-zero on
  6257. failure.
  6258. </member>
  6259. <member name="M:CefReadHandler.Read(System.Void*,System.UInt32,System.UInt32)">
  6260. Read raw binary data.
  6261. </member>
  6262. <member name="T:CefReadHandler">
  6263. Interface the client can implement to provide a custom stream reader. The
  6264. methods of this class may be called on any thread.
  6265. </member>
  6266. <member name="M:CefImage.GetAsJPEG(System.Single,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6267. Returns the JPEG representation that most closely matches |scale_factor|.
  6268. |quality| determines the compression level with 0 == lowest and 100 ==
  6269. highest. The JPEG format does not support alpha transparency and the alpha
  6270. channel, if any, will be discarded. |pixel_width| and |pixel_height| are
  6271. the output representation size in pixel coordinates. Returns a
  6272. CefBinaryValue containing the JPEG image data on success or NULL on
  6273. failure.
  6274. </member>
  6275. <member name="M:CefImage.GetAsPNG(System.Single,System.Boolean,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6276. Returns the PNG representation that most closely matches |scale_factor|.
  6277. If |with_transparency| is true any alpha transparency in the image will be
  6278. represented in the resulting PNG data. |pixel_width| and |pixel_height|
  6279. are the output representation size in pixel coordinates. Returns a
  6280. CefBinaryValue containing the PNG image data on success or NULL on
  6281. failure.
  6282. </member>
  6283. <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)">
  6284. Returns the bitmap representation that most closely matches
  6285. |scale_factor|. Only 32-bit RGBA/BGRA formats are supported. |color_type|
  6286. and |alpha_type| values specify the desired output pixel format.
  6287. |pixel_width| and |pixel_height| are the output representation size in
  6288. pixel coordinates. Returns a CefBinaryValue containing the pixel data on
  6289. success or NULL on failure.
  6290. </member>
  6291. <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)">
  6292. Returns information for the representation that most closely matches
  6293. |scale_factor|. |actual_scale_factor| is the actual scale factor for the
  6294. representation. |pixel_width| and |pixel_height| are the representation
  6295. size in pixel coordinates. Returns true on success.
  6296. </member>
  6297. <member name="M:CefImage.RemoveRepresentation(System.Single)">
  6298. Removes the representation for |scale_factor|. Returns true on success.
  6299. </member>
  6300. <member name="M:CefImage.HasRepresentation(System.Single)">
  6301. Returns true if this image contains a representation for |scale_factor|.
  6302. </member>
  6303. <member name="M:CefImage.GetHeight">
  6304. Returns the image height in density independent pixel (DIP) units.
  6305. </member>
  6306. <member name="M:CefImage.GetWidth">
  6307. Returns the image width in density independent pixel (DIP) units.
  6308. </member>
  6309. <member name="M:CefImage.AddJPEG(System.Single,System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt32)">
  6310. Create a JPEG image representation for |scale_factor|. |jpeg_data| is the
  6311. image data of size |jpeg_data_size|. The JPEG format does not support
  6312. transparency so the alpha byte will be set to 0xFF for all pixels.
  6313. </member>
  6314. <member name="M:CefImage.AddPNG(System.Single,System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt32)">
  6315. Add a PNG image representation for |scale_factor|. |png_data| is the image
  6316. data of size |png_data_size|. Any alpha transparency in the PNG data will
  6317. be maintained.
  6318. </member>
  6319. <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.UInt32)">
  6320. Add a bitmap image representation for |scale_factor|. Only 32-bit
  6321. RGBA/BGRA formats are supported. |pixel_width| and |pixel_height| are the
  6322. bitmap representation size in pixel coordinates. |pixel_data| is the array
  6323. of pixel data and should be |pixel_width| x |pixel_height| x 4 bytes in
  6324. size. |color_type| and |alpha_type| values specify the pixel format.
  6325. </member>
  6326. <member name="M:CefImage.IsSame(scoped_refptr&lt;CefImage&gt;)">
  6327. Returns true if this Image and |that| Image share the same underlying
  6328. storage. Will also return true if both images are empty.
  6329. </member>
  6330. <member name="M:CefImage.IsEmpty">
  6331. Returns true if this Image is empty.
  6332. </member>
  6333. <member name="M:CefImage.CreateImage">
  6334. Create a new CefImage. It will initially be empty. Use the Add*() methods
  6335. to add representations at different scale factors.
  6336. </member>
  6337. <member name="T:CefImage">
  6338. Container for a single image represented at different scale factors. All
  6339. image representations should be the same size in density independent pixel
  6340. (DIP) units. For example, if the image at scale factor 1.0 is 100x100 pixels
  6341. then the image at scale factor 2.0 should be 200x200 pixels -- both images
  6342. will display with a DIP size of 100x100 units. The methods of this class can
  6343. be called on any browser process thread.
  6344. </member>
  6345. <member name="M:CefListValue.SetList(System.UInt32,scoped_refptr&lt;CefListValue&gt;)">
  6346. Sets the value at the specified index as type list. Returns true if the
  6347. value was set successfully. If |value| is currently owned by another
  6348. object then the value will be copied and the |value| reference will not
  6349. change. Otherwise, ownership will be transferred to this object and the
  6350. |value| reference will be invalidated.
  6351. </member>
  6352. <member name="M:CefListValue.SetDictionary(System.UInt32,scoped_refptr&lt;CefDictionaryValue&gt;)">
  6353. Sets the value at the specified index as type dict. Returns true if the
  6354. value was set successfully. If |value| is currently owned by another
  6355. object then the value will be copied and the |value| reference will not
  6356. change. Otherwise, ownership will be transferred to this object and the
  6357. |value| reference will be invalidated.
  6358. </member>
  6359. <member name="M:CefListValue.SetBinary(System.UInt32,scoped_refptr&lt;CefBinaryValue&gt;)">
  6360. Sets the value at the specified index as type binary. Returns true if the
  6361. value was set successfully. If |value| is currently owned by another
  6362. object then the value will be copied and the |value| reference will not
  6363. change. Otherwise, ownership will be transferred to this object and the
  6364. |value| reference will be invalidated.
  6365. </member>
  6366. <member name="M:CefListValue.SetString(System.UInt32,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6367. Sets the value at the specified index as type string. Returns true if the
  6368. value was set successfully.
  6369. </member>
  6370. <member name="M:CefListValue.SetDouble(System.UInt32,System.Double)">
  6371. Sets the value at the specified index as type double. Returns true if the
  6372. value was set successfully.
  6373. </member>
  6374. <member name="M:CefListValue.SetInt(System.UInt32,System.Int32)">
  6375. Sets the value at the specified index as type int. Returns true if the
  6376. value was set successfully.
  6377. </member>
  6378. <member name="M:CefListValue.SetBool(System.UInt32,System.Boolean)">
  6379. Sets the value at the specified index as type bool. Returns true if the
  6380. value was set successfully.
  6381. </member>
  6382. <member name="M:CefListValue.SetNull(System.UInt32)">
  6383. Sets the value at the specified index as type null. Returns true if the
  6384. value was set successfully.
  6385. </member>
  6386. <member name="M:CefListValue.SetValue(System.UInt32,scoped_refptr&lt;CefValue&gt;)">
  6387. Sets the value at the specified index. Returns true if the value was set
  6388. successfully. If |value| represents simple data then the underlying data
  6389. will be copied and modifications to |value| will not modify this object.
  6390. If |value| represents complex data (binary, dictionary or list) then the
  6391. underlying data will be referenced and modifications to |value| will
  6392. modify this object.
  6393. </member>
  6394. <member name="M:CefListValue.GetList(System.UInt32)">
  6395. Returns the value at the specified index as type list. The returned
  6396. value will reference existing data and modifications to the value will
  6397. modify this object.
  6398. </member>
  6399. <member name="M:CefListValue.GetDictionary(System.UInt32)">
  6400. Returns the value at the specified index as type dictionary. The returned
  6401. value will reference existing data and modifications to the value will
  6402. modify this object.
  6403. </member>
  6404. <member name="M:CefListValue.GetBinary(System.UInt32)">
  6405. Returns the value at the specified index as type binary. The returned
  6406. value will reference existing data.
  6407. </member>
  6408. <member name="M:CefListValue.GetString(System.UInt32)">
  6409. Returns the value at the specified index as type string.
  6410. </member>
  6411. <member name="M:CefListValue.GetDouble(System.UInt32)">
  6412. Returns the value at the specified index as type double.
  6413. </member>
  6414. <member name="M:CefListValue.GetInt(System.UInt32)">
  6415. Returns the value at the specified index as type int.
  6416. </member>
  6417. <member name="M:CefListValue.GetBool(System.UInt32)">
  6418. Returns the value at the specified index as type bool.
  6419. </member>
  6420. <member name="M:CefListValue.GetValue(System.UInt32)">
  6421. Returns the value at the specified index. For simple types the returned
  6422. value will copy existing data and modifications to the value will not
  6423. modify this object. For complex types (binary, dictionary and list) the
  6424. returned value will reference existing data and modifications to the value
  6425. will modify this object.
  6426. </member>
  6427. <member name="M:CefListValue.GetType(System.UInt32)">
  6428. Returns the value type at the specified index.
  6429. </member>
  6430. <member name="M:CefListValue.Remove(System.UInt32)">
  6431. Removes the value at the specified index.
  6432. </member>
  6433. <member name="M:CefListValue.Clear">
  6434. Removes all values. Returns true on success.
  6435. </member>
  6436. <member name="M:CefListValue.GetSize">
  6437. Returns the number of values.
  6438. </member>
  6439. <member name="M:CefListValue.SetSize(System.UInt32)">
  6440. Sets the number of values. If the number of values is expanded all
  6441. new value slots will default to type null. Returns true on success.
  6442. </member>
  6443. <member name="M:CefListValue.Copy">
  6444. Returns a writable copy of this object.
  6445. </member>
  6446. <member name="M:CefListValue.IsEqual(scoped_refptr&lt;CefListValue&gt;)">
  6447. Returns true if this object and |that| object have an equivalent
  6448. underlying value but are not necessarily the same object.
  6449. </member>
  6450. <member name="M:CefListValue.IsSame(scoped_refptr&lt;CefListValue&gt;)">
  6451. Returns true if this object and |that| object have the same underlying
  6452. data. If true modifications to this object will also affect |that| object
  6453. and vice-versa.
  6454. </member>
  6455. <member name="M:CefListValue.IsReadOnly">
  6456. Returns true if the values of this object are read-only. Some APIs may
  6457. expose read-only objects.
  6458. </member>
  6459. <member name="M:CefListValue.IsOwned">
  6460. Returns true if this object is currently owned by another object.
  6461. </member>
  6462. <member name="M:CefListValue.IsValid">
  6463. Returns true if this object is valid. This object may become invalid if
  6464. the underlying data is owned by another object (e.g. list or dictionary)
  6465. and that other object is then modified or destroyed. Do not call any other
  6466. methods if this method returns false.
  6467. </member>
  6468. <member name="M:CefListValue.Create">
  6469. Creates a new object that is not owned by any other object.
  6470. </member>
  6471. <member name="T:CefListValue">
  6472. Class representing a list value. Can be used on any process and thread.
  6473. </member>
  6474. <member name="M:CefDictionaryValue.SetList(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefListValue&gt;)">
  6475. Sets the value at the specified key as type list. Returns true if the
  6476. value was set successfully. If |value| is currently owned by another
  6477. object then the value will be copied and the |value| reference will not
  6478. change. Otherwise, ownership will be transferred to this object and the
  6479. |value| reference will be invalidated.
  6480. </member>
  6481. <member name="M:CefDictionaryValue.SetDictionary(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefDictionaryValue&gt;)">
  6482. Sets the value at the specified key as type dict. Returns true if the
  6483. value was set successfully. If |value| is currently owned by another
  6484. object then the value will be copied and the |value| reference will not
  6485. change. Otherwise, ownership will be transferred to this object and the
  6486. |value| reference will be invalidated.
  6487. </member>
  6488. <member name="M:CefDictionaryValue.SetBinary(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefBinaryValue&gt;)">
  6489. Sets the value at the specified key as type binary. Returns true if the
  6490. value was set successfully. If |value| is currently owned by another
  6491. object then the value will be copied and the |value| reference will not
  6492. change. Otherwise, ownership will be transferred to this object and the
  6493. |value| reference will be invalidated.
  6494. </member>
  6495. <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)">
  6496. Sets the value at the specified key as type string. Returns true if the
  6497. value was set successfully.
  6498. </member>
  6499. <member name="M:CefDictionaryValue.SetDouble(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Double)">
  6500. Sets the value at the specified key as type double. Returns true if the
  6501. value was set successfully.
  6502. </member>
  6503. <member name="M:CefDictionaryValue.SetInt(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Int32)">
  6504. Sets the value at the specified key as type int. Returns true if the
  6505. value was set successfully.
  6506. </member>
  6507. <member name="M:CefDictionaryValue.SetBool(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,System.Boolean)">
  6508. Sets the value at the specified key as type bool. Returns true if the
  6509. value was set successfully.
  6510. </member>
  6511. <member name="M:CefDictionaryValue.SetNull(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6512. Sets the value at the specified key as type null. Returns true if the
  6513. value was set successfully.
  6514. </member>
  6515. <member name="M:CefDictionaryValue.SetValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr&lt;CefValue&gt;)">
  6516. Sets the value at the specified key. Returns true if the value was set
  6517. successfully. If |value| represents simple data then the underlying data
  6518. will be copied and modifications to |value| will not modify this object.
  6519. If |value| represents complex data (binary, dictionary or list) then the
  6520. underlying data will be referenced and modifications to |value| will
  6521. modify this object.
  6522. </member>
  6523. <member name="M:CefDictionaryValue.GetList(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6524. Returns the value at the specified key as type list. The returned value
  6525. will reference existing data and modifications to the value will modify
  6526. this object.
  6527. </member>
  6528. <member name="M:CefDictionaryValue.GetDictionary(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6529. Returns the value at the specified key as type dictionary. The returned
  6530. value will reference existing data and modifications to the value will
  6531. modify this object.
  6532. </member>
  6533. <member name="M:CefDictionaryValue.GetBinary(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6534. Returns the value at the specified key as type binary. The returned
  6535. value will reference existing data.
  6536. </member>
  6537. <member name="M:CefDictionaryValue.GetString(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6538. Returns the value at the specified key as type string.
  6539. </member>
  6540. <member name="M:CefDictionaryValue.GetDouble(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6541. Returns the value at the specified key as type double.
  6542. </member>
  6543. <member name="M:CefDictionaryValue.GetInt(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6544. Returns the value at the specified key as type int.
  6545. </member>
  6546. <member name="M:CefDictionaryValue.GetBool(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6547. Returns the value at the specified key as type bool.
  6548. </member>
  6549. <member name="M:CefDictionaryValue.GetValue(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6550. Returns the value at the specified key. For simple types the returned
  6551. value will copy existing data and modifications to the value will not
  6552. modify this object. For complex types (binary, dictionary and list) the
  6553. returned value will reference existing data and modifications to the value
  6554. will modify this object.
  6555. </member>
  6556. <member name="M:CefDictionaryValue.GetType(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6557. Returns the value type for the specified key.
  6558. </member>
  6559. <member name="M:CefDictionaryValue.Remove(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6560. Removes the value at the specified key. Returns true is the value was
  6561. removed successfully.
  6562. </member>
  6563. <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)">
  6564. Reads all keys for this dictionary into the specified vector.
  6565. </member>
  6566. <member name="M:CefDictionaryValue.HasKey(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6567. Returns true if the current dictionary has a value for the given key.
  6568. </member>
  6569. <member name="M:CefDictionaryValue.Clear">
  6570. Removes all values. Returns true on success.
  6571. </member>
  6572. <member name="M:CefDictionaryValue.GetSize">
  6573. Returns the number of values.
  6574. </member>
  6575. <member name="M:CefDictionaryValue.Copy(System.Boolean)">
  6576. Returns a writable copy of this object. If |exclude_empty_children| is
  6577. true any empty dictionaries or lists will be excluded from the copy.
  6578. </member>
  6579. <member name="M:CefDictionaryValue.IsEqual(scoped_refptr&lt;CefDictionaryValue&gt;)">
  6580. Returns true if this object and |that| object have an equivalent
  6581. underlying value but are not necessarily the same object.
  6582. </member>
  6583. <member name="M:CefDictionaryValue.IsSame(scoped_refptr&lt;CefDictionaryValue&gt;)">
  6584. Returns true if this object and |that| object have the same underlying
  6585. data. If true modifications to this object will also affect |that| object
  6586. and vice-versa.
  6587. </member>
  6588. <member name="M:CefDictionaryValue.IsReadOnly">
  6589. Returns true if the values of this object are read-only. Some APIs may
  6590. expose read-only objects.
  6591. </member>
  6592. <member name="M:CefDictionaryValue.IsOwned">
  6593. Returns true if this object is currently owned by another object.
  6594. </member>
  6595. <member name="M:CefDictionaryValue.IsValid">
  6596. Returns true if this object is valid. This object may become invalid if
  6597. the underlying data is owned by another object (e.g. list or dictionary)
  6598. and that other object is then modified or destroyed. Do not call any other
  6599. methods if this method returns false.
  6600. </member>
  6601. <member name="M:CefDictionaryValue.Create">
  6602. Creates a new object that is not owned by any other object.
  6603. </member>
  6604. <member name="T:CefDictionaryValue">
  6605. Class representing a dictionary value. Can be used on any process and
  6606. thread.
  6607. </member>
  6608. <member name="M:CefBinaryValue.GetData(System.Void*,System.UInt32,System.UInt32)">
  6609. Read up to |buffer_size| number of bytes into |buffer|. Reading begins at
  6610. the specified byte |data_offset|. Returns the number of bytes read.
  6611. </member>
  6612. <member name="M:CefBinaryValue.GetSize">
  6613. Returns the data size.
  6614. </member>
  6615. <member name="M:CefBinaryValue.Copy">
  6616. Returns a copy of this object. The data in this object will also be
  6617. copied.
  6618. </member>
  6619. <member name="M:CefBinaryValue.IsEqual(scoped_refptr&lt;CefBinaryValue&gt;)">
  6620. Returns true if this object and |that| object have an equivalent
  6621. underlying value but are not necessarily the same object.
  6622. </member>
  6623. <member name="M:CefBinaryValue.IsSame(scoped_refptr&lt;CefBinaryValue&gt;)">
  6624. Returns true if this object and |that| object have the same underlying
  6625. data.
  6626. </member>
  6627. <member name="M:CefBinaryValue.IsOwned">
  6628. Returns true if this object is currently owned by another object.
  6629. </member>
  6630. <member name="M:CefBinaryValue.IsValid">
  6631. Returns true if this object is valid. This object may become invalid if
  6632. the underlying data is owned by another object (e.g. list or dictionary)
  6633. and that other object is then modified or destroyed. Do not call any other
  6634. methods if this method returns false.
  6635. </member>
  6636. <member name="M:CefBinaryValue.Create(System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt32)">
  6637. Creates a new object that is not owned by any other object. The specified
  6638. |data| will be copied.
  6639. </member>
  6640. <member name="T:CefBinaryValue">
  6641. Class representing a binary value. Can be used on any process and thread.
  6642. </member>
  6643. <member name="M:CefValue.SetList(scoped_refptr&lt;CefListValue&gt;)">
  6644. Sets the underlying value as type list. Returns true if the value was set
  6645. successfully. This object keeps a reference to |value| and ownership of
  6646. the underlying data remains unchanged.
  6647. </member>
  6648. <member name="M:CefValue.SetDictionary(scoped_refptr&lt;CefDictionaryValue&gt;)">
  6649. Sets the underlying value as type dict. Returns true if the value was set
  6650. successfully. This object keeps a reference to |value| and ownership of
  6651. the underlying data remains unchanged.
  6652. </member>
  6653. <member name="M:CefValue.SetBinary(scoped_refptr&lt;CefBinaryValue&gt;)">
  6654. Sets the underlying value as type binary. Returns true if the value was
  6655. set successfully. This object keeps a reference to |value| and ownership
  6656. of the underlying data remains unchanged.
  6657. </member>
  6658. <member name="M:CefValue.SetString(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6659. Sets the underlying value as type string. Returns true if the value was
  6660. set successfully.
  6661. </member>
  6662. <member name="M:CefValue.SetDouble(System.Double)">
  6663. Sets the underlying value as type double. Returns true if the value was
  6664. set successfully.
  6665. </member>
  6666. <member name="M:CefValue.SetInt(System.Int32)">
  6667. Sets the underlying value as type int. Returns true if the value was set
  6668. successfully.
  6669. </member>
  6670. <member name="M:CefValue.SetBool(System.Boolean)">
  6671. Sets the underlying value as type bool. Returns true if the value was set
  6672. successfully.
  6673. </member>
  6674. <member name="M:CefValue.SetNull">
  6675. Sets the underlying value as type null. Returns true if the value was set
  6676. successfully.
  6677. </member>
  6678. <member name="M:CefValue.GetList">
  6679. Returns the underlying value as type list. The returned reference may
  6680. become invalid if the value is owned by another object or if ownership is
  6681. transferred to another object in the future. To maintain a reference to
  6682. the value after assigning ownership to a dictionary or list pass this
  6683. object to the SetValue() method instead of passing the returned reference
  6684. to SetList().
  6685. </member>
  6686. <member name="M:CefValue.GetDictionary">
  6687. Returns the underlying value as type dictionary. The returned reference
  6688. may become invalid if the value is owned by another object or if ownership
  6689. is transferred to another object in the future. To maintain a reference to
  6690. the value after assigning ownership to a dictionary or list pass this
  6691. object to the SetValue() method instead of passing the returned reference
  6692. to SetDictionary().
  6693. </member>
  6694. <member name="M:CefValue.GetBinary">
  6695. Returns the underlying value as type binary. The returned reference may
  6696. become invalid if the value is owned by another object or if ownership is
  6697. transferred to another object in the future. To maintain a reference to
  6698. the value after assigning ownership to a dictionary or list pass this
  6699. object to the SetValue() method instead of passing the returned reference
  6700. to SetBinary().
  6701. </member>
  6702. <member name="M:CefValue.GetString">
  6703. Returns the underlying value as type string.
  6704. </member>
  6705. <member name="M:CefValue.GetDouble">
  6706. Returns the underlying value as type double.
  6707. </member>
  6708. <member name="M:CefValue.GetInt">
  6709. Returns the underlying value as type int.
  6710. </member>
  6711. <member name="M:CefValue.GetBool">
  6712. Returns the underlying value as type bool.
  6713. </member>
  6714. <member name="M:CefValue.GetType">
  6715. Returns the underlying value type.
  6716. </member>
  6717. <member name="M:CefValue.Copy">
  6718. Returns a copy of this object. The underlying data will also be copied.
  6719. </member>
  6720. <member name="M:CefValue.IsEqual(scoped_refptr&lt;CefValue&gt;)">
  6721. Returns true if this object and |that| object have an equivalent
  6722. underlying value but are not necessarily the same object.
  6723. </member>
  6724. <member name="M:CefValue.IsSame(scoped_refptr&lt;CefValue&gt;)">
  6725. Returns true if this object and |that| object have the same underlying
  6726. data. If true modifications to this object will also affect |that| object
  6727. and vice-versa.
  6728. </member>
  6729. <member name="M:CefValue.IsReadOnly">
  6730. Returns true if the underlying data is read-only. Some APIs may expose
  6731. read-only objects.
  6732. </member>
  6733. <member name="M:CefValue.IsOwned">
  6734. Returns true if the underlying data is owned by another object.
  6735. </member>
  6736. <member name="M:CefValue.IsValid">
  6737. Returns true if the underlying data is valid. This will always be true for
  6738. simple types. For complex types (binary, dictionary and list) the
  6739. underlying data may become invalid if owned by another object (e.g. list
  6740. or dictionary) and that other object is then modified or destroyed. This
  6741. value object can be re-used by calling Set*() even if the underlying data
  6742. is invalid.
  6743. </member>
  6744. <member name="M:CefValue.Create">
  6745. Creates a new object.
  6746. </member>
  6747. <member name="T:CefValue">
  6748. Class that wraps other data value types. Complex types (binary, dictionary
  6749. and list) will be referenced but not owned by this object. Can be used on
  6750. any process and thread.
  6751. </member>
  6752. <member name="M:CefDevToolsMessageObserver.OnDevToolsAgentDetached(scoped_refptr&lt;CefBrowser&gt;)">
  6753. Method that will be called when the DevTools agent has detached. |browser|
  6754. is the originating browser instance. Any method results that were pending
  6755. before the agent became detached will not be delivered, and any active
  6756. event subscriptions will be canceled.
  6757. </member>
  6758. <member name="M:CefDevToolsMessageObserver.OnDevToolsAgentAttached(scoped_refptr&lt;CefBrowser&gt;)">
  6759. Method that will be called when the DevTools agent has attached. |browser|
  6760. is the originating browser instance. This will generally occur in response
  6761. to the first message sent while the agent is detached.
  6762. </member>
  6763. <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.UInt32)">
  6764. Method that will be called on receipt of a DevTools protocol event.
  6765. |browser| is the originating browser instance. |method| is the "method"
  6766. value. |params| is the UTF8-encoded JSON "params" dictionary value (which
  6767. may be empty). |params| is only valid for the scope of this callback and
  6768. should be copied if necessary. See the OnDevToolsMessage documentation for
  6769. additional details on |params| contents.
  6770. </member>
  6771. <member name="M:CefDevToolsMessageObserver.OnDevToolsMethodResult(scoped_refptr&lt;CefBrowser&gt;,System.Int32,System.Boolean,System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt32)">
  6772. Method that will be called after attempted execution of a DevTools
  6773. protocol method. |browser| is the originating browser instance.
  6774. |message_id| is the "id" value that identifies the originating method call
  6775. message. If the method succeeded |success| will be true and |result| will
  6776. be the UTF8-encoded JSON "result" dictionary value (which may be empty).
  6777. If the method failed |success| will be false and |result| will be the
  6778. UTF8-encoded JSON "error" dictionary value. |result| is only valid for the
  6779. scope of this callback and should be copied if necessary. See the
  6780. OnDevToolsMessage documentation for additional details on |result|
  6781. contents.
  6782. </member>
  6783. <member name="M:CefDevToolsMessageObserver.OnDevToolsMessage(scoped_refptr&lt;CefBrowser&gt;,System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt32)">
  6784. Method that will be called on receipt of a DevTools protocol message.
  6785. |browser| is the originating browser instance. |message| is a UTF8-encoded
  6786. JSON dictionary representing either a method result or an event. |message|
  6787. is only valid for the scope of this callback and should be copied if
  6788. necessary. Return true if the message was handled or false if the message
  6789. should be further processed and passed to the OnDevToolsMethodResult or
  6790. OnDevToolsEvent methods as appropriate.
  6791. Method result dictionaries include an "id" (int) value that identifies the
  6792. orginating method call sent from CefBrowserHost::SendDevToolsMessage, and
  6793. optionally either a "result" (dictionary) or "error" (dictionary) value.
  6794. The "error" dictionary will contain "code" (int) and "message" (string)
  6795. values. Event dictionaries include a "method" (string) value and
  6796. optionally a "params" (dictionary) value. See the DevTools protocol
  6797. documentation at https://chromedevtools.github.io/devtools-protocol/ for
  6798. details of supported method calls and the expected "result" or "params"
  6799. dictionary contents. JSON dictionaries can be parsed using the
  6800. CefParseJSON function if desired, however be aware of performance
  6801. considerations when parsing large messages (some of which may exceed 1MB
  6802. in size).
  6803. </member>
  6804. <member name="T:CefDevToolsMessageObserver">
  6805. Callback interface for CefBrowserHost::AddDevToolsMessageObserver. The
  6806. methods of this class will be called on the browser process UI thread.
  6807. </member>
  6808. <member name="M:CefWindowInfo.SetAsWindowless(HWND__*)">
  6809. Create the browser using windowless (off-screen) rendering. No window
  6810. will be created for the browser and all rendering will occur via the
  6811. CefRenderHandler interface. The |parent| value will be used to identify
  6812. monitor info and to act as the parent window for dialogs, context menus,
  6813. etc. If |parent| is not provided then the main screen monitor will be used
  6814. and some functionality that requires a parent window may not function
  6815. correctly. In order to create windowless browsers the
  6816. CefSettings.windowless_rendering_enabled value must be set to true.
  6817. Transparent painting is enabled by default but can be disabled by setting
  6818. CefBrowserSettings.background_color to an opaque value.
  6819. </member>
  6820. <member name="M:CefWindowInfo.SetAsPopup(HWND__*,CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6821. Create the browser as a popup window.
  6822. </member>
  6823. <member name="M:CefWindowInfo.SetAsChild(HWND__*,CefRect!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  6824. Create the browser as a child window.
  6825. </member>
  6826. <member name="T:CefWindowInfo">
  6827. Class representing window information.
  6828. </member>
  6829. <member name="T:CefMainArgs">
  6830. Class representing CefExecuteProcess arguments.
  6831. </member>
  6832. <member name="T:CefAudioParameters">
  6833. Class representing CefAudioParameters settings
  6834. </member>
  6835. <member name="T:CefCompositionUnderline">
  6836. Class representing IME composition underline.
  6837. </member>
  6838. <member name="T:CefBoxLayoutSettings">
  6839. Class representing CefBoxLayout settings.
  6840. </member>
  6841. <member name="T:CefCursorInfo">
  6842. Class representing cursor information.
  6843. </member>
  6844. <member name="T:CefTouchHandleState">
  6845. Class representing the state of a touch handle.
  6846. </member>
  6847. <member name="T:CefPopupFeatures">
  6848. Class representing popup window features.
  6849. </member>
  6850. <member name="T:CefTouchEvent">
  6851. Class representing a touch event.
  6852. </member>
  6853. <member name="T:CefMouseEvent">
  6854. Class representing a mouse event.
  6855. </member>
  6856. <member name="T:CefKeyEvent">
  6857. Class representing a a keyboard event.
  6858. </member>
  6859. <member name="T:CefScreenInfo">
  6860. Class representing the virtual screen information for use when window
  6861. rendering is disabled.
  6862. </member>
  6863. <member name="T:CefDraggableRegion">
  6864. Class representing a draggable region.
  6865. </member>
  6866. <member name="T:CefInsets">
  6867. Class representing insets.
  6868. </member>
  6869. <member name="T:CefRange">
  6870. Class representing a range.
  6871. </member>
  6872. <member name="T:CefSize">
  6873. Class representing a size.
  6874. </member>
  6875. <member name="M:CefRect.Contains(System.Int32,System.Int32)">
  6876. Returns true if the point identified by point_x and point_y falls inside
  6877. this rectangle. The point (x, y) is inside the rectangle, but the
  6878. point (x + width, y + height) is not.
  6879. </member>
  6880. <member name="T:CefRect">
  6881. Class representing a rectangle.
  6882. </member>
  6883. <member name="T:CefPoint">
  6884. Class representing a point.
  6885. </member>
  6886. <member name="F:CEF_TEST_CERT_EXPIRED">
  6887. Expired certificate. Loads the "expired_cert.pem" file.
  6888. </member>
  6889. <member name="F:CEF_TEST_CERT_OK_DOMAIN">
  6890. Valid certificate using the domain ("localhost"). Loads the
  6891. "localhost_cert.pem" file.
  6892. </member>
  6893. <member name="F:CEF_TEST_CERT_OK_IP">
  6894. Valid certificate using the IP (127.0.0.1). Loads the "ok_cert.pem" file.
  6895. </member>
  6896. <member name="F:CEF_PERMISSION_RESULT_IGNORE">
  6897. Ignore the permission request. If the prompt remains unhandled (e.g.
  6898. OnShowPermissionPrompt returns false and there is no default permissions
  6899. UI) then any related promises may remain unresolved.
  6900. </member>
  6901. <member name="F:CEF_PERMISSION_RESULT_DISMISS">
  6902. Dismiss the permission request as an explicit user action.
  6903. </member>
  6904. <member name="F:CEF_PERMISSION_RESULT_DENY">
  6905. Deny the permission request as an explicit user action.
  6906. </member>
  6907. <member name="F:CEF_PERMISSION_RESULT_ACCEPT">
  6908. Accept the permission request as an explicit user action.
  6909. </member>
  6910. <member name="F:CEF_MEDIA_PERMISSION_DESKTOP_VIDEO_CAPTURE">
  6911. Desktop video capture permission.
  6912. </member>
  6913. <member name="F:CEF_MEDIA_PERMISSION_DESKTOP_AUDIO_CAPTURE">
  6914. Desktop audio capture permission.
  6915. </member>
  6916. <member name="F:CEF_MEDIA_PERMISSION_DEVICE_VIDEO_CAPTURE">
  6917. Device video capture permission.
  6918. </member>
  6919. <member name="F:CEF_MEDIA_PERMISSION_DEVICE_AUDIO_CAPTURE">
  6920. Device audio capture permission.
  6921. </member>
  6922. <member name="F:CEF_MEDIA_PERMISSION_NONE">
  6923. No permission.
  6924. </member>
  6925. <member name="F:_cef_touch_handle_state_t.alpha">
  6926. Alpha state. Only set if |flags| contains CEF_THS_FLAG_ALPHA.
  6927. </member>
  6928. <member name="F:_cef_touch_handle_state_t.origin">
  6929. Origin state. Only set if |flags| contains CEF_THS_FLAG_ORIGIN.
  6930. </member>
  6931. <member name="F:_cef_touch_handle_state_t.orientation">
  6932. Orientation state. Only set if |flags| contains CEF_THS_FLAG_ORIENTATION.
  6933. </member>
  6934. <member name="F:_cef_touch_handle_state_t.enabled">
  6935. Enabled state. Only set if |flags| contains CEF_THS_FLAG_ENABLED.
  6936. </member>
  6937. <member name="F:_cef_touch_handle_state_t.flags">
  6938. Combination of cef_touch_handle_state_flags_t values indicating what state
  6939. is set.
  6940. </member>
  6941. <member name="F:_cef_touch_handle_state_t.touch_handle_id">
  6942. Touch handle id. Increments for each new touch handle.
  6943. </member>
  6944. <member name="T:_cef_media_sink_device_info_t">
  6945. Device information for a MediaSink object.
  6946. </member>
  6947. <member name="F:_cef_audio_parameters_t.frames_per_buffer">
  6948. Number of frames per buffer
  6949. </member>
  6950. <member name="F:_cef_audio_parameters_t.sample_rate">
  6951. Sample rate
  6952. </member>
  6953. <member name="F:_cef_audio_parameters_t.channel_layout">
  6954. Layout of the audio channels
  6955. </member>
  6956. <member name="T:_cef_audio_parameters_t">
  6957. Structure representing the audio parameters for setting up the audio
  6958. handler.
  6959. </member>
  6960. <member name="F:CEF_CHANNEL_LAYOUT_MAX">
  6961. Max value, must always equal the largest entry ever logged.
  6962. </member>
  6963. <member name="F:CEF_CHANNEL_LAYOUT_5_1_4_DOWNMIX">
  6964. Front L, Front R, Front C, LFE, Side L, Side R,
  6965. Front Height L, Front Height R, Rear Height L, Rear Height R
  6966. Will be represented as six channels (5.1) due to eight channel limit
  6967. kMaxConcurrentChannels
  6968. </member>
  6969. <member name="F:CEF_CHANNEL_LAYOUT_BITSTREAM">
  6970. Actual channel layout is specified in the bitstream and the actual channel
  6971. count is unknown at Chromium media pipeline level (useful for audio
  6972. pass-through mode).
  6973. </member>
  6974. <member name="F:CEF_CHANNEL_LAYOUT_4_1_QUAD_SIDE">
  6975. Front L, Front R, Side L, Side R, LFE
  6976. </member>
  6977. <member name="F:CEF_CHANNEL_LAYOUT_STEREO_AND_KEYBOARD_MIC">
  6978. Front L, Front R, Front C. Front C contains the keyboard mic audio. This
  6979. layout is only intended for input for WebRTC. The Front C channel
  6980. is stripped away in the WebRTC audio input pipeline and never seen outside
  6981. of that.
  6982. </member>
  6983. <member name="F:CEF_CHANNEL_LAYOUT_DISCRETE">
  6984. Channels are not explicitly mapped to speakers.
  6985. </member>
  6986. <member name="F:CEF_CHANNEL_LAYOUT_OCTAGONAL">
  6987. Front L, Front R, Front C, Side L, Side R, Rear L, Back R, Back C.
  6988. </member>
  6989. <member name="F:CEF_CHANNEL_LAYOUT_7_1_WIDE_BACK">
  6990. Front L, Front R, Front C, LFE, Back L, Back R, Front LofC, Front RofC
  6991. </member>
  6992. <member name="F:CEF_CHANNEL_LAYOUT_7_0_FRONT">
  6993. Front L, Front R, Front C, Side L, Side R, Front LofC, Front RofC
  6994. </member>
  6995. <member name="F:CEF_CHANNEL_LAYOUT_6_1_FRONT">
  6996. Stereo L, Stereo R, Side L, Side R, Front LofC, Front RofC, LFE
  6997. </member>
  6998. <member name="F:CEF_CHANNEL_LAYOUT_6_1_BACK">
  6999. Stereo L, Stereo R, Front C, LFE, Back L, Back R, Rear Center
  7000. </member>
  7001. <member name="F:CEF_CHANNEL_LAYOUT_6_1">
  7002. Stereo L, Stereo R, Front C, LFE, Side L, Side R, Rear Center
  7003. </member>
  7004. <member name="F:CEF_CHANNEL_LAYOUT_HEXAGONAL">
  7005. Stereo L, Stereo R, Front C, Rear L, Rear R, Rear C
  7006. </member>
  7007. <member name="F:CEF_CHANNEL_LAYOUT_6_0_FRONT">
  7008. Stereo L, Stereo R, Side L, Side R, Front LofC, Front RofC
  7009. </member>
  7010. <member name="F:CEF_CHANNEL_LAYOUT_6_0">
  7011. Stereo L, Stereo R, Front C, Side L, Side R, Back C
  7012. </member>
  7013. <member name="F:CEF_CHANNEL_LAYOUT_4_1">
  7014. Stereo L, Stereo R, Front C, Rear C, LFE
  7015. </member>
  7016. <member name="F:CEF_CHANNEL_LAYOUT_3_1">
  7017. Stereo L, Stereo R, Front C, LFE
  7018. </member>
  7019. <member name="F:CEF_CHANNEL_LAYOUT_2POINT1">
  7020. Stereo L, Stereo R, LFE
  7021. </member>
  7022. <member name="F:CEF_CHANNEL_LAYOUT_STEREO_DOWNMIX">
  7023. Stereo L, Stereo R
  7024. </member>
  7025. <member name="F:CEF_CHANNEL_LAYOUT_7_1_WIDE">
  7026. Front L, Front R, Front C, LFE, Side L, Side R, Front LofC, Front RofC
  7027. </member>
  7028. <member name="F:CEF_CHANNEL_LAYOUT_7_1">
  7029. Front L, Front R, Front C, LFE, Side L, Side R, Back L, Back R
  7030. </member>
  7031. <member name="F:CEF_CHANNEL_LAYOUT_7_0">
  7032. Front L, Front R, Front C, Side L, Side R, Back L, Back R
  7033. </member>
  7034. <member name="F:CEF_CHANNEL_LAYOUT_5_1_BACK">
  7035. Front L, Front R, Front C, LFE, Back L, Back R
  7036. </member>
  7037. <member name="F:CEF_CHANNEL_LAYOUT_5_0_BACK">
  7038. Front L, Front R, Front C, Back L, Back R
  7039. </member>
  7040. <member name="F:CEF_CHANNEL_LAYOUT_5_1">
  7041. Front L, Front R, Front C, LFE, Side L, Side R
  7042. </member>
  7043. <member name="F:CEF_CHANNEL_LAYOUT_5_0">
  7044. Front L, Front R, Front C, Side L, Side R
  7045. </member>
  7046. <member name="F:CEF_CHANNEL_LAYOUT_QUAD">
  7047. Front L, Front R, Back L, Back R
  7048. </member>
  7049. <member name="F:CEF_CHANNEL_LAYOUT_2_2">
  7050. Front L, Front R, Side L, Side R
  7051. </member>
  7052. <member name="F:CEF_CHANNEL_LAYOUT_4_0">
  7053. Front L, Front R, Front C, Back C
  7054. </member>
  7055. <member name="F:CEF_CHANNEL_LAYOUT_SURROUND">
  7056. Front L, Front R, Front C
  7057. </member>
  7058. <member name="F:CEF_CHANNEL_LAYOUT_2_1">
  7059. Front L, Front R, Back C
  7060. </member>
  7061. <member name="F:CEF_CHANNEL_LAYOUT_STEREO">
  7062. Front L, Front R
  7063. </member>
  7064. <member name="F:CEF_CHANNEL_LAYOUT_MONO">
  7065. Front C
  7066. </member>
  7067. <member name="F:_cef_composition_underline_t.style">
  7068. Style.
  7069. </member>
  7070. <member name="F:_cef_composition_underline_t.thick">
  7071. Set to true (1) for thick underline.
  7072. </member>
  7073. <member name="F:_cef_composition_underline_t.background_color">
  7074. Background color.
  7075. </member>
  7076. <member name="F:_cef_composition_underline_t.color">
  7077. Text color.
  7078. </member>
  7079. <member name="F:_cef_composition_underline_t.range">
  7080. Underline character range.
  7081. </member>
  7082. <member name="T:_cef_composition_underline_t">
  7083. Structure representing IME composition underline information. This is a thin
  7084. wrapper around Blink's WebCompositionUnderline class and should be kept in
  7085. sync with that.
  7086. </member>
  7087. <member name="T:_cef_range_t">
  7088. Structure representing a range.
  7089. </member>
  7090. <member name="F:CEF_SCHEME_OPTION_FETCH_ENABLED">
  7091. If CEF_SCHEME_OPTION_FETCH_ENABLED is set the scheme can perform Fetch API
  7092. requests.
  7093. </member>
  7094. <member name="F:CEF_SCHEME_OPTION_CSP_BYPASSING">
  7095. If CEF_SCHEME_OPTION_CSP_BYPASSING is set the scheme can bypass Content-
  7096. Security-Policy (CSP) checks. This value should not be set in most cases
  7097. where CEF_SCHEME_OPTION_STANDARD is set.
  7098. </member>
  7099. <member name="F:CEF_SCHEME_OPTION_CORS_ENABLED">
  7100. If CEF_SCHEME_OPTION_CORS_ENABLED is set the scheme can be sent CORS
  7101. requests. This value should be set in most cases where
  7102. CEF_SCHEME_OPTION_STANDARD is set.
  7103. </member>
  7104. <member name="F:CEF_SCHEME_OPTION_SECURE">
  7105. If CEF_SCHEME_OPTION_SECURE is set the scheme will be treated with the
  7106. same security rules as those applied to "https" URLs. For example, loading
  7107. this scheme from other secure schemes will not trigger mixed content
  7108. warnings.
  7109. </member>
  7110. <member name="F:CEF_SCHEME_OPTION_DISPLAY_ISOLATED">
  7111. If CEF_SCHEME_OPTION_DISPLAY_ISOLATED is set the scheme can only be
  7112. displayed from other content hosted with the same scheme. For example,
  7113. pages in other origins cannot create iframes or hyperlinks to URLs with
  7114. the scheme. For schemes that must be accessible from other schemes don't
  7115. set this, set CEF_SCHEME_OPTION_CORS_ENABLED, and use CORS
  7116. "Access-Control-Allow-Origin" headers to further restrict access.
  7117. </member>
  7118. <member name="F:CEF_SCHEME_OPTION_LOCAL">
  7119. If CEF_SCHEME_OPTION_LOCAL is set the scheme will be treated with the same
  7120. security rules as those applied to "file" URLs. Normal pages cannot link
  7121. to or access local URLs. Also, by default, local URLs can only perform
  7122. XMLHttpRequest calls to the same URL (origin + path) that originated the
  7123. request. To allow XMLHttpRequest calls from a local URL to other URLs with
  7124. the same origin set the CefSettings.file_access_from_file_urls_allowed
  7125. value to true (1). To allow XMLHttpRequest calls from a local URL to all
  7126. origins set the CefSettings.universal_access_from_file_urls_allowed value
  7127. to true (1).
  7128. </member>
  7129. <member name="F:CEF_SCHEME_OPTION_STANDARD">
  7130. If CEF_SCHEME_OPTION_STANDARD is set the scheme will be treated as a
  7131. standard scheme. Standard schemes are subject to URL canonicalization and
  7132. parsing rules as defined in the Common Internet Scheme Syntax RFC 1738
  7133. Section 3.1 available at http://www.ietf.org/rfc/rfc1738.txt
  7134. In particular, the syntax for standard scheme URLs must be of the form:
  7135. <pre>
  7136. [scheme]://[username]:[password]@[host]:[port]/[url-path]
  7137. </pre> Standard scheme URLs must have a host component that is a fully
  7138. qualified domain name as defined in Section 3.5 of RFC 1034 [13] and
  7139. Section 2.1 of RFC 1123. These URLs will be canonicalized to
  7140. "scheme://host/path" in the simplest case and
  7141. "scheme://username:password@host:port/path" in the most explicit case. For
  7142. example, "scheme:host/path" and "scheme:///host/path" will both be
  7143. canonicalized to "scheme://host/path". The origin of a standard scheme URL
  7144. is the combination of scheme, host and port (i.e., "scheme://host:port" in
  7145. the most explicit case).
  7146. For non-standard scheme URLs only the "scheme:" component is parsed and
  7147. canonicalized. The remainder of the URL will be passed to the handler as-
  7148. is. For example, "scheme:///some%20text" will remain the same.
  7149. Non-standard scheme URLs cannot be used as a target for form submission.
  7150. </member>
  7151. <member name="F:CEF_HORIZONTAL_ALIGNMENT_RIGHT">
  7152. Align the text's right edge with that of its display area.
  7153. </member>
  7154. <member name="F:CEF_HORIZONTAL_ALIGNMENT_CENTER">
  7155. Align the text's center with that of its display area.
  7156. </member>
  7157. <member name="F:CEF_HORIZONTAL_ALIGNMENT_LEFT">
  7158. Align the text's left edge with that of its display area.
  7159. </member>
  7160. <member name="F:_cef_box_layout_settings_t.default_flex">
  7161. Default flex for views when none is specified via CefBoxLayout methods.
  7162. Using the preferred size as the basis, free space along the main axis is
  7163. distributed to views in the ratio of their flex weights. Similarly, if the
  7164. views will overflow the parent, space is subtracted in these ratios. A
  7165. flex of 0 means this view is not resized. Flex values must not be
  7166. negative.
  7167. </member>
  7168. <member name="F:_cef_box_layout_settings_t.minimum_cross_axis_size">
  7169. Minimum cross axis size.
  7170. </member>
  7171. <member name="F:_cef_box_layout_settings_t.cross_axis_alignment">
  7172. Specifies where along the cross axis the child views should be laid out.
  7173. </member>
  7174. <member name="F:_cef_box_layout_settings_t.main_axis_alignment">
  7175. Specifies where along the main axis the child views should be laid out.
  7176. </member>
  7177. <member name="F:_cef_box_layout_settings_t.between_child_spacing">
  7178. Adds additional space between child views.
  7179. </member>
  7180. <member name="F:_cef_box_layout_settings_t.inside_border_insets">
  7181. Adds additional space around the child view area.
  7182. </member>
  7183. <member name="F:_cef_box_layout_settings_t.inside_border_vertical_spacing">
  7184. Adds additional vertical space between the child view area and the host
  7185. view border.
  7186. </member>
  7187. <member name="F:_cef_box_layout_settings_t.inside_border_horizontal_spacing">
  7188. Adds additional horizontal space between the child view area and the host
  7189. view border.
  7190. </member>
  7191. <member name="F:_cef_box_layout_settings_t.horizontal">
  7192. If true (1) the layout will be horizontal, otherwise the layout will be
  7193. vertical.
  7194. </member>
  7195. <member name="T:_cef_box_layout_settings_t">
  7196. Settings used when initializing a CefBoxLayout.
  7197. </member>
  7198. <member name="F:CEF_CROSS_AXIS_ALIGNMENT_END">
  7199. Child views will be right-aligned.
  7200. </member>
  7201. <member name="F:CEF_CROSS_AXIS_ALIGNMENT_CENTER">
  7202. Child views will be center-aligned.
  7203. </member>
  7204. <member name="F:CEF_CROSS_AXIS_ALIGNMENT_START">
  7205. Child views will be left-aligned.
  7206. </member>
  7207. <member name="F:CEF_CROSS_AXIS_ALIGNMENT_STRETCH">
  7208. Child views will be stretched to fit.
  7209. </member>
  7210. <member name="F:CEF_MAIN_AXIS_ALIGNMENT_END">
  7211. Child views will be right-aligned.
  7212. </member>
  7213. <member name="F:CEF_MAIN_AXIS_ALIGNMENT_CENTER">
  7214. Child views will be center-aligned.
  7215. </member>
  7216. <member name="F:CEF_MAIN_AXIS_ALIGNMENT_START">
  7217. Child views will be left-aligned.
  7218. </member>
  7219. <member name="F:CEF_ALPHA_TYPE_POSTMULTIPLIED">
  7220. Transparency with post-multiplied alpha component.
  7221. </member>
  7222. <member name="F:CEF_ALPHA_TYPE_PREMULTIPLIED">
  7223. Transparency with pre-multiplied alpha component.
  7224. </member>
  7225. <member name="F:CEF_ALPHA_TYPE_OPAQUE">
  7226. No transparency. The alpha component is ignored.
  7227. </member>
  7228. <member name="F:CEF_COLOR_TYPE_BGRA_8888">
  7229. BGRA with 8 bits per pixel (32bits total).
  7230. </member>
  7231. <member name="F:CEF_COLOR_TYPE_RGBA_8888">
  7232. RGBA with 8 bits per pixel (32bits total).
  7233. </member>
  7234. <member name="F:RESPONSE_FILTER_ERROR">
  7235. An error occurred during filtering.
  7236. </member>
  7237. <member name="F:RESPONSE_FILTER_DONE">
  7238. Some or all of the pre-filter data was read successfully and all available
  7239. filtered output has been written.
  7240. </member>
  7241. <member name="F:RESPONSE_FILTER_NEED_MORE_DATA">
  7242. Some or all of the pre-filter data was read successfully but more data is
  7243. needed in order to continue filtering (filtered output is pending).
  7244. </member>
  7245. <member name="F:REFERRER_POLICY_LAST_VALUE">
  7246. Always the last value in this enumeration.
  7247. </member>
  7248. <member name="F:REFERRER_POLICY_NO_REFERRER">
  7249. Always clear the referrer regardless of the request destination.
  7250. </member>
  7251. <member name="F:REFERRER_POLICY_ORIGIN_CLEAR_ON_TRANSITION_FROM_SECURE_TO_INSECURE">
  7252. Strip the referrer down to the origin, but clear it entirely if the
  7253. referrer value is HTTPS and the destination is HTTP.
  7254. </member>
  7255. <member name="F:REFERRER_POLICY_CLEAR_REFERRER_ON_TRANSITION_CROSS_ORIGIN">
  7256. Clear the referrer when the request's referrer is cross-origin with the
  7257. request's destination.
  7258. </member>
  7259. <member name="F:REFERRER_POLICY_ORIGIN">
  7260. Strip the referrer down to the origin regardless of the redirect location.
  7261. </member>
  7262. <member name="F:REFERRER_POLICY_NEVER_CLEAR_REFERRER">
  7263. Never change the referrer.
  7264. </member>
  7265. <member name="F:REFERRER_POLICY_ORIGIN_ONLY_ON_TRANSITION_CROSS_ORIGIN">
  7266. Strip the referrer down to an origin when the origin of the referrer is
  7267. different from the destination's origin.
  7268. </member>
  7269. <member name="F:REFERRER_POLICY_REDUCE_REFERRER_GRANULARITY_ON_TRANSITION_CROSS_ORIGIN">
  7270. A slight variant on CLEAR_REFERRER_ON_TRANSITION_FROM_SECURE_TO_INSECURE:
  7271. If the request destination is HTTP, an HTTPS referrer will be cleared. If
  7272. the request's destination is cross-origin with the referrer (but does not
  7273. downgrade), the referrer's granularity will be stripped down to an origin
  7274. rather than a full URL. Same-origin requests will send the full referrer.
  7275. </member>
  7276. <member name="F:REFERRER_POLICY_CLEAR_REFERRER_ON_TRANSITION_FROM_SECURE_TO_INSECURE">
  7277. Clear the referrer header if the header value is HTTPS but the request
  7278. destination is HTTP. This is the default behavior.
  7279. </member>
  7280. <member name="F:_cef_pdf_print_settings_t.backgrounds_enabled">
  7281. Set to true (1) to print background graphics or false (0) to not print
  7282. background graphics.
  7283. </member>
  7284. <member name="F:_cef_pdf_print_settings_t.landscape">
  7285. Set to true (1) for landscape mode or false (0) for portrait mode.
  7286. </member>
  7287. <member name="F:_cef_pdf_print_settings_t.selection_only">
  7288. Set to true (1) to print the selection only or false (0) to print all.
  7289. </member>
  7290. <member name="F:_cef_pdf_print_settings_t.header_footer_enabled">
  7291. Set to true (1) to print headers and footers or false (0) to not print
  7292. headers and footers.
  7293. </member>
  7294. <member name="F:_cef_pdf_print_settings_t.margin_type">
  7295. Margin type.
  7296. </member>
  7297. <member name="F:_cef_pdf_print_settings_t.margin_top">
  7298. Margins in points. Only used if |margin_type| is set to
  7299. PDF_PRINT_MARGIN_CUSTOM.
  7300. </member>
  7301. <member name="F:_cef_pdf_print_settings_t.scale_factor">
  7302. The percentage to scale the PDF by before printing (e.g. 50 is 50%).
  7303. If this value is less than or equal to zero the default value of 100
  7304. will be used.
  7305. </member>
  7306. <member name="F:_cef_pdf_print_settings_t.page_width">
  7307. Output page size in microns. If either of these values is less than or
  7308. equal to zero then the default paper size (A4) will be used.
  7309. </member>
  7310. <member name="F:_cef_pdf_print_settings_t.header_footer_url">
  7311. URL to display in the footer. Only used if |header_footer_enabled| is set
  7312. to true (1).
  7313. </member>
  7314. <member name="F:_cef_pdf_print_settings_t.header_footer_title">
  7315. Page title to display in the header. Only used if |header_footer_enabled|
  7316. is set to true (1).
  7317. </member>
  7318. <member name="T:_cef_pdf_print_settings_t">
  7319. Structure representing PDF print settings.
  7320. </member>
  7321. <member name="F:PDF_PRINT_MARGIN_CUSTOM">
  7322. Custom margins using the |margin_*| values from cef_pdf_print_settings_t.
  7323. </member>
  7324. <member name="F:PDF_PRINT_MARGIN_MINIMUM">
  7325. Minimum margins.
  7326. </member>
  7327. <member name="F:PDF_PRINT_MARGIN_NONE">
  7328. No margins.
  7329. </member>
  7330. <member name="F:PDF_PRINT_MARGIN_DEFAULT">
  7331. Default margins.
  7332. </member>
  7333. <member name="F:JSON_WRITER_PRETTY_PRINT">
  7334. Return a slightly nicer formatted json string (pads with whitespace to
  7335. help with readability).
  7336. </member>
  7337. <member name="F:JSON_WRITER_OMIT_DOUBLE_TYPE_PRESERVATION">
  7338. This option instructs the writer to write doubles that have no fractional
  7339. part as a normal integer (i.e., without using exponential notation
  7340. or appending a '.0') as long as the value is within the range of a
  7341. 64-bit int.
  7342. </member>
  7343. <member name="F:JSON_WRITER_OMIT_BINARY_VALUES">
  7344. This option instructs the writer that if a Binary value is encountered,
  7345. the value (and key if within a dictionary) will be omitted from the
  7346. output, and success will be returned. Otherwise, if a binary value is
  7347. encountered, failure will be returned.
  7348. </member>
  7349. <member name="F:JSON_WRITER_DEFAULT">
  7350. Default behavior.
  7351. </member>
  7352. <member name="F:JSON_PARSER_ALLOW_TRAILING_COMMAS">
  7353. Allows commas to exist after the last element in structures.
  7354. </member>
  7355. <member name="F:JSON_PARSER_RFC">
  7356. Parses the input strictly according to RFC 4627. See comments in
  7357. Chromium's base/json/json_reader.h file for known limitations/
  7358. deviations from the RFC.
  7359. </member>
  7360. <member name="F:UU_REPLACE_PLUS_WITH_SPACE">
  7361. URL queries use "+" for space. This flag controls that replacement.
  7362. </member>
  7363. <member name="F:UU_PATH_SEPARATORS">
  7364. Unescapes '/' and '\\'. If these characters were unescaped, the resulting
  7365. URL won't be the same as the source one. Moreover, they are dangerous to
  7366. unescape in strings that will be used as file paths or names. This value
  7367. should only be used when slashes don't have special meaning, like data
  7368. URLs.
  7369. </member>
  7370. <member name="F:UU_SPACES">
  7371. Convert %20 to spaces. In some places where we're showing URLs, we may
  7372. want this. In places where the URL may be copied and pasted out, then
  7373. you wouldn't want this since it might not be interpreted in one piece
  7374. by other applications.
  7375. </member>
  7376. <member name="F:UU_NORMAL">
  7377. Don't unescape anything special, but all normal unescaping will happen.
  7378. This is a placeholder and can't be combined with other flags (since it's
  7379. just the absence of them). All other unescape rules imply "normal" in
  7380. addition to their special meaning. Things like escaped letters, digits,
  7381. and most symbols will get unescaped with this mode.
  7382. </member>
  7383. <member name="F:UU_NONE">
  7384. Don't unescape anything at all.
  7385. </member>
  7386. <member name="T:_cef_cursor_info_t">
  7387. Structure representing cursor information. |buffer| will be
  7388. |size.width|*|size.height|*4 bytes in size and represents a BGRA image with
  7389. an upper-left origin.
  7390. </member>
  7391. <member name="F:FILE_DIALOG_SAVE">
  7392. Allows picking a nonexistent file, and prompts to overwrite if the file
  7393. already exists.
  7394. </member>
  7395. <member name="F:FILE_DIALOG_OPEN_FOLDER">
  7396. Like Open, but selects a folder to open.
  7397. </member>
  7398. <member name="F:FILE_DIALOG_OPEN_MULTIPLE">
  7399. Like Open, but allows picking multiple files to open.
  7400. </member>
  7401. <member name="F:FILE_DIALOG_OPEN">
  7402. Requires that the file exists before allowing the user to pick it.
  7403. </member>
  7404. <member name="T:_cef_popup_features_t">
  7405. Popup window features.
  7406. </member>
  7407. <member name="F:FOCUS_SOURCE_SYSTEM">
  7408. The source is a system-generated focus event.
  7409. </member>
  7410. <member name="F:FOCUS_SOURCE_NAVIGATION">
  7411. The source is explicit navigation via the API (LoadURL(), etc).
  7412. </member>
  7413. <member name="F:_cef_key_event_t.focus_on_editable_field">
  7414. True if the focus is currently on an editable field on the page. This is
  7415. useful for determining if standard key events should be intercepted.
  7416. </member>
  7417. <member name="F:_cef_key_event_t.unmodified_character">
  7418. Same as |character| but unmodified by any concurrently-held modifiers
  7419. (except shift). This is useful for working out shortcut keys.
  7420. </member>
  7421. <member name="F:_cef_key_event_t.character">
  7422. The character generated by the keystroke.
  7423. </member>
  7424. <member name="F:_cef_key_event_t.is_system_key">
  7425. Indicates whether the event is considered a "system key" event (see
  7426. http://msdn.microsoft.com/en-us/library/ms646286(VS.85).aspx for details).
  7427. This value will always be false on non-Windows platforms.
  7428. </member>
  7429. <member name="F:_cef_key_event_t.native_key_code">
  7430. The actual key code genenerated by the platform.
  7431. </member>
  7432. <member name="F:_cef_key_event_t.windows_key_code">
  7433. The Windows key code for the key event. This value is used by the DOM
  7434. specification. Sometimes it comes directly from the event (i.e. on
  7435. Windows) and sometimes it's determined using a mapping function. See
  7436. WebCore/platform/chromium/KeyboardCodes.h for the list of values.
  7437. </member>
  7438. <member name="F:_cef_key_event_t.modifiers">
  7439. Bit flags describing any pressed modifier keys. See
  7440. cef_event_flags_t for values.
  7441. </member>
  7442. <member name="F:_cef_key_event_t.type">
  7443. The type of keyboard event.
  7444. </member>
  7445. <member name="T:_cef_key_event_t">
  7446. Structure representing keyboard event information.
  7447. </member>
  7448. <member name="F:KEYEVENT_CHAR">
  7449. Notification that a character was typed. Use this for text input. Key
  7450. down events may generate 0, 1, or more than one character event depending
  7451. on the key, locale, and operating system.
  7452. </member>
  7453. <member name="F:KEYEVENT_KEYUP">
  7454. Notification that a key was released.
  7455. </member>
  7456. <member name="F:KEYEVENT_KEYDOWN">
  7457. Notification that a key was pressed. This does not necessarily correspond
  7458. to a character depending on the key and language. Use KEYEVENT_CHAR for
  7459. character input.
  7460. </member>
  7461. <member name="F:KEYEVENT_RAWKEYDOWN">
  7462. Notification that a key transitioned from "up" to "down".
  7463. </member>
  7464. <member name="F:CM_MEDIATYPE_PLUGIN">
  7465. A plugin node is selected.
  7466. </member>
  7467. <member name="F:CM_MEDIATYPE_FILE">
  7468. A file node is selected.
  7469. </member>
  7470. <member name="F:CM_MEDIATYPE_CANVAS">
  7471. An canvas node is selected.
  7472. </member>
  7473. <member name="F:CM_MEDIATYPE_AUDIO">
  7474. An audio node is selected.
  7475. </member>
  7476. <member name="F:CM_MEDIATYPE_VIDEO">
  7477. A video node is selected.
  7478. </member>
  7479. <member name="F:CM_MEDIATYPE_IMAGE">
  7480. An image node is selected.
  7481. </member>
  7482. <member name="F:CM_MEDIATYPE_NONE">
  7483. No special node is in context.
  7484. </member>
  7485. <member name="F:CM_TYPEFLAG_EDITABLE">
  7486. An editable element is selected.
  7487. </member>
  7488. <member name="F:CM_TYPEFLAG_SELECTION">
  7489. There is a textual or mixed selection that is selected.
  7490. </member>
  7491. <member name="F:CM_TYPEFLAG_MEDIA">
  7492. A media node is selected.
  7493. </member>
  7494. <member name="F:CM_TYPEFLAG_LINK">
  7495. A link is selected.
  7496. </member>
  7497. <member name="F:CM_TYPEFLAG_FRAME">
  7498. A subframe page is selected.
  7499. </member>
  7500. <member name="F:CM_TYPEFLAG_PAGE">
  7501. The top page is selected.
  7502. </member>
  7503. <member name="F:CM_TYPEFLAG_NONE">
  7504. No node is selected.
  7505. </member>
  7506. <member name="F:EVENTFLAG_COMMAND_DOWN">
  7507. Mac OS-X command key.
  7508. </member>
  7509. <member name="F:_cef_touch_event_t.pointer_type">
  7510. The device type that caused the event.
  7511. </member>
  7512. <member name="F:_cef_touch_event_t.modifiers">
  7513. Bit flags describing any pressed modifier keys. See
  7514. cef_event_flags_t for values.
  7515. </member>
  7516. <member name="F:_cef_touch_event_t.type">
  7517. The state of the touch point. Touches begin with one CEF_TET_PRESSED event
  7518. followed by zero or more CEF_TET_MOVED events and finally one
  7519. CEF_TET_RELEASED or CEF_TET_CANCELLED event. Events not respecting this
  7520. order will be ignored.
  7521. </member>
  7522. <member name="F:_cef_touch_event_t.pressure">
  7523. The normalized pressure of the pointer input in the range of [0,1].
  7524. Set to 0 if not applicable.
  7525. </member>
  7526. <member name="F:_cef_touch_event_t.rotation_angle">
  7527. Rotation angle in radians. Set to 0 if not applicable.
  7528. </member>
  7529. <member name="F:_cef_touch_event_t.radius_y">
  7530. Y radius in pixels. Set to 0 if not applicable.
  7531. </member>
  7532. <member name="F:_cef_touch_event_t.radius_x">
  7533. X radius in pixels. Set to 0 if not applicable.
  7534. </member>
  7535. <member name="F:_cef_touch_event_t.y">
  7536. Y coordinate relative to the top side of the view.
  7537. </member>
  7538. <member name="F:_cef_touch_event_t.x">
  7539. X coordinate relative to the left side of the view.
  7540. </member>
  7541. <member name="F:_cef_touch_event_t.id">
  7542. Id of a touch point. Must be unique per touch, can be any number except
  7543. -1. Note that a maximum of 16 concurrent touches will be tracked; touches
  7544. beyond that will be ignored.
  7545. </member>
  7546. <member name="T:_cef_touch_event_t">
  7547. Structure representing touch event information.
  7548. </member>
  7549. <member name="F:_cef_mouse_event_t.modifiers">
  7550. Bit flags describing any pressed modifier keys. See
  7551. cef_event_flags_t for values.
  7552. </member>
  7553. <member name="F:_cef_mouse_event_t.y">
  7554. Y coordinate relative to the top side of the view.
  7555. </member>
  7556. <member name="F:_cef_mouse_event_t.x">
  7557. X coordinate relative to the left side of the view.
  7558. </member>
  7559. <member name="T:_cef_mouse_event_t">
  7560. Structure representing mouse event information.
  7561. </member>
  7562. <member name="F:_cef_screen_info_t.available_rect">
  7563. This is set from the rcWork member of MONITORINFOEX, to whit:
  7564. "A RECT structure that specifies the work area rectangle of the
  7565. display monitor that can be used by applications, expressed in
  7566. virtual-screen coordinates. Windows uses this rectangle to
  7567. maximize an application on the monitor. The rest of the area in
  7568. rcMonitor contains system windows such as the task bar and side
  7569. bars. Note that if the monitor is not the primary display monitor,
  7570. some of the rectangle's coordinates may be negative values".
  7571. The |rect| and |available_rect| properties are used to determine the
  7572. available surface for rendering popup views.
  7573. </member>
  7574. <member name="F:_cef_screen_info_t.rect">
  7575. This is set from the rcMonitor member of MONITORINFOEX, to whit:
  7576. "A RECT structure that specifies the display monitor rectangle,
  7577. expressed in virtual-screen coordinates. Note that if the monitor
  7578. is not the primary display monitor, some of the rectangle's
  7579. coordinates may be negative values."
  7580. The |rect| and |available_rect| properties are used to determine the
  7581. available surface for rendering popup views.
  7582. </member>
  7583. <member name="F:_cef_screen_info_t.is_monochrome">
  7584. This can be true for black and white printers.
  7585. </member>
  7586. <member name="F:_cef_screen_info_t.depth_per_component">
  7587. The bits per color component. This assumes that the colors are balanced
  7588. equally.
  7589. </member>
  7590. <member name="F:_cef_screen_info_t.depth">
  7591. The screen depth in bits per pixel.
  7592. </member>
  7593. <member name="F:_cef_screen_info_t.device_scale_factor">
  7594. Device scale factor. Specifies the ratio between physical and logical
  7595. pixels.
  7596. </member>
  7597. <member name="T:_cef_screen_info_t">
  7598. Screen information used when window rendering is disabled. This structure is
  7599. passed as a parameter to CefRenderHandler::GetScreenInfo and should be
  7600. filled in by the client.
  7601. </member>
  7602. <member name="F:COM_INIT_MODE_MTA">
  7603. Initialize COM using multi-threaded apartments.
  7604. </member>
  7605. <member name="F:COM_INIT_MODE_STA">
  7606. Initialize COM using single-threaded apartments.
  7607. </member>
  7608. <member name="F:COM_INIT_MODE_NONE">
  7609. No COM initialization.
  7610. </member>
  7611. <member name="F:ML_TYPE_IO">
  7612. Supports tasks, timers and asynchronous IO events.
  7613. </member>
  7614. <member name="F:ML_TYPE_UI">
  7615. Supports tasks, timers and native UI events (e.g. Windows messages).
  7616. </member>
  7617. <member name="F:ML_TYPE_DEFAULT">
  7618. Supports tasks and timers.
  7619. </member>
  7620. <member name="F:TP_REALTIME_AUDIO">
  7621. Suitable for low-latency, glitch-resistant audio.
  7622. </member>
  7623. <member name="F:TP_DISPLAY">
  7624. Suitable for threads which generate data for the display (at ~60Hz).
  7625. </member>
  7626. <member name="F:TP_NORMAL">
  7627. Default priority level.
  7628. </member>
  7629. <member name="F:TP_BACKGROUND">
  7630. Suitable for threads that shouldn't disrupt high priority work.
  7631. </member>
  7632. <member name="F:TID_RENDERER">
  7633. The main thread in the renderer. Used for all WebKit and V8 interaction.
  7634. Tasks may be posted to this thread after
  7635. CefRenderProcessHandler::OnWebKitInitialized but are not guaranteed to
  7636. run before sub-process termination (sub-processes may be killed at any
  7637. time without warning).
  7638. </member>
  7639. <member name="F:TID_IO">
  7640. Used to process IPC and network messages. Do not perform blocking tasks on
  7641. this thread. All tasks posted after
  7642. CefBrowserProcessHandler::OnContextInitialized() and before CefShutdown()
  7643. are guaranteed to run.
  7644. </member>
  7645. <member name="F:TID_PROCESS_LAUNCHER">
  7646. Used to launch and terminate browser processes.
  7647. </member>
  7648. <member name="F:TID_FILE_USER_BLOCKING">
  7649. Used for blocking tasks like file system access that affect UI
  7650. immediately after a user interaction. All tasks posted after
  7651. CefBrowserProcessHandler::OnContextInitialized() and before CefShutdown()
  7652. are guaranteed to run.
  7653. Example: Generating data shown in the UI immediately after a click.
  7654. </member>
  7655. <member name="F:TID_FILE_USER_VISIBLE">
  7656. Used for blocking tasks like file system access that affect UI or
  7657. responsiveness of future user interactions. Do not use if an immediate
  7658. response to a user interaction is expected. All tasks posted after
  7659. CefBrowserProcessHandler::OnContextInitialized() and before CefShutdown()
  7660. are guaranteed to run.
  7661. Examples:
  7662. - Updating the UI to reflect progress on a long task.
  7663. - Loading data that might be shown in the UI after a future user
  7664. interaction.
  7665. </member>
  7666. <member name="F:TID_FILE_BACKGROUND">
  7667. Used for blocking tasks like file system access where the user won't
  7668. notice if the task takes an arbitrarily long time to complete. All tasks
  7669. posted after CefBrowserProcessHandler::OnContextInitialized() and before
  7670. CefShutdown() are guaranteed to run.
  7671. </member>
  7672. <member name="F:TID_UI">
  7673. The main thread in the browser. This will be the same as the main
  7674. application thread if CefInitialize() is called with a
  7675. CefSettings.multi_threaded_message_loop value of false. Do not perform
  7676. blocking tasks on this thread. All tasks posted after
  7677. CefBrowserProcessHandler::OnContextInitialized() and before CefShutdown()
  7678. are guaranteed to run. This thread will outlive all other CEF threads.
  7679. </member>
  7680. <member name="F:PID_RENDERER">
  7681. Renderer process.
  7682. </member>
  7683. <member name="F:PID_BROWSER">
  7684. Browser process.
  7685. </member>
  7686. <member name="F:_cef_draggable_region_t.draggable">
  7687. True (1) this this region is draggable and false (0) otherwise.
  7688. </member>
  7689. <member name="F:_cef_draggable_region_t.bounds">
  7690. Bounds of the region.
  7691. </member>
  7692. <member name="T:_cef_draggable_region_t">
  7693. Structure representing a draggable region.
  7694. </member>
  7695. <member name="F:UR_FAILED">
  7696. Request failed for some reason.
  7697. </member>
  7698. <member name="F:UR_CANCELED">
  7699. Request was canceled programatically.
  7700. </member>
  7701. <member name="F:UR_IO_PENDING">
  7702. An IO request is pending, and the caller will be informed when it is
  7703. completed.
  7704. </member>
  7705. <member name="F:UR_SUCCESS">
  7706. Request succeeded.
  7707. </member>
  7708. <member name="F:UR_UNKNOWN">
  7709. Unknown status.
  7710. </member>
  7711. <member name="F:UR_FLAG_STOP_ON_REDIRECT">
  7712. If set 3XX responses will cause the fetch to halt immediately rather than
  7713. continue through the redirect.
  7714. </member>
  7715. <member name="F:UR_FLAG_NO_RETRY_ON_5XX">
  7716. If set 5XX redirect errors will be propagated to the observer instead of
  7717. automatically re-tried. This currently only applies for requests
  7718. originated in the browser process.
  7719. </member>
  7720. <member name="F:UR_FLAG_NO_DOWNLOAD_DATA">
  7721. If set the CefURLRequestClient::OnDownloadData method will not be called.
  7722. </member>
  7723. <member name="F:UR_FLAG_REPORT_UPLOAD_PROGRESS">
  7724. If set upload progress events will be generated when a request has a body.
  7725. </member>
  7726. <member name="F:UR_FLAG_ALLOW_STORED_CREDENTIALS">
  7727. If set user name, password, and cookies may be sent with the request, and
  7728. cookies may be saved from the response.
  7729. </member>
  7730. <member name="F:UR_FLAG_DISABLE_CACHE">
  7731. If set the cache will not be used at all. Setting this value is equivalent
  7732. to specifying the "Cache-Control: no-store" request header. Setting this
  7733. value in combination with UR_FLAG_ONLY_FROM_CACHE will cause the request
  7734. to fail.
  7735. </member>
  7736. <member name="F:UR_FLAG_ONLY_FROM_CACHE">
  7737. If set the request will fail if it cannot be served from the cache (or
  7738. some equivalent local store). Setting this value is equivalent to
  7739. specifying the "Cache-Control: only-if-cached" request header. Setting
  7740. this value in combination with UR_FLAG_SKIP_CACHE or UR_FLAG_DISABLE_CACHE
  7741. will cause the request to fail.
  7742. </member>
  7743. <member name="F:UR_FLAG_SKIP_CACHE">
  7744. If set the cache will be skipped when handling the request. Setting this
  7745. value is equivalent to specifying the "Cache-Control: no-cache" request
  7746. header. Setting this value in combination with UR_FLAG_ONLY_FROM_CACHE
  7747. will cause the request to fail.
  7748. </member>
  7749. <member name="F:UR_FLAG_NONE">
  7750. Default behavior.
  7751. </member>
  7752. <member name="F:TT_QUALIFIER_MASK">
  7753. General mask defining the bits used for the qualifiers.
  7754. </member>
  7755. <member name="F:TT_IS_REDIRECT_MASK">
  7756. Used to test whether a transition involves a redirect.
  7757. </member>
  7758. <member name="F:TT_SERVER_REDIRECT_FLAG">
  7759. Redirects sent from the server by HTTP headers.
  7760. </member>
  7761. <member name="F:TT_CLIENT_REDIRECT_FLAG">
  7762. Redirects caused by JavaScript or a meta refresh tag on the page.
  7763. </member>
  7764. <member name="F:TT_CHAIN_END_FLAG">
  7765. The last transition in a redirect chain.
  7766. </member>
  7767. <member name="F:TT_CHAIN_START_FLAG">
  7768. The beginning of a navigation chain.
  7769. </member>
  7770. <member name="F:TT_FROM_API_FLAG">
  7771. The transition originated from an external application; the exact
  7772. definition of this is embedder dependent. Chrome runtime and
  7773. extension system only.
  7774. </member>
  7775. <member name="F:TT_HOME_PAGE_FLAG">
  7776. User is navigating to the home page. Chrome runtime only.
  7777. </member>
  7778. <member name="F:TT_DIRECT_LOAD_FLAG">
  7779. Loaded a URL directly via CreateBrowser, LoadURL or LoadRequest.
  7780. </member>
  7781. <member name="F:TT_FORWARD_BACK_FLAG">
  7782. Used the Forward or Back function to navigate among browsing history.
  7783. Will be ORed to the transition type for the original load.
  7784. </member>
  7785. <member name="F:TT_BLOCKED_FLAG">
  7786. Qualifiers.
  7787. Any of the core values above can be augmented by one or more qualifiers.
  7788. These qualifiers further define the transition.
  7789. Attempted to visit a URL but was blocked.
  7790. </member>
  7791. <member name="F:TT_SOURCE_MASK">
  7792. General mask defining the bits used for the source values.
  7793. </member>
  7794. <member name="F:TT_KEYWORD_GENERATED">
  7795. Corresponds to a visit generated for a keyword. See description of
  7796. TT_KEYWORD for more details. Chrome runtime only.
  7797. </member>
  7798. <member name="F:TT_KEYWORD">
  7799. The url was generated from a replaceable keyword other than the default
  7800. search provider. If the user types a keyword (which also applies to
  7801. tab-to-search) in the omnibox this qualifier is applied to the transition
  7802. type of the generated url. TemplateURLModel then may generate an
  7803. additional visit with a transition type of TT_KEYWORD_GENERATED against
  7804. the url 'http://' + keyword. For example, if you do a tab-to-search
  7805. against wikipedia the generated url has a transition qualifer of
  7806. TT_KEYWORD, and TemplateURLModel generates a visit for 'wikipedia.org'
  7807. with a transition type of TT_KEYWORD_GENERATED. Chrome runtime only.
  7808. </member>
  7809. <member name="F:TT_RELOAD">
  7810. Source is a "reload" of the page via the Reload function or by re-visiting
  7811. the same URL. NOTE: This is distinct from the concept of whether a
  7812. particular load uses "reload semantics" (i.e. bypasses cached data).
  7813. </member>
  7814. <member name="F:TT_FORM_SUBMIT">
  7815. Source is a form submission by the user. NOTE: In some situations
  7816. submitting a form does not result in this transition type. This can happen
  7817. if the form uses a script to submit the contents.
  7818. </member>
  7819. <member name="F:TT_AUTO_TOPLEVEL">
  7820. This is a toplevel navigation. This is any content that is automatically
  7821. loaded in a toplevel frame. For example, opening a tab to show the ASH
  7822. screen saver, opening the devtools window, opening the NTP after the safe
  7823. browsing warning, opening web-based dialog boxes are examples of
  7824. AUTO_TOPLEVEL navigations. Chrome runtime only.
  7825. </member>
  7826. <member name="F:TT_GENERATED">
  7827. User got to this page by typing in the URL bar and selecting an entry
  7828. that did not look like a URL. For example, a match might have the URL
  7829. of a Google search result page, but appear like "Search Google for ...".
  7830. These are not quite the same as EXPLICIT navigations because the user
  7831. didn't type or see the destination URL. Chrome runtime only.
  7832. See also TT_KEYWORD.
  7833. </member>
  7834. <member name="F:TT_MANUAL_SUBFRAME">
  7835. Source is a subframe navigation explicitly requested by the user that will
  7836. generate new navigation entries in the back/forward list. These are
  7837. probably more important than frames that were automatically loaded in
  7838. the background because the user probably cares about the fact that this
  7839. link was loaded.
  7840. </member>
  7841. <member name="F:TT_AUTO_SUBFRAME">
  7842. Source is a subframe navigation. This is any content that is automatically
  7843. loaded in a non-toplevel frame. For example, if a page consists of several
  7844. frames containing ads, those ad URLs will have this transition type.
  7845. The user may not even realize the content in these pages is a separate
  7846. frame, so may not care about the URL.
  7847. </member>
  7848. <member name="F:TT_AUTO_BOOKMARK">
  7849. User got to this page through a suggestion in the UI (for example, via the
  7850. destinations page). Chrome runtime only.
  7851. </member>
  7852. <member name="F:TT_EXPLICIT">
  7853. Source is some other "explicit" navigation. This is the default value for
  7854. navigations where the actual type is unknown. See also
  7855. TT_DIRECT_LOAD_FLAG.
  7856. </member>
  7857. <member name="F:TT_LINK">
  7858. Source is a link click or the JavaScript window.open function. This is
  7859. also the default value for requests like sub-resource loads that are not
  7860. navigations.
  7861. </member>
  7862. <member name="F:RT_NAVIGATION_PRELOAD_SUB_FRAME">
  7863. A sub-frame service worker navigation preload request.
  7864. </member>
  7865. <member name="F:RT_NAVIGATION_PRELOAD_MAIN_FRAME">
  7866. A main-frame service worker navigation preload request.
  7867. </member>
  7868. <member name="F:RT_PLUGIN_RESOURCE">
  7869. A resource that a plugin requested.
  7870. </member>
  7871. <member name="F:RT_CSP_REPORT">
  7872. A report of Content Security Policy violations.
  7873. </member>
  7874. <member name="F:RT_SERVICE_WORKER">
  7875. Main resource of a service worker.
  7876. </member>
  7877. <member name="F:RT_XHR">
  7878. XMLHttpRequest.
  7879. </member>
  7880. <member name="F:RT_FAVICON">
  7881. Favicon.
  7882. </member>
  7883. <member name="F:RT_PREFETCH">
  7884. Explicitly requested prefetch.
  7885. </member>
  7886. <member name="F:RT_SHARED_WORKER">
  7887. Main resource of a shared worker.
  7888. </member>
  7889. <member name="F:RT_WORKER">
  7890. Main resource of a dedicated worker.
  7891. </member>
  7892. <member name="F:RT_MEDIA">
  7893. Media resource.
  7894. </member>
  7895. <member name="F:RT_OBJECT">
  7896. Object (or embed) tag for a plugin, or a resource that a plugin requested.
  7897. </member>
  7898. <member name="F:RT_SUB_RESOURCE">
  7899. Some other subresource. This is the default type if the actual type is
  7900. unknown.
  7901. </member>
  7902. <member name="F:RT_FONT_RESOURCE">
  7903. Font.
  7904. </member>
  7905. <member name="F:RT_IMAGE">
  7906. Image (jpg/gif/png/etc).
  7907. </member>
  7908. <member name="F:RT_SCRIPT">
  7909. External script.
  7910. </member>
  7911. <member name="F:RT_STYLESHEET">
  7912. CSS stylesheet.
  7913. </member>
  7914. <member name="F:RT_SUB_FRAME">
  7915. Frame or iframe.
  7916. </member>
  7917. <member name="F:RT_MAIN_FRAME">
  7918. Top level page.
  7919. </member>
  7920. <member name="F:V8_PROPERTY_ATTRIBUTE_DONTDELETE">
  7921. Not configurable
  7922. </member>
  7923. <member name="F:V8_PROPERTY_ATTRIBUTE_DONTENUM">
  7924. Not enumerable
  7925. </member>
  7926. <member name="F:V8_PROPERTY_ATTRIBUTE_READONLY">
  7927. Not writeable
  7928. </member>
  7929. <member name="F:V8_PROPERTY_ATTRIBUTE_NONE">
  7930. Writeable, Enumerable, Configurable
  7931. </member>
  7932. <member name="F:WOD_NEW_PICTURE_IN_PICTURE">
  7933. Creates a new document picture-in-picture window showing a child WebView.
  7934. </member>
  7935. <member name="F:WOD_SWITCH_TO_TAB">
  7936. Activates an existing tab containing the url, rather than navigating.
  7937. This is similar to SINGLETON_TAB, but searches across all windows from
  7938. the current profile and anonymity (instead of just the current one);
  7939. closes the current tab on switching if the current tab was the NTP with
  7940. no session history; and behaves like CURRENT_TAB instead of
  7941. NEW_FOREGROUND_TAB when no existing tab is found.
  7942. </member>
  7943. <member name="F:WOD_IGNORE_ACTION">
  7944. Special case error condition from the renderer.
  7945. </member>
  7946. <member name="F:WOD_OFF_THE_RECORD">
  7947. New off-the-record (incognito) window.
  7948. </member>
  7949. <member name="F:WOD_SAVE_TO_DISK">
  7950. Alt key while clicking.
  7951. </member>
  7952. <member name="F:WOD_NEW_WINDOW">
  7953. Shift key while clicking.
  7954. </member>
  7955. <member name="F:WOD_NEW_POPUP">
  7956. New popup window.
  7957. </member>
  7958. <member name="F:WOD_NEW_BACKGROUND_TAB">
  7959. Middle mouse button or meta/ctrl key while clicking.
  7960. </member>
  7961. <member name="F:WOD_NEW_FOREGROUND_TAB">
  7962. Shift key + Middle mouse button or meta/ctrl key while clicking.
  7963. </member>
  7964. <member name="F:WOD_SINGLETON_TAB">
  7965. Indicates that only one tab with the url should exist in the same window.
  7966. </member>
  7967. <member name="F:WOD_CURRENT_TAB">
  7968. Current tab. This is the default in most cases.
  7969. </member>
  7970. <member name="F:PK_DIR_RESOURCES">
  7971. Directory containing application resources. Can be configured via
  7972. CefSettings.resources_dir_path.
  7973. </member>
  7974. <member name="F:PK_USER_DATA">
  7975. "Application Data" directory under the user profile directory on Windows
  7976. and "~/Library/Application Support" directory on MacOS.
  7977. </member>
  7978. <member name="F:PK_LOCAL_APP_DATA">
  7979. "Local Settings\Application Data" directory under the user profile
  7980. directory on Windows.
  7981. </member>
  7982. <member name="F:PK_FILE_MODULE">
  7983. Path and filename of the module containing the CEF code (usually the
  7984. libcef module).
  7985. </member>
  7986. <member name="F:PK_FILE_EXE">
  7987. Path and filename of the current executable.
  7988. </member>
  7989. <member name="F:PK_DIR_TEMP">
  7990. Temporary directory.
  7991. </member>
  7992. <member name="F:PK_DIR_MODULE">
  7993. Directory containing PK_FILE_MODULE.
  7994. </member>
  7995. <member name="F:PK_DIR_EXE">
  7996. Directory containing PK_FILE_EXE.
  7997. </member>
  7998. <member name="F:PK_DIR_CURRENT">
  7999. Current directory.
  8000. </member>
  8001. <member name="F:TS_PROCESS_OOM">
  8002. Out of memory. Some platforms may use TS_PROCESS_CRASHED instead.
  8003. </member>
  8004. <member name="F:TS_PROCESS_CRASHED">
  8005. Segmentation fault.
  8006. </member>
  8007. <member name="F:TS_PROCESS_WAS_KILLED">
  8008. SIGKILL or task manager kill.
  8009. </member>
  8010. <member name="F:TS_ABNORMAL_TERMINATION">
  8011. Non-zero exit status.
  8012. </member>
  8013. <member name="F:_cef_cookie_t.priority">
  8014. Priority.
  8015. </member>
  8016. <member name="F:_cef_cookie_t.same_site">
  8017. Same site.
  8018. </member>
  8019. <member name="F:_cef_cookie_t.has_expires">
  8020. The cookie expiration date is only valid if |has_expires| is true.
  8021. </member>
  8022. <member name="F:_cef_cookie_t.last_access">
  8023. The cookie last access date. This is automatically populated by the system
  8024. on access.
  8025. </member>
  8026. <member name="F:_cef_cookie_t.creation">
  8027. The cookie creation date. This is automatically populated by the system on
  8028. cookie creation.
  8029. </member>
  8030. <member name="F:_cef_cookie_t.httponly">
  8031. If |httponly| is true the cookie will only be sent for HTTP requests.
  8032. </member>
  8033. <member name="F:_cef_cookie_t.secure">
  8034. If |secure| is true the cookie will only be sent for HTTPS requests.
  8035. </member>
  8036. <member name="F:_cef_cookie_t.path">
  8037. If |path| is non-empty only URLs at or below the path will get the cookie
  8038. value.
  8039. </member>
  8040. <member name="F:_cef_cookie_t.domain">
  8041. If |domain| is empty a host cookie will be created instead of a domain
  8042. cookie. Domain cookies are stored with a leading "." and are visible to
  8043. sub-domains whereas host cookies are not.
  8044. </member>
  8045. <member name="F:_cef_cookie_t.value">
  8046. The cookie value.
  8047. </member>
  8048. <member name="F:_cef_cookie_t.name">
  8049. The cookie name.
  8050. </member>
  8051. <member name="T:_cef_cookie_t">
  8052. Cookie information.
  8053. </member>
  8054. <member name="F:_cef_urlparts_t.fragment">
  8055. Fragment (hash) identifier component (i.e., the string following the '#').
  8056. </member>
  8057. <member name="F:_cef_urlparts_t.query">
  8058. Query string component (i.e., everything following the '?').
  8059. </member>
  8060. <member name="F:_cef_urlparts_t.path">
  8061. Path component including the first slash following the host.
  8062. </member>
  8063. <member name="F:_cef_urlparts_t.origin">
  8064. Origin contains just the scheme, host, and port from a URL. Equivalent to
  8065. clearing any username and password, replacing the path with a slash, and
  8066. clearing everything after that. This value will be empty for non-standard
  8067. URLs.
  8068. </member>
  8069. <member name="F:_cef_urlparts_t.port">
  8070. Port number component.
  8071. </member>
  8072. <member name="F:_cef_urlparts_t.host">
  8073. Host component. This may be a hostname, an IPv4 address or an IPv6 literal
  8074. surrounded by square brackets (e.g., "[2001:db8::1]").
  8075. </member>
  8076. <member name="F:_cef_urlparts_t.password">
  8077. Password component.
  8078. </member>
  8079. <member name="F:_cef_urlparts_t.username">
  8080. User name component.
  8081. </member>
  8082. <member name="F:_cef_urlparts_t.scheme">
  8083. Scheme component not including the colon (e.g., "http").
  8084. </member>
  8085. <member name="F:_cef_urlparts_t.spec">
  8086. The complete URL specification.
  8087. </member>
  8088. <member name="T:_cef_urlparts_t">
  8089. URL component parts.
  8090. </member>
  8091. <member name="F:RV_CONTINUE_ASYNC">
  8092. Continue asynchronously (usually via a callback).
  8093. </member>
  8094. <member name="F:RV_CONTINUE">
  8095. Continue immediately.
  8096. </member>
  8097. <member name="F:RV_CANCEL">
  8098. Cancel immediately.
  8099. </member>
  8100. <member name="F:_cef_browser_settings_t.chrome_status_bubble">
  8101. Controls whether the Chrome status bubble will be used. Only supported
  8102. with the Chrome runtime. For details about the status bubble see
  8103. https://www.chromium.org/user-experience/status-bubble/
  8104. </member>
  8105. <member name="F:_cef_browser_settings_t.accept_language_list">
  8106. Comma delimited ordered list of language codes without any whitespace that
  8107. will be used in the "Accept-Language" HTTP header. May be set globally
  8108. using the CefSettings.accept_language_list value. If both values are
  8109. empty then "en-US,en" will be used.
  8110. </member>
  8111. <member name="F:_cef_browser_settings_t.background_color">
  8112. END values that map to WebPreferences settings.
  8113. Background color used for the browser before a document is loaded and when
  8114. no document color is specified. The alpha component must be either fully
  8115. opaque (0xFF) or fully transparent (0x00). If the alpha component is fully
  8116. opaque then the RGB components will be used as the background color. If
  8117. the alpha component is fully transparent for a windowed browser then the
  8118. CefSettings.background_color value will be used. If the alpha component is
  8119. fully transparent for a windowless (off-screen) browser then transparent
  8120. painting will be enabled.
  8121. </member>
  8122. <member name="F:_cef_browser_settings_t.webgl">
  8123. Controls whether WebGL can be used. Note that WebGL requires hardware
  8124. support and may not work on all systems even when enabled. Also
  8125. configurable using the "disable-webgl" command-line switch.
  8126. </member>
  8127. <member name="F:_cef_browser_settings_t.databases">
  8128. Controls whether databases can be used. Also configurable using the
  8129. "disable-databases" command-line switch.
  8130. </member>
  8131. <member name="F:_cef_browser_settings_t.local_storage">
  8132. Controls whether local storage can be used. Also configurable using the
  8133. "disable-local-storage" command-line switch.
  8134. </member>
  8135. <member name="F:_cef_browser_settings_t.tab_to_links">
  8136. Controls whether the tab key can advance focus to links. Also configurable
  8137. using the "disable-tab-to-links" command-line switch.
  8138. </member>
  8139. <member name="F:_cef_browser_settings_t.text_area_resize">
  8140. Controls whether text areas can be resized. Also configurable using the
  8141. "disable-text-area-resize" command-line switch.
  8142. </member>
  8143. <member name="F:_cef_browser_settings_t.image_shrink_standalone_to_fit">
  8144. Controls whether standalone images will be shrunk to fit the page. Also
  8145. configurable using the "image-shrink-standalone-to-fit" command-line
  8146. switch.
  8147. </member>
  8148. <member name="F:_cef_browser_settings_t.image_loading">
  8149. Controls whether image URLs will be loaded from the network. A cached
  8150. image will still be rendered if requested. Also configurable using the
  8151. "disable-image-loading" command-line switch.
  8152. </member>
  8153. <member name="F:_cef_browser_settings_t.javascript_dom_paste">
  8154. Controls whether DOM pasting is supported in the editor via
  8155. execCommand("paste"). The |javascript_access_clipboard| setting must also
  8156. be enabled. Also configurable using the "disable-javascript-dom-paste"
  8157. command-line switch.
  8158. </member>
  8159. <member name="F:_cef_browser_settings_t.javascript_access_clipboard">
  8160. Controls whether JavaScript can access the clipboard. Also configurable
  8161. using the "disable-javascript-access-clipboard" command-line switch.
  8162. </member>
  8163. <member name="F:_cef_browser_settings_t.javascript_close_windows">
  8164. Controls whether JavaScript can be used to close windows that were not
  8165. opened via JavaScript. JavaScript can still be used to close windows that
  8166. were opened via JavaScript or that have no back/forward history. Also
  8167. configurable using the "disable-javascript-close-windows" command-line
  8168. switch.
  8169. </member>
  8170. <member name="F:_cef_browser_settings_t.javascript">
  8171. Controls whether JavaScript can be executed. Also configurable using the
  8172. "disable-javascript" command-line switch.
  8173. </member>
  8174. <member name="F:_cef_browser_settings_t.remote_fonts">
  8175. Controls the loading of fonts from remote sources. Also configurable using
  8176. the "disable-remote-fonts" command-line switch.
  8177. </member>
  8178. <member name="F:_cef_browser_settings_t.default_encoding">
  8179. Default encoding for Web content. If empty "ISO-8859-1" will be used. Also
  8180. configurable using the "default-encoding" command-line switch.
  8181. </member>
  8182. <member name="F:_cef_browser_settings_t.standard_font_family">
  8183. BEGIN values that map to WebPreferences settings.
  8184. Font settings.
  8185. </member>
  8186. <member name="F:_cef_browser_settings_t.windowless_frame_rate">
  8187. The maximum rate in frames per second (fps) that CefRenderHandler::OnPaint
  8188. will be called for a windowless browser. The actual fps may be lower if
  8189. the browser cannot generate frames at the requested rate. The minimum
  8190. value is 1 and the maximum value is 60 (default 30). This value can also
  8191. be changed dynamically via CefBrowserHost::SetWindowlessFrameRate.
  8192. </member>
  8193. <member name="F:_cef_browser_settings_t.size">
  8194. Size of this structure.
  8195. </member>
  8196. <member name="T:_cef_browser_settings_t">
  8197. Browser initialization settings. Specify NULL or 0 to get the recommended
  8198. default values. The consequences of using custom values may not be well
  8199. tested. Many of these and other settings can also configured using command-
  8200. line switches.
  8201. </member>
  8202. <member name="F:_cef_request_context_settings_t.cookieable_schemes_list">
  8203. Comma delimited list of schemes supported by the associated
  8204. CefCookieManager. If |cookieable_schemes_exclude_defaults| is false (0)
  8205. the default schemes ("http", "https", "ws" and "wss") will also be
  8206. supported. Specifying a |cookieable_schemes_list| value and setting
  8207. |cookieable_schemes_exclude_defaults| to true (1) will disable all loading
  8208. and saving of cookies for this manager. These values will be ignored if
  8209. |cache_path| matches the CefSettings.cache_path value.
  8210. </member>
  8211. <member name="F:_cef_request_context_settings_t.accept_language_list">
  8212. Comma delimited ordered list of language codes without any whitespace that
  8213. will be used in the "Accept-Language" HTTP header. Can be set globally
  8214. using the CefSettings.accept_language_list value or overridden on a per-
  8215. browser basis using the CefBrowserSettings.accept_language_list value. If
  8216. all values are empty then "en-US,en" will be used. This value will be
  8217. ignored if |cache_path| matches the CefSettings.cache_path value.
  8218. </member>
  8219. <member name="F:_cef_request_context_settings_t.persist_user_preferences">
  8220. To persist user preferences as a JSON file in the cache path directory set
  8221. this value to true (1). Can be set globally using the
  8222. CefSettings.persist_user_preferences value. This value will be ignored if
  8223. |cache_path| is empty or if it matches the CefSettings.cache_path value.
  8224. </member>
  8225. <member name="F:_cef_request_context_settings_t.persist_session_cookies">
  8226. To persist session cookies (cookies without an expiry date or validity
  8227. interval) by default when using the global cookie manager set this value
  8228. to true (1). Session cookies are generally intended to be transient and
  8229. most Web browsers do not persist them. Can be set globally using the
  8230. CefSettings.persist_session_cookies value. This value will be ignored if
  8231. |cache_path| is empty or if it matches the CefSettings.cache_path value.
  8232. </member>
  8233. <member name="F:_cef_request_context_settings_t.cache_path">
  8234. The location where cache data for this request context will be stored on
  8235. disk. If this value is non-empty then it must be an absolute path that is
  8236. either equal to or a child directory of CefSettings.root_cache_path. If
  8237. this value is empty then browsers will be created in "incognito mode"
  8238. where in-memory caches are used for storage and no data is persisted to
  8239. disk. HTML5 databases such as localStorage will only persist across
  8240. sessions if a cache path is specified. To share the global browser cache
  8241. and related configuration set this value to match the
  8242. CefSettings.cache_path value.
  8243. </member>
  8244. <member name="F:_cef_request_context_settings_t.size">
  8245. Size of this structure.
  8246. </member>
  8247. <member name="T:_cef_request_context_settings_t">
  8248. Request context initialization settings. Specify NULL or 0 to get the
  8249. recommended default values.
  8250. </member>
  8251. <member name="F:_cef_settings_t.cookieable_schemes_list">
  8252. Comma delimited list of schemes supported by the associated
  8253. CefCookieManager. If |cookieable_schemes_exclude_defaults| is false (0)
  8254. the default schemes ("http", "https", "ws" and "wss") will also be
  8255. supported. Specifying a |cookieable_schemes_list| value and setting
  8256. |cookieable_schemes_exclude_defaults| to true (1) will disable all loading
  8257. and saving of cookies for this manager. Can be overridden
  8258. for individual CefRequestContext instances via the
  8259. CefRequestContextSettings.cookieable_schemes_list and
  8260. CefRequestContextSettings.cookieable_schemes_exclude_defaults values.
  8261. </member>
  8262. <member name="F:_cef_settings_t.accept_language_list">
  8263. Comma delimited ordered list of language codes without any whitespace that
  8264. will be used in the "Accept-Language" HTTP header. May be overridden on a
  8265. per-browser basis using the CefBrowserSettings.accept_language_list value.
  8266. If both values are empty then "en-US,en" will be used. Can be overridden
  8267. for individual CefRequestContext instances via the
  8268. CefRequestContextSettings.accept_language_list value.
  8269. </member>
  8270. <member name="F:_cef_settings_t.background_color">
  8271. Background color used for the browser before a document is loaded and when
  8272. no document color is specified. The alpha component must be either fully
  8273. opaque (0xFF) or fully transparent (0x00). If the alpha component is fully
  8274. opaque then the RGB components will be used as the background color. If
  8275. the alpha component is fully transparent for a windowed browser then the
  8276. default value of opaque white be used. If the alpha component is fully
  8277. transparent for a windowless (off-screen) browser then transparent
  8278. painting will be enabled.
  8279. </member>
  8280. <member name="F:_cef_settings_t.uncaught_exception_stack_size">
  8281. The number of stack trace frames to capture for uncaught exceptions.
  8282. Specify a positive value to enable the
  8283. CefRenderProcessHandler::OnUncaughtException() callback. Specify 0
  8284. (default value) and OnUncaughtException() will not be called. Also
  8285. configurable using the "uncaught-exception-stack-size" command-line
  8286. switch.
  8287. </member>
  8288. <member name="F:_cef_settings_t.remote_debugging_port">
  8289. Set to a value between 1024 and 65535 to enable remote debugging on the
  8290. specified port. Also configurable using the "remote-debugging-port"
  8291. command-line switch. Remote debugging can be accessed by loading the
  8292. chrome://inspect page in Google Chrome. Port numbers 9222 and 9229 are
  8293. discoverable by default. Other port numbers may need to be configured via
  8294. "Discover network targets" on the Devices tab.
  8295. </member>
  8296. <member name="F:_cef_settings_t.pack_loading_disabled">
  8297. Set to true (1) to disable loading of pack files for resources and
  8298. locales. A resource bundle handler must be provided for the browser and
  8299. render processes via CefApp::GetResourceBundleHandler() if loading of pack
  8300. files is disabled. Also configurable using the "disable-pack-loading"
  8301. command- line switch.
  8302. </member>
  8303. <member name="F:_cef_settings_t.locales_dir_path">
  8304. The fully qualified path for the locales directory. If this value is empty
  8305. the locales directory must be located in the module directory. If this
  8306. value is non-empty then it must be an absolute path. This value is ignored
  8307. on MacOS where pack files are always loaded from the app bundle Resources
  8308. directory. Also configurable using the "locales-dir-path" command-line
  8309. switch.
  8310. </member>
  8311. <member name="F:_cef_settings_t.resources_dir_path">
  8312. The fully qualified path for the resources directory. If this value is
  8313. empty the *.pak files must be located in the module directory on
  8314. Windows/Linux or the app bundle Resources directory on MacOS. If this
  8315. value is non-empty then it must be an absolute path. Also configurable
  8316. using the "resources-dir-path" command-line switch.
  8317. </member>
  8318. <member name="F:_cef_settings_t.javascript_flags">
  8319. Custom flags that will be used when initializing the V8 JavaScript engine.
  8320. The consequences of using custom flags may not be well tested. Also
  8321. configurable using the "js-flags" command-line switch.
  8322. </member>
  8323. <member name="F:_cef_settings_t.log_severity">
  8324. The log severity. Only messages of this severity level or higher will be
  8325. logged. When set to DISABLE no messages will be written to the log file,
  8326. but FATAL messages will still be output to stderr. Also configurable using
  8327. the "log-severity" command-line switch with a value of "verbose", "info",
  8328. "warning", "error", "fatal" or "disable".
  8329. </member>
  8330. <member name="F:_cef_settings_t.log_file">
  8331. The directory and file name to use for the debug log. If empty a default
  8332. log file name and location will be used. On Windows and Linux a
  8333. "debug.log" file will be written in the main executable directory. On
  8334. MacOS a "~/Library/Logs/[app name]_debug.log" file will be written where
  8335. [app name] is the name of the main app executable. Also configurable using
  8336. the "log-file" command-line switch.
  8337. </member>
  8338. <member name="F:_cef_settings_t.locale">
  8339. The locale string that will be passed to WebKit. If empty the default
  8340. locale of "en-US" will be used. This value is ignored on Linux where
  8341. locale is determined using environment variable parsing with the
  8342. precedence order: LANGUAGE, LC_ALL, LC_MESSAGES and LANG. Also
  8343. configurable using the "lang" command-line switch.
  8344. </member>
  8345. <member name="F:_cef_settings_t.user_agent_product">
  8346. Value that will be inserted as the product portion of the default
  8347. User-Agent string. If empty the Chromium product version will be used. If
  8348. |userAgent| is specified this value will be ignored. Also configurable
  8349. using the "user-agent-product" command-line switch.
  8350. </member>
  8351. <member name="F:_cef_settings_t.user_agent">
  8352. Value that will be returned as the User-Agent HTTP header. If empty the
  8353. default User-Agent string will be used. Also configurable using the
  8354. "user-agent" command-line switch.
  8355. </member>
  8356. <member name="F:_cef_settings_t.persist_user_preferences">
  8357. To persist user preferences as a JSON file in the cache path directory set
  8358. this value to true (1). A |cache_path| value must also be specified
  8359. to enable this feature. Also configurable using the
  8360. "persist-user-preferences" command-line switch. Can be overridden for
  8361. individual CefRequestContext instances via the
  8362. CefRequestContextSettings.persist_user_preferences value.
  8363. </member>
  8364. <member name="F:_cef_settings_t.persist_session_cookies">
  8365. To persist session cookies (cookies without an expiry date or validity
  8366. interval) by default when using the global cookie manager set this value
  8367. to true (1). Session cookies are generally intended to be transient and
  8368. most Web browsers do not persist them. A |cache_path| value must also be
  8369. specified to enable this feature. Also configurable using the
  8370. "persist-session-cookies" command-line switch. Can be overridden for
  8371. individual CefRequestContext instances via the
  8372. CefRequestContextSettings.persist_session_cookies value.
  8373. </member>
  8374. <member name="F:_cef_settings_t.user_data_path">
  8375. The location where user data such as the Widevine CDM module and spell
  8376. checking dictionary files will be stored on disk. If this value is empty
  8377. then the default platform-specific user data directory will be used
  8378. ("~/.config/cef_user_data" directory on Linux, "~/Library/Application
  8379. Support/CEF/User Data" directory on MacOS, "AppData\Local\CEF\User Data"
  8380. directory under the user profile directory on Windows). If this value is
  8381. non-empty then it must be an absolute path. When using the Chrome runtime
  8382. this value will be ignored in favor of the |root_cache_path| value.
  8383. </member>
  8384. <member name="F:_cef_settings_t.root_cache_path">
  8385. The root directory that all CefSettings.cache_path and
  8386. CefRequestContextSettings.cache_path values must have in common. If this
  8387. value is empty and CefSettings.cache_path is non-empty then it will
  8388. default to the CefSettings.cache_path value. If this value is non-empty
  8389. then it must be an absolute path. Failure to set this value correctly may
  8390. result in the sandbox blocking read/write access to the cache_path
  8391. directory.
  8392. </member>
  8393. <member name="F:_cef_settings_t.cache_path">
  8394. The location where data for the global browser cache will be stored on
  8395. disk. If this value is non-empty then it must be an absolute path that is
  8396. either equal to or a child directory of CefSettings.root_cache_path. If
  8397. this value is empty then browsers will be created in "incognito mode"
  8398. where in-memory caches are used for storage and no data is persisted to
  8399. disk. HTML5 databases such as localStorage will only persist across
  8400. sessions if a cache path is specified. Can be overridden for individual
  8401. CefRequestContext instances via the CefRequestContextSettings.cache_path
  8402. value. When using the Chrome runtime the "default" profile will be used if
  8403. |cache_path| and |root_cache_path| have the same value.
  8404. </member>
  8405. <member name="F:_cef_settings_t.command_line_args_disabled">
  8406. Set to true (1) to disable configuration of browser process features using
  8407. standard CEF and Chromium command-line arguments. Configuration can still
  8408. be specified using CEF data structures or via the
  8409. CefApp::OnBeforeCommandLineProcessing() method.
  8410. </member>
  8411. <member name="F:_cef_settings_t.windowless_rendering_enabled">
  8412. Set to true (1) to enable windowless (off-screen) rendering support. Do
  8413. not enable this value if the application does not use windowless rendering
  8414. as it may reduce rendering performance on some systems.
  8415. </member>
  8416. <member name="F:_cef_settings_t.external_message_pump">
  8417. Set to true (1) to control browser process main (UI) thread message pump
  8418. scheduling via the CefBrowserProcessHandler::OnScheduleMessagePumpWork()
  8419. callback. This option is recommended for use in combination with the
  8420. CefDoMessageLoopWork() function in cases where the CEF message loop must
  8421. be integrated into an existing application message loop (see additional
  8422. comments and warnings on CefDoMessageLoopWork). Enabling this option is
  8423. not recommended for most users; leave this option disabled and use either
  8424. the CefRunMessageLoop() function or multi_threaded_message_loop if
  8425. possible.
  8426. </member>
  8427. <member name="F:_cef_settings_t.multi_threaded_message_loop">
  8428. Set to true (1) to have the browser process message loop run in a separate
  8429. thread. If false (0) then the CefDoMessageLoopWork() function must be
  8430. called from your application message loop. This option is only supported
  8431. on Windows and Linux.
  8432. </member>
  8433. <member name="F:_cef_settings_t.chrome_runtime">
  8434. Set to true (1) to enable use of the Chrome runtime in CEF. This feature
  8435. is considered experimental and is not recommended for most users at this
  8436. time. See issue #2969 for details.
  8437. </member>
  8438. <member name="F:_cef_settings_t.main_bundle_path">
  8439. The path to the main bundle on macOS. If this value is empty then it
  8440. defaults to the top-level app bundle. If this value is non-empty then it
  8441. must be an absolute path. Also configurable using the "main-bundle-path"
  8442. command-line switch.
  8443. </member>
  8444. <member name="F:_cef_settings_t.framework_dir_path">
  8445. The path to the CEF framework directory on macOS. If this value is empty
  8446. then the framework must exist at "Contents/Frameworks/Chromium Embedded
  8447. Framework.framework" in the top-level app bundle. If this value is
  8448. non-empty then it must be an absolute path. Also configurable using the
  8449. "framework-dir-path" command-line switch.
  8450. </member>
  8451. <member name="F:_cef_settings_t.no_sandbox">
  8452. Set to true (1) to disable the sandbox for sub-processes. See
  8453. cef_sandbox_win.h for requirements to enable the sandbox on Windows. Also
  8454. configurable using the "no-sandbox" command-line switch.
  8455. </member>
  8456. <member name="F:_cef_settings_t.size">
  8457. Size of this structure.
  8458. </member>
  8459. <member name="T:_cef_settings_t">
  8460. Initialization settings. Specify NULL or 0 to get the recommended default
  8461. values. Many of these and other settings can also configured using command-
  8462. line switches.
  8463. </member>
  8464. <member name="F:STATE_DISABLED">
  8465. Disable or disallow the setting.
  8466. </member>
  8467. <member name="F:STATE_ENABLED">
  8468. Enable or allow the setting.
  8469. </member>
  8470. <member name="F:STATE_DEFAULT">
  8471. Use the default state for the setting.
  8472. </member>
  8473. <member name="F:LOGSEVERITY_DISABLE">
  8474. Disable logging to file for all messages, and to stderr for messages with
  8475. severity less than FATAL.
  8476. </member>
  8477. <member name="F:LOGSEVERITY_FATAL">
  8478. FATAL logging.
  8479. </member>
  8480. <member name="F:LOGSEVERITY_ERROR">
  8481. ERROR logging.
  8482. </member>
  8483. <member name="F:LOGSEVERITY_WARNING">
  8484. WARNING logging.
  8485. </member>
  8486. <member name="F:LOGSEVERITY_INFO">
  8487. INFO logging.
  8488. </member>
  8489. <member name="F:LOGSEVERITY_DEBUG">
  8490. DEBUG logging.
  8491. </member>
  8492. <member name="F:LOGSEVERITY_VERBOSE">
  8493. Verbose logging.
  8494. </member>
  8495. <member name="F:LOGSEVERITY_DEFAULT">
  8496. Default logging (currently INFO logging).
  8497. </member>
  8498. <member name="F:_cef_window_info_t.window">
  8499. Handle for the new browser window. Only used with windowed rendering.
  8500. </member>
  8501. <member name="F:_cef_window_info_t.external_begin_frame_enabled">
  8502. Set to true (1) to enable the ability to issue BeginFrame requests from
  8503. the client application by calling CefBrowserHost::SendExternalBeginFrame.
  8504. </member>
  8505. <member name="F:_cef_window_info_t.shared_texture_enabled">
  8506. Set to true (1) to enable shared textures for windowless rendering. Only
  8507. valid if windowless_rendering_enabled above is also set to true. Currently
  8508. only supported on Windows (D3D11).
  8509. </member>
  8510. <member name="F:_cef_window_info_t.windowless_rendering_enabled">
  8511. Set to true (1) to create the browser using windowless (off-screen)
  8512. rendering. No window will be created for the browser and all rendering
  8513. will occur via the CefRenderHandler interface. The |parent_window| value
  8514. will be used to identify monitor info and to act as the parent window for
  8515. dialogs, context menus, etc. If |parent_window| is not provided then the
  8516. main screen monitor will be used and some functionality that requires a
  8517. parent window may not function correctly. In order to create windowless
  8518. browsers the CefSettings.windowless_rendering_enabled value must be set to
  8519. true. Transparent painting is enabled by default but can be disabled by
  8520. setting CefBrowserSettings.background_color to an opaque value.
  8521. </member>
  8522. <member name="T:_cef_window_info_t">
  8523. Structure representing window information.
  8524. </member>
  8525. <member name="T:_cef_main_args_t">
  8526. Structure representing CefExecuteProcess arguments.
  8527. </member>
  8528. <member name="T:_cef_insets_t">
  8529. Structure representing insets.
  8530. </member>
  8531. <member name="T:_cef_size_t">
  8532. Structure representing a size.
  8533. </member>
  8534. <member name="T:_cef_rect_t">
  8535. Structure representing a rectangle.
  8536. </member>
  8537. <member name="T:_cef_point_t">
  8538. Structure representing a point.
  8539. </member>
  8540. <member name="M:cef_string_list_copy(System.Void*)">
  8541. Creates a copy of an existing string list.
  8542. </member>
  8543. <member name="M:cef_string_list_free(System.Void*)">
  8544. Free the string list.
  8545. </member>
  8546. <member name="M:cef_string_list_clear(System.Void*)">
  8547. Clear the string list.
  8548. </member>
  8549. <member name="M:cef_string_list_append(System.Void*,_cef_string_utf16_t!System.Runtime.CompilerServices.IsConst*)">
  8550. Append a new value at the end of the string list.
  8551. </member>
  8552. <member name="M:cef_string_list_value(System.Void*,System.UInt32,_cef_string_utf16_t*)">
  8553. Retrieve the value at the specified zero-based string list index. Returns
  8554. true (1) if the value was successfully retrieved.
  8555. </member>
  8556. <member name="M:cef_string_list_size(System.Void*)">
  8557. Return the number of elements in the string list.
  8558. </member>
  8559. <member name="M:cef_string_list_alloc">
  8560. Allocate a new string map.
  8561. </member>
  8562. <member name="D:cef_string_list_t">
  8563. CEF string maps are a set of key/value string pairs.
  8564. </member>
  8565. <member name="T:CefStringTraitsUTF16">
  8566. Traits implementation for utf16 character strings.
  8567. </member>
  8568. <member name="T:CefStringTraitsUTF8">
  8569. Traits implementation for utf8 character strings.
  8570. </member>
  8571. <member name="T:CefStringTraitsWide">
  8572. Traits implementation for wide character strings.
  8573. </member>
  8574. <member name="M:cef_string_utf16_to_lower(System.Char!System.Runtime.CompilerServices.IsConst*,System.UInt32,_cef_string_utf16_t*)">
  8575. These functions convert utf16 string case using the current ICU locale. This
  8576. may change the length of the string in some cases.
  8577. </member>
  8578. <member name="M:cef_string_userfree_wide_free(_cef_string_wide_t*)">
  8579. These functions free the string structure allocated by the associated
  8580. alloc function. Any string contents will first be cleared.
  8581. </member>
  8582. <member name="M:cef_string_userfree_wide_alloc">
  8583. These functions allocate a new string structure. They must be freed by
  8584. calling the associated free function.
  8585. </member>
  8586. <member name="D:cef_string_userfree_wide_t">
  8587. It is sometimes necessary for the system to allocate string structures with
  8588. the expectation that the user will free them. The userfree types act as a
  8589. hint that the user is responsible for freeing the structure.
  8590. </member>
  8591. <member name="M:cef_string_ascii_to_wide(System.SByte!System.Runtime.CompilerServices.IsSignUnspecifiedByte!System.Runtime.CompilerServices.IsConst*,System.UInt32,_cef_string_wide_t*)">
  8592. These functions convert an ASCII string, typically a hardcoded constant, to
  8593. a Wide/UTF16 string. Use instead of the UTF8 conversion routines if you know
  8594. the string is ASCII.
  8595. </member>
  8596. <member name="M:cef_string_wide_to_utf8(System.Char!System.Runtime.CompilerServices.IsConst*,System.UInt32,_cef_string_utf8_t*)">
  8597. These functions convert between UTF-8, -16, and -32 strings. They are
  8598. potentially slow so unnecessary conversions should be avoided. The best
  8599. possible result will always be written to |output| with the boolean return
  8600. value indicating whether the conversion is 100% valid.
  8601. </member>
  8602. <member name="M:cef_string_wide_cmp(_cef_string_wide_t!System.Runtime.CompilerServices.IsConst*,_cef_string_wide_t!System.Runtime.CompilerServices.IsConst*)">
  8603. These functions compare two string values with the same results as strcmp().
  8604. </member>
  8605. <member name="M:cef_string_wide_clear(_cef_string_wide_t*)">
  8606. Convenience macros for copying values.
  8607. These functions clear string values. The structure itself is not freed.
  8608. </member>
  8609. <member name="M:cef_string_wide_set(System.Char!System.Runtime.CompilerServices.IsConst*,System.UInt32,_cef_string_wide_t*,System.Int32)">
  8610. These functions set string values. If |copy| is true (1) the value will be
  8611. copied instead of referenced. It is up to the user to properly manage
  8612. the lifespan of references.
  8613. </member>
  8614. <member name="T:_cef_string_wide_t">
  8615. \file
  8616. CEF provides functions for converting between UTF-8, -16 and -32 strings.
  8617. CEF string types are safe for reading from multiple threads but not for
  8618. modification. It is the user's responsibility to provide synchronization if
  8619. modifying CEF strings from multiple threads.
  8620. CEF string type definitions. Whomever allocates |str| is responsible for
  8621. providing an appropriate |dtor| implementation that will free the string in
  8622. the same memory space. When reusing an existing string structure make sure
  8623. to call |dtor| for the old value before assigning new |str| and |dtor|
  8624. values. Static strings will have a NULL |dtor| value. Using the below
  8625. functions if you want this managed for you.
  8626. </member>
  8627. <member name="M:CefTime.Delta(CefTime!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8628. Return the delta between this object and |other| in milliseconds.
  8629. </member>
  8630. <member name="M:CefTime.Now">
  8631. Set this object to now.
  8632. </member>
  8633. <member name="M:CefTime.SetDoubleT(System.Double)">
  8634. Converts to/from a double which is the number of seconds since epoch
  8635. (Jan 1, 1970). Webkit uses this format to represent time. A value of 0
  8636. means "not initialized".
  8637. </member>
  8638. <member name="M:CefTime.SetTimeT(System.Int64)">
  8639. Converts to/from time_t.
  8640. </member>
  8641. <member name="T:CefTime">
  8642. Class representing a time.
  8643. </member>
  8644. <member name="T:CefBaseTime">
  8645. Represents a wall clock time in UTC. Values are not guaranteed to be
  8646. monotonically non-decreasing and are subject to large amounts of skew.
  8647. Time is stored internally as microseconds since the Windows epoch (1601).
  8648. This is equivalent of Chromium `base::Time` (see base/time/time.h).
  8649. </member>
  8650. <member name="M:cef_time_from_basetime(_cef_basetime_t!System.Runtime.CompilerServices.IsConst,_cef_time_t*)">
  8651. Converts cef_basetime_t to cef_time_t. Returns true (1) on success and
  8652. false (0) on failure.
  8653. </member>
  8654. <member name="M:cef_time_to_basetime(_cef_time_t!System.Runtime.CompilerServices.IsConst*,_cef_basetime_t*)">
  8655. Converts cef_time_t to cef_basetime_t. Returns true (1) on success and
  8656. false (0) on failure.
  8657. </member>
  8658. <member name="M:cef_time_delta(_cef_time_t!System.Runtime.CompilerServices.IsConst*,_cef_time_t!System.Runtime.CompilerServices.IsConst*,System.Int64*)">
  8659. Retrieve the delta in milliseconds between two time values. Returns true (1)
  8660. on success and false (0) on failure.
  8661. </member>
  8662. <member name="M:cef_basetime_now">
  8663. Retrieve the current system time.
  8664. </member>
  8665. <member name="M:cef_time_now(_cef_time_t*)">
  8666. Retrieve the current system time. Returns true (1) on success and false (0)
  8667. on failure.
  8668. </member>
  8669. <member name="M:cef_time_to_doublet(_cef_time_t!System.Runtime.CompilerServices.IsConst*,System.Double*)">
  8670. Converts cef_time_t to/from a double which is the number of seconds since
  8671. epoch (Jan 1, 1970). Webkit uses this format to represent time. A value of 0
  8672. means "not initialized". Returns true (1) on success and false (0) on
  8673. failure.
  8674. </member>
  8675. <member name="M:cef_time_to_timet(_cef_time_t!System.Runtime.CompilerServices.IsConst*,System.Int64*)">
  8676. Converts cef_time_t to/from time_t. Returns true (1) on success and false
  8677. (0) on failure.
  8678. </member>
  8679. <member name="F:_cef_time_t.millisecond">
  8680. Milliseconds within the current second (0-999)
  8681. </member>
  8682. <member name="F:_cef_time_t.second">
  8683. Second within the current minute (0-59 plus leap seconds which may take
  8684. it up to 60).
  8685. </member>
  8686. <member name="F:_cef_time_t.minute">
  8687. Minute within the current hour (0-59)
  8688. </member>
  8689. <member name="F:_cef_time_t.hour">
  8690. Hour within the current day (0-23)
  8691. </member>
  8692. <member name="F:_cef_time_t.day_of_month">
  8693. 1-based day of month (1-31)
  8694. </member>
  8695. <member name="F:_cef_time_t.day_of_week">
  8696. 0-based day of week (0 = Sunday, etc.)
  8697. </member>
  8698. <member name="F:_cef_time_t.month">
  8699. 1-based month (values 1 = January, etc.)
  8700. </member>
  8701. <member name="F:_cef_time_t.year">
  8702. Four or five digit year "2007" (1601 to 30827 on Windows, 1970 to 2038 on
  8703. 32-bit POSIX)
  8704. </member>
  8705. <member name="T:_cef_time_t">
  8706. Time information. Values should always be in UTC.
  8707. </member>
  8708. <member name="T:base.ThreadChecker">
  8709. ThreadChecker is a helper class used to help verify that some methods of a
  8710. class are called from the same thread. It provides identical functionality
  8711. to base::NonThreadSafe, but it is meant to be held as a member variable,
  8712. rather than inherited from base::NonThreadSafe.
  8713. While inheriting from base::NonThreadSafe may give a clear indication about
  8714. the thread-safety of a class, it may also lead to violations of the style
  8715. guide with regard to multiple inheritance. The choice between having a
  8716. ThreadChecker member and inheriting from base::NonThreadSafe should be based
  8717. on whether:
  8718. - Derived classes need to know the thread they belong to, as opposed to
  8719. having that functionality fully encapsulated in the base class.
  8720. - Derived classes should be able to reassign the base class to another
  8721. thread, via DetachFromThread.
  8722. If neither of these are true, then having a ThreadChecker member and calling
  8723. CalledOnValidThread is the preferable solution.
  8724. Example:
  8725. <pre>
  8726. class MyClass {
  8727. public:
  8728. void Foo() {
  8729. DCHECK(thread_checker_.CalledOnValidThread());
  8730. ... (do stuff) ...
  8731. }
  8732. private:
  8733. ThreadChecker thread_checker_;
  8734. }
  8735. </pre>
  8736. In Release mode, CalledOnValidThread will always return true.
  8737. </member>
  8738. <member name="T:base.cef_internal.ThreadCheckerDoNothing">
  8739. Do nothing implementation, for use in release mode.
  8740. Note: You should almost always use the ThreadChecker class to get the
  8741. right version for your build configuration.
  8742. </member>
  8743. <member name="T:base.cef_internal.AutoUnlock">
  8744. AutoUnlock is a helper that will Release() the |lock| argument in the
  8745. constructor, and re-Acquire() it in the destructor.
  8746. </member>
  8747. <member name="T:base.cef_internal.AutoLock">
  8748. A helper class that acquires the given Lock while the AutoLock is in scope.
  8749. </member>
  8750. <member name="T:base.cef_internal.Lock">
  8751. A convenient wrapper for an OS specific critical section. The only real
  8752. intelligence in this class is in debug mode for the support for the
  8753. AssertAcquired() method.
  8754. </member>
  8755. <member name="M:base.PlatformThread.CurrentRef">
  8756. Gets the current thread reference, which can be used to check if
  8757. we're on the right thread quickly.
  8758. </member>
  8759. <member name="M:base.PlatformThread.CurrentId">
  8760. Gets the current thread id, which may be useful for logging purposes.
  8761. </member>
  8762. <member name="T:base.PlatformThreadRef">
  8763. Used for thread checking and debugging.
  8764. Meant to be as fast as possible.
  8765. These are produced by PlatformThread::CurrentRef(), and used to later
  8766. check if we are on the same thread or not by using ==. These are safe
  8767. to copy between threads, but can't be copied to another process as they
  8768. have no meaning there. Also, the internal identifier can be re-used
  8769. after a thread dies, so a PlatformThreadRef cannot be reliably used
  8770. to distinguish a new thread from an old, dead thread.
  8771. </member>
  8772. <member name="D:base.PlatformThreadId">
  8773. Used for logging. Always an integer value.
  8774. </member>
  8775. <member name="M:cef_get_current_platform_thread_handle">
  8776. Returns the current platform thread handle.
  8777. </member>
  8778. <member name="M:cef_get_current_platform_thread_id">
  8779. Returns the current platform thread ID.
  8780. </member>
  8781. <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*)">
  8782. Add a log message. See the LogSeverity defines for supported |severity|
  8783. values.
  8784. </member>
  8785. <member name="M:cef_get_vlog_level(System.SByte!System.Runtime.CompilerServices.IsSignUnspecifiedByte!System.Runtime.CompilerServices.IsConst*,System.UInt32)">
  8786. Gets the current vlog level for the given file (usually taken from
  8787. __FILE__). Note that |N| is the size *with* the null terminator.
  8788. </member>
  8789. <member name="M:cef_get_min_log_level">
  8790. Gets the current log level.
  8791. </member>
  8792. <member name="M:base.AtomicRefCount.SubtleRefCountForDebug">
  8793. Returns the current reference count (with no barriers). This is subtle,
  8794. and should be used only for debugging.
  8795. </member>
  8796. <member name="M:base.AtomicRefCount.IsZero">
  8797. Return whether the reference count is zero. With conventional object
  8798. referencing counting, the object will be destroyed, so the reference count
  8799. should never be zero. Hence this is generally used for a debug check.
  8800. </member>
  8801. <member name="M:base.AtomicRefCount.IsOne">
  8802. Return whether the reference count is one. If the reference count is used
  8803. in the conventional way, a refrerence count of 1 implies that the current
  8804. thread owns the reference and no other thread shares it. This call
  8805. performs the test for a reference count of one, and performs the memory
  8806. barrier needed for the owning thread to act on the object, knowing that it
  8807. has exclusive access to the object.
  8808. </member>
  8809. <member name="M:base.AtomicRefCount.Decrement">
  8810. Decrement a reference count, and return whether the result is non-zero.
  8811. Insert barriers to ensure that state written before the reference count
  8812. became zero will be visible to a thread that has just made the count zero.
  8813. </member>
  8814. <member name="M:base.AtomicRefCount.Increment(System.Int32)">
  8815. Increment a reference count by "increment", which must exceed 0.
  8816. Returns the previous value of the count.
  8817. </member>
  8818. <member name="M:base.AtomicRefCount.Increment">
  8819. Increment a reference count.
  8820. Returns the previous value of the count.
  8821. </member>
  8822. <member name="M:CefResponse.SetURL(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8823. Set the resolved URL after redirects or changed as a result of HSTS.
  8824. Set the resolved URL after redirects or changed as a result of HSTS.
  8825. Set the resolved URL after redirects or changed as a result of HSTS.
  8826. </member>
  8827. <member name="M:CefResponse.GetURL">
  8828. Get the resolved URL after redirects or changed as a result of HSTS.
  8829. Get the resolved URL after redirects or changed as a result of HSTS.
  8830. Get the resolved URL after redirects or changed as a result of HSTS.
  8831. </member>
  8832. <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)">
  8833. Set all response header fields.
  8834. Set all response header fields.
  8835. Set all response header fields.
  8836. </member>
  8837. <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)">
  8838. Get all response header fields.
  8839. Get all response header fields.
  8840. Get all response header fields.
  8841. </member>
  8842. <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)">
  8843. Set the header |name| to |value|. If |overwrite| is true any existing
  8844. values will be replaced with the new value. If |overwrite| is false any
  8845. existing values will not be overwritten.
  8846. Set the header |name| to |value|. If |overwrite| is true any existing
  8847. values will be replaced with the new value. If |overwrite| is false any
  8848. existing values will not be overwritten.
  8849. Set the header |name| to |value|. If |overwrite| is true any existing
  8850. values will be replaced with the new value. If |overwrite| is false any
  8851. existing values will not be overwritten.
  8852. </member>
  8853. <member name="M:CefResponse.GetHeaderByName(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8854. Get the value for the specified response header field.
  8855. Get the value for the specified response header field.
  8856. Get the value for the specified response header field.
  8857. </member>
  8858. <member name="M:CefResponse.SetCharset(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8859. Set the response charset.
  8860. Set the response charset.
  8861. Set the response charset.
  8862. </member>
  8863. <member name="M:CefResponse.GetCharset">
  8864. Get the response charset.
  8865. Get the response charset.
  8866. Get the response charset.
  8867. </member>
  8868. <member name="M:CefResponse.SetMimeType(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8869. Set the response mime type.
  8870. Set the response mime type.
  8871. Set the response mime type.
  8872. </member>
  8873. <member name="M:CefResponse.GetMimeType">
  8874. Get the response mime type.
  8875. Get the response mime type.
  8876. Get the response mime type.
  8877. </member>
  8878. <member name="M:CefResponse.SetStatusText(CefStringBase&lt;CefStringTraitsUTF16&gt;!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)">
  8879. Set the response status text.
  8880. Set the response status text.
  8881. Set the response status text.
  8882. </member>
  8883. <member name="M:CefResponse.GetStatusText">
  8884. Get the response status text.
  8885. Get the response status text.
  8886. Get the response status text.
  8887. </member>
  8888. <member name="M:CefResponse.SetStatus(System.Int32)">
  8889. Set the response status code.
  8890. Set the response status code.
  8891. Set the response status code.
  8892. </member>
  8893. <member name="M:CefResponse.GetStatus">
  8894. Get the response status code.
  8895. Get the response status code.
  8896. Get the response status code.
  8897. </member>
  8898. <member name="M:CefResponse.SetError(cef_errorcode_t)">
  8899. Set the response error code. This can be used by custom scheme handlers
  8900. to return errors during initial request processing.
  8901. Set the response error code. This can be used by custom scheme handlers
  8902. to return errors during initial request processing.
  8903. Set the response error code. This can be used by custom scheme handlers
  8904. to return errors during initial request processing.
  8905. </member>
  8906. <member name="M:CefResponse.GetError">
  8907. Get the response error code. Returns ERR_NONE if there was no error.
  8908. Get the response error code. Returns ERR_NONE if there was no error.
  8909. Get the response error code. Returns ERR_NONE if there was no error.
  8910. </member>
  8911. <member name="M:CefResponse.IsReadOnly">
  8912. Returns true if this object is read-only.
  8913. Returns true if this object is read-only.
  8914. Returns true if this object is read-only.
  8915. </member>
  8916. <member name="M:CefResponse.Create">
  8917. Create a new CefResponse object.
  8918. Create a new CefResponse object.
  8919. Create a new CefResponse object.
  8920. </member>
  8921. <member name="T:CefResponse">
  8922. Class used to represent a web response. The methods of this class may be
  8923. called on any thread.
  8924. Class used to represent a web response. The methods of this class may be
  8925. called on any thread.
  8926. Class used to represent a web response. The methods of this class may be
  8927. called on any thread.
  8928. </member>
  8929. <member name="M:CefDownloadItem.GetMimeType">
  8930. Returns the mime type.
  8931. Returns the mime type.
  8932. </member>
  8933. <member name="M:CefDownloadItem.GetContentDisposition">
  8934. Returns the content disposition.
  8935. Returns the content disposition.
  8936. </member>
  8937. <member name="M:CefDownloadItem.GetSuggestedFileName">
  8938. Returns the suggested file name.
  8939. Returns the suggested file name.
  8940. </member>
  8941. <member name="M:CefDownloadItem.GetOriginalUrl">
  8942. Returns the original URL before any redirections.
  8943. Returns the original URL before any redirections.
  8944. </member>
  8945. <member name="M:CefDownloadItem.GetURL">
  8946. Returns the URL.
  8947. Returns the URL.
  8948. </member>
  8949. <member name="M:CefDownloadItem.GetId">
  8950. Returns the unique identifier for this download.
  8951. Returns the unique identifier for this download.
  8952. </member>
  8953. <member name="M:CefDownloadItem.GetFullPath">
  8954. Returns the full path to the downloaded or downloading file.
  8955. Returns the full path to the downloaded or downloading file.
  8956. </member>
  8957. <member name="M:CefDownloadItem.GetEndTime">
  8958. Returns the time that the download ended.
  8959. Returns the time that the download ended.
  8960. </member>
  8961. <member name="M:CefDownloadItem.GetStartTime">
  8962. Returns the time that the download started.
  8963. Returns the time that the download started.
  8964. </member>
  8965. <member name="M:CefDownloadItem.GetReceivedBytes">
  8966. Returns the number of received bytes.
  8967. Returns the number of received bytes.
  8968. </member>
  8969. <member name="M:CefDownloadItem.GetTotalBytes">
  8970. Returns the total number of bytes.
  8971. Returns the total number of bytes.
  8972. </member>
  8973. <member name="M:CefDownloadItem.GetPercentComplete">
  8974. Returns the rough percent complete or -1 if the receive total size is
  8975. unknown.
  8976. Returns the rough percent complete or -1 if the receive total size is
  8977. unknown.
  8978. </member>
  8979. <member name="M:CefDownloadItem.GetCurrentSpeed">
  8980. Returns a simple speed estimate in bytes/s.
  8981. Returns a simple speed estimate in bytes/s.
  8982. </member>
  8983. <member name="M:CefDownloadItem.IsCanceled">
  8984. Returns true if the download has been canceled or interrupted.
  8985. Returns true if the download has been canceled or interrupted.
  8986. </member>
  8987. <member name="M:CefDownloadItem.IsComplete">
  8988. Returns true if the download is complete.
  8989. Returns true if the download is complete.
  8990. </member>
  8991. <member name="M:CefDownloadItem.IsInProgress">
  8992. Returns true if the download is in progress.
  8993. Returns true if the download is in progress.
  8994. </member>
  8995. <member name="M:CefDownloadItem.IsValid">
  8996. Returns true if this object is valid. Do not call any other methods if
  8997. this function returns false.
  8998. Returns true if this object is valid. Do not call any other methods if
  8999. this function returns false.
  9000. </member>
  9001. <member name="T:CefDownloadItem">
  9002. Class used to represent a download item.
  9003. Class used to represent a download item.
  9004. </member>
  9005. <member name="T:CefSharp.CookieManager">
  9006. <exclude />
  9007. </member>
  9008. <!-- Discarding badly formed XML document comment for member 'M:_wassert(System.Char!System.Runtime.CompilerServices.IsConst*,System.Char!System.Runtime.CompilerServices.IsConst*,System.UInt32)'. -->
  9009. <!-- Discarding badly formed XML document comment for member 'T:_cef_basetime_t'. -->
  9010. <!-- Discarding badly formed XML document comment for member 'F:_cef_settings_t.browser_subprocess_path'. -->
  9011. <!-- Discarding badly formed XML document comment for member 'F:RT_PING'. -->
  9012. <!-- Discarding badly formed XML document comment for member 'F:UU_URL_SPECIAL_CHARS_EXCEPT_PATH_SEPARATORS'. -->
  9013. <!-- Discarding badly formed XML document comment for member 'M:CefFrame.GetIdentifier'. -->
  9014. <!-- 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)'. -->
  9015. <!-- Discarding badly formed XML document comment for member 'M:CefMediaRouter.GetSource(CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9016. <!-- 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>)'. -->
  9017. <!-- 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>)'. -->
  9018. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserHost.SendDevToolsMessage(System.Void!System.Runtime.CompilerServices.IsConst*,System.UInt32)'. -->
  9019. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontList(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9020. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontListAt(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9021. <!-- Discarding badly formed XML document comment for member 'M:CefRenderHandler.UpdateDragCursor(scoped_refptr<CefBrowser>,cef_drag_operations_mask_t)'. -->
  9022. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9023. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9024. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9025. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9026. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserProcessHandler.OnScheduleMessagePumpWork(System.Int64)'. -->
  9027. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9028. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9029. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9030. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9031. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontList(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9032. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontListAt(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9033. <!-- Discarding badly formed XML document comment for member 'M:CefRenderHandler.UpdateDragCursor(scoped_refptr<CefBrowser>,cef_drag_operations_mask_t)'. -->
  9034. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9035. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9036. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9037. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9038. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserProcessHandler.OnScheduleMessagePumpWork(System.Int64)'. -->
  9039. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9040. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9041. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9042. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9043. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontList(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9044. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontListAt(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9045. <!-- Discarding badly formed XML document comment for member 'M:CefRenderHandler.UpdateDragCursor(scoped_refptr<CefBrowser>,cef_drag_operations_mask_t)'. -->
  9046. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9047. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9048. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9049. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9050. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserProcessHandler.OnScheduleMessagePumpWork(System.Int64)'. -->
  9051. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontList(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9052. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontListAt(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9053. <!-- Discarding badly formed XML document comment for member 'M:CefRenderHandler.UpdateDragCursor(scoped_refptr<CefBrowser>,cef_drag_operations_mask_t)'. -->
  9054. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9055. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9056. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9057. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9058. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserProcessHandler.OnScheduleMessagePumpWork(System.Int64)'. -->
  9059. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontList(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9060. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontListAt(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9061. <!-- Discarding badly formed XML document comment for member 'M:CefRenderHandler.UpdateDragCursor(scoped_refptr<CefBrowser>,cef_drag_operations_mask_t)'. -->
  9062. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9063. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9064. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9065. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9066. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserProcessHandler.OnScheduleMessagePumpWork(System.Int64)'. -->
  9067. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontList(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9068. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontListAt(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9069. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9070. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9071. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9072. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9073. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9074. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9075. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9076. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9077. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9078. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9079. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9080. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9081. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontList(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9082. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontListAt(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9083. <!-- Discarding badly formed XML document comment for member 'M:CefRenderHandler.UpdateDragCursor(scoped_refptr<CefBrowser>,cef_drag_operations_mask_t)'. -->
  9084. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserProcessHandler.OnScheduleMessagePumpWork(System.Int64)'. -->
  9085. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9086. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9087. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9088. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9089. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontList(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9090. <!-- Discarding badly formed XML document comment for member 'M:CefMenuModel.SetFontListAt(System.Int32,CefStringBase<CefStringTraitsUTF16>!System.Runtime.CompilerServices.IsConst*!System.Runtime.CompilerServices.IsImplicitlyDereferenced)'. -->
  9091. <!-- Discarding badly formed XML document comment for member 'M:CefRenderHandler.UpdateDragCursor(scoped_refptr<CefBrowser>,cef_drag_operations_mask_t)'. -->
  9092. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9093. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9094. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9095. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9096. <!-- Discarding badly formed XML document comment for member 'M:CefBrowserProcessHandler.OnScheduleMessagePumpWork(System.Int64)'. -->
  9097. <!-- Discarding badly formed XML document comment for member 'M:CefResourceSkipCallback.Continue(System.Int64)'. -->
  9098. <!-- Discarding badly formed XML document comment for member 'M:CefResourceReadCallback.Continue(System.Int32)'. -->
  9099. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Skip(System.Int64,System.Int64*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceSkipCallback>)'. -->
  9100. <!-- Discarding badly formed XML document comment for member 'M:CefResourceHandler.Read(System.Void*,System.Int32,System.Int32*!System.Runtime.CompilerServices.IsImplicitlyDereferenced,scoped_refptr<CefResourceReadCallback>)'. -->
  9101. </members>
  9102. </doc>