UnityEngine.UnityWebRequestModule.cpp 363 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366
  1. #include "il2cpp-config.h"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <cstring>
  8. #include <string.h>
  9. #include <stdio.h>
  10. #include <cmath>
  11. #include <limits>
  12. #include <assert.h>
  13. #include <stdint.h>
  14. #include "codegen/il2cpp-codegen.h"
  15. #include "il2cpp-object-internals.h"
  16. template <typename R, typename T1>
  17. struct VirtFuncInvoker1
  18. {
  19. typedef R (*Func)(void*, T1, const RuntimeMethod*);
  20. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  21. {
  22. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  23. return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
  24. }
  25. };
  26. template <typename R>
  27. struct VirtFuncInvoker0
  28. {
  29. typedef R (*Func)(void*, const RuntimeMethod*);
  30. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  31. {
  32. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  33. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  34. }
  35. };
  36. template <typename R, typename T1, typename T2, typename T3>
  37. struct VirtFuncInvoker3
  38. {
  39. typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
  40. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
  41. {
  42. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  43. return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
  44. }
  45. };
  46. template <typename T1>
  47. struct VirtActionInvoker1
  48. {
  49. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  50. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  51. {
  52. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  53. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  54. }
  55. };
  56. template <typename T1, typename T2, typename T3>
  57. struct VirtActionInvoker3
  58. {
  59. typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
  60. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
  61. {
  62. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  63. ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
  64. }
  65. };
  66. struct InterfaceActionInvoker0
  67. {
  68. typedef void (*Action)(void*, const RuntimeMethod*);
  69. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  70. {
  71. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  72. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  73. }
  74. };
  75. // System.Action`1<UnityEngine.AsyncOperation>
  76. struct Action_1_tCBF754C290FAE894631BED8FD56E9E22C4C187F9;
  77. // System.ArgumentException
  78. struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
  79. // System.AsyncCallback
  80. struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
  81. // System.Byte[]
  82. struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
  83. // System.Char[]
  84. struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
  85. // System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>
  86. struct LinkedList_1_t44CA4EB2162DC04F96F29C8A68A05D05166137F7;
  87. // System.Collections.Hashtable
  88. struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9;
  89. // System.Collections.IDictionary
  90. struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
  91. // System.DelegateData
  92. struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
  93. // System.Delegate[]
  94. struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
  95. // System.Diagnostics.StackTrace[]
  96. struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
  97. // System.Globalization.CodePageDataItem
  98. struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB;
  99. // System.IAsyncResult
  100. struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
  101. // System.IO.MemoryStream
  102. struct MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C;
  103. // System.IO.Stream/ReadWriteTask
  104. struct ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80;
  105. // System.IntPtr[]
  106. struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
  107. // System.InvalidOperationException
  108. struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1;
  109. // System.Reflection.MethodInfo
  110. struct MethodInfo_t;
  111. // System.Runtime.Serialization.SafeSerializationManager
  112. struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
  113. // System.String
  114. struct String_t;
  115. // System.String[]
  116. struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
  117. // System.Text.DecoderFallback
  118. struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60;
  119. // System.Text.EncoderFallback
  120. struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63;
  121. // System.Text.Encoding
  122. struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4;
  123. // System.Text.RegularExpressions.ExclusiveReference
  124. struct ExclusiveReference_t39E202CDB13A1E6EBA4CE0C7548B192CEB5C64DB;
  125. // System.Text.RegularExpressions.Regex
  126. struct Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF;
  127. // System.Text.RegularExpressions.RegexCode
  128. struct RegexCode_t12846533CAD1E4221CEDF5A4D15D4D649EA688FA;
  129. // System.Text.RegularExpressions.RegexRunnerFactory
  130. struct RegexRunnerFactory_t0703F390E2102623B0189DEC095DB182698E404B;
  131. // System.Text.RegularExpressions.SharedReference
  132. struct SharedReference_t225BA5C249F9F1D6C959F151695BDF65EF2C92A5;
  133. // System.Text.StringBuilder
  134. struct StringBuilder_t;
  135. // System.Threading.SemaphoreSlim
  136. struct SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048;
  137. // System.Threading.Tasks.Task`1<System.Int32>
  138. struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87;
  139. // System.Uri
  140. struct Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E;
  141. // System.Uri/UriInfo
  142. struct UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E;
  143. // System.UriParser
  144. struct UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC;
  145. // System.Void
  146. struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
  147. // UnityEngine.AsyncOperation
  148. struct AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D;
  149. // UnityEngine.Networking.CertificateHandler
  150. struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0;
  151. // UnityEngine.Networking.DownloadHandler
  152. struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9;
  153. // UnityEngine.Networking.DownloadHandlerBuffer
  154. struct DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255;
  155. // UnityEngine.Networking.UnityWebRequest
  156. struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129;
  157. // UnityEngine.Networking.UnityWebRequestAsyncOperation
  158. struct UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353;
  159. // UnityEngine.Networking.UploadHandler
  160. struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4;
  161. // UnityEngine.Networking.UploadHandlerRaw
  162. struct UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27;
  163. IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var;
  164. IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var;
  165. IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var;
  166. IL2CPP_EXTERN_C RuntimeClass* Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var;
  167. IL2CPP_EXTERN_C RuntimeClass* DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_il2cpp_TypeInfo_var;
  168. IL2CPP_EXTERN_C RuntimeClass* FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var;
  169. IL2CPP_EXTERN_C RuntimeClass* GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var;
  170. IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var;
  171. IL2CPP_EXTERN_C RuntimeClass* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var;
  172. IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
  173. IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var;
  174. IL2CPP_EXTERN_C RuntimeClass* Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var;
  175. IL2CPP_EXTERN_C RuntimeClass* MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C_il2cpp_TypeInfo_var;
  176. IL2CPP_EXTERN_C RuntimeClass* Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_il2cpp_TypeInfo_var;
  177. IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
  178. IL2CPP_EXTERN_C RuntimeClass* UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_il2cpp_TypeInfo_var;
  179. IL2CPP_EXTERN_C RuntimeClass* UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_il2cpp_TypeInfo_var;
  180. IL2CPP_EXTERN_C RuntimeClass* Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var;
  181. IL2CPP_EXTERN_C RuntimeClass* WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var;
  182. IL2CPP_EXTERN_C RuntimeClass* WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_il2cpp_TypeInfo_var;
  183. IL2CPP_EXTERN_C String_t* _stringLiteral091B0CE42EB0BD96169EA00B16DD938F6D63AC95;
  184. IL2CPP_EXTERN_C String_t* _stringLiteral1C5E5F29CEB079B561835055FFA20C2E0B53F397;
  185. IL2CPP_EXTERN_C String_t* _stringLiteral2E202793DA456513F1E823D3CE20D84EF57C1E73;
  186. IL2CPP_EXTERN_C String_t* _stringLiteral38263C0B87E5FC0881F12EF855C8F694115D8213;
  187. IL2CPP_EXTERN_C String_t* _stringLiteral42099B4AF021E53FD8FD4E056C2568D7C2E3FFA8;
  188. IL2CPP_EXTERN_C String_t* _stringLiteral4345CB1FA27885A8FBFE7C0C830A592CC76A552B;
  189. IL2CPP_EXTERN_C String_t* _stringLiteral4DD76F7BD318A8B909BC0FF86CA3BE3625DA0374;
  190. IL2CPP_EXTERN_C String_t* _stringLiteral4E5057793E1875AA08F21BE7F738453AD461E5F0;
  191. IL2CPP_EXTERN_C String_t* _stringLiteral56F03F5F25FB2048BF4AB5FBBF7B5E3D39A3ECEB;
  192. IL2CPP_EXTERN_C String_t* _stringLiteral61FF81C30AA3C76E78AFEA62B2E3BD1DFA49E854;
  193. IL2CPP_EXTERN_C String_t* _stringLiteral70EE7E18113E0328AAE2B1D5D212C2735F1C00F8;
  194. IL2CPP_EXTERN_C String_t* _stringLiteral7138A51661947B19B5088DA5A2BFEDE2876F49B9;
  195. IL2CPP_EXTERN_C String_t* _stringLiteral81D42CE01525C0213D5284260BDB58819D046FB9;
  196. IL2CPP_EXTERN_C String_t* _stringLiteral88DADF72F0A8F76B45A836CE12A3DC82857776DB;
  197. IL2CPP_EXTERN_C String_t* _stringLiteral947518D877FB275850A375D795BE6A44C27AB526;
  198. IL2CPP_EXTERN_C String_t* _stringLiteral986F2ED15C79ED805000ECCD85519810B2DB2A93;
  199. IL2CPP_EXTERN_C String_t* _stringLiteralA288E90C6C4E12B4E76A10851EF1ABD903F1EAE7;
  200. IL2CPP_EXTERN_C String_t* _stringLiteralA58AA001D4152D20F7F8E0809B9CD782BE38A82C;
  201. IL2CPP_EXTERN_C String_t* _stringLiteralA91E4897CA9F429677AFC57ED00D90DE8D3C7001;
  202. IL2CPP_EXTERN_C String_t* _stringLiteralAEA05C1AAB9D42F987C023592D1AF2F1D8403D2F;
  203. IL2CPP_EXTERN_C String_t* _stringLiteralBEDBFCA635D617975AC8C4A6D1FBC9714BC86399;
  204. IL2CPP_EXTERN_C String_t* _stringLiteralCE27CB141098FEB00714E758646BE3E99C185B71;
  205. IL2CPP_EXTERN_C String_t* _stringLiteralD953731CD3AE7D9E5F32ADAB3A935068E83C5BB2;
  206. IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  207. IL2CPP_EXTERN_C String_t* _stringLiteralDCB16D9AACB079FE42FBDE349C3319DE8033DDD1;
  208. IL2CPP_EXTERN_C String_t* _stringLiteralE3D6849AF2EC582D2E5BA2EE543CA6818D1B03AC;
  209. IL2CPP_EXTERN_C String_t* _stringLiteralEF81042E1E86ACB765718EA37393A1292452BBCC;
  210. IL2CPP_EXTERN_C String_t* _stringLiteralF030BBBD32966CDE41037B98A8849C46B76E4BC1;
  211. IL2CPP_EXTERN_C String_t* _stringLiteralF37BF1E2A7C84A010A6E65E2E41A03F1C044F04B;
  212. IL2CPP_EXTERN_C String_t* _stringLiteralF6C97A7F64063CFEE7C2DC2157847204D4DBF093;
  213. IL2CPP_EXTERN_C String_t* _stringLiteralF80B07414273FEB6D1B5EAB1E91186C7CE65DE24;
  214. IL2CPP_EXTERN_C String_t* _stringLiteralF92E777F4341930BAD9B2422283C4680D00DBC06;
  215. IL2CPP_EXTERN_C String_t* _stringLiteralFE5567E8D769550852182CDF69D74BB16DFF8E29;
  216. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetCustomMethod_mE9F0C84C6DCD5412AEDD76280EEC4FB82516EF16_RuntimeMethod_var;
  217. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9_RuntimeMethod_var;
  218. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetUrl_m2E2C837A6F32065CAAAF6EFA7D0237C9E206689A_RuntimeMethod_var;
  219. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309_RuntimeMethod_var;
  220. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_chunkedTransfer_mA453AD2975C8B488B9A84C8FD3205AC20DA96430_RuntimeMethod_var;
  221. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E_RuntimeMethod_var;
  222. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_method_mF2DAC86EB05D65B9BCB52056B7CBB2C1AD87EEC6_RuntimeMethod_var;
  223. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_timeout_mA80432BD1798C9227EAE77554A795293072C6E1F_RuntimeMethod_var;
  224. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1_RuntimeMethod_var;
  225. IL2CPP_EXTERN_C const RuntimeMethod* UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935_RuntimeMethod_var;
  226. IL2CPP_EXTERN_C const RuntimeMethod* WebRequestUtils_MakeInitialUrl_m446CCE4EFB276BE27A9380D55B9E704D01107B83_RuntimeMethod_var;
  227. IL2CPP_EXTERN_C const uint32_t CertificateHandler_Dispose_m9C71BAA51760FDF05AB999B6AB6E6BC71BCB8CA0_MetadataUsageId;
  228. IL2CPP_EXTERN_C const uint32_t DownloadHandler_Dispose_m7478E72B2DBA4B55FAA25F7A1975A13BA5891D4B_MetadataUsageId;
  229. IL2CPP_EXTERN_C const uint32_t DownloadHandler_GetTextEncoder_m601540FD9D16122709582833632A9DEEDBF07E64_MetadataUsageId;
  230. IL2CPP_EXTERN_C const uint32_t DownloadHandler_GetText_mA51553E65D6A397E07AAAC21214C817AD72550FD_MetadataUsageId;
  231. IL2CPP_EXTERN_C const uint32_t UnityWebRequest_Dispose_m6AFA87DA329282058723E5ACE016B0B08CFE806D_MetadataUsageId;
  232. IL2CPP_EXTERN_C const uint32_t UnityWebRequest_Get_mF4E12AA47AAF25221AD738B434B0EA8D40659B18_MetadataUsageId;
  233. IL2CPP_EXTERN_C const uint32_t UnityWebRequest_InternalDestroy_mF5D7484808AEAE24A43B678614D257FBF885026B_MetadataUsageId;
  234. IL2CPP_EXTERN_C const uint32_t UnityWebRequest_InternalSetCustomMethod_mE9F0C84C6DCD5412AEDD76280EEC4FB82516EF16_MetadataUsageId;
  235. IL2CPP_EXTERN_C const uint32_t UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9_MetadataUsageId;
  236. IL2CPP_EXTERN_C const uint32_t UnityWebRequest_InternalSetUrl_m2E2C837A6F32065CAAAF6EFA7D0237C9E206689A_MetadataUsageId;
  237. IL2CPP_EXTERN_C const uint32_t UnityWebRequest_Post_m677069528E4C23CF91208E5A66D672568EDE17E5_MetadataUsageId;
  238. IL2CPP_EXTERN_C const uint32_t UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309_MetadataUsageId;
  239. IL2CPP_EXTERN_C const uint32_t UnityWebRequest_SetupPost_mAB03D6DF06B96684D7E1A25449868CD4D1AABA57_MetadataUsageId;
  240. IL2CPP_EXTERN_C const uint32_t UnityWebRequest_get_error_mC79FE2460B3F30B8F9E5385BD7D2B4C5B295D7CC_MetadataUsageId;
  241. IL2CPP_EXTERN_C const uint32_t UnityWebRequest_set_chunkedTransfer_mA453AD2975C8B488B9A84C8FD3205AC20DA96430_MetadataUsageId;
  242. IL2CPP_EXTERN_C const uint32_t UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E_MetadataUsageId;
  243. IL2CPP_EXTERN_C const uint32_t UnityWebRequest_set_method_mF2DAC86EB05D65B9BCB52056B7CBB2C1AD87EEC6_MetadataUsageId;
  244. IL2CPP_EXTERN_C const uint32_t UnityWebRequest_set_timeout_mA80432BD1798C9227EAE77554A795293072C6E1F_MetadataUsageId;
  245. IL2CPP_EXTERN_C const uint32_t UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1_MetadataUsageId;
  246. IL2CPP_EXTERN_C const uint32_t UnityWebRequest_set_url_mA698FD94C447FF7C1C429D50C2EBAEEDD473007D_MetadataUsageId;
  247. IL2CPP_EXTERN_C const uint32_t UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935_MetadataUsageId;
  248. IL2CPP_EXTERN_C const uint32_t UploadHandler_Dispose_m9BBE8D7D2BBAAC2DE84B52BADA0B79CEA6F2DAB2_MetadataUsageId;
  249. IL2CPP_EXTERN_C const uint32_t WWWTranscoder_Byte2Hex_mA129675BFEDFED879713DAB1592772BC52FA04FB_MetadataUsageId;
  250. IL2CPP_EXTERN_C const uint32_t WWWTranscoder_DataEncode_m991CA7AD8C98345736244A24979E440E23E5035A_MetadataUsageId;
  251. IL2CPP_EXTERN_C const uint32_t WWWTranscoder_Decode_m2533830DAAAE6F33AA6EE85A5BF63C96F5D631D4_MetadataUsageId;
  252. IL2CPP_EXTERN_C const uint32_t WWWTranscoder_Encode_m2D65124BA0FF6E92A66B5804596B75898068CF84_MetadataUsageId;
  253. IL2CPP_EXTERN_C const uint32_t WWWTranscoder_URLDecode_m591A567154B1B8737ECBFE065AF4FCA59217F5D8_MetadataUsageId;
  254. IL2CPP_EXTERN_C const uint32_t WWWTranscoder__cctor_m3436CCA2D8667A6BCF6981B6573EF048BDA49F51_MetadataUsageId;
  255. IL2CPP_EXTERN_C const uint32_t WebRequestUtils_MakeInitialUrl_m446CCE4EFB276BE27A9380D55B9E704D01107B83_MetadataUsageId;
  256. IL2CPP_EXTERN_C const uint32_t WebRequestUtils_MakeUriString_m5693EA04230335B9611278EFC189BD58339D01E4_MetadataUsageId;
  257. IL2CPP_EXTERN_C const uint32_t WebRequestUtils_RedirectTo_m8AC7C0BFC562550118F6FF4AE218898717E922C1_MetadataUsageId;
  258. IL2CPP_EXTERN_C const uint32_t WebRequestUtils_URLDecode_m3F75FA29F50FB340B93815988517E9208C52EE62_MetadataUsageId;
  259. IL2CPP_EXTERN_C const uint32_t WebRequestUtils__cctor_m31EB3E45EC49AB6B33C7A10F79F1CD4FF2BE715A_MetadataUsageId;
  260. struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0;;
  261. struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com;
  262. struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com;;
  263. struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke;
  264. struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke;;
  265. struct Delegate_t_marshaled_com;
  266. struct Delegate_t_marshaled_pinvoke;
  267. struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9;;
  268. struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com;
  269. struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com;;
  270. struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke;
  271. struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke;;
  272. struct Exception_t_marshaled_com;
  273. struct Exception_t_marshaled_pinvoke;
  274. struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129;;
  275. struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com;
  276. struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com;;
  277. struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke;
  278. struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke;;
  279. struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4;;
  280. struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com;
  281. struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com;;
  282. struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke;
  283. struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke;;
  284. struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
  285. struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
  286. IL2CPP_EXTERN_C_BEGIN
  287. IL2CPP_EXTERN_C_END
  288. #ifdef __clang__
  289. #pragma clang diagnostic push
  290. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  291. #pragma clang diagnostic ignored "-Wunused-variable"
  292. #endif
  293. // <Module>
  294. struct U3CModuleU3E_t2FBFFC67F8D6B1FA13284515F9BBD8C9333B5C86
  295. {
  296. public:
  297. public:
  298. };
  299. // System.Object
  300. struct Il2CppArrayBounds;
  301. // System.Array
  302. // System.MarshalByRefObject
  303. struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF : public RuntimeObject
  304. {
  305. public:
  306. // System.Object System.MarshalByRefObject::_identity
  307. RuntimeObject * ____identity_0;
  308. public:
  309. inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF, ____identity_0)); }
  310. inline RuntimeObject * get__identity_0() const { return ____identity_0; }
  311. inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; }
  312. inline void set__identity_0(RuntimeObject * value)
  313. {
  314. ____identity_0 = value;
  315. Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value);
  316. }
  317. };
  318. // Native definition for P/Invoke marshalling of System.MarshalByRefObject
  319. struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke
  320. {
  321. Il2CppIUnknown* ____identity_0;
  322. };
  323. // Native definition for COM marshalling of System.MarshalByRefObject
  324. struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com
  325. {
  326. Il2CppIUnknown* ____identity_0;
  327. };
  328. // System.String
  329. struct String_t : public RuntimeObject
  330. {
  331. public:
  332. // System.Int32 System.String::m_stringLength
  333. int32_t ___m_stringLength_0;
  334. // System.Char System.String::m_firstChar
  335. Il2CppChar ___m_firstChar_1;
  336. public:
  337. inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
  338. inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
  339. inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
  340. inline void set_m_stringLength_0(int32_t value)
  341. {
  342. ___m_stringLength_0 = value;
  343. }
  344. inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
  345. inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
  346. inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
  347. inline void set_m_firstChar_1(Il2CppChar value)
  348. {
  349. ___m_firstChar_1 = value;
  350. }
  351. };
  352. struct String_t_StaticFields
  353. {
  354. public:
  355. // System.String System.String::Empty
  356. String_t* ___Empty_5;
  357. public:
  358. inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
  359. inline String_t* get_Empty_5() const { return ___Empty_5; }
  360. inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
  361. inline void set_Empty_5(String_t* value)
  362. {
  363. ___Empty_5 = value;
  364. Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
  365. }
  366. };
  367. // System.Text.Encoding
  368. struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 : public RuntimeObject
  369. {
  370. public:
  371. // System.Int32 System.Text.Encoding::m_codePage
  372. int32_t ___m_codePage_9;
  373. // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem
  374. CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * ___dataItem_10;
  375. // System.Boolean System.Text.Encoding::m_deserializedFromEverett
  376. bool ___m_deserializedFromEverett_11;
  377. // System.Boolean System.Text.Encoding::m_isReadOnly
  378. bool ___m_isReadOnly_12;
  379. // System.Text.EncoderFallback System.Text.Encoding::encoderFallback
  380. EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___encoderFallback_13;
  381. // System.Text.DecoderFallback System.Text.Encoding::decoderFallback
  382. DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___decoderFallback_14;
  383. public:
  384. inline static int32_t get_offset_of_m_codePage_9() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_codePage_9)); }
  385. inline int32_t get_m_codePage_9() const { return ___m_codePage_9; }
  386. inline int32_t* get_address_of_m_codePage_9() { return &___m_codePage_9; }
  387. inline void set_m_codePage_9(int32_t value)
  388. {
  389. ___m_codePage_9 = value;
  390. }
  391. inline static int32_t get_offset_of_dataItem_10() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___dataItem_10)); }
  392. inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * get_dataItem_10() const { return ___dataItem_10; }
  393. inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB ** get_address_of_dataItem_10() { return &___dataItem_10; }
  394. inline void set_dataItem_10(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * value)
  395. {
  396. ___dataItem_10 = value;
  397. Il2CppCodeGenWriteBarrier((void**)(&___dataItem_10), (void*)value);
  398. }
  399. inline static int32_t get_offset_of_m_deserializedFromEverett_11() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_deserializedFromEverett_11)); }
  400. inline bool get_m_deserializedFromEverett_11() const { return ___m_deserializedFromEverett_11; }
  401. inline bool* get_address_of_m_deserializedFromEverett_11() { return &___m_deserializedFromEverett_11; }
  402. inline void set_m_deserializedFromEverett_11(bool value)
  403. {
  404. ___m_deserializedFromEverett_11 = value;
  405. }
  406. inline static int32_t get_offset_of_m_isReadOnly_12() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_isReadOnly_12)); }
  407. inline bool get_m_isReadOnly_12() const { return ___m_isReadOnly_12; }
  408. inline bool* get_address_of_m_isReadOnly_12() { return &___m_isReadOnly_12; }
  409. inline void set_m_isReadOnly_12(bool value)
  410. {
  411. ___m_isReadOnly_12 = value;
  412. }
  413. inline static int32_t get_offset_of_encoderFallback_13() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___encoderFallback_13)); }
  414. inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_encoderFallback_13() const { return ___encoderFallback_13; }
  415. inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_encoderFallback_13() { return &___encoderFallback_13; }
  416. inline void set_encoderFallback_13(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value)
  417. {
  418. ___encoderFallback_13 = value;
  419. Il2CppCodeGenWriteBarrier((void**)(&___encoderFallback_13), (void*)value);
  420. }
  421. inline static int32_t get_offset_of_decoderFallback_14() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___decoderFallback_14)); }
  422. inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_decoderFallback_14() const { return ___decoderFallback_14; }
  423. inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_decoderFallback_14() { return &___decoderFallback_14; }
  424. inline void set_decoderFallback_14(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value)
  425. {
  426. ___decoderFallback_14 = value;
  427. Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_14), (void*)value);
  428. }
  429. };
  430. struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields
  431. {
  432. public:
  433. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding
  434. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___defaultEncoding_0;
  435. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding
  436. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___unicodeEncoding_1;
  437. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode
  438. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___bigEndianUnicode_2;
  439. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding
  440. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf7Encoding_3;
  441. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding
  442. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf8Encoding_4;
  443. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding
  444. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf32Encoding_5;
  445. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding
  446. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___asciiEncoding_6;
  447. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding
  448. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___latin1Encoding_7;
  449. // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings
  450. Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___encodings_8;
  451. // System.Object System.Text.Encoding::s_InternalSyncObject
  452. RuntimeObject * ___s_InternalSyncObject_15;
  453. public:
  454. inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___defaultEncoding_0)); }
  455. inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_defaultEncoding_0() const { return ___defaultEncoding_0; }
  456. inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; }
  457. inline void set_defaultEncoding_0(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
  458. {
  459. ___defaultEncoding_0 = value;
  460. Il2CppCodeGenWriteBarrier((void**)(&___defaultEncoding_0), (void*)value);
  461. }
  462. inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___unicodeEncoding_1)); }
  463. inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; }
  464. inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; }
  465. inline void set_unicodeEncoding_1(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
  466. {
  467. ___unicodeEncoding_1 = value;
  468. Il2CppCodeGenWriteBarrier((void**)(&___unicodeEncoding_1), (void*)value);
  469. }
  470. inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___bigEndianUnicode_2)); }
  471. inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; }
  472. inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; }
  473. inline void set_bigEndianUnicode_2(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
  474. {
  475. ___bigEndianUnicode_2 = value;
  476. Il2CppCodeGenWriteBarrier((void**)(&___bigEndianUnicode_2), (void*)value);
  477. }
  478. inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf7Encoding_3)); }
  479. inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf7Encoding_3() const { return ___utf7Encoding_3; }
  480. inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; }
  481. inline void set_utf7Encoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
  482. {
  483. ___utf7Encoding_3 = value;
  484. Il2CppCodeGenWriteBarrier((void**)(&___utf7Encoding_3), (void*)value);
  485. }
  486. inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf8Encoding_4)); }
  487. inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf8Encoding_4() const { return ___utf8Encoding_4; }
  488. inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; }
  489. inline void set_utf8Encoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
  490. {
  491. ___utf8Encoding_4 = value;
  492. Il2CppCodeGenWriteBarrier((void**)(&___utf8Encoding_4), (void*)value);
  493. }
  494. inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf32Encoding_5)); }
  495. inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf32Encoding_5() const { return ___utf32Encoding_5; }
  496. inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; }
  497. inline void set_utf32Encoding_5(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
  498. {
  499. ___utf32Encoding_5 = value;
  500. Il2CppCodeGenWriteBarrier((void**)(&___utf32Encoding_5), (void*)value);
  501. }
  502. inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___asciiEncoding_6)); }
  503. inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_asciiEncoding_6() const { return ___asciiEncoding_6; }
  504. inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; }
  505. inline void set_asciiEncoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
  506. {
  507. ___asciiEncoding_6 = value;
  508. Il2CppCodeGenWriteBarrier((void**)(&___asciiEncoding_6), (void*)value);
  509. }
  510. inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___latin1Encoding_7)); }
  511. inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_latin1Encoding_7() const { return ___latin1Encoding_7; }
  512. inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; }
  513. inline void set_latin1Encoding_7(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
  514. {
  515. ___latin1Encoding_7 = value;
  516. Il2CppCodeGenWriteBarrier((void**)(&___latin1Encoding_7), (void*)value);
  517. }
  518. inline static int32_t get_offset_of_encodings_8() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___encodings_8)); }
  519. inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_encodings_8() const { return ___encodings_8; }
  520. inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_encodings_8() { return &___encodings_8; }
  521. inline void set_encodings_8(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
  522. {
  523. ___encodings_8 = value;
  524. Il2CppCodeGenWriteBarrier((void**)(&___encodings_8), (void*)value);
  525. }
  526. inline static int32_t get_offset_of_s_InternalSyncObject_15() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___s_InternalSyncObject_15)); }
  527. inline RuntimeObject * get_s_InternalSyncObject_15() const { return ___s_InternalSyncObject_15; }
  528. inline RuntimeObject ** get_address_of_s_InternalSyncObject_15() { return &___s_InternalSyncObject_15; }
  529. inline void set_s_InternalSyncObject_15(RuntimeObject * value)
  530. {
  531. ___s_InternalSyncObject_15 = value;
  532. Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_15), (void*)value);
  533. }
  534. };
  535. // System.Text.StringBuilder
  536. struct StringBuilder_t : public RuntimeObject
  537. {
  538. public:
  539. // System.Char[] System.Text.StringBuilder::m_ChunkChars
  540. CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0;
  541. // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
  542. StringBuilder_t * ___m_ChunkPrevious_1;
  543. // System.Int32 System.Text.StringBuilder::m_ChunkLength
  544. int32_t ___m_ChunkLength_2;
  545. // System.Int32 System.Text.StringBuilder::m_ChunkOffset
  546. int32_t ___m_ChunkOffset_3;
  547. // System.Int32 System.Text.StringBuilder::m_MaxCapacity
  548. int32_t ___m_MaxCapacity_4;
  549. public:
  550. inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); }
  551. inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; }
  552. inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; }
  553. inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
  554. {
  555. ___m_ChunkChars_0 = value;
  556. Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value);
  557. }
  558. inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); }
  559. inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; }
  560. inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; }
  561. inline void set_m_ChunkPrevious_1(StringBuilder_t * value)
  562. {
  563. ___m_ChunkPrevious_1 = value;
  564. Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value);
  565. }
  566. inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); }
  567. inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; }
  568. inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; }
  569. inline void set_m_ChunkLength_2(int32_t value)
  570. {
  571. ___m_ChunkLength_2 = value;
  572. }
  573. inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); }
  574. inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; }
  575. inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; }
  576. inline void set_m_ChunkOffset_3(int32_t value)
  577. {
  578. ___m_ChunkOffset_3 = value;
  579. }
  580. inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); }
  581. inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; }
  582. inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; }
  583. inline void set_m_MaxCapacity_4(int32_t value)
  584. {
  585. ___m_MaxCapacity_4 = value;
  586. }
  587. };
  588. // System.ValueType
  589. struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
  590. {
  591. public:
  592. public:
  593. };
  594. // Native definition for P/Invoke marshalling of System.ValueType
  595. struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke
  596. {
  597. };
  598. // Native definition for COM marshalling of System.ValueType
  599. struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com
  600. {
  601. };
  602. // UnityEngine.WWWForm
  603. struct WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 : public RuntimeObject
  604. {
  605. public:
  606. public:
  607. };
  608. // UnityEngine.WWWTranscoder
  609. struct WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61 : public RuntimeObject
  610. {
  611. public:
  612. public:
  613. };
  614. struct WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields
  615. {
  616. public:
  617. // System.Byte[] UnityEngine.WWWTranscoder::ucHexChars
  618. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___ucHexChars_0;
  619. // System.Byte[] UnityEngine.WWWTranscoder::lcHexChars
  620. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___lcHexChars_1;
  621. // System.Byte UnityEngine.WWWTranscoder::urlEscapeChar
  622. uint8_t ___urlEscapeChar_2;
  623. // System.Byte[] UnityEngine.WWWTranscoder::urlSpace
  624. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___urlSpace_3;
  625. // System.Byte[] UnityEngine.WWWTranscoder::dataSpace
  626. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___dataSpace_4;
  627. // System.Byte[] UnityEngine.WWWTranscoder::urlForbidden
  628. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___urlForbidden_5;
  629. // System.Byte UnityEngine.WWWTranscoder::qpEscapeChar
  630. uint8_t ___qpEscapeChar_6;
  631. // System.Byte[] UnityEngine.WWWTranscoder::qpSpace
  632. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___qpSpace_7;
  633. // System.Byte[] UnityEngine.WWWTranscoder::qpForbidden
  634. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___qpForbidden_8;
  635. public:
  636. inline static int32_t get_offset_of_ucHexChars_0() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___ucHexChars_0)); }
  637. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_ucHexChars_0() const { return ___ucHexChars_0; }
  638. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_ucHexChars_0() { return &___ucHexChars_0; }
  639. inline void set_ucHexChars_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
  640. {
  641. ___ucHexChars_0 = value;
  642. Il2CppCodeGenWriteBarrier((void**)(&___ucHexChars_0), (void*)value);
  643. }
  644. inline static int32_t get_offset_of_lcHexChars_1() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___lcHexChars_1)); }
  645. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_lcHexChars_1() const { return ___lcHexChars_1; }
  646. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_lcHexChars_1() { return &___lcHexChars_1; }
  647. inline void set_lcHexChars_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
  648. {
  649. ___lcHexChars_1 = value;
  650. Il2CppCodeGenWriteBarrier((void**)(&___lcHexChars_1), (void*)value);
  651. }
  652. inline static int32_t get_offset_of_urlEscapeChar_2() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___urlEscapeChar_2)); }
  653. inline uint8_t get_urlEscapeChar_2() const { return ___urlEscapeChar_2; }
  654. inline uint8_t* get_address_of_urlEscapeChar_2() { return &___urlEscapeChar_2; }
  655. inline void set_urlEscapeChar_2(uint8_t value)
  656. {
  657. ___urlEscapeChar_2 = value;
  658. }
  659. inline static int32_t get_offset_of_urlSpace_3() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___urlSpace_3)); }
  660. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_urlSpace_3() const { return ___urlSpace_3; }
  661. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_urlSpace_3() { return &___urlSpace_3; }
  662. inline void set_urlSpace_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
  663. {
  664. ___urlSpace_3 = value;
  665. Il2CppCodeGenWriteBarrier((void**)(&___urlSpace_3), (void*)value);
  666. }
  667. inline static int32_t get_offset_of_dataSpace_4() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___dataSpace_4)); }
  668. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_dataSpace_4() const { return ___dataSpace_4; }
  669. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_dataSpace_4() { return &___dataSpace_4; }
  670. inline void set_dataSpace_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
  671. {
  672. ___dataSpace_4 = value;
  673. Il2CppCodeGenWriteBarrier((void**)(&___dataSpace_4), (void*)value);
  674. }
  675. inline static int32_t get_offset_of_urlForbidden_5() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___urlForbidden_5)); }
  676. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_urlForbidden_5() const { return ___urlForbidden_5; }
  677. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_urlForbidden_5() { return &___urlForbidden_5; }
  678. inline void set_urlForbidden_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
  679. {
  680. ___urlForbidden_5 = value;
  681. Il2CppCodeGenWriteBarrier((void**)(&___urlForbidden_5), (void*)value);
  682. }
  683. inline static int32_t get_offset_of_qpEscapeChar_6() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___qpEscapeChar_6)); }
  684. inline uint8_t get_qpEscapeChar_6() const { return ___qpEscapeChar_6; }
  685. inline uint8_t* get_address_of_qpEscapeChar_6() { return &___qpEscapeChar_6; }
  686. inline void set_qpEscapeChar_6(uint8_t value)
  687. {
  688. ___qpEscapeChar_6 = value;
  689. }
  690. inline static int32_t get_offset_of_qpSpace_7() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___qpSpace_7)); }
  691. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_qpSpace_7() const { return ___qpSpace_7; }
  692. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_qpSpace_7() { return &___qpSpace_7; }
  693. inline void set_qpSpace_7(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
  694. {
  695. ___qpSpace_7 = value;
  696. Il2CppCodeGenWriteBarrier((void**)(&___qpSpace_7), (void*)value);
  697. }
  698. inline static int32_t get_offset_of_qpForbidden_8() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___qpForbidden_8)); }
  699. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_qpForbidden_8() const { return ___qpForbidden_8; }
  700. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_qpForbidden_8() { return &___qpForbidden_8; }
  701. inline void set_qpForbidden_8(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
  702. {
  703. ___qpForbidden_8 = value;
  704. Il2CppCodeGenWriteBarrier((void**)(&___qpForbidden_8), (void*)value);
  705. }
  706. };
  707. // UnityEngine.YieldInstruction
  708. struct YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44 : public RuntimeObject
  709. {
  710. public:
  711. public:
  712. };
  713. // Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction
  714. struct YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44_marshaled_pinvoke
  715. {
  716. };
  717. // Native definition for COM marshalling of UnityEngine.YieldInstruction
  718. struct YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44_marshaled_com
  719. {
  720. };
  721. // UnityEngineInternal.WebRequestUtils
  722. struct WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296 : public RuntimeObject
  723. {
  724. public:
  725. public:
  726. };
  727. struct WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_StaticFields
  728. {
  729. public:
  730. // System.Text.RegularExpressions.Regex UnityEngineInternal.WebRequestUtils::domainRegex
  731. Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * ___domainRegex_0;
  732. public:
  733. inline static int32_t get_offset_of_domainRegex_0() { return static_cast<int32_t>(offsetof(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_StaticFields, ___domainRegex_0)); }
  734. inline Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * get_domainRegex_0() const { return ___domainRegex_0; }
  735. inline Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF ** get_address_of_domainRegex_0() { return &___domainRegex_0; }
  736. inline void set_domainRegex_0(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * value)
  737. {
  738. ___domainRegex_0 = value;
  739. Il2CppCodeGenWriteBarrier((void**)(&___domainRegex_0), (void*)value);
  740. }
  741. };
  742. // System.Boolean
  743. struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
  744. {
  745. public:
  746. // System.Boolean System.Boolean::m_value
  747. bool ___m_value_0;
  748. public:
  749. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); }
  750. inline bool get_m_value_0() const { return ___m_value_0; }
  751. inline bool* get_address_of_m_value_0() { return &___m_value_0; }
  752. inline void set_m_value_0(bool value)
  753. {
  754. ___m_value_0 = value;
  755. }
  756. };
  757. struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields
  758. {
  759. public:
  760. // System.String System.Boolean::TrueString
  761. String_t* ___TrueString_5;
  762. // System.String System.Boolean::FalseString
  763. String_t* ___FalseString_6;
  764. public:
  765. inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); }
  766. inline String_t* get_TrueString_5() const { return ___TrueString_5; }
  767. inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
  768. inline void set_TrueString_5(String_t* value)
  769. {
  770. ___TrueString_5 = value;
  771. Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
  772. }
  773. inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); }
  774. inline String_t* get_FalseString_6() const { return ___FalseString_6; }
  775. inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
  776. inline void set_FalseString_6(String_t* value)
  777. {
  778. ___FalseString_6 = value;
  779. Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
  780. }
  781. };
  782. // System.Byte
  783. struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07
  784. {
  785. public:
  786. // System.Byte System.Byte::m_value
  787. uint8_t ___m_value_0;
  788. public:
  789. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); }
  790. inline uint8_t get_m_value_0() const { return ___m_value_0; }
  791. inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
  792. inline void set_m_value_0(uint8_t value)
  793. {
  794. ___m_value_0 = value;
  795. }
  796. };
  797. // System.Char
  798. struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9
  799. {
  800. public:
  801. // System.Char System.Char::m_value
  802. Il2CppChar ___m_value_0;
  803. public:
  804. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); }
  805. inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
  806. inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
  807. inline void set_m_value_0(Il2CppChar value)
  808. {
  809. ___m_value_0 = value;
  810. }
  811. };
  812. struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields
  813. {
  814. public:
  815. // System.Byte[] System.Char::categoryForLatin1
  816. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3;
  817. public:
  818. inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); }
  819. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
  820. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
  821. inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
  822. {
  823. ___categoryForLatin1_3 = value;
  824. Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
  825. }
  826. };
  827. // System.Enum
  828. struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
  829. {
  830. public:
  831. public:
  832. };
  833. struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
  834. {
  835. public:
  836. // System.Char[] System.Enum::enumSeperatorCharArray
  837. CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
  838. public:
  839. inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
  840. inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
  841. inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
  842. inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
  843. {
  844. ___enumSeperatorCharArray_0 = value;
  845. Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
  846. }
  847. };
  848. // Native definition for P/Invoke marshalling of System.Enum
  849. struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
  850. {
  851. };
  852. // Native definition for COM marshalling of System.Enum
  853. struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
  854. {
  855. };
  856. // System.IO.Stream
  857. struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
  858. {
  859. public:
  860. // System.IO.Stream_ReadWriteTask System.IO.Stream::_activeReadWriteTask
  861. ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ____activeReadWriteTask_2;
  862. // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
  863. SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * ____asyncActiveSemaphore_3;
  864. public:
  865. inline static int32_t get_offset_of__activeReadWriteTask_2() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____activeReadWriteTask_2)); }
  866. inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * get__activeReadWriteTask_2() const { return ____activeReadWriteTask_2; }
  867. inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 ** get_address_of__activeReadWriteTask_2() { return &____activeReadWriteTask_2; }
  868. inline void set__activeReadWriteTask_2(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * value)
  869. {
  870. ____activeReadWriteTask_2 = value;
  871. Il2CppCodeGenWriteBarrier((void**)(&____activeReadWriteTask_2), (void*)value);
  872. }
  873. inline static int32_t get_offset_of__asyncActiveSemaphore_3() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____asyncActiveSemaphore_3)); }
  874. inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * get__asyncActiveSemaphore_3() const { return ____asyncActiveSemaphore_3; }
  875. inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 ** get_address_of__asyncActiveSemaphore_3() { return &____asyncActiveSemaphore_3; }
  876. inline void set__asyncActiveSemaphore_3(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * value)
  877. {
  878. ____asyncActiveSemaphore_3 = value;
  879. Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_3), (void*)value);
  880. }
  881. };
  882. struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields
  883. {
  884. public:
  885. // System.IO.Stream System.IO.Stream::Null
  886. Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___Null_1;
  887. public:
  888. inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields, ___Null_1)); }
  889. inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_Null_1() const { return ___Null_1; }
  890. inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_Null_1() { return &___Null_1; }
  891. inline void set_Null_1(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
  892. {
  893. ___Null_1 = value;
  894. Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value);
  895. }
  896. };
  897. // System.Int32
  898. struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
  899. {
  900. public:
  901. // System.Int32 System.Int32::m_value
  902. int32_t ___m_value_0;
  903. public:
  904. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); }
  905. inline int32_t get_m_value_0() const { return ___m_value_0; }
  906. inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
  907. inline void set_m_value_0(int32_t value)
  908. {
  909. ___m_value_0 = value;
  910. }
  911. };
  912. // System.Int64
  913. struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436
  914. {
  915. public:
  916. // System.Int64 System.Int64::m_value
  917. int64_t ___m_value_0;
  918. public:
  919. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); }
  920. inline int64_t get_m_value_0() const { return ___m_value_0; }
  921. inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
  922. inline void set_m_value_0(int64_t value)
  923. {
  924. ___m_value_0 = value;
  925. }
  926. };
  927. // System.IntPtr
  928. struct IntPtr_t
  929. {
  930. public:
  931. // System.Void* System.IntPtr::m_value
  932. void* ___m_value_0;
  933. public:
  934. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
  935. inline void* get_m_value_0() const { return ___m_value_0; }
  936. inline void** get_address_of_m_value_0() { return &___m_value_0; }
  937. inline void set_m_value_0(void* value)
  938. {
  939. ___m_value_0 = value;
  940. }
  941. };
  942. struct IntPtr_t_StaticFields
  943. {
  944. public:
  945. // System.IntPtr System.IntPtr::Zero
  946. intptr_t ___Zero_1;
  947. public:
  948. inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
  949. inline intptr_t get_Zero_1() const { return ___Zero_1; }
  950. inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
  951. inline void set_Zero_1(intptr_t value)
  952. {
  953. ___Zero_1 = value;
  954. }
  955. };
  956. // System.Single
  957. struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1
  958. {
  959. public:
  960. // System.Single System.Single::m_value
  961. float ___m_value_0;
  962. public:
  963. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); }
  964. inline float get_m_value_0() const { return ___m_value_0; }
  965. inline float* get_address_of_m_value_0() { return &___m_value_0; }
  966. inline void set_m_value_0(float value)
  967. {
  968. ___m_value_0 = value;
  969. }
  970. };
  971. // System.Void
  972. struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
  973. {
  974. public:
  975. union
  976. {
  977. struct
  978. {
  979. };
  980. uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
  981. };
  982. public:
  983. };
  984. // System.Delegate
  985. struct Delegate_t : public RuntimeObject
  986. {
  987. public:
  988. // System.IntPtr System.Delegate::method_ptr
  989. Il2CppMethodPointer ___method_ptr_0;
  990. // System.IntPtr System.Delegate::invoke_impl
  991. intptr_t ___invoke_impl_1;
  992. // System.Object System.Delegate::m_target
  993. RuntimeObject * ___m_target_2;
  994. // System.IntPtr System.Delegate::method
  995. intptr_t ___method_3;
  996. // System.IntPtr System.Delegate::delegate_trampoline
  997. intptr_t ___delegate_trampoline_4;
  998. // System.IntPtr System.Delegate::extra_arg
  999. intptr_t ___extra_arg_5;
  1000. // System.IntPtr System.Delegate::method_code
  1001. intptr_t ___method_code_6;
  1002. // System.Reflection.MethodInfo System.Delegate::method_info
  1003. MethodInfo_t * ___method_info_7;
  1004. // System.Reflection.MethodInfo System.Delegate::original_method_info
  1005. MethodInfo_t * ___original_method_info_8;
  1006. // System.DelegateData System.Delegate::data
  1007. DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
  1008. // System.Boolean System.Delegate::method_is_virtual
  1009. bool ___method_is_virtual_10;
  1010. public:
  1011. inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
  1012. inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
  1013. inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
  1014. inline void set_method_ptr_0(Il2CppMethodPointer value)
  1015. {
  1016. ___method_ptr_0 = value;
  1017. }
  1018. inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
  1019. inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
  1020. inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
  1021. inline void set_invoke_impl_1(intptr_t value)
  1022. {
  1023. ___invoke_impl_1 = value;
  1024. }
  1025. inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
  1026. inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
  1027. inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
  1028. inline void set_m_target_2(RuntimeObject * value)
  1029. {
  1030. ___m_target_2 = value;
  1031. Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
  1032. }
  1033. inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
  1034. inline intptr_t get_method_3() const { return ___method_3; }
  1035. inline intptr_t* get_address_of_method_3() { return &___method_3; }
  1036. inline void set_method_3(intptr_t value)
  1037. {
  1038. ___method_3 = value;
  1039. }
  1040. inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
  1041. inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
  1042. inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
  1043. inline void set_delegate_trampoline_4(intptr_t value)
  1044. {
  1045. ___delegate_trampoline_4 = value;
  1046. }
  1047. inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
  1048. inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
  1049. inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
  1050. inline void set_extra_arg_5(intptr_t value)
  1051. {
  1052. ___extra_arg_5 = value;
  1053. }
  1054. inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
  1055. inline intptr_t get_method_code_6() const { return ___method_code_6; }
  1056. inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
  1057. inline void set_method_code_6(intptr_t value)
  1058. {
  1059. ___method_code_6 = value;
  1060. }
  1061. inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
  1062. inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
  1063. inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
  1064. inline void set_method_info_7(MethodInfo_t * value)
  1065. {
  1066. ___method_info_7 = value;
  1067. Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
  1068. }
  1069. inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
  1070. inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
  1071. inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
  1072. inline void set_original_method_info_8(MethodInfo_t * value)
  1073. {
  1074. ___original_method_info_8 = value;
  1075. Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
  1076. }
  1077. inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
  1078. inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
  1079. inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
  1080. inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
  1081. {
  1082. ___data_9 = value;
  1083. Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
  1084. }
  1085. inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
  1086. inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
  1087. inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
  1088. inline void set_method_is_virtual_10(bool value)
  1089. {
  1090. ___method_is_virtual_10 = value;
  1091. }
  1092. };
  1093. // Native definition for P/Invoke marshalling of System.Delegate
  1094. struct Delegate_t_marshaled_pinvoke
  1095. {
  1096. intptr_t ___method_ptr_0;
  1097. intptr_t ___invoke_impl_1;
  1098. Il2CppIUnknown* ___m_target_2;
  1099. intptr_t ___method_3;
  1100. intptr_t ___delegate_trampoline_4;
  1101. intptr_t ___extra_arg_5;
  1102. intptr_t ___method_code_6;
  1103. MethodInfo_t * ___method_info_7;
  1104. MethodInfo_t * ___original_method_info_8;
  1105. DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
  1106. int32_t ___method_is_virtual_10;
  1107. };
  1108. // Native definition for COM marshalling of System.Delegate
  1109. struct Delegate_t_marshaled_com
  1110. {
  1111. intptr_t ___method_ptr_0;
  1112. intptr_t ___invoke_impl_1;
  1113. Il2CppIUnknown* ___m_target_2;
  1114. intptr_t ___method_3;
  1115. intptr_t ___delegate_trampoline_4;
  1116. intptr_t ___extra_arg_5;
  1117. intptr_t ___method_code_6;
  1118. MethodInfo_t * ___method_info_7;
  1119. MethodInfo_t * ___original_method_info_8;
  1120. DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
  1121. int32_t ___method_is_virtual_10;
  1122. };
  1123. // System.Exception
  1124. struct Exception_t : public RuntimeObject
  1125. {
  1126. public:
  1127. // System.String System.Exception::_className
  1128. String_t* ____className_1;
  1129. // System.String System.Exception::_message
  1130. String_t* ____message_2;
  1131. // System.Collections.IDictionary System.Exception::_data
  1132. RuntimeObject* ____data_3;
  1133. // System.Exception System.Exception::_innerException
  1134. Exception_t * ____innerException_4;
  1135. // System.String System.Exception::_helpURL
  1136. String_t* ____helpURL_5;
  1137. // System.Object System.Exception::_stackTrace
  1138. RuntimeObject * ____stackTrace_6;
  1139. // System.String System.Exception::_stackTraceString
  1140. String_t* ____stackTraceString_7;
  1141. // System.String System.Exception::_remoteStackTraceString
  1142. String_t* ____remoteStackTraceString_8;
  1143. // System.Int32 System.Exception::_remoteStackIndex
  1144. int32_t ____remoteStackIndex_9;
  1145. // System.Object System.Exception::_dynamicMethods
  1146. RuntimeObject * ____dynamicMethods_10;
  1147. // System.Int32 System.Exception::_HResult
  1148. int32_t ____HResult_11;
  1149. // System.String System.Exception::_source
  1150. String_t* ____source_12;
  1151. // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
  1152. SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
  1153. // System.Diagnostics.StackTrace[] System.Exception::captured_traces
  1154. StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
  1155. // System.IntPtr[] System.Exception::native_trace_ips
  1156. IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15;
  1157. public:
  1158. inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
  1159. inline String_t* get__className_1() const { return ____className_1; }
  1160. inline String_t** get_address_of__className_1() { return &____className_1; }
  1161. inline void set__className_1(String_t* value)
  1162. {
  1163. ____className_1 = value;
  1164. Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
  1165. }
  1166. inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
  1167. inline String_t* get__message_2() const { return ____message_2; }
  1168. inline String_t** get_address_of__message_2() { return &____message_2; }
  1169. inline void set__message_2(String_t* value)
  1170. {
  1171. ____message_2 = value;
  1172. Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
  1173. }
  1174. inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
  1175. inline RuntimeObject* get__data_3() const { return ____data_3; }
  1176. inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
  1177. inline void set__data_3(RuntimeObject* value)
  1178. {
  1179. ____data_3 = value;
  1180. Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
  1181. }
  1182. inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
  1183. inline Exception_t * get__innerException_4() const { return ____innerException_4; }
  1184. inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
  1185. inline void set__innerException_4(Exception_t * value)
  1186. {
  1187. ____innerException_4 = value;
  1188. Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
  1189. }
  1190. inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
  1191. inline String_t* get__helpURL_5() const { return ____helpURL_5; }
  1192. inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
  1193. inline void set__helpURL_5(String_t* value)
  1194. {
  1195. ____helpURL_5 = value;
  1196. Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
  1197. }
  1198. inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
  1199. inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
  1200. inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
  1201. inline void set__stackTrace_6(RuntimeObject * value)
  1202. {
  1203. ____stackTrace_6 = value;
  1204. Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
  1205. }
  1206. inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
  1207. inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
  1208. inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
  1209. inline void set__stackTraceString_7(String_t* value)
  1210. {
  1211. ____stackTraceString_7 = value;
  1212. Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
  1213. }
  1214. inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
  1215. inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
  1216. inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
  1217. inline void set__remoteStackTraceString_8(String_t* value)
  1218. {
  1219. ____remoteStackTraceString_8 = value;
  1220. Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
  1221. }
  1222. inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
  1223. inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
  1224. inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
  1225. inline void set__remoteStackIndex_9(int32_t value)
  1226. {
  1227. ____remoteStackIndex_9 = value;
  1228. }
  1229. inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
  1230. inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
  1231. inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
  1232. inline void set__dynamicMethods_10(RuntimeObject * value)
  1233. {
  1234. ____dynamicMethods_10 = value;
  1235. Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
  1236. }
  1237. inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
  1238. inline int32_t get__HResult_11() const { return ____HResult_11; }
  1239. inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
  1240. inline void set__HResult_11(int32_t value)
  1241. {
  1242. ____HResult_11 = value;
  1243. }
  1244. inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
  1245. inline String_t* get__source_12() const { return ____source_12; }
  1246. inline String_t** get_address_of__source_12() { return &____source_12; }
  1247. inline void set__source_12(String_t* value)
  1248. {
  1249. ____source_12 = value;
  1250. Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
  1251. }
  1252. inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
  1253. inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
  1254. inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
  1255. inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value)
  1256. {
  1257. ____safeSerializationManager_13 = value;
  1258. Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
  1259. }
  1260. inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
  1261. inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; }
  1262. inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; }
  1263. inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value)
  1264. {
  1265. ___captured_traces_14 = value;
  1266. Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
  1267. }
  1268. inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
  1269. inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
  1270. inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
  1271. inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value)
  1272. {
  1273. ___native_trace_ips_15 = value;
  1274. Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
  1275. }
  1276. };
  1277. struct Exception_t_StaticFields
  1278. {
  1279. public:
  1280. // System.Object System.Exception::s_EDILock
  1281. RuntimeObject * ___s_EDILock_0;
  1282. public:
  1283. inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
  1284. inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
  1285. inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
  1286. inline void set_s_EDILock_0(RuntimeObject * value)
  1287. {
  1288. ___s_EDILock_0 = value;
  1289. Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
  1290. }
  1291. };
  1292. // Native definition for P/Invoke marshalling of System.Exception
  1293. struct Exception_t_marshaled_pinvoke
  1294. {
  1295. char* ____className_1;
  1296. char* ____message_2;
  1297. RuntimeObject* ____data_3;
  1298. Exception_t_marshaled_pinvoke* ____innerException_4;
  1299. char* ____helpURL_5;
  1300. Il2CppIUnknown* ____stackTrace_6;
  1301. char* ____stackTraceString_7;
  1302. char* ____remoteStackTraceString_8;
  1303. int32_t ____remoteStackIndex_9;
  1304. Il2CppIUnknown* ____dynamicMethods_10;
  1305. int32_t ____HResult_11;
  1306. char* ____source_12;
  1307. SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
  1308. StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
  1309. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  1310. };
  1311. // Native definition for COM marshalling of System.Exception
  1312. struct Exception_t_marshaled_com
  1313. {
  1314. Il2CppChar* ____className_1;
  1315. Il2CppChar* ____message_2;
  1316. RuntimeObject* ____data_3;
  1317. Exception_t_marshaled_com* ____innerException_4;
  1318. Il2CppChar* ____helpURL_5;
  1319. Il2CppIUnknown* ____stackTrace_6;
  1320. Il2CppChar* ____stackTraceString_7;
  1321. Il2CppChar* ____remoteStackTraceString_8;
  1322. int32_t ____remoteStackIndex_9;
  1323. Il2CppIUnknown* ____dynamicMethods_10;
  1324. int32_t ____HResult_11;
  1325. Il2CppChar* ____source_12;
  1326. SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
  1327. StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
  1328. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  1329. };
  1330. // System.IO.MemoryStream
  1331. struct MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C : public Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7
  1332. {
  1333. public:
  1334. // System.Byte[] System.IO.MemoryStream::_buffer
  1335. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____buffer_4;
  1336. // System.Int32 System.IO.MemoryStream::_origin
  1337. int32_t ____origin_5;
  1338. // System.Int32 System.IO.MemoryStream::_position
  1339. int32_t ____position_6;
  1340. // System.Int32 System.IO.MemoryStream::_length
  1341. int32_t ____length_7;
  1342. // System.Int32 System.IO.MemoryStream::_capacity
  1343. int32_t ____capacity_8;
  1344. // System.Boolean System.IO.MemoryStream::_expandable
  1345. bool ____expandable_9;
  1346. // System.Boolean System.IO.MemoryStream::_writable
  1347. bool ____writable_10;
  1348. // System.Boolean System.IO.MemoryStream::_exposable
  1349. bool ____exposable_11;
  1350. // System.Boolean System.IO.MemoryStream::_isOpen
  1351. bool ____isOpen_12;
  1352. // System.Threading.Tasks.Task`1<System.Int32> System.IO.MemoryStream::_lastReadTask
  1353. Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ____lastReadTask_13;
  1354. public:
  1355. inline static int32_t get_offset_of__buffer_4() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____buffer_4)); }
  1356. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__buffer_4() const { return ____buffer_4; }
  1357. inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__buffer_4() { return &____buffer_4; }
  1358. inline void set__buffer_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
  1359. {
  1360. ____buffer_4 = value;
  1361. Il2CppCodeGenWriteBarrier((void**)(&____buffer_4), (void*)value);
  1362. }
  1363. inline static int32_t get_offset_of__origin_5() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____origin_5)); }
  1364. inline int32_t get__origin_5() const { return ____origin_5; }
  1365. inline int32_t* get_address_of__origin_5() { return &____origin_5; }
  1366. inline void set__origin_5(int32_t value)
  1367. {
  1368. ____origin_5 = value;
  1369. }
  1370. inline static int32_t get_offset_of__position_6() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____position_6)); }
  1371. inline int32_t get__position_6() const { return ____position_6; }
  1372. inline int32_t* get_address_of__position_6() { return &____position_6; }
  1373. inline void set__position_6(int32_t value)
  1374. {
  1375. ____position_6 = value;
  1376. }
  1377. inline static int32_t get_offset_of__length_7() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____length_7)); }
  1378. inline int32_t get__length_7() const { return ____length_7; }
  1379. inline int32_t* get_address_of__length_7() { return &____length_7; }
  1380. inline void set__length_7(int32_t value)
  1381. {
  1382. ____length_7 = value;
  1383. }
  1384. inline static int32_t get_offset_of__capacity_8() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____capacity_8)); }
  1385. inline int32_t get__capacity_8() const { return ____capacity_8; }
  1386. inline int32_t* get_address_of__capacity_8() { return &____capacity_8; }
  1387. inline void set__capacity_8(int32_t value)
  1388. {
  1389. ____capacity_8 = value;
  1390. }
  1391. inline static int32_t get_offset_of__expandable_9() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____expandable_9)); }
  1392. inline bool get__expandable_9() const { return ____expandable_9; }
  1393. inline bool* get_address_of__expandable_9() { return &____expandable_9; }
  1394. inline void set__expandable_9(bool value)
  1395. {
  1396. ____expandable_9 = value;
  1397. }
  1398. inline static int32_t get_offset_of__writable_10() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____writable_10)); }
  1399. inline bool get__writable_10() const { return ____writable_10; }
  1400. inline bool* get_address_of__writable_10() { return &____writable_10; }
  1401. inline void set__writable_10(bool value)
  1402. {
  1403. ____writable_10 = value;
  1404. }
  1405. inline static int32_t get_offset_of__exposable_11() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____exposable_11)); }
  1406. inline bool get__exposable_11() const { return ____exposable_11; }
  1407. inline bool* get_address_of__exposable_11() { return &____exposable_11; }
  1408. inline void set__exposable_11(bool value)
  1409. {
  1410. ____exposable_11 = value;
  1411. }
  1412. inline static int32_t get_offset_of__isOpen_12() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____isOpen_12)); }
  1413. inline bool get__isOpen_12() const { return ____isOpen_12; }
  1414. inline bool* get_address_of__isOpen_12() { return &____isOpen_12; }
  1415. inline void set__isOpen_12(bool value)
  1416. {
  1417. ____isOpen_12 = value;
  1418. }
  1419. inline static int32_t get_offset_of__lastReadTask_13() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____lastReadTask_13)); }
  1420. inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * get__lastReadTask_13() const { return ____lastReadTask_13; }
  1421. inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 ** get_address_of__lastReadTask_13() { return &____lastReadTask_13; }
  1422. inline void set__lastReadTask_13(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * value)
  1423. {
  1424. ____lastReadTask_13 = value;
  1425. Il2CppCodeGenWriteBarrier((void**)(&____lastReadTask_13), (void*)value);
  1426. }
  1427. };
  1428. // System.StringComparison
  1429. struct StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0
  1430. {
  1431. public:
  1432. // System.Int32 System.StringComparison::value__
  1433. int32_t ___value___2;
  1434. public:
  1435. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0, ___value___2)); }
  1436. inline int32_t get_value___2() const { return ___value___2; }
  1437. inline int32_t* get_address_of_value___2() { return &___value___2; }
  1438. inline void set_value___2(int32_t value)
  1439. {
  1440. ___value___2 = value;
  1441. }
  1442. };
  1443. // System.Text.RegularExpressions.RegexOptions
  1444. struct RegexOptions_t9A6138CDA9C60924D503C584095349F008C52EA1
  1445. {
  1446. public:
  1447. // System.Int32 System.Text.RegularExpressions.RegexOptions::value__
  1448. int32_t ___value___2;
  1449. public:
  1450. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RegexOptions_t9A6138CDA9C60924D503C584095349F008C52EA1, ___value___2)); }
  1451. inline int32_t get_value___2() const { return ___value___2; }
  1452. inline int32_t* get_address_of_value___2() { return &___value___2; }
  1453. inline void set_value___2(int32_t value)
  1454. {
  1455. ___value___2 = value;
  1456. }
  1457. };
  1458. // System.TimeSpan
  1459. struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4
  1460. {
  1461. public:
  1462. // System.Int64 System.TimeSpan::_ticks
  1463. int64_t ____ticks_3;
  1464. public:
  1465. inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, ____ticks_3)); }
  1466. inline int64_t get__ticks_3() const { return ____ticks_3; }
  1467. inline int64_t* get_address_of__ticks_3() { return &____ticks_3; }
  1468. inline void set__ticks_3(int64_t value)
  1469. {
  1470. ____ticks_3 = value;
  1471. }
  1472. };
  1473. struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields
  1474. {
  1475. public:
  1476. // System.TimeSpan System.TimeSpan::Zero
  1477. TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___Zero_0;
  1478. // System.TimeSpan System.TimeSpan::MaxValue
  1479. TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaxValue_1;
  1480. // System.TimeSpan System.TimeSpan::MinValue
  1481. TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MinValue_2;
  1482. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked
  1483. bool ____legacyConfigChecked_4;
  1484. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode
  1485. bool ____legacyMode_5;
  1486. public:
  1487. inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___Zero_0)); }
  1488. inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_Zero_0() const { return ___Zero_0; }
  1489. inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_Zero_0() { return &___Zero_0; }
  1490. inline void set_Zero_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
  1491. {
  1492. ___Zero_0 = value;
  1493. }
  1494. inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MaxValue_1)); }
  1495. inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaxValue_1() const { return ___MaxValue_1; }
  1496. inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
  1497. inline void set_MaxValue_1(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
  1498. {
  1499. ___MaxValue_1 = value;
  1500. }
  1501. inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MinValue_2)); }
  1502. inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MinValue_2() const { return ___MinValue_2; }
  1503. inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MinValue_2() { return &___MinValue_2; }
  1504. inline void set_MinValue_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
  1505. {
  1506. ___MinValue_2 = value;
  1507. }
  1508. inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyConfigChecked_4)); }
  1509. inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; }
  1510. inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; }
  1511. inline void set__legacyConfigChecked_4(bool value)
  1512. {
  1513. ____legacyConfigChecked_4 = value;
  1514. }
  1515. inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyMode_5)); }
  1516. inline bool get__legacyMode_5() const { return ____legacyMode_5; }
  1517. inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; }
  1518. inline void set__legacyMode_5(bool value)
  1519. {
  1520. ____legacyMode_5 = value;
  1521. }
  1522. };
  1523. // System.Uri_Flags
  1524. struct Flags_tEBE7CABEBD13F16920D6950B384EB8F988250A2A
  1525. {
  1526. public:
  1527. // System.UInt64 System.Uri_Flags::value__
  1528. uint64_t ___value___2;
  1529. public:
  1530. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_tEBE7CABEBD13F16920D6950B384EB8F988250A2A, ___value___2)); }
  1531. inline uint64_t get_value___2() const { return ___value___2; }
  1532. inline uint64_t* get_address_of_value___2() { return &___value___2; }
  1533. inline void set_value___2(uint64_t value)
  1534. {
  1535. ___value___2 = value;
  1536. }
  1537. };
  1538. // System.UriFormat
  1539. struct UriFormat_t4355763D39FF6F0FAA2B43E3A209BA8500730992
  1540. {
  1541. public:
  1542. // System.Int32 System.UriFormat::value__
  1543. int32_t ___value___2;
  1544. public:
  1545. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriFormat_t4355763D39FF6F0FAA2B43E3A209BA8500730992, ___value___2)); }
  1546. inline int32_t get_value___2() const { return ___value___2; }
  1547. inline int32_t* get_address_of_value___2() { return &___value___2; }
  1548. inline void set_value___2(int32_t value)
  1549. {
  1550. ___value___2 = value;
  1551. }
  1552. };
  1553. // System.UriIdnScope
  1554. struct UriIdnScope_tE1574B39C7492C761EFE2FC12DDE82DE013AC9D1
  1555. {
  1556. public:
  1557. // System.Int32 System.UriIdnScope::value__
  1558. int32_t ___value___2;
  1559. public:
  1560. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriIdnScope_tE1574B39C7492C761EFE2FC12DDE82DE013AC9D1, ___value___2)); }
  1561. inline int32_t get_value___2() const { return ___value___2; }
  1562. inline int32_t* get_address_of_value___2() { return &___value___2; }
  1563. inline void set_value___2(int32_t value)
  1564. {
  1565. ___value___2 = value;
  1566. }
  1567. };
  1568. // System.UriKind
  1569. struct UriKind_t26D0760DDF148ADC939FECD934C0B9FF5C71EA08
  1570. {
  1571. public:
  1572. // System.Int32 System.UriKind::value__
  1573. int32_t ___value___2;
  1574. public:
  1575. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriKind_t26D0760DDF148ADC939FECD934C0B9FF5C71EA08, ___value___2)); }
  1576. inline int32_t get_value___2() const { return ___value___2; }
  1577. inline int32_t* get_address_of_value___2() { return &___value___2; }
  1578. inline void set_value___2(int32_t value)
  1579. {
  1580. ___value___2 = value;
  1581. }
  1582. };
  1583. // UnityEngine.AsyncOperation
  1584. struct AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D : public YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44
  1585. {
  1586. public:
  1587. // System.IntPtr UnityEngine.AsyncOperation::m_Ptr
  1588. intptr_t ___m_Ptr_0;
  1589. // System.Action`1<UnityEngine.AsyncOperation> UnityEngine.AsyncOperation::m_completeCallback
  1590. Action_1_tCBF754C290FAE894631BED8FD56E9E22C4C187F9 * ___m_completeCallback_1;
  1591. public:
  1592. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D, ___m_Ptr_0)); }
  1593. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  1594. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  1595. inline void set_m_Ptr_0(intptr_t value)
  1596. {
  1597. ___m_Ptr_0 = value;
  1598. }
  1599. inline static int32_t get_offset_of_m_completeCallback_1() { return static_cast<int32_t>(offsetof(AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D, ___m_completeCallback_1)); }
  1600. inline Action_1_tCBF754C290FAE894631BED8FD56E9E22C4C187F9 * get_m_completeCallback_1() const { return ___m_completeCallback_1; }
  1601. inline Action_1_tCBF754C290FAE894631BED8FD56E9E22C4C187F9 ** get_address_of_m_completeCallback_1() { return &___m_completeCallback_1; }
  1602. inline void set_m_completeCallback_1(Action_1_tCBF754C290FAE894631BED8FD56E9E22C4C187F9 * value)
  1603. {
  1604. ___m_completeCallback_1 = value;
  1605. Il2CppCodeGenWriteBarrier((void**)(&___m_completeCallback_1), (void*)value);
  1606. }
  1607. };
  1608. // Native definition for P/Invoke marshalling of UnityEngine.AsyncOperation
  1609. struct AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D_marshaled_pinvoke : public YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44_marshaled_pinvoke
  1610. {
  1611. intptr_t ___m_Ptr_0;
  1612. Il2CppMethodPointer ___m_completeCallback_1;
  1613. };
  1614. // Native definition for COM marshalling of UnityEngine.AsyncOperation
  1615. struct AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D_marshaled_com : public YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44_marshaled_com
  1616. {
  1617. intptr_t ___m_Ptr_0;
  1618. Il2CppMethodPointer ___m_completeCallback_1;
  1619. };
  1620. // UnityEngine.Networking.CertificateHandler
  1621. struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 : public RuntimeObject
  1622. {
  1623. public:
  1624. // System.IntPtr UnityEngine.Networking.CertificateHandler::m_Ptr
  1625. intptr_t ___m_Ptr_0;
  1626. public:
  1627. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0, ___m_Ptr_0)); }
  1628. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  1629. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  1630. inline void set_m_Ptr_0(intptr_t value)
  1631. {
  1632. ___m_Ptr_0 = value;
  1633. }
  1634. };
  1635. // Native definition for P/Invoke marshalling of UnityEngine.Networking.CertificateHandler
  1636. struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke
  1637. {
  1638. intptr_t ___m_Ptr_0;
  1639. };
  1640. // Native definition for COM marshalling of UnityEngine.Networking.CertificateHandler
  1641. struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com
  1642. {
  1643. intptr_t ___m_Ptr_0;
  1644. };
  1645. // UnityEngine.Networking.DownloadHandler
  1646. struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 : public RuntimeObject
  1647. {
  1648. public:
  1649. // System.IntPtr UnityEngine.Networking.DownloadHandler::m_Ptr
  1650. intptr_t ___m_Ptr_0;
  1651. public:
  1652. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9, ___m_Ptr_0)); }
  1653. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  1654. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  1655. inline void set_m_Ptr_0(intptr_t value)
  1656. {
  1657. ___m_Ptr_0 = value;
  1658. }
  1659. };
  1660. // Native definition for P/Invoke marshalling of UnityEngine.Networking.DownloadHandler
  1661. struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke
  1662. {
  1663. intptr_t ___m_Ptr_0;
  1664. };
  1665. // Native definition for COM marshalling of UnityEngine.Networking.DownloadHandler
  1666. struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com
  1667. {
  1668. intptr_t ___m_Ptr_0;
  1669. };
  1670. // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError
  1671. struct UnityWebRequestError_t0FD8E16D965B4EA8BECD6C42C6BFEA8506E4C327
  1672. {
  1673. public:
  1674. // System.Int32 UnityEngine.Networking.UnityWebRequest_UnityWebRequestError::value__
  1675. int32_t ___value___2;
  1676. public:
  1677. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnityWebRequestError_t0FD8E16D965B4EA8BECD6C42C6BFEA8506E4C327, ___value___2)); }
  1678. inline int32_t get_value___2() const { return ___value___2; }
  1679. inline int32_t* get_address_of_value___2() { return &___value___2; }
  1680. inline void set_value___2(int32_t value)
  1681. {
  1682. ___value___2 = value;
  1683. }
  1684. };
  1685. // UnityEngine.Networking.UnityWebRequest_UnityWebRequestMethod
  1686. struct UnityWebRequestMethod_t704B7938E8655E8FEDDE169AD54B962166142118
  1687. {
  1688. public:
  1689. // System.Int32 UnityEngine.Networking.UnityWebRequest_UnityWebRequestMethod::value__
  1690. int32_t ___value___2;
  1691. public:
  1692. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnityWebRequestMethod_t704B7938E8655E8FEDDE169AD54B962166142118, ___value___2)); }
  1693. inline int32_t get_value___2() const { return ___value___2; }
  1694. inline int32_t* get_address_of_value___2() { return &___value___2; }
  1695. inline void set_value___2(int32_t value)
  1696. {
  1697. ___value___2 = value;
  1698. }
  1699. };
  1700. // UnityEngine.Networking.UploadHandler
  1701. struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 : public RuntimeObject
  1702. {
  1703. public:
  1704. // System.IntPtr UnityEngine.Networking.UploadHandler::m_Ptr
  1705. intptr_t ___m_Ptr_0;
  1706. public:
  1707. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4, ___m_Ptr_0)); }
  1708. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  1709. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  1710. inline void set_m_Ptr_0(intptr_t value)
  1711. {
  1712. ___m_Ptr_0 = value;
  1713. }
  1714. };
  1715. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UploadHandler
  1716. struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke
  1717. {
  1718. intptr_t ___m_Ptr_0;
  1719. };
  1720. // Native definition for COM marshalling of UnityEngine.Networking.UploadHandler
  1721. struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com
  1722. {
  1723. intptr_t ___m_Ptr_0;
  1724. };
  1725. // System.MulticastDelegate
  1726. struct MulticastDelegate_t : public Delegate_t
  1727. {
  1728. public:
  1729. // System.Delegate[] System.MulticastDelegate::delegates
  1730. DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
  1731. public:
  1732. inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
  1733. inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
  1734. inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
  1735. inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
  1736. {
  1737. ___delegates_11 = value;
  1738. Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
  1739. }
  1740. };
  1741. // Native definition for P/Invoke marshalling of System.MulticastDelegate
  1742. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  1743. {
  1744. Delegate_t_marshaled_pinvoke** ___delegates_11;
  1745. };
  1746. // Native definition for COM marshalling of System.MulticastDelegate
  1747. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  1748. {
  1749. Delegate_t_marshaled_com** ___delegates_11;
  1750. };
  1751. // System.SystemException
  1752. struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
  1753. {
  1754. public:
  1755. public:
  1756. };
  1757. // System.Text.RegularExpressions.Regex
  1758. struct Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF : public RuntimeObject
  1759. {
  1760. public:
  1761. // System.String System.Text.RegularExpressions.Regex::pattern
  1762. String_t* ___pattern_0;
  1763. // System.Text.RegularExpressions.RegexRunnerFactory System.Text.RegularExpressions.Regex::factory
  1764. RegexRunnerFactory_t0703F390E2102623B0189DEC095DB182698E404B * ___factory_1;
  1765. // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::roptions
  1766. int32_t ___roptions_2;
  1767. // System.TimeSpan System.Text.RegularExpressions.Regex::internalMatchTimeout
  1768. TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___internalMatchTimeout_5;
  1769. // System.Collections.Hashtable System.Text.RegularExpressions.Regex::caps
  1770. Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___caps_8;
  1771. // System.Collections.Hashtable System.Text.RegularExpressions.Regex::capnames
  1772. Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___capnames_9;
  1773. // System.String[] System.Text.RegularExpressions.Regex::capslist
  1774. StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___capslist_10;
  1775. // System.Int32 System.Text.RegularExpressions.Regex::capsize
  1776. int32_t ___capsize_11;
  1777. // System.Text.RegularExpressions.ExclusiveReference System.Text.RegularExpressions.Regex::runnerref
  1778. ExclusiveReference_t39E202CDB13A1E6EBA4CE0C7548B192CEB5C64DB * ___runnerref_12;
  1779. // System.Text.RegularExpressions.SharedReference System.Text.RegularExpressions.Regex::replref
  1780. SharedReference_t225BA5C249F9F1D6C959F151695BDF65EF2C92A5 * ___replref_13;
  1781. // System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.Regex::code
  1782. RegexCode_t12846533CAD1E4221CEDF5A4D15D4D649EA688FA * ___code_14;
  1783. // System.Boolean System.Text.RegularExpressions.Regex::refsInitialized
  1784. bool ___refsInitialized_15;
  1785. public:
  1786. inline static int32_t get_offset_of_pattern_0() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___pattern_0)); }
  1787. inline String_t* get_pattern_0() const { return ___pattern_0; }
  1788. inline String_t** get_address_of_pattern_0() { return &___pattern_0; }
  1789. inline void set_pattern_0(String_t* value)
  1790. {
  1791. ___pattern_0 = value;
  1792. Il2CppCodeGenWriteBarrier((void**)(&___pattern_0), (void*)value);
  1793. }
  1794. inline static int32_t get_offset_of_factory_1() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___factory_1)); }
  1795. inline RegexRunnerFactory_t0703F390E2102623B0189DEC095DB182698E404B * get_factory_1() const { return ___factory_1; }
  1796. inline RegexRunnerFactory_t0703F390E2102623B0189DEC095DB182698E404B ** get_address_of_factory_1() { return &___factory_1; }
  1797. inline void set_factory_1(RegexRunnerFactory_t0703F390E2102623B0189DEC095DB182698E404B * value)
  1798. {
  1799. ___factory_1 = value;
  1800. Il2CppCodeGenWriteBarrier((void**)(&___factory_1), (void*)value);
  1801. }
  1802. inline static int32_t get_offset_of_roptions_2() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___roptions_2)); }
  1803. inline int32_t get_roptions_2() const { return ___roptions_2; }
  1804. inline int32_t* get_address_of_roptions_2() { return &___roptions_2; }
  1805. inline void set_roptions_2(int32_t value)
  1806. {
  1807. ___roptions_2 = value;
  1808. }
  1809. inline static int32_t get_offset_of_internalMatchTimeout_5() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___internalMatchTimeout_5)); }
  1810. inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_internalMatchTimeout_5() const { return ___internalMatchTimeout_5; }
  1811. inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_internalMatchTimeout_5() { return &___internalMatchTimeout_5; }
  1812. inline void set_internalMatchTimeout_5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
  1813. {
  1814. ___internalMatchTimeout_5 = value;
  1815. }
  1816. inline static int32_t get_offset_of_caps_8() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___caps_8)); }
  1817. inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_caps_8() const { return ___caps_8; }
  1818. inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_caps_8() { return &___caps_8; }
  1819. inline void set_caps_8(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
  1820. {
  1821. ___caps_8 = value;
  1822. Il2CppCodeGenWriteBarrier((void**)(&___caps_8), (void*)value);
  1823. }
  1824. inline static int32_t get_offset_of_capnames_9() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___capnames_9)); }
  1825. inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_capnames_9() const { return ___capnames_9; }
  1826. inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_capnames_9() { return &___capnames_9; }
  1827. inline void set_capnames_9(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
  1828. {
  1829. ___capnames_9 = value;
  1830. Il2CppCodeGenWriteBarrier((void**)(&___capnames_9), (void*)value);
  1831. }
  1832. inline static int32_t get_offset_of_capslist_10() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___capslist_10)); }
  1833. inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_capslist_10() const { return ___capslist_10; }
  1834. inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_capslist_10() { return &___capslist_10; }
  1835. inline void set_capslist_10(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
  1836. {
  1837. ___capslist_10 = value;
  1838. Il2CppCodeGenWriteBarrier((void**)(&___capslist_10), (void*)value);
  1839. }
  1840. inline static int32_t get_offset_of_capsize_11() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___capsize_11)); }
  1841. inline int32_t get_capsize_11() const { return ___capsize_11; }
  1842. inline int32_t* get_address_of_capsize_11() { return &___capsize_11; }
  1843. inline void set_capsize_11(int32_t value)
  1844. {
  1845. ___capsize_11 = value;
  1846. }
  1847. inline static int32_t get_offset_of_runnerref_12() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___runnerref_12)); }
  1848. inline ExclusiveReference_t39E202CDB13A1E6EBA4CE0C7548B192CEB5C64DB * get_runnerref_12() const { return ___runnerref_12; }
  1849. inline ExclusiveReference_t39E202CDB13A1E6EBA4CE0C7548B192CEB5C64DB ** get_address_of_runnerref_12() { return &___runnerref_12; }
  1850. inline void set_runnerref_12(ExclusiveReference_t39E202CDB13A1E6EBA4CE0C7548B192CEB5C64DB * value)
  1851. {
  1852. ___runnerref_12 = value;
  1853. Il2CppCodeGenWriteBarrier((void**)(&___runnerref_12), (void*)value);
  1854. }
  1855. inline static int32_t get_offset_of_replref_13() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___replref_13)); }
  1856. inline SharedReference_t225BA5C249F9F1D6C959F151695BDF65EF2C92A5 * get_replref_13() const { return ___replref_13; }
  1857. inline SharedReference_t225BA5C249F9F1D6C959F151695BDF65EF2C92A5 ** get_address_of_replref_13() { return &___replref_13; }
  1858. inline void set_replref_13(SharedReference_t225BA5C249F9F1D6C959F151695BDF65EF2C92A5 * value)
  1859. {
  1860. ___replref_13 = value;
  1861. Il2CppCodeGenWriteBarrier((void**)(&___replref_13), (void*)value);
  1862. }
  1863. inline static int32_t get_offset_of_code_14() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___code_14)); }
  1864. inline RegexCode_t12846533CAD1E4221CEDF5A4D15D4D649EA688FA * get_code_14() const { return ___code_14; }
  1865. inline RegexCode_t12846533CAD1E4221CEDF5A4D15D4D649EA688FA ** get_address_of_code_14() { return &___code_14; }
  1866. inline void set_code_14(RegexCode_t12846533CAD1E4221CEDF5A4D15D4D649EA688FA * value)
  1867. {
  1868. ___code_14 = value;
  1869. Il2CppCodeGenWriteBarrier((void**)(&___code_14), (void*)value);
  1870. }
  1871. inline static int32_t get_offset_of_refsInitialized_15() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___refsInitialized_15)); }
  1872. inline bool get_refsInitialized_15() const { return ___refsInitialized_15; }
  1873. inline bool* get_address_of_refsInitialized_15() { return &___refsInitialized_15; }
  1874. inline void set_refsInitialized_15(bool value)
  1875. {
  1876. ___refsInitialized_15 = value;
  1877. }
  1878. };
  1879. struct Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_StaticFields
  1880. {
  1881. public:
  1882. // System.TimeSpan System.Text.RegularExpressions.Regex::MaximumMatchTimeout
  1883. TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaximumMatchTimeout_3;
  1884. // System.TimeSpan System.Text.RegularExpressions.Regex::InfiniteMatchTimeout
  1885. TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___InfiniteMatchTimeout_4;
  1886. // System.TimeSpan System.Text.RegularExpressions.Regex::FallbackDefaultMatchTimeout
  1887. TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___FallbackDefaultMatchTimeout_6;
  1888. // System.TimeSpan System.Text.RegularExpressions.Regex::DefaultMatchTimeout
  1889. TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___DefaultMatchTimeout_7;
  1890. // System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry> System.Text.RegularExpressions.Regex::livecode
  1891. LinkedList_1_t44CA4EB2162DC04F96F29C8A68A05D05166137F7 * ___livecode_16;
  1892. // System.Int32 System.Text.RegularExpressions.Regex::cacheSize
  1893. int32_t ___cacheSize_17;
  1894. public:
  1895. inline static int32_t get_offset_of_MaximumMatchTimeout_3() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_StaticFields, ___MaximumMatchTimeout_3)); }
  1896. inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaximumMatchTimeout_3() const { return ___MaximumMatchTimeout_3; }
  1897. inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaximumMatchTimeout_3() { return &___MaximumMatchTimeout_3; }
  1898. inline void set_MaximumMatchTimeout_3(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
  1899. {
  1900. ___MaximumMatchTimeout_3 = value;
  1901. }
  1902. inline static int32_t get_offset_of_InfiniteMatchTimeout_4() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_StaticFields, ___InfiniteMatchTimeout_4)); }
  1903. inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_InfiniteMatchTimeout_4() const { return ___InfiniteMatchTimeout_4; }
  1904. inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_InfiniteMatchTimeout_4() { return &___InfiniteMatchTimeout_4; }
  1905. inline void set_InfiniteMatchTimeout_4(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
  1906. {
  1907. ___InfiniteMatchTimeout_4 = value;
  1908. }
  1909. inline static int32_t get_offset_of_FallbackDefaultMatchTimeout_6() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_StaticFields, ___FallbackDefaultMatchTimeout_6)); }
  1910. inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_FallbackDefaultMatchTimeout_6() const { return ___FallbackDefaultMatchTimeout_6; }
  1911. inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_FallbackDefaultMatchTimeout_6() { return &___FallbackDefaultMatchTimeout_6; }
  1912. inline void set_FallbackDefaultMatchTimeout_6(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
  1913. {
  1914. ___FallbackDefaultMatchTimeout_6 = value;
  1915. }
  1916. inline static int32_t get_offset_of_DefaultMatchTimeout_7() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_StaticFields, ___DefaultMatchTimeout_7)); }
  1917. inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_DefaultMatchTimeout_7() const { return ___DefaultMatchTimeout_7; }
  1918. inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_DefaultMatchTimeout_7() { return &___DefaultMatchTimeout_7; }
  1919. inline void set_DefaultMatchTimeout_7(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
  1920. {
  1921. ___DefaultMatchTimeout_7 = value;
  1922. }
  1923. inline static int32_t get_offset_of_livecode_16() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_StaticFields, ___livecode_16)); }
  1924. inline LinkedList_1_t44CA4EB2162DC04F96F29C8A68A05D05166137F7 * get_livecode_16() const { return ___livecode_16; }
  1925. inline LinkedList_1_t44CA4EB2162DC04F96F29C8A68A05D05166137F7 ** get_address_of_livecode_16() { return &___livecode_16; }
  1926. inline void set_livecode_16(LinkedList_1_t44CA4EB2162DC04F96F29C8A68A05D05166137F7 * value)
  1927. {
  1928. ___livecode_16 = value;
  1929. Il2CppCodeGenWriteBarrier((void**)(&___livecode_16), (void*)value);
  1930. }
  1931. inline static int32_t get_offset_of_cacheSize_17() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_StaticFields, ___cacheSize_17)); }
  1932. inline int32_t get_cacheSize_17() const { return ___cacheSize_17; }
  1933. inline int32_t* get_address_of_cacheSize_17() { return &___cacheSize_17; }
  1934. inline void set_cacheSize_17(int32_t value)
  1935. {
  1936. ___cacheSize_17 = value;
  1937. }
  1938. };
  1939. // System.Uri
  1940. struct Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E : public RuntimeObject
  1941. {
  1942. public:
  1943. // System.String System.Uri::m_String
  1944. String_t* ___m_String_16;
  1945. // System.String System.Uri::m_originalUnicodeString
  1946. String_t* ___m_originalUnicodeString_17;
  1947. // System.UriParser System.Uri::m_Syntax
  1948. UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC * ___m_Syntax_18;
  1949. // System.String System.Uri::m_DnsSafeHost
  1950. String_t* ___m_DnsSafeHost_19;
  1951. // System.Uri_Flags System.Uri::m_Flags
  1952. uint64_t ___m_Flags_20;
  1953. // System.Uri_UriInfo System.Uri::m_Info
  1954. UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E * ___m_Info_21;
  1955. // System.Boolean System.Uri::m_iriParsing
  1956. bool ___m_iriParsing_22;
  1957. public:
  1958. inline static int32_t get_offset_of_m_String_16() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_String_16)); }
  1959. inline String_t* get_m_String_16() const { return ___m_String_16; }
  1960. inline String_t** get_address_of_m_String_16() { return &___m_String_16; }
  1961. inline void set_m_String_16(String_t* value)
  1962. {
  1963. ___m_String_16 = value;
  1964. Il2CppCodeGenWriteBarrier((void**)(&___m_String_16), (void*)value);
  1965. }
  1966. inline static int32_t get_offset_of_m_originalUnicodeString_17() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_originalUnicodeString_17)); }
  1967. inline String_t* get_m_originalUnicodeString_17() const { return ___m_originalUnicodeString_17; }
  1968. inline String_t** get_address_of_m_originalUnicodeString_17() { return &___m_originalUnicodeString_17; }
  1969. inline void set_m_originalUnicodeString_17(String_t* value)
  1970. {
  1971. ___m_originalUnicodeString_17 = value;
  1972. Il2CppCodeGenWriteBarrier((void**)(&___m_originalUnicodeString_17), (void*)value);
  1973. }
  1974. inline static int32_t get_offset_of_m_Syntax_18() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_Syntax_18)); }
  1975. inline UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC * get_m_Syntax_18() const { return ___m_Syntax_18; }
  1976. inline UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC ** get_address_of_m_Syntax_18() { return &___m_Syntax_18; }
  1977. inline void set_m_Syntax_18(UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC * value)
  1978. {
  1979. ___m_Syntax_18 = value;
  1980. Il2CppCodeGenWriteBarrier((void**)(&___m_Syntax_18), (void*)value);
  1981. }
  1982. inline static int32_t get_offset_of_m_DnsSafeHost_19() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_DnsSafeHost_19)); }
  1983. inline String_t* get_m_DnsSafeHost_19() const { return ___m_DnsSafeHost_19; }
  1984. inline String_t** get_address_of_m_DnsSafeHost_19() { return &___m_DnsSafeHost_19; }
  1985. inline void set_m_DnsSafeHost_19(String_t* value)
  1986. {
  1987. ___m_DnsSafeHost_19 = value;
  1988. Il2CppCodeGenWriteBarrier((void**)(&___m_DnsSafeHost_19), (void*)value);
  1989. }
  1990. inline static int32_t get_offset_of_m_Flags_20() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_Flags_20)); }
  1991. inline uint64_t get_m_Flags_20() const { return ___m_Flags_20; }
  1992. inline uint64_t* get_address_of_m_Flags_20() { return &___m_Flags_20; }
  1993. inline void set_m_Flags_20(uint64_t value)
  1994. {
  1995. ___m_Flags_20 = value;
  1996. }
  1997. inline static int32_t get_offset_of_m_Info_21() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_Info_21)); }
  1998. inline UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E * get_m_Info_21() const { return ___m_Info_21; }
  1999. inline UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E ** get_address_of_m_Info_21() { return &___m_Info_21; }
  2000. inline void set_m_Info_21(UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E * value)
  2001. {
  2002. ___m_Info_21 = value;
  2003. Il2CppCodeGenWriteBarrier((void**)(&___m_Info_21), (void*)value);
  2004. }
  2005. inline static int32_t get_offset_of_m_iriParsing_22() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_iriParsing_22)); }
  2006. inline bool get_m_iriParsing_22() const { return ___m_iriParsing_22; }
  2007. inline bool* get_address_of_m_iriParsing_22() { return &___m_iriParsing_22; }
  2008. inline void set_m_iriParsing_22(bool value)
  2009. {
  2010. ___m_iriParsing_22 = value;
  2011. }
  2012. };
  2013. struct Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields
  2014. {
  2015. public:
  2016. // System.String System.Uri::UriSchemeFile
  2017. String_t* ___UriSchemeFile_0;
  2018. // System.String System.Uri::UriSchemeFtp
  2019. String_t* ___UriSchemeFtp_1;
  2020. // System.String System.Uri::UriSchemeGopher
  2021. String_t* ___UriSchemeGopher_2;
  2022. // System.String System.Uri::UriSchemeHttp
  2023. String_t* ___UriSchemeHttp_3;
  2024. // System.String System.Uri::UriSchemeHttps
  2025. String_t* ___UriSchemeHttps_4;
  2026. // System.String System.Uri::UriSchemeWs
  2027. String_t* ___UriSchemeWs_5;
  2028. // System.String System.Uri::UriSchemeWss
  2029. String_t* ___UriSchemeWss_6;
  2030. // System.String System.Uri::UriSchemeMailto
  2031. String_t* ___UriSchemeMailto_7;
  2032. // System.String System.Uri::UriSchemeNews
  2033. String_t* ___UriSchemeNews_8;
  2034. // System.String System.Uri::UriSchemeNntp
  2035. String_t* ___UriSchemeNntp_9;
  2036. // System.String System.Uri::UriSchemeNetTcp
  2037. String_t* ___UriSchemeNetTcp_10;
  2038. // System.String System.Uri::UriSchemeNetPipe
  2039. String_t* ___UriSchemeNetPipe_11;
  2040. // System.String System.Uri::SchemeDelimiter
  2041. String_t* ___SchemeDelimiter_12;
  2042. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized
  2043. bool ___s_ConfigInitialized_23;
  2044. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing
  2045. bool ___s_ConfigInitializing_24;
  2046. // System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope
  2047. int32_t ___s_IdnScope_25;
  2048. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing
  2049. bool ___s_IriParsing_26;
  2050. // System.Boolean System.Uri::useDotNetRelativeOrAbsolute
  2051. bool ___useDotNetRelativeOrAbsolute_27;
  2052. // System.Boolean System.Uri::IsWindowsFileSystem
  2053. bool ___IsWindowsFileSystem_29;
  2054. // System.Object System.Uri::s_initLock
  2055. RuntimeObject * ___s_initLock_30;
  2056. // System.Char[] System.Uri::HexLowerChars
  2057. CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___HexLowerChars_34;
  2058. // System.Char[] System.Uri::_WSchars
  2059. CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ____WSchars_35;
  2060. public:
  2061. inline static int32_t get_offset_of_UriSchemeFile_0() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeFile_0)); }
  2062. inline String_t* get_UriSchemeFile_0() const { return ___UriSchemeFile_0; }
  2063. inline String_t** get_address_of_UriSchemeFile_0() { return &___UriSchemeFile_0; }
  2064. inline void set_UriSchemeFile_0(String_t* value)
  2065. {
  2066. ___UriSchemeFile_0 = value;
  2067. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFile_0), (void*)value);
  2068. }
  2069. inline static int32_t get_offset_of_UriSchemeFtp_1() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeFtp_1)); }
  2070. inline String_t* get_UriSchemeFtp_1() const { return ___UriSchemeFtp_1; }
  2071. inline String_t** get_address_of_UriSchemeFtp_1() { return &___UriSchemeFtp_1; }
  2072. inline void set_UriSchemeFtp_1(String_t* value)
  2073. {
  2074. ___UriSchemeFtp_1 = value;
  2075. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFtp_1), (void*)value);
  2076. }
  2077. inline static int32_t get_offset_of_UriSchemeGopher_2() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeGopher_2)); }
  2078. inline String_t* get_UriSchemeGopher_2() const { return ___UriSchemeGopher_2; }
  2079. inline String_t** get_address_of_UriSchemeGopher_2() { return &___UriSchemeGopher_2; }
  2080. inline void set_UriSchemeGopher_2(String_t* value)
  2081. {
  2082. ___UriSchemeGopher_2 = value;
  2083. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeGopher_2), (void*)value);
  2084. }
  2085. inline static int32_t get_offset_of_UriSchemeHttp_3() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeHttp_3)); }
  2086. inline String_t* get_UriSchemeHttp_3() const { return ___UriSchemeHttp_3; }
  2087. inline String_t** get_address_of_UriSchemeHttp_3() { return &___UriSchemeHttp_3; }
  2088. inline void set_UriSchemeHttp_3(String_t* value)
  2089. {
  2090. ___UriSchemeHttp_3 = value;
  2091. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttp_3), (void*)value);
  2092. }
  2093. inline static int32_t get_offset_of_UriSchemeHttps_4() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeHttps_4)); }
  2094. inline String_t* get_UriSchemeHttps_4() const { return ___UriSchemeHttps_4; }
  2095. inline String_t** get_address_of_UriSchemeHttps_4() { return &___UriSchemeHttps_4; }
  2096. inline void set_UriSchemeHttps_4(String_t* value)
  2097. {
  2098. ___UriSchemeHttps_4 = value;
  2099. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttps_4), (void*)value);
  2100. }
  2101. inline static int32_t get_offset_of_UriSchemeWs_5() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeWs_5)); }
  2102. inline String_t* get_UriSchemeWs_5() const { return ___UriSchemeWs_5; }
  2103. inline String_t** get_address_of_UriSchemeWs_5() { return &___UriSchemeWs_5; }
  2104. inline void set_UriSchemeWs_5(String_t* value)
  2105. {
  2106. ___UriSchemeWs_5 = value;
  2107. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWs_5), (void*)value);
  2108. }
  2109. inline static int32_t get_offset_of_UriSchemeWss_6() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeWss_6)); }
  2110. inline String_t* get_UriSchemeWss_6() const { return ___UriSchemeWss_6; }
  2111. inline String_t** get_address_of_UriSchemeWss_6() { return &___UriSchemeWss_6; }
  2112. inline void set_UriSchemeWss_6(String_t* value)
  2113. {
  2114. ___UriSchemeWss_6 = value;
  2115. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWss_6), (void*)value);
  2116. }
  2117. inline static int32_t get_offset_of_UriSchemeMailto_7() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeMailto_7)); }
  2118. inline String_t* get_UriSchemeMailto_7() const { return ___UriSchemeMailto_7; }
  2119. inline String_t** get_address_of_UriSchemeMailto_7() { return &___UriSchemeMailto_7; }
  2120. inline void set_UriSchemeMailto_7(String_t* value)
  2121. {
  2122. ___UriSchemeMailto_7 = value;
  2123. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeMailto_7), (void*)value);
  2124. }
  2125. inline static int32_t get_offset_of_UriSchemeNews_8() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeNews_8)); }
  2126. inline String_t* get_UriSchemeNews_8() const { return ___UriSchemeNews_8; }
  2127. inline String_t** get_address_of_UriSchemeNews_8() { return &___UriSchemeNews_8; }
  2128. inline void set_UriSchemeNews_8(String_t* value)
  2129. {
  2130. ___UriSchemeNews_8 = value;
  2131. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNews_8), (void*)value);
  2132. }
  2133. inline static int32_t get_offset_of_UriSchemeNntp_9() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeNntp_9)); }
  2134. inline String_t* get_UriSchemeNntp_9() const { return ___UriSchemeNntp_9; }
  2135. inline String_t** get_address_of_UriSchemeNntp_9() { return &___UriSchemeNntp_9; }
  2136. inline void set_UriSchemeNntp_9(String_t* value)
  2137. {
  2138. ___UriSchemeNntp_9 = value;
  2139. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNntp_9), (void*)value);
  2140. }
  2141. inline static int32_t get_offset_of_UriSchemeNetTcp_10() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeNetTcp_10)); }
  2142. inline String_t* get_UriSchemeNetTcp_10() const { return ___UriSchemeNetTcp_10; }
  2143. inline String_t** get_address_of_UriSchemeNetTcp_10() { return &___UriSchemeNetTcp_10; }
  2144. inline void set_UriSchemeNetTcp_10(String_t* value)
  2145. {
  2146. ___UriSchemeNetTcp_10 = value;
  2147. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetTcp_10), (void*)value);
  2148. }
  2149. inline static int32_t get_offset_of_UriSchemeNetPipe_11() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeNetPipe_11)); }
  2150. inline String_t* get_UriSchemeNetPipe_11() const { return ___UriSchemeNetPipe_11; }
  2151. inline String_t** get_address_of_UriSchemeNetPipe_11() { return &___UriSchemeNetPipe_11; }
  2152. inline void set_UriSchemeNetPipe_11(String_t* value)
  2153. {
  2154. ___UriSchemeNetPipe_11 = value;
  2155. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetPipe_11), (void*)value);
  2156. }
  2157. inline static int32_t get_offset_of_SchemeDelimiter_12() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___SchemeDelimiter_12)); }
  2158. inline String_t* get_SchemeDelimiter_12() const { return ___SchemeDelimiter_12; }
  2159. inline String_t** get_address_of_SchemeDelimiter_12() { return &___SchemeDelimiter_12; }
  2160. inline void set_SchemeDelimiter_12(String_t* value)
  2161. {
  2162. ___SchemeDelimiter_12 = value;
  2163. Il2CppCodeGenWriteBarrier((void**)(&___SchemeDelimiter_12), (void*)value);
  2164. }
  2165. inline static int32_t get_offset_of_s_ConfigInitialized_23() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_ConfigInitialized_23)); }
  2166. inline bool get_s_ConfigInitialized_23() const { return ___s_ConfigInitialized_23; }
  2167. inline bool* get_address_of_s_ConfigInitialized_23() { return &___s_ConfigInitialized_23; }
  2168. inline void set_s_ConfigInitialized_23(bool value)
  2169. {
  2170. ___s_ConfigInitialized_23 = value;
  2171. }
  2172. inline static int32_t get_offset_of_s_ConfigInitializing_24() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_ConfigInitializing_24)); }
  2173. inline bool get_s_ConfigInitializing_24() const { return ___s_ConfigInitializing_24; }
  2174. inline bool* get_address_of_s_ConfigInitializing_24() { return &___s_ConfigInitializing_24; }
  2175. inline void set_s_ConfigInitializing_24(bool value)
  2176. {
  2177. ___s_ConfigInitializing_24 = value;
  2178. }
  2179. inline static int32_t get_offset_of_s_IdnScope_25() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_IdnScope_25)); }
  2180. inline int32_t get_s_IdnScope_25() const { return ___s_IdnScope_25; }
  2181. inline int32_t* get_address_of_s_IdnScope_25() { return &___s_IdnScope_25; }
  2182. inline void set_s_IdnScope_25(int32_t value)
  2183. {
  2184. ___s_IdnScope_25 = value;
  2185. }
  2186. inline static int32_t get_offset_of_s_IriParsing_26() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_IriParsing_26)); }
  2187. inline bool get_s_IriParsing_26() const { return ___s_IriParsing_26; }
  2188. inline bool* get_address_of_s_IriParsing_26() { return &___s_IriParsing_26; }
  2189. inline void set_s_IriParsing_26(bool value)
  2190. {
  2191. ___s_IriParsing_26 = value;
  2192. }
  2193. inline static int32_t get_offset_of_useDotNetRelativeOrAbsolute_27() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___useDotNetRelativeOrAbsolute_27)); }
  2194. inline bool get_useDotNetRelativeOrAbsolute_27() const { return ___useDotNetRelativeOrAbsolute_27; }
  2195. inline bool* get_address_of_useDotNetRelativeOrAbsolute_27() { return &___useDotNetRelativeOrAbsolute_27; }
  2196. inline void set_useDotNetRelativeOrAbsolute_27(bool value)
  2197. {
  2198. ___useDotNetRelativeOrAbsolute_27 = value;
  2199. }
  2200. inline static int32_t get_offset_of_IsWindowsFileSystem_29() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___IsWindowsFileSystem_29)); }
  2201. inline bool get_IsWindowsFileSystem_29() const { return ___IsWindowsFileSystem_29; }
  2202. inline bool* get_address_of_IsWindowsFileSystem_29() { return &___IsWindowsFileSystem_29; }
  2203. inline void set_IsWindowsFileSystem_29(bool value)
  2204. {
  2205. ___IsWindowsFileSystem_29 = value;
  2206. }
  2207. inline static int32_t get_offset_of_s_initLock_30() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_initLock_30)); }
  2208. inline RuntimeObject * get_s_initLock_30() const { return ___s_initLock_30; }
  2209. inline RuntimeObject ** get_address_of_s_initLock_30() { return &___s_initLock_30; }
  2210. inline void set_s_initLock_30(RuntimeObject * value)
  2211. {
  2212. ___s_initLock_30 = value;
  2213. Il2CppCodeGenWriteBarrier((void**)(&___s_initLock_30), (void*)value);
  2214. }
  2215. inline static int32_t get_offset_of_HexLowerChars_34() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___HexLowerChars_34)); }
  2216. inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_HexLowerChars_34() const { return ___HexLowerChars_34; }
  2217. inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_HexLowerChars_34() { return &___HexLowerChars_34; }
  2218. inline void set_HexLowerChars_34(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
  2219. {
  2220. ___HexLowerChars_34 = value;
  2221. Il2CppCodeGenWriteBarrier((void**)(&___HexLowerChars_34), (void*)value);
  2222. }
  2223. inline static int32_t get_offset_of__WSchars_35() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ____WSchars_35)); }
  2224. inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get__WSchars_35() const { return ____WSchars_35; }
  2225. inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of__WSchars_35() { return &____WSchars_35; }
  2226. inline void set__WSchars_35(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
  2227. {
  2228. ____WSchars_35 = value;
  2229. Il2CppCodeGenWriteBarrier((void**)(&____WSchars_35), (void*)value);
  2230. }
  2231. };
  2232. // UnityEngine.Networking.DownloadHandlerBuffer
  2233. struct DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 : public DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9
  2234. {
  2235. public:
  2236. public:
  2237. };
  2238. // Native definition for P/Invoke marshalling of UnityEngine.Networking.DownloadHandlerBuffer
  2239. struct DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshaled_pinvoke : public DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke
  2240. {
  2241. };
  2242. // Native definition for COM marshalling of UnityEngine.Networking.DownloadHandlerBuffer
  2243. struct DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshaled_com : public DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com
  2244. {
  2245. };
  2246. // UnityEngine.Networking.UnityWebRequest
  2247. struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 : public RuntimeObject
  2248. {
  2249. public:
  2250. // System.IntPtr UnityEngine.Networking.UnityWebRequest::m_Ptr
  2251. intptr_t ___m_Ptr_0;
  2252. // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::m_DownloadHandler
  2253. DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___m_DownloadHandler_1;
  2254. // UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::m_UploadHandler
  2255. UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * ___m_UploadHandler_2;
  2256. // UnityEngine.Networking.CertificateHandler UnityEngine.Networking.UnityWebRequest::m_CertificateHandler
  2257. CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * ___m_CertificateHandler_3;
  2258. // System.Uri UnityEngine.Networking.UnityWebRequest::m_Uri
  2259. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___m_Uri_4;
  2260. // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeCertificateHandlerOnDispose>k__BackingField
  2261. bool ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_11;
  2262. // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeDownloadHandlerOnDispose>k__BackingField
  2263. bool ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_12;
  2264. // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeUploadHandlerOnDispose>k__BackingField
  2265. bool ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_13;
  2266. public:
  2267. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129, ___m_Ptr_0)); }
  2268. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  2269. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  2270. inline void set_m_Ptr_0(intptr_t value)
  2271. {
  2272. ___m_Ptr_0 = value;
  2273. }
  2274. inline static int32_t get_offset_of_m_DownloadHandler_1() { return static_cast<int32_t>(offsetof(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129, ___m_DownloadHandler_1)); }
  2275. inline DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * get_m_DownloadHandler_1() const { return ___m_DownloadHandler_1; }
  2276. inline DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 ** get_address_of_m_DownloadHandler_1() { return &___m_DownloadHandler_1; }
  2277. inline void set_m_DownloadHandler_1(DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * value)
  2278. {
  2279. ___m_DownloadHandler_1 = value;
  2280. Il2CppCodeGenWriteBarrier((void**)(&___m_DownloadHandler_1), (void*)value);
  2281. }
  2282. inline static int32_t get_offset_of_m_UploadHandler_2() { return static_cast<int32_t>(offsetof(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129, ___m_UploadHandler_2)); }
  2283. inline UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * get_m_UploadHandler_2() const { return ___m_UploadHandler_2; }
  2284. inline UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 ** get_address_of_m_UploadHandler_2() { return &___m_UploadHandler_2; }
  2285. inline void set_m_UploadHandler_2(UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * value)
  2286. {
  2287. ___m_UploadHandler_2 = value;
  2288. Il2CppCodeGenWriteBarrier((void**)(&___m_UploadHandler_2), (void*)value);
  2289. }
  2290. inline static int32_t get_offset_of_m_CertificateHandler_3() { return static_cast<int32_t>(offsetof(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129, ___m_CertificateHandler_3)); }
  2291. inline CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * get_m_CertificateHandler_3() const { return ___m_CertificateHandler_3; }
  2292. inline CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 ** get_address_of_m_CertificateHandler_3() { return &___m_CertificateHandler_3; }
  2293. inline void set_m_CertificateHandler_3(CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * value)
  2294. {
  2295. ___m_CertificateHandler_3 = value;
  2296. Il2CppCodeGenWriteBarrier((void**)(&___m_CertificateHandler_3), (void*)value);
  2297. }
  2298. inline static int32_t get_offset_of_m_Uri_4() { return static_cast<int32_t>(offsetof(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129, ___m_Uri_4)); }
  2299. inline Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * get_m_Uri_4() const { return ___m_Uri_4; }
  2300. inline Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E ** get_address_of_m_Uri_4() { return &___m_Uri_4; }
  2301. inline void set_m_Uri_4(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * value)
  2302. {
  2303. ___m_Uri_4 = value;
  2304. Il2CppCodeGenWriteBarrier((void**)(&___m_Uri_4), (void*)value);
  2305. }
  2306. inline static int32_t get_offset_of_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129, ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_11)); }
  2307. inline bool get_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_11() const { return ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_11; }
  2308. inline bool* get_address_of_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_11() { return &___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_11; }
  2309. inline void set_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_11(bool value)
  2310. {
  2311. ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_11 = value;
  2312. }
  2313. inline static int32_t get_offset_of_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129, ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_12)); }
  2314. inline bool get_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_12() const { return ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_12; }
  2315. inline bool* get_address_of_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_12() { return &___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_12; }
  2316. inline void set_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_12(bool value)
  2317. {
  2318. ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_12 = value;
  2319. }
  2320. inline static int32_t get_offset_of_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129, ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_13)); }
  2321. inline bool get_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_13() const { return ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_13; }
  2322. inline bool* get_address_of_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_13() { return &___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_13; }
  2323. inline void set_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_13(bool value)
  2324. {
  2325. ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_13 = value;
  2326. }
  2327. };
  2328. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UnityWebRequest
  2329. struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke
  2330. {
  2331. intptr_t ___m_Ptr_0;
  2332. DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke ___m_DownloadHandler_1;
  2333. UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke ___m_UploadHandler_2;
  2334. CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke ___m_CertificateHandler_3;
  2335. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___m_Uri_4;
  2336. int32_t ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_11;
  2337. int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_12;
  2338. int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_13;
  2339. };
  2340. // Native definition for COM marshalling of UnityEngine.Networking.UnityWebRequest
  2341. struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com
  2342. {
  2343. intptr_t ___m_Ptr_0;
  2344. DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com* ___m_DownloadHandler_1;
  2345. UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com* ___m_UploadHandler_2;
  2346. CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com* ___m_CertificateHandler_3;
  2347. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___m_Uri_4;
  2348. int32_t ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_11;
  2349. int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_12;
  2350. int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_13;
  2351. };
  2352. // UnityEngine.Networking.UnityWebRequestAsyncOperation
  2353. struct UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 : public AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D
  2354. {
  2355. public:
  2356. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequestAsyncOperation::<webRequest>k__BackingField
  2357. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * ___U3CwebRequestU3Ek__BackingField_2;
  2358. public:
  2359. inline static int32_t get_offset_of_U3CwebRequestU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353, ___U3CwebRequestU3Ek__BackingField_2)); }
  2360. inline UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * get_U3CwebRequestU3Ek__BackingField_2() const { return ___U3CwebRequestU3Ek__BackingField_2; }
  2361. inline UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 ** get_address_of_U3CwebRequestU3Ek__BackingField_2() { return &___U3CwebRequestU3Ek__BackingField_2; }
  2362. inline void set_U3CwebRequestU3Ek__BackingField_2(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * value)
  2363. {
  2364. ___U3CwebRequestU3Ek__BackingField_2 = value;
  2365. Il2CppCodeGenWriteBarrier((void**)(&___U3CwebRequestU3Ek__BackingField_2), (void*)value);
  2366. }
  2367. };
  2368. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UnityWebRequestAsyncOperation
  2369. struct UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshaled_pinvoke : public AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D_marshaled_pinvoke
  2370. {
  2371. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke* ___U3CwebRequestU3Ek__BackingField_2;
  2372. };
  2373. // Native definition for COM marshalling of UnityEngine.Networking.UnityWebRequestAsyncOperation
  2374. struct UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshaled_com : public AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D_marshaled_com
  2375. {
  2376. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com* ___U3CwebRequestU3Ek__BackingField_2;
  2377. };
  2378. // UnityEngine.Networking.UploadHandlerRaw
  2379. struct UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 : public UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4
  2380. {
  2381. public:
  2382. public:
  2383. };
  2384. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UploadHandlerRaw
  2385. struct UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshaled_pinvoke : public UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke
  2386. {
  2387. };
  2388. // Native definition for COM marshalling of UnityEngine.Networking.UploadHandlerRaw
  2389. struct UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshaled_com : public UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com
  2390. {
  2391. };
  2392. // System.Action`1<UnityEngine.AsyncOperation>
  2393. struct Action_1_tCBF754C290FAE894631BED8FD56E9E22C4C187F9 : public MulticastDelegate_t
  2394. {
  2395. public:
  2396. public:
  2397. };
  2398. // System.ArgumentException
  2399. struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
  2400. {
  2401. public:
  2402. // System.String System.ArgumentException::m_paramName
  2403. String_t* ___m_paramName_17;
  2404. public:
  2405. inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); }
  2406. inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
  2407. inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
  2408. inline void set_m_paramName_17(String_t* value)
  2409. {
  2410. ___m_paramName_17 = value;
  2411. Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value);
  2412. }
  2413. };
  2414. // System.FormatException
  2415. struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
  2416. {
  2417. public:
  2418. public:
  2419. };
  2420. // System.InvalidOperationException
  2421. struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
  2422. {
  2423. public:
  2424. public:
  2425. };
  2426. #ifdef __clang__
  2427. #pragma clang diagnostic pop
  2428. #endif
  2429. // System.Byte[]
  2430. struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray
  2431. {
  2432. public:
  2433. ALIGN_FIELD (8) uint8_t m_Items[1];
  2434. public:
  2435. inline uint8_t GetAt(il2cpp_array_size_t index) const
  2436. {
  2437. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2438. return m_Items[index];
  2439. }
  2440. inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
  2441. {
  2442. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2443. return m_Items + index;
  2444. }
  2445. inline void SetAt(il2cpp_array_size_t index, uint8_t value)
  2446. {
  2447. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2448. m_Items[index] = value;
  2449. }
  2450. inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
  2451. {
  2452. return m_Items[index];
  2453. }
  2454. inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
  2455. {
  2456. return m_Items + index;
  2457. }
  2458. inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
  2459. {
  2460. m_Items[index] = value;
  2461. }
  2462. };
  2463. // System.Char[]
  2464. struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray
  2465. {
  2466. public:
  2467. ALIGN_FIELD (8) Il2CppChar m_Items[1];
  2468. public:
  2469. inline Il2CppChar GetAt(il2cpp_array_size_t index) const
  2470. {
  2471. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2472. return m_Items[index];
  2473. }
  2474. inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
  2475. {
  2476. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2477. return m_Items + index;
  2478. }
  2479. inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
  2480. {
  2481. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2482. m_Items[index] = value;
  2483. }
  2484. inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
  2485. {
  2486. return m_Items[index];
  2487. }
  2488. inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
  2489. {
  2490. return m_Items + index;
  2491. }
  2492. inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
  2493. {
  2494. m_Items[index] = value;
  2495. }
  2496. };
  2497. IL2CPP_EXTERN_C void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_pinvoke(const DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9& unmarshaled, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke& marshaled);
  2498. IL2CPP_EXTERN_C void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_pinvoke_back(const DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke& marshaled, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9& unmarshaled);
  2499. IL2CPP_EXTERN_C void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_pinvoke_cleanup(DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke& marshaled);
  2500. IL2CPP_EXTERN_C void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_pinvoke(const UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4& unmarshaled, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke& marshaled);
  2501. IL2CPP_EXTERN_C void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_pinvoke_back(const UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke& marshaled, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4& unmarshaled);
  2502. IL2CPP_EXTERN_C void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_pinvoke_cleanup(UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke& marshaled);
  2503. IL2CPP_EXTERN_C void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_pinvoke(const CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0& unmarshaled, CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke& marshaled);
  2504. IL2CPP_EXTERN_C void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_pinvoke_back(const CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke& marshaled, CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0& unmarshaled);
  2505. IL2CPP_EXTERN_C void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_pinvoke_cleanup(CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke& marshaled);
  2506. IL2CPP_EXTERN_C void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_com(const DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9& unmarshaled, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com& marshaled);
  2507. IL2CPP_EXTERN_C void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_com_back(const DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com& marshaled, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9& unmarshaled);
  2508. IL2CPP_EXTERN_C void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_com_cleanup(DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com& marshaled);
  2509. IL2CPP_EXTERN_C void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_com(const UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4& unmarshaled, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com& marshaled);
  2510. IL2CPP_EXTERN_C void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_com_back(const UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com& marshaled, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4& unmarshaled);
  2511. IL2CPP_EXTERN_C void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_com_cleanup(UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com& marshaled);
  2512. IL2CPP_EXTERN_C void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_com(const CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0& unmarshaled, CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com& marshaled);
  2513. IL2CPP_EXTERN_C void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_com_back(const CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com& marshaled, CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0& unmarshaled);
  2514. IL2CPP_EXTERN_C void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_com_cleanup(CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com& marshaled);
  2515. IL2CPP_EXTERN_C void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_pinvoke(const UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129& unmarshaled, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke& marshaled);
  2516. IL2CPP_EXTERN_C void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_pinvoke_back(const UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke& marshaled, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129& unmarshaled);
  2517. IL2CPP_EXTERN_C void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_pinvoke_cleanup(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke& marshaled);
  2518. IL2CPP_EXTERN_C void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_com(const UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129& unmarshaled, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com& marshaled);
  2519. IL2CPP_EXTERN_C void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_com_back(const UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com& marshaled, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129& unmarshaled);
  2520. IL2CPP_EXTERN_C void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_com_cleanup(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com& marshaled);
  2521. // System.Boolean System.IntPtr::op_Inequality(System.IntPtr,System.IntPtr)
  2522. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method);
  2523. // System.Void UnityEngine.Networking.CertificateHandler::Release()
  2524. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Release_m8D680D11AF8B070587DA5C73E2AE652208BDA90A (CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * __this, const RuntimeMethod* method);
  2525. // System.Void System.Object::.ctor()
  2526. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
  2527. // System.Void UnityEngine.Networking.DownloadHandler::Dispose()
  2528. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Dispose_m7478E72B2DBA4B55FAA25F7A1975A13BA5891D4B (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method);
  2529. // System.Void System.Object::Finalize()
  2530. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380 (RuntimeObject * __this, const RuntimeMethod* method);
  2531. // System.Void UnityEngine.Networking.DownloadHandler::Release()
  2532. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Release_m913DA503E4183F3323A3D0121FFC978D0F220D5D (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method);
  2533. // System.Text.Encoding UnityEngine.Networking.DownloadHandler::GetTextEncoder()
  2534. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * DownloadHandler_GetTextEncoder_m601540FD9D16122709582833632A9DEEDBF07E64 (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method);
  2535. // System.String UnityEngine.Networking.DownloadHandler::GetContentType()
  2536. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetContentType_mB1653D4D9CA539D1D622C32B52DF5C38548D30E8 (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method);
  2537. // System.Boolean System.String::IsNullOrEmpty(System.String)
  2538. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229 (String_t* ___value0, const RuntimeMethod* method);
  2539. // System.Int32 System.String::IndexOf(System.String,System.StringComparison)
  2540. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mF9EA8429E9D1B7475D5A297E67435CF34E965F28 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method);
  2541. // System.Int32 System.String::IndexOf(System.Char,System.Int32)
  2542. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m66F6178DB4B2F61F4FAFD8B75787D0AB142ADD7D (String_t* __this, Il2CppChar ___value0, int32_t ___startIndex1, const RuntimeMethod* method);
  2543. // System.String System.String::Substring(System.Int32)
  2544. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method);
  2545. // System.String System.String::Trim()
  2546. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D (String_t* __this, const RuntimeMethod* method);
  2547. // System.String System.String::Trim(System.Char[])
  2548. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m788DE5AEFDAC40E778745C4DF4AFD45A4BC1007E (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___trimChars0, const RuntimeMethod* method);
  2549. // System.Int32 System.String::IndexOf(System.Char)
  2550. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method);
  2551. // System.String System.String::Substring(System.Int32,System.Int32)
  2552. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method);
  2553. // System.Text.Encoding System.Text.Encoding::GetEncoding(System.String)
  2554. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_GetEncoding_mA19D07F2E88F8FF58D42B73AFF5E22241607D54E (String_t* ___name0, const RuntimeMethod* method);
  2555. // System.String System.String::Format(System.String,System.Object,System.Object)
  2556. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method);
  2557. // System.Void UnityEngine.Debug::LogWarning(System.Object)
  2558. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m37338644DC81F640CCDFEAE35A223F0E965F0568 (RuntimeObject * ___message0, const RuntimeMethod* method);
  2559. // System.Text.Encoding System.Text.Encoding::get_UTF8()
  2560. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9 (const RuntimeMethod* method);
  2561. // System.IntPtr UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer)
  2562. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t DownloadHandlerBuffer_Create_m39E26BEA64B617123CEF559999C8352CA9FA5137 (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * ___obj0, const RuntimeMethod* method);
  2563. // System.Void UnityEngine.Networking.DownloadHandler::.ctor()
  2564. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler__ctor_m39F80F1C9B379B0D0362DF9264DE42604BDB24E0 (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method);
  2565. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::InternalCreateBuffer()
  2566. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_InternalCreateBuffer_m661B598DF8BD7BF86374FD84C52C8AEA8FA7BEF6 (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * __this, const RuntimeMethod* method);
  2567. // System.Byte[] UnityEngine.Networking.DownloadHandlerBuffer::InternalGetData()
  2568. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DownloadHandlerBuffer_InternalGetData_m9266395B691394754B68543A2FF2F19566C5ABBF (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * __this, const RuntimeMethod* method);
  2569. // System.Byte[] UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler)
  2570. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DownloadHandler_InternalGetByteArray_mD6D13BFFBF2F56415E10FFEFDC4A68FE29D6D4FD (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___dh0, const RuntimeMethod* method);
  2571. // System.Void UnityEngine.Networking.UnityWebRequest::Abort()
  2572. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_mF2C9BD010E5B32FF9F57C2EB4A9A0C8D0289CA7E (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2573. // System.Void UnityEngine.Networking.UnityWebRequest::Release()
  2574. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Release_mD168D309DCE6696163B3357FA21047689D1A7D74 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2575. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeDownloadHandlerOnDispose(System.Boolean)
  2576. IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_mA888301C47844E383DEC96D88CAD6CB8D9E7B9FA_inline (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___value0, const RuntimeMethod* method);
  2577. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeUploadHandlerOnDispose(System.Boolean)
  2578. IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mC176753B8AFBB40B69FAD7F1E2B2711CA5D6AA71_inline (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___value0, const RuntimeMethod* method);
  2579. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeCertificateHandlerOnDispose(System.Boolean)
  2580. IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m8609E1213309D1796E00860ECA9228F6454114AE_inline (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___value0, const RuntimeMethod* method);
  2581. // System.IntPtr UnityEngine.Networking.UnityWebRequest::Create()
  2582. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_Create_m98363C34C71AA034B47FA64589711B6F0AEF6698 (const RuntimeMethod* method);
  2583. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetDefaults()
  2584. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetDefaults_m644CC3C1C737838385F0EC9523A8930E696A9309 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2585. // System.Void UnityEngine.Networking.UnityWebRequest::set_url(System.String)
  2586. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_url_mA698FD94C447FF7C1C429D50C2EBAEEDD473007D (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___value0, const RuntimeMethod* method);
  2587. // System.Void UnityEngine.Networking.UnityWebRequest::set_method(System.String)
  2588. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_method_mF2DAC86EB05D65B9BCB52056B7CBB2C1AD87EEC6 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___value0, const RuntimeMethod* method);
  2589. // System.Void UnityEngine.Networking.UnityWebRequest::set_downloadHandler(UnityEngine.Networking.DownloadHandler)
  2590. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___value0, const RuntimeMethod* method);
  2591. // System.Void UnityEngine.Networking.UnityWebRequest::set_uploadHandler(UnityEngine.Networking.UploadHandler)
  2592. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * ___value0, const RuntimeMethod* method);
  2593. // System.Void UnityEngine.Networking.UnityWebRequest::DisposeHandlers()
  2594. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_DisposeHandlers_m0E54EE2A704090B2C2F1F3C90D30A47E3BF2B5C9 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2595. // System.Void UnityEngine.Networking.UnityWebRequest::InternalDestroy()
  2596. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalDestroy_mF5D7484808AEAE24A43B678614D257FBF885026B (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2597. // System.Void System.GC::SuppressFinalize(System.Object)
  2598. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425 (RuntimeObject * ___obj0, const RuntimeMethod* method);
  2599. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeDownloadHandlerOnDispose()
  2600. IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_m3BE68E08A94D92D7076F49CB5196019E6E5E17AA_inline (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2601. // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::get_downloadHandler()
  2602. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * UnityWebRequest_get_downloadHandler_m83044026479E6B4B2739DCE9EEA8A0FAE7D9AF41 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2603. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeUploadHandlerOnDispose()
  2604. IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_mE4A39A3A06DB4450DA49972254B4498A5F8F69DE_inline (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2605. // UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::get_uploadHandler()
  2606. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * UnityWebRequest_get_uploadHandler_mB23A35C2412258E44538F37AA540421C95E69A5C (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2607. // System.Void UnityEngine.Networking.UploadHandler::Dispose()
  2608. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Dispose_m9BBE8D7D2BBAAC2DE84B52BADA0B79CEA6F2DAB2 (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, const RuntimeMethod* method);
  2609. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeCertificateHandlerOnDispose()
  2610. IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m98EFCAC30D637479DC0DC45CFD8A15D402328F99_inline (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2611. // UnityEngine.Networking.CertificateHandler UnityEngine.Networking.UnityWebRequest::get_certificateHandler()
  2612. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * UnityWebRequest_get_certificateHandler_mD3C46D07991190373A7144A6732E390FFBE6DF00 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2613. // System.Void UnityEngine.Networking.CertificateHandler::Dispose()
  2614. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Dispose_m9C71BAA51760FDF05AB999B6AB6E6BC71BCB8CA0 (CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * __this, const RuntimeMethod* method);
  2615. // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::SendWebRequest()
  2616. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * UnityWebRequest_SendWebRequest_mF536CB2A0A39354A54B555B66B017816C5833EBD (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2617. // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::BeginWebRequest()
  2618. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * UnityWebRequest_BeginWebRequest_m1EF3612D316F7924F6E40D63DD3B0D0118C50CC0 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2619. // System.Void UnityEngine.Networking.UnityWebRequestAsyncOperation::set_webRequest(UnityEngine.Networking.UnityWebRequest)
  2620. IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_m07869D44180E2A93042A18260FA5A2BB934AC42F_inline (UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * __this, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * ___value0, const RuntimeMethod* method);
  2621. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isModifiable()
  2622. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2623. // System.Void System.InvalidOperationException::.ctor(System.String)
  2624. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method);
  2625. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)
  2626. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_mEE55FF0E071E784318B8C2110E3A3688BF4661CB (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, int32_t ___methodType0, const RuntimeMethod* method);
  2627. // System.String UnityEngine.Networking.UnityWebRequest::GetWebErrorString(UnityEngine.Networking.UnityWebRequest/UnityWebRequestError)
  2628. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D (int32_t ___err0, const RuntimeMethod* method);
  2629. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetCustomMethod(System.String)
  2630. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_mC818FAC0FD8B91FD454C6DFBF7561EEE2D0BA4F4 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___customMethodName0, const RuntimeMethod* method);
  2631. // System.Void System.ArgumentException::.ctor(System.String)
  2632. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method);
  2633. // System.String System.String::ToUpper()
  2634. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToUpper_m23D019B7C5EF2C5C01F524EB8137A424B33EEFE2 (String_t* __this, const RuntimeMethod* method);
  2635. // System.Boolean System.String::op_Equality(System.String,System.String)
  2636. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
  2637. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)
  2638. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, int32_t ___methodType0, const RuntimeMethod* method);
  2639. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetCustomMethod(System.String)
  2640. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetCustomMethod_mE9F0C84C6DCD5412AEDD76280EEC4FB82516EF16 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___customMethodName0, const RuntimeMethod* method);
  2641. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isNetworkError()
  2642. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isNetworkError_m082AFE1A58A330AC4CBD179606B61CB39DD44588 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2643. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isHttpError()
  2644. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isHttpError_m8F636B70C239EC848FACC83189DE0C22CADEC1C3 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2645. // System.Int64 UnityEngine.Networking.UnityWebRequest::get_responseCode()
  2646. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_m34819872549939D1EF9EA3D4010974FBEBAF0070 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2647. // System.String UnityEngine.Networking.UnityWebRequest::GetHTTPStatusString(System.Int64)
  2648. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetHTTPStatusString_m370515E94B5B3C14B4A49677A31D8494262D7EDA (int64_t ___responseCode0, const RuntimeMethod* method);
  2649. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::GetError()
  2650. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetError_m55BF2299E3B195AC416CCCB46C3DBD83C075018C (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2651. // System.String UnityEngine.Networking.UnityWebRequest::GetUrl()
  2652. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetUrl_m54AFB82BFB0CFD276363E9EC03E2ED3CB89A45CB (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2653. // System.String UnityEngineInternal.WebRequestUtils::MakeInitialUrl(System.String,System.String)
  2654. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeInitialUrl_m446CCE4EFB276BE27A9380D55B9E704D01107B83 (String_t* ___targetUrl0, String_t* ___localUrl1, const RuntimeMethod* method);
  2655. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetUrl(System.String)
  2656. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetUrl_m2E2C837A6F32065CAAAF6EFA7D0237C9E206689A (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, const RuntimeMethod* method);
  2657. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUrl(System.String)
  2658. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_mED007912E89AA114D1A3D6905586116F74C8D774 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, const RuntimeMethod* method);
  2659. // System.Boolean UnityEngine.Networking.UnityWebRequest::IsExecuting()
  2660. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_IsExecuting_m01B2C236790F9C97415C79F2AFDEBC0D234EEF09 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2661. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isDone()
  2662. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isDone_mB3CC99A8DC3DB1DD44B23008688EB2DF20906FDA (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2663. // System.Single UnityEngine.Networking.UnityWebRequest::GetDownloadProgress()
  2664. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UnityWebRequest_GetDownloadProgress_mD003AA45A293CEFEDB9ECB8E33DDC6D63C5E1578 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method);
  2665. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetChunked(System.Boolean)
  2666. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetChunked_mB7640F345604631D7A71C3C1EA89C88FA6F4BE5A (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___chunked0, const RuntimeMethod* method);
  2667. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::InternalSetRequestHeader(System.String,System.String)
  2668. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_InternalSetRequestHeader_m7481D7E49B6E6078598E40B81D1A3DA9B8D2BD10 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method);
  2669. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUploadHandler(UnityEngine.Networking.UploadHandler)
  2670. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_m046EF4089035441F661AED13F703024DEE030525 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * ___uh0, const RuntimeMethod* method);
  2671. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetDownloadHandler(UnityEngine.Networking.DownloadHandler)
  2672. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_mDE4E6137C34A90754C41B3A0B7B303135771EEDD (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___dh0, const RuntimeMethod* method);
  2673. // System.Int32 System.Math::Max(System.Int32,System.Int32)
  2674. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method);
  2675. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetTimeoutMsec(System.Int32)
  2676. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetTimeoutMsec_m53542B77D1BA4486039178C0BEBED3005A6AF079 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, int32_t ___timeout0, const RuntimeMethod* method);
  2677. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::.ctor()
  2678. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer__ctor_m2134187D8FB07FBAEA2CE23BFCEB13FD94261A9A (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * __this, const RuntimeMethod* method);
  2679. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String,UnityEngine.Networking.DownloadHandler,UnityEngine.Networking.UploadHandler)
  2680. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_m0D2F8F3E1202EF4256D17E91B95DB6CC673FC8D6 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, String_t* ___method1, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___downloadHandler2, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * ___uploadHandler3, const RuntimeMethod* method);
  2681. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String)
  2682. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_m3CBA159B3514D89C931002DFD333B9768A08EBFA (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, String_t* ___method1, const RuntimeMethod* method);
  2683. // System.Void UnityEngine.Networking.UnityWebRequest::SetupPost(UnityEngine.Networking.UnityWebRequest,System.String)
  2684. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetupPost_mAB03D6DF06B96684D7E1A25449868CD4D1AABA57 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * ___request0, String_t* ___postData1, const RuntimeMethod* method);
  2685. // System.String UnityEngine.WWWTranscoder::DataEncode(System.String,System.Text.Encoding)
  2686. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WWWTranscoder_DataEncode_m991CA7AD8C98345736244A24979E440E23E5035A (String_t* ___toEncode0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___e1, const RuntimeMethod* method);
  2687. // System.Void UnityEngine.Networking.UploadHandlerRaw::.ctor(System.Byte[])
  2688. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935 (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method);
  2689. // System.Void UnityEngine.Networking.UploadHandler::set_contentType(System.String)
  2690. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_set_contentType_mB90BEE88AD0FCD496BED349F4E8086AB3C76FF3E (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, String_t* ___value0, const RuntimeMethod* method);
  2691. // System.Void UnityEngine.AsyncOperation::.ctor()
  2692. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncOperation__ctor_mEEE6114B72B8807F4AA6FF48FA79E4EFE480293F (AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D * __this, const RuntimeMethod* method);
  2693. // System.Void UnityEngine.Networking.UploadHandler::Release()
  2694. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Release_m1723A22438AF0A7BE616D512E54190D9CE0EC3C4 (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, const RuntimeMethod* method);
  2695. // System.Void UnityEngine.Networking.UploadHandler::InternalSetContentType(System.String)
  2696. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_InternalSetContentType_m86E3E9307206530DD096E7E112A2E2F8B2B1D9B3 (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, String_t* ___newContentType0, const RuntimeMethod* method);
  2697. // System.Void UnityEngine.Networking.UploadHandler::.ctor()
  2698. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler__ctor_m3F76154710C5CB7099388479FA02E6555D077F6E (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, const RuntimeMethod* method);
  2699. // System.IntPtr UnityEngine.Networking.UploadHandlerRaw::Create(UnityEngine.Networking.UploadHandlerRaw,System.Byte[])
  2700. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UploadHandlerRaw_Create_m921D80A8952FC740F358E5FD28E6D5A70622687B (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 * ___self0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data1, const RuntimeMethod* method);
  2701. // System.Text.Encoding System.Text.Encoding::get_ASCII()
  2702. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E (const RuntimeMethod* method);
  2703. // System.Byte[] UnityEngine.WWWTranscoder::Encode(System.Byte[],System.Byte,System.Byte[],System.Byte[],System.Boolean)
  2704. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_Encode_m2D65124BA0FF6E92A66B5804596B75898068CF84 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, uint8_t ___escapeChar1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___space2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___forbidden3, bool ___uppercase4, const RuntimeMethod* method);
  2705. // System.Text.Encoding UnityEngine.WWWForm::get_DefaultEncoding()
  2706. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F (const RuntimeMethod* method);
  2707. // System.Void System.IO.MemoryStream::.ctor(System.Int32)
  2708. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryStream__ctor_m78689C82DED9ACE5022B7EABF28F17FF318DF2AA (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * __this, int32_t ___capacity0, const RuntimeMethod* method);
  2709. // System.Boolean UnityEngine.WWWTranscoder::ByteArrayContains(System.Byte[],System.Byte)
  2710. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteArrayContains_mC89ADE5434606470BB3BAF857D786138825E2D0B (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, uint8_t ___b1, const RuntimeMethod* method);
  2711. // System.Byte[] UnityEngine.WWWTranscoder::Byte2Hex(System.Byte,System.Byte[])
  2712. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_Byte2Hex_mA129675BFEDFED879713DAB1592772BC52FA04FB (uint8_t ___b0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___hexChars1, const RuntimeMethod* method);
  2713. // System.Byte[] UnityEngine.WWWTranscoder::Decode(System.Byte[],System.Byte,System.Byte[])
  2714. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_Decode_m2533830DAAAE6F33AA6EE85A5BF63C96F5D631D4 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, uint8_t ___escapeChar1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___space2, const RuntimeMethod* method);
  2715. // System.Boolean UnityEngine.WWWTranscoder::ByteSubArrayEquals(System.Byte[],System.Int32,System.Byte[])
  2716. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteSubArrayEquals_m268C2A9B31CCF4D81E7BEEF843DF5D477ECA9958 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, int32_t ___index1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___comperand2, const RuntimeMethod* method);
  2717. // System.Byte UnityEngine.WWWTranscoder::Hex2Byte(System.Byte[],System.Int32)
  2718. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t WWWTranscoder_Hex2Byte_mD417CA540CFBE045FCE32959CD3443EB9C8C7423 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___b0, int32_t ___offset1, const RuntimeMethod* method);
  2719. // System.Char System.String::get_Chars(System.Int32)
  2720. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96 (String_t* __this, int32_t ___index0, const RuntimeMethod* method);
  2721. // System.Void System.Uri::.ctor(System.String,System.UriKind)
  2722. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_mA02DB222F4F35380DE2700D84F58EB42497FDDE4 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, String_t* ___uriString0, int32_t ___uriKind1, const RuntimeMethod* method);
  2723. // System.Boolean System.Uri::get_IsAbsoluteUri()
  2724. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsAbsoluteUri_m8C189085F1C675DBC3148AA70C38074EC075D722 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method);
  2725. // System.String System.Uri::get_AbsoluteUri()
  2726. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_AbsoluteUri_m4326730E572E7E3874021E802813EB6F49F7F99E (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method);
  2727. // System.Void System.Uri::.ctor(System.Uri,System.Uri)
  2728. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m42192656437FBEF1EEA8724D3EF2BB67DA0ED6BF (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___baseUri0, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___relativeUri1, const RuntimeMethod* method);
  2729. // System.Void System.Uri::.ctor(System.String)
  2730. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_mBA69907A1D799CD12ED44B611985B25FE4C626A2 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, String_t* ___uriString0, const RuntimeMethod* method);
  2731. // System.Void System.Uri::.ctor(System.Uri,System.String)
  2732. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m41A759BF295FB902084DD289849793E01A65A14E (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___baseUri0, String_t* ___relativeUri1, const RuntimeMethod* method);
  2733. // System.Boolean System.Uri::op_Equality(System.Uri,System.Uri)
  2734. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Equality_mFED3D4AFAB090B76D2088C485507F8F702ADA18F (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___uri10, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___uri21, const RuntimeMethod* method);
  2735. // System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String)
  2736. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_m79684C4D2CE6C5495BCCE9A32AC029E1E5950B7C (Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * __this, String_t* ___input0, const RuntimeMethod* method);
  2737. // System.String System.Uri::get_Scheme()
  2738. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Scheme_m14A8F0018D8AACADBEF39600A59944F33EE39187 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method);
  2739. // System.String System.String::Concat(System.String,System.String,System.String)
  2740. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method);
  2741. // System.String UnityEngineInternal.WebRequestUtils::MakeUriString(System.Uri,System.String,System.Boolean)
  2742. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeUriString_m5693EA04230335B9611278EFC189BD58339D01E4 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___targetUri0, String_t* ___targetUrl1, bool ___prependProtocol2, const RuntimeMethod* method);
  2743. // System.Boolean System.Uri::get_IsFile()
  2744. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsFile_m06AB5A15E2A34BBC5177C6E902C5C9D7E766A213 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method);
  2745. // System.Boolean System.Uri::get_IsLoopback()
  2746. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsLoopback_mCD7E1228C8296730CBD31C713B0A81B660D99BC4 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method);
  2747. // System.String System.Uri::get_OriginalString()
  2748. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_OriginalString_m56099E46276F0A52524347F1F46A2F88E948504F (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method);
  2749. // System.String System.Uri::get_AbsolutePath()
  2750. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_AbsolutePath_mA9A825E2BBD0A43AD76EB9A9765E29E45FE32F31 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method);
  2751. // System.Boolean System.String::Contains(System.String)
  2752. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Contains_m4488034AF8CB3EEA9A205EB8A1F25D438FF8704B (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
  2753. // System.String UnityEngineInternal.WebRequestUtils::URLDecode(System.String)
  2754. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_URLDecode_m3F75FA29F50FB340B93815988517E9208C52EE62 (String_t* ___encoded0, const RuntimeMethod* method);
  2755. // System.Int32 System.String::get_Length()
  2756. IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method);
  2757. // System.String System.String::Concat(System.String,System.String)
  2758. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
  2759. // System.Void System.Text.StringBuilder::.ctor(System.String,System.Int32)
  2760. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m786CAFE74FE0D479747A0D474BE6EBCFDA5743EA (StringBuilder_t * __this, String_t* ___value0, int32_t ___capacity1, const RuntimeMethod* method);
  2761. // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
  2762. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method);
  2763. // System.Boolean System.String::StartsWith(System.String)
  2764. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
  2765. // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
  2766. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method);
  2767. // System.String System.Uri::get_PathAndQuery()
  2768. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_PathAndQuery_mF079BA04B7A397B2729E5B5DEE72B3654A44E384 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method);
  2769. // System.String System.Uri::get_Fragment()
  2770. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Fragment_m111666DD668AC59B9F3C3D3CEEEC7F70F6904D41 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method);
  2771. // System.Byte[] UnityEngine.WWWTranscoder::URLDecode(System.Byte[])
  2772. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_URLDecode_m591A567154B1B8737ECBFE065AF4FCA59217F5D8 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___toEncode0, const RuntimeMethod* method);
  2773. // System.Void System.Text.RegularExpressions.Regex::.ctor(System.String)
  2774. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex__ctor_m2769A5BA7B7A835514F6C0E4D30FAD467C6B1B0C (Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * __this, String_t* ___pattern0, const RuntimeMethod* method);
  2775. #ifdef __clang__
  2776. #pragma clang diagnostic push
  2777. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2778. #pragma clang diagnostic ignored "-Wunused-variable"
  2779. #endif
  2780. #ifdef __clang__
  2781. #pragma clang diagnostic pop
  2782. #endif
  2783. #ifdef __clang__
  2784. #pragma clang diagnostic push
  2785. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2786. #pragma clang diagnostic ignored "-Wunused-variable"
  2787. #endif
  2788. // Conversion methods for marshalling of: UnityEngine.Networking.CertificateHandler
  2789. IL2CPP_EXTERN_C void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_pinvoke(const CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0& unmarshaled, CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke& marshaled)
  2790. {
  2791. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  2792. }
  2793. IL2CPP_EXTERN_C void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_pinvoke_back(const CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke& marshaled, CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0& unmarshaled)
  2794. {
  2795. intptr_t unmarshaled_m_Ptr_temp_0;
  2796. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  2797. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  2798. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  2799. }
  2800. // Conversion method for clean up from marshalling of: UnityEngine.Networking.CertificateHandler
  2801. IL2CPP_EXTERN_C void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_pinvoke_cleanup(CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke& marshaled)
  2802. {
  2803. }
  2804. // Conversion methods for marshalling of: UnityEngine.Networking.CertificateHandler
  2805. IL2CPP_EXTERN_C void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_com(const CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0& unmarshaled, CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com& marshaled)
  2806. {
  2807. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  2808. }
  2809. IL2CPP_EXTERN_C void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_com_back(const CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com& marshaled, CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0& unmarshaled)
  2810. {
  2811. intptr_t unmarshaled_m_Ptr_temp_0;
  2812. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  2813. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  2814. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  2815. }
  2816. // Conversion method for clean up from marshalling of: UnityEngine.Networking.CertificateHandler
  2817. IL2CPP_EXTERN_C void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_com_cleanup(CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com& marshaled)
  2818. {
  2819. }
  2820. // System.Void UnityEngine.Networking.CertificateHandler::Release()
  2821. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Release_m8D680D11AF8B070587DA5C73E2AE652208BDA90A (CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * __this, const RuntimeMethod* method)
  2822. {
  2823. typedef void (*CertificateHandler_Release_m8D680D11AF8B070587DA5C73E2AE652208BDA90A_ftn) (CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 *);
  2824. static CertificateHandler_Release_m8D680D11AF8B070587DA5C73E2AE652208BDA90A_ftn _il2cpp_icall_func;
  2825. if (!_il2cpp_icall_func)
  2826. _il2cpp_icall_func = (CertificateHandler_Release_m8D680D11AF8B070587DA5C73E2AE652208BDA90A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.CertificateHandler::Release()");
  2827. _il2cpp_icall_func(__this);
  2828. }
  2829. // System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificate(System.Byte[])
  2830. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CertificateHandler_ValidateCertificate_m10584FA8D39D238AA435AB440279D3943273817D (CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___certificateData0, const RuntimeMethod* method)
  2831. {
  2832. bool V_0 = false;
  2833. {
  2834. V_0 = (bool)0;
  2835. goto IL_0005;
  2836. }
  2837. IL_0005:
  2838. {
  2839. bool L_0 = V_0;
  2840. return L_0;
  2841. }
  2842. }
  2843. // System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificateNative(System.Byte[])
  2844. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CertificateHandler_ValidateCertificateNative_mE500FAB5B59229D61E85A5DC0E28A0F583679170 (CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___certificateData0, const RuntimeMethod* method)
  2845. {
  2846. bool V_0 = false;
  2847. {
  2848. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___certificateData0;
  2849. bool L_1 = VirtFuncInvoker1< bool, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(4 /* System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificate(System.Byte[]) */, __this, L_0);
  2850. V_0 = L_1;
  2851. goto IL_000b;
  2852. }
  2853. IL_000b:
  2854. {
  2855. bool L_2 = V_0;
  2856. return L_2;
  2857. }
  2858. }
  2859. // System.Void UnityEngine.Networking.CertificateHandler::Dispose()
  2860. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Dispose_m9C71BAA51760FDF05AB999B6AB6E6BC71BCB8CA0 (CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * __this, const RuntimeMethod* method)
  2861. {
  2862. static bool s_Il2CppMethodInitialized;
  2863. if (!s_Il2CppMethodInitialized)
  2864. {
  2865. il2cpp_codegen_initialize_method (CertificateHandler_Dispose_m9C71BAA51760FDF05AB999B6AB6E6BC71BCB8CA0_MetadataUsageId);
  2866. s_Il2CppMethodInitialized = true;
  2867. }
  2868. bool V_0 = false;
  2869. {
  2870. intptr_t L_0 = __this->get_m_Ptr_0();
  2871. bool L_1 = IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
  2872. V_0 = L_1;
  2873. bool L_2 = V_0;
  2874. if (!L_2)
  2875. {
  2876. goto IL_0029;
  2877. }
  2878. }
  2879. {
  2880. CertificateHandler_Release_m8D680D11AF8B070587DA5C73E2AE652208BDA90A(__this, /*hidden argument*/NULL);
  2881. __this->set_m_Ptr_0((intptr_t)(0));
  2882. }
  2883. IL_0029:
  2884. {
  2885. return;
  2886. }
  2887. }
  2888. #ifdef __clang__
  2889. #pragma clang diagnostic pop
  2890. #endif
  2891. #ifdef __clang__
  2892. #pragma clang diagnostic push
  2893. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2894. #pragma clang diagnostic ignored "-Wunused-variable"
  2895. #endif
  2896. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandler
  2897. IL2CPP_EXTERN_C void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_pinvoke(const DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9& unmarshaled, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke& marshaled)
  2898. {
  2899. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  2900. }
  2901. IL2CPP_EXTERN_C void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_pinvoke_back(const DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke& marshaled, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9& unmarshaled)
  2902. {
  2903. intptr_t unmarshaled_m_Ptr_temp_0;
  2904. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  2905. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  2906. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  2907. }
  2908. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandler
  2909. IL2CPP_EXTERN_C void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_pinvoke_cleanup(DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke& marshaled)
  2910. {
  2911. }
  2912. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandler
  2913. IL2CPP_EXTERN_C void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_com(const DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9& unmarshaled, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com& marshaled)
  2914. {
  2915. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  2916. }
  2917. IL2CPP_EXTERN_C void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_com_back(const DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com& marshaled, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9& unmarshaled)
  2918. {
  2919. intptr_t unmarshaled_m_Ptr_temp_0;
  2920. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  2921. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  2922. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  2923. }
  2924. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandler
  2925. IL2CPP_EXTERN_C void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_com_cleanup(DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com& marshaled)
  2926. {
  2927. }
  2928. // System.Void UnityEngine.Networking.DownloadHandler::Release()
  2929. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Release_m913DA503E4183F3323A3D0121FFC978D0F220D5D (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method)
  2930. {
  2931. typedef void (*DownloadHandler_Release_m913DA503E4183F3323A3D0121FFC978D0F220D5D_ftn) (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 *);
  2932. static DownloadHandler_Release_m913DA503E4183F3323A3D0121FFC978D0F220D5D_ftn _il2cpp_icall_func;
  2933. if (!_il2cpp_icall_func)
  2934. _il2cpp_icall_func = (DownloadHandler_Release_m913DA503E4183F3323A3D0121FFC978D0F220D5D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::Release()");
  2935. _il2cpp_icall_func(__this);
  2936. }
  2937. // System.Void UnityEngine.Networking.DownloadHandler::.ctor()
  2938. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler__ctor_m39F80F1C9B379B0D0362DF9264DE42604BDB24E0 (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method)
  2939. {
  2940. {
  2941. Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
  2942. return;
  2943. }
  2944. }
  2945. // System.Void UnityEngine.Networking.DownloadHandler::Finalize()
  2946. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Finalize_mC6CBFA6D7B38827B12D64D265D5D4FB6B57D50CA (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method)
  2947. {
  2948. Exception_t * __last_unhandled_exception = 0;
  2949. NO_UNUSED_WARNING (__last_unhandled_exception);
  2950. Exception_t * __exception_local = 0;
  2951. NO_UNUSED_WARNING (__exception_local);
  2952. void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
  2953. il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
  2954. NO_UNUSED_WARNING (__leave_targets);
  2955. {
  2956. }
  2957. IL_0001:
  2958. try
  2959. { // begin try (depth: 1)
  2960. DownloadHandler_Dispose_m7478E72B2DBA4B55FAA25F7A1975A13BA5891D4B(__this, /*hidden argument*/NULL);
  2961. IL2CPP_LEAVE(0x13, FINALLY_000b);
  2962. } // end try (depth: 1)
  2963. catch(Il2CppExceptionWrapper& e)
  2964. {
  2965. __last_unhandled_exception = (Exception_t *)e.ex;
  2966. goto FINALLY_000b;
  2967. }
  2968. FINALLY_000b:
  2969. { // begin finally (depth: 1)
  2970. Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
  2971. IL2CPP_END_FINALLY(11)
  2972. } // end finally (depth: 1)
  2973. IL2CPP_CLEANUP(11)
  2974. {
  2975. IL2CPP_JUMP_TBL(0x13, IL_0013)
  2976. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  2977. }
  2978. IL_0013:
  2979. {
  2980. return;
  2981. }
  2982. }
  2983. // System.Void UnityEngine.Networking.DownloadHandler::Dispose()
  2984. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Dispose_m7478E72B2DBA4B55FAA25F7A1975A13BA5891D4B (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method)
  2985. {
  2986. static bool s_Il2CppMethodInitialized;
  2987. if (!s_Il2CppMethodInitialized)
  2988. {
  2989. il2cpp_codegen_initialize_method (DownloadHandler_Dispose_m7478E72B2DBA4B55FAA25F7A1975A13BA5891D4B_MetadataUsageId);
  2990. s_Il2CppMethodInitialized = true;
  2991. }
  2992. bool V_0 = false;
  2993. {
  2994. intptr_t L_0 = __this->get_m_Ptr_0();
  2995. bool L_1 = IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
  2996. V_0 = L_1;
  2997. bool L_2 = V_0;
  2998. if (!L_2)
  2999. {
  3000. goto IL_0029;
  3001. }
  3002. }
  3003. {
  3004. DownloadHandler_Release_m913DA503E4183F3323A3D0121FFC978D0F220D5D(__this, /*hidden argument*/NULL);
  3005. __this->set_m_Ptr_0((intptr_t)(0));
  3006. }
  3007. IL_0029:
  3008. {
  3009. return;
  3010. }
  3011. }
  3012. // System.Byte[] UnityEngine.Networking.DownloadHandler::get_data()
  3013. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DownloadHandler_get_data_m4AE4E3764FBE186ABA89B5F3A7F91048EE5E38FB (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method)
  3014. {
  3015. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
  3016. {
  3017. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(5 /* System.Byte[] UnityEngine.Networking.DownloadHandler::GetData() */, __this);
  3018. V_0 = L_0;
  3019. goto IL_000a;
  3020. }
  3021. IL_000a:
  3022. {
  3023. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0;
  3024. return L_1;
  3025. }
  3026. }
  3027. // System.String UnityEngine.Networking.DownloadHandler::get_text()
  3028. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_get_text_m1D707E375899B4F4F0434B79AB8D57ADFE5424FF (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method)
  3029. {
  3030. String_t* V_0 = NULL;
  3031. {
  3032. String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String UnityEngine.Networking.DownloadHandler::GetText() */, __this);
  3033. V_0 = L_0;
  3034. goto IL_000a;
  3035. }
  3036. IL_000a:
  3037. {
  3038. String_t* L_1 = V_0;
  3039. return L_1;
  3040. }
  3041. }
  3042. // System.Byte[] UnityEngine.Networking.DownloadHandler::GetData()
  3043. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DownloadHandler_GetData_m684807DC14346A128E64E455E8DD147C32125E04 (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method)
  3044. {
  3045. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
  3046. {
  3047. V_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
  3048. goto IL_0005;
  3049. }
  3050. IL_0005:
  3051. {
  3052. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = V_0;
  3053. return L_0;
  3054. }
  3055. }
  3056. // System.String UnityEngine.Networking.DownloadHandler::GetText()
  3057. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetText_mA51553E65D6A397E07AAAC21214C817AD72550FD (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method)
  3058. {
  3059. static bool s_Il2CppMethodInitialized;
  3060. if (!s_Il2CppMethodInitialized)
  3061. {
  3062. il2cpp_codegen_initialize_method (DownloadHandler_GetText_mA51553E65D6A397E07AAAC21214C817AD72550FD_MetadataUsageId);
  3063. s_Il2CppMethodInitialized = true;
  3064. }
  3065. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
  3066. bool V_1 = false;
  3067. String_t* V_2 = NULL;
  3068. int32_t G_B3_0 = 0;
  3069. {
  3070. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(5 /* System.Byte[] UnityEngine.Networking.DownloadHandler::GetData() */, __this);
  3071. V_0 = L_0;
  3072. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0;
  3073. if (!L_1)
  3074. {
  3075. goto IL_0012;
  3076. }
  3077. }
  3078. {
  3079. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = V_0;
  3080. NullCheck(L_2);
  3081. G_B3_0 = ((!(((uint32_t)(((RuntimeArray*)L_2)->max_length)) <= ((uint32_t)0)))? 1 : 0);
  3082. goto IL_0013;
  3083. }
  3084. IL_0012:
  3085. {
  3086. G_B3_0 = 0;
  3087. }
  3088. IL_0013:
  3089. {
  3090. V_1 = (bool)G_B3_0;
  3091. bool L_3 = V_1;
  3092. if (!L_3)
  3093. {
  3094. goto IL_002b;
  3095. }
  3096. }
  3097. {
  3098. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_4 = DownloadHandler_GetTextEncoder_m601540FD9D16122709582833632A9DEEDBF07E64(__this, /*hidden argument*/NULL);
  3099. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = V_0;
  3100. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = V_0;
  3101. NullCheck(L_6);
  3102. NullCheck(L_4);
  3103. String_t* L_7 = VirtFuncInvoker3< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(33 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_4, L_5, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))));
  3104. V_2 = L_7;
  3105. goto IL_0034;
  3106. }
  3107. IL_002b:
  3108. {
  3109. V_2 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  3110. goto IL_0034;
  3111. }
  3112. IL_0034:
  3113. {
  3114. String_t* L_8 = V_2;
  3115. return L_8;
  3116. }
  3117. }
  3118. // System.Text.Encoding UnityEngine.Networking.DownloadHandler::GetTextEncoder()
  3119. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * DownloadHandler_GetTextEncoder_m601540FD9D16122709582833632A9DEEDBF07E64 (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method)
  3120. {
  3121. static bool s_Il2CppMethodInitialized;
  3122. if (!s_Il2CppMethodInitialized)
  3123. {
  3124. il2cpp_codegen_initialize_method (DownloadHandler_GetTextEncoder_m601540FD9D16122709582833632A9DEEDBF07E64_MetadataUsageId);
  3125. s_Il2CppMethodInitialized = true;
  3126. }
  3127. String_t* V_0 = NULL;
  3128. bool V_1 = false;
  3129. int32_t V_2 = 0;
  3130. bool V_3 = false;
  3131. int32_t V_4 = 0;
  3132. bool V_5 = false;
  3133. String_t* V_6 = NULL;
  3134. int32_t V_7 = 0;
  3135. bool V_8 = false;
  3136. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * V_9 = NULL;
  3137. ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * V_10 = NULL;
  3138. Exception_t * __last_unhandled_exception = 0;
  3139. NO_UNUSED_WARNING (__last_unhandled_exception);
  3140. Exception_t * __exception_local = 0;
  3141. NO_UNUSED_WARNING (__exception_local);
  3142. void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
  3143. il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
  3144. NO_UNUSED_WARNING (__leave_targets);
  3145. {
  3146. String_t* L_0 = DownloadHandler_GetContentType_mB1653D4D9CA539D1D622C32B52DF5C38548D30E8(__this, /*hidden argument*/NULL);
  3147. V_0 = L_0;
  3148. String_t* L_1 = V_0;
  3149. bool L_2 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_1, /*hidden argument*/NULL);
  3150. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  3151. bool L_3 = V_1;
  3152. if (!L_3)
  3153. {
  3154. goto IL_00c5;
  3155. }
  3156. }
  3157. {
  3158. String_t* L_4 = V_0;
  3159. NullCheck(L_4);
  3160. int32_t L_5 = String_IndexOf_mF9EA8429E9D1B7475D5A297E67435CF34E965F28(L_4, _stringLiteralDCB16D9AACB079FE42FBDE349C3319DE8033DDD1, 5, /*hidden argument*/NULL);
  3161. V_2 = L_5;
  3162. int32_t L_6 = V_2;
  3163. V_3 = (bool)((((int32_t)L_6) > ((int32_t)(-1)))? 1 : 0);
  3164. bool L_7 = V_3;
  3165. if (!L_7)
  3166. {
  3167. goto IL_00c4;
  3168. }
  3169. }
  3170. {
  3171. String_t* L_8 = V_0;
  3172. int32_t L_9 = V_2;
  3173. NullCheck(L_8);
  3174. int32_t L_10 = String_IndexOf_m66F6178DB4B2F61F4FAFD8B75787D0AB142ADD7D(L_8, ((int32_t)61), L_9, /*hidden argument*/NULL);
  3175. V_4 = L_10;
  3176. int32_t L_11 = V_4;
  3177. V_5 = (bool)((((int32_t)L_11) > ((int32_t)(-1)))? 1 : 0);
  3178. bool L_12 = V_5;
  3179. if (!L_12)
  3180. {
  3181. goto IL_00c3;
  3182. }
  3183. }
  3184. {
  3185. String_t* L_13 = V_0;
  3186. int32_t L_14 = V_4;
  3187. NullCheck(L_13);
  3188. String_t* L_15 = String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE(L_13, ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)), /*hidden argument*/NULL);
  3189. NullCheck(L_15);
  3190. String_t* L_16 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_15, /*hidden argument*/NULL);
  3191. CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_17 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)2);
  3192. CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_18 = L_17;
  3193. NullCheck(L_18);
  3194. (L_18)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)39));
  3195. CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_19 = L_18;
  3196. NullCheck(L_19);
  3197. (L_19)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)34));
  3198. NullCheck(L_16);
  3199. String_t* L_20 = String_Trim_m788DE5AEFDAC40E778745C4DF4AFD45A4BC1007E(L_16, L_19, /*hidden argument*/NULL);
  3200. NullCheck(L_20);
  3201. String_t* L_21 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_20, /*hidden argument*/NULL);
  3202. V_6 = L_21;
  3203. String_t* L_22 = V_6;
  3204. NullCheck(L_22);
  3205. int32_t L_23 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_22, ((int32_t)59), /*hidden argument*/NULL);
  3206. V_7 = L_23;
  3207. int32_t L_24 = V_7;
  3208. V_8 = (bool)((((int32_t)L_24) > ((int32_t)(-1)))? 1 : 0);
  3209. bool L_25 = V_8;
  3210. if (!L_25)
  3211. {
  3212. goto IL_0096;
  3213. }
  3214. }
  3215. {
  3216. String_t* L_26 = V_6;
  3217. int32_t L_27 = V_7;
  3218. NullCheck(L_26);
  3219. String_t* L_28 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_26, 0, L_27, /*hidden argument*/NULL);
  3220. V_6 = L_28;
  3221. }
  3222. IL_0096:
  3223. {
  3224. }
  3225. IL_0097:
  3226. try
  3227. { // begin try (depth: 1)
  3228. String_t* L_29 = V_6;
  3229. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_30 = Encoding_GetEncoding_mA19D07F2E88F8FF58D42B73AFF5E22241607D54E(L_29, /*hidden argument*/NULL);
  3230. V_9 = L_30;
  3231. goto IL_00ce;
  3232. } // end try (depth: 1)
  3233. catch(Il2CppExceptionWrapper& e)
  3234. {
  3235. __exception_local = (Exception_t *)e.ex;
  3236. if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
  3237. goto CATCH_00a3;
  3238. throw e;
  3239. }
  3240. CATCH_00a3:
  3241. { // begin catch(System.ArgumentException)
  3242. V_10 = ((ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)__exception_local);
  3243. String_t* L_31 = V_6;
  3244. ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_32 = V_10;
  3245. NullCheck(L_32);
  3246. String_t* L_33 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_32);
  3247. String_t* L_34 = String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A(_stringLiteral88DADF72F0A8F76B45A836CE12A3DC82857776DB, L_31, L_33, /*hidden argument*/NULL);
  3248. IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
  3249. Debug_LogWarning_m37338644DC81F640CCDFEAE35A223F0E965F0568(L_34, /*hidden argument*/NULL);
  3250. goto IL_00c2;
  3251. } // end catch (depth: 1)
  3252. IL_00c2:
  3253. {
  3254. }
  3255. IL_00c3:
  3256. {
  3257. }
  3258. IL_00c4:
  3259. {
  3260. }
  3261. IL_00c5:
  3262. {
  3263. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_35 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL);
  3264. V_9 = L_35;
  3265. goto IL_00ce;
  3266. }
  3267. IL_00ce:
  3268. {
  3269. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_36 = V_9;
  3270. return L_36;
  3271. }
  3272. }
  3273. // System.String UnityEngine.Networking.DownloadHandler::GetContentType()
  3274. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetContentType_mB1653D4D9CA539D1D622C32B52DF5C38548D30E8 (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method)
  3275. {
  3276. typedef String_t* (*DownloadHandler_GetContentType_mB1653D4D9CA539D1D622C32B52DF5C38548D30E8_ftn) (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 *);
  3277. static DownloadHandler_GetContentType_mB1653D4D9CA539D1D622C32B52DF5C38548D30E8_ftn _il2cpp_icall_func;
  3278. if (!_il2cpp_icall_func)
  3279. _il2cpp_icall_func = (DownloadHandler_GetContentType_mB1653D4D9CA539D1D622C32B52DF5C38548D30E8_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::GetContentType()");
  3280. String_t* retVal = _il2cpp_icall_func(__this);
  3281. return retVal;
  3282. }
  3283. // System.Byte[] UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler)
  3284. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DownloadHandler_InternalGetByteArray_mD6D13BFFBF2F56415E10FFEFDC4A68FE29D6D4FD (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___dh0, const RuntimeMethod* method)
  3285. {
  3286. typedef ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* (*DownloadHandler_InternalGetByteArray_mD6D13BFFBF2F56415E10FFEFDC4A68FE29D6D4FD_ftn) (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 *);
  3287. static DownloadHandler_InternalGetByteArray_mD6D13BFFBF2F56415E10FFEFDC4A68FE29D6D4FD_ftn _il2cpp_icall_func;
  3288. if (!_il2cpp_icall_func)
  3289. _il2cpp_icall_func = (DownloadHandler_InternalGetByteArray_mD6D13BFFBF2F56415E10FFEFDC4A68FE29D6D4FD_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler)");
  3290. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* retVal = _il2cpp_icall_func(___dh0);
  3291. return retVal;
  3292. }
  3293. #ifdef __clang__
  3294. #pragma clang diagnostic pop
  3295. #endif
  3296. #ifdef __clang__
  3297. #pragma clang diagnostic push
  3298. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3299. #pragma clang diagnostic ignored "-Wunused-variable"
  3300. #endif
  3301. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandlerBuffer
  3302. IL2CPP_EXTERN_C void DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshal_pinvoke(const DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255& unmarshaled, DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshaled_pinvoke& marshaled)
  3303. {
  3304. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  3305. }
  3306. IL2CPP_EXTERN_C void DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshal_pinvoke_back(const DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshaled_pinvoke& marshaled, DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255& unmarshaled)
  3307. {
  3308. intptr_t unmarshaled_m_Ptr_temp_0;
  3309. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  3310. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  3311. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  3312. }
  3313. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandlerBuffer
  3314. IL2CPP_EXTERN_C void DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshal_pinvoke_cleanup(DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshaled_pinvoke& marshaled)
  3315. {
  3316. }
  3317. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandlerBuffer
  3318. IL2CPP_EXTERN_C void DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshal_com(const DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255& unmarshaled, DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshaled_com& marshaled)
  3319. {
  3320. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  3321. }
  3322. IL2CPP_EXTERN_C void DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshal_com_back(const DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshaled_com& marshaled, DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255& unmarshaled)
  3323. {
  3324. intptr_t unmarshaled_m_Ptr_temp_0;
  3325. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  3326. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  3327. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  3328. }
  3329. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandlerBuffer
  3330. IL2CPP_EXTERN_C void DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshal_com_cleanup(DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshaled_com& marshaled)
  3331. {
  3332. }
  3333. // System.IntPtr UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer)
  3334. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t DownloadHandlerBuffer_Create_m39E26BEA64B617123CEF559999C8352CA9FA5137 (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * ___obj0, const RuntimeMethod* method)
  3335. {
  3336. typedef intptr_t (*DownloadHandlerBuffer_Create_m39E26BEA64B617123CEF559999C8352CA9FA5137_ftn) (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 *);
  3337. static DownloadHandlerBuffer_Create_m39E26BEA64B617123CEF559999C8352CA9FA5137_ftn _il2cpp_icall_func;
  3338. if (!_il2cpp_icall_func)
  3339. _il2cpp_icall_func = (DownloadHandlerBuffer_Create_m39E26BEA64B617123CEF559999C8352CA9FA5137_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer)");
  3340. intptr_t retVal = _il2cpp_icall_func(___obj0);
  3341. return retVal;
  3342. }
  3343. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::InternalCreateBuffer()
  3344. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_InternalCreateBuffer_m661B598DF8BD7BF86374FD84C52C8AEA8FA7BEF6 (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * __this, const RuntimeMethod* method)
  3345. {
  3346. {
  3347. intptr_t L_0 = DownloadHandlerBuffer_Create_m39E26BEA64B617123CEF559999C8352CA9FA5137(__this, /*hidden argument*/NULL);
  3348. ((DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 *)__this)->set_m_Ptr_0((intptr_t)L_0);
  3349. return;
  3350. }
  3351. }
  3352. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::.ctor()
  3353. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer__ctor_m2134187D8FB07FBAEA2CE23BFCEB13FD94261A9A (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * __this, const RuntimeMethod* method)
  3354. {
  3355. {
  3356. DownloadHandler__ctor_m39F80F1C9B379B0D0362DF9264DE42604BDB24E0(__this, /*hidden argument*/NULL);
  3357. DownloadHandlerBuffer_InternalCreateBuffer_m661B598DF8BD7BF86374FD84C52C8AEA8FA7BEF6(__this, /*hidden argument*/NULL);
  3358. return;
  3359. }
  3360. }
  3361. // System.Byte[] UnityEngine.Networking.DownloadHandlerBuffer::GetData()
  3362. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DownloadHandlerBuffer_GetData_m5A7FFA694EA35F1CE0731803F41E50BBDB16BF14 (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * __this, const RuntimeMethod* method)
  3363. {
  3364. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
  3365. {
  3366. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = DownloadHandlerBuffer_InternalGetData_m9266395B691394754B68543A2FF2F19566C5ABBF(__this, /*hidden argument*/NULL);
  3367. V_0 = L_0;
  3368. goto IL_000a;
  3369. }
  3370. IL_000a:
  3371. {
  3372. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0;
  3373. return L_1;
  3374. }
  3375. }
  3376. // System.Byte[] UnityEngine.Networking.DownloadHandlerBuffer::InternalGetData()
  3377. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DownloadHandlerBuffer_InternalGetData_m9266395B691394754B68543A2FF2F19566C5ABBF (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * __this, const RuntimeMethod* method)
  3378. {
  3379. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
  3380. {
  3381. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = DownloadHandler_InternalGetByteArray_mD6D13BFFBF2F56415E10FFEFDC4A68FE29D6D4FD(__this, /*hidden argument*/NULL);
  3382. V_0 = L_0;
  3383. goto IL_000a;
  3384. }
  3385. IL_000a:
  3386. {
  3387. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0;
  3388. return L_1;
  3389. }
  3390. }
  3391. #ifdef __clang__
  3392. #pragma clang diagnostic pop
  3393. #endif
  3394. #ifdef __clang__
  3395. #pragma clang diagnostic push
  3396. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3397. #pragma clang diagnostic ignored "-Wunused-variable"
  3398. #endif
  3399. // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequest
  3400. IL2CPP_EXTERN_C void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_pinvoke(const UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129& unmarshaled, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke& marshaled)
  3401. {
  3402. Exception_t* ___m_Uri_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  3403. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL);
  3404. }
  3405. IL2CPP_EXTERN_C void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_pinvoke_back(const UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke& marshaled, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129& unmarshaled)
  3406. {
  3407. Exception_t* ___m_Uri_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  3408. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL);
  3409. }
  3410. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequest
  3411. IL2CPP_EXTERN_C void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_pinvoke_cleanup(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke& marshaled)
  3412. {
  3413. }
  3414. // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequest
  3415. IL2CPP_EXTERN_C void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_com(const UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129& unmarshaled, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com& marshaled)
  3416. {
  3417. Exception_t* ___m_Uri_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  3418. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL);
  3419. }
  3420. IL2CPP_EXTERN_C void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_com_back(const UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com& marshaled, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129& unmarshaled)
  3421. {
  3422. Exception_t* ___m_Uri_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  3423. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL);
  3424. }
  3425. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequest
  3426. IL2CPP_EXTERN_C void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_com_cleanup(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com& marshaled)
  3427. {
  3428. }
  3429. // System.String UnityEngine.Networking.UnityWebRequest::GetWebErrorString(UnityEngine.Networking.UnityWebRequest_UnityWebRequestError)
  3430. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D (int32_t ___err0, const RuntimeMethod* method)
  3431. {
  3432. typedef String_t* (*UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D_ftn) (int32_t);
  3433. static UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D_ftn _il2cpp_icall_func;
  3434. if (!_il2cpp_icall_func)
  3435. _il2cpp_icall_func = (UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetWebErrorString(UnityEngine.Networking.UnityWebRequest/UnityWebRequestError)");
  3436. String_t* retVal = _il2cpp_icall_func(___err0);
  3437. return retVal;
  3438. }
  3439. // System.String UnityEngine.Networking.UnityWebRequest::GetHTTPStatusString(System.Int64)
  3440. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetHTTPStatusString_m370515E94B5B3C14B4A49677A31D8494262D7EDA (int64_t ___responseCode0, const RuntimeMethod* method)
  3441. {
  3442. typedef String_t* (*UnityWebRequest_GetHTTPStatusString_m370515E94B5B3C14B4A49677A31D8494262D7EDA_ftn) (int64_t);
  3443. static UnityWebRequest_GetHTTPStatusString_m370515E94B5B3C14B4A49677A31D8494262D7EDA_ftn _il2cpp_icall_func;
  3444. if (!_il2cpp_icall_func)
  3445. _il2cpp_icall_func = (UnityWebRequest_GetHTTPStatusString_m370515E94B5B3C14B4A49677A31D8494262D7EDA_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetHTTPStatusString(System.Int64)");
  3446. String_t* retVal = _il2cpp_icall_func(___responseCode0);
  3447. return retVal;
  3448. }
  3449. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeCertificateHandlerOnDispose()
  3450. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m98EFCAC30D637479DC0DC45CFD8A15D402328F99 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  3451. {
  3452. {
  3453. bool L_0 = __this->get_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_11();
  3454. return L_0;
  3455. }
  3456. }
  3457. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeCertificateHandlerOnDispose(System.Boolean)
  3458. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m8609E1213309D1796E00860ECA9228F6454114AE (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___value0, const RuntimeMethod* method)
  3459. {
  3460. {
  3461. bool L_0 = ___value0;
  3462. __this->set_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_11(L_0);
  3463. return;
  3464. }
  3465. }
  3466. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeDownloadHandlerOnDispose()
  3467. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_m3BE68E08A94D92D7076F49CB5196019E6E5E17AA (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  3468. {
  3469. {
  3470. bool L_0 = __this->get_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_12();
  3471. return L_0;
  3472. }
  3473. }
  3474. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeDownloadHandlerOnDispose(System.Boolean)
  3475. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_mA888301C47844E383DEC96D88CAD6CB8D9E7B9FA (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___value0, const RuntimeMethod* method)
  3476. {
  3477. {
  3478. bool L_0 = ___value0;
  3479. __this->set_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_12(L_0);
  3480. return;
  3481. }
  3482. }
  3483. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeUploadHandlerOnDispose()
  3484. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_mE4A39A3A06DB4450DA49972254B4498A5F8F69DE (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  3485. {
  3486. {
  3487. bool L_0 = __this->get_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_13();
  3488. return L_0;
  3489. }
  3490. }
  3491. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeUploadHandlerOnDispose(System.Boolean)
  3492. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mC176753B8AFBB40B69FAD7F1E2B2711CA5D6AA71 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___value0, const RuntimeMethod* method)
  3493. {
  3494. {
  3495. bool L_0 = ___value0;
  3496. __this->set_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_13(L_0);
  3497. return;
  3498. }
  3499. }
  3500. // System.IntPtr UnityEngine.Networking.UnityWebRequest::Create()
  3501. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_Create_m98363C34C71AA034B47FA64589711B6F0AEF6698 (const RuntimeMethod* method)
  3502. {
  3503. typedef intptr_t (*UnityWebRequest_Create_m98363C34C71AA034B47FA64589711B6F0AEF6698_ftn) ();
  3504. static UnityWebRequest_Create_m98363C34C71AA034B47FA64589711B6F0AEF6698_ftn _il2cpp_icall_func;
  3505. if (!_il2cpp_icall_func)
  3506. _il2cpp_icall_func = (UnityWebRequest_Create_m98363C34C71AA034B47FA64589711B6F0AEF6698_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Create()");
  3507. intptr_t retVal = _il2cpp_icall_func();
  3508. return retVal;
  3509. }
  3510. // System.Void UnityEngine.Networking.UnityWebRequest::Release()
  3511. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Release_mD168D309DCE6696163B3357FA21047689D1A7D74 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  3512. {
  3513. typedef void (*UnityWebRequest_Release_mD168D309DCE6696163B3357FA21047689D1A7D74_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *);
  3514. static UnityWebRequest_Release_mD168D309DCE6696163B3357FA21047689D1A7D74_ftn _il2cpp_icall_func;
  3515. if (!_il2cpp_icall_func)
  3516. _il2cpp_icall_func = (UnityWebRequest_Release_mD168D309DCE6696163B3357FA21047689D1A7D74_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Release()");
  3517. _il2cpp_icall_func(__this);
  3518. }
  3519. // System.Void UnityEngine.Networking.UnityWebRequest::InternalDestroy()
  3520. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalDestroy_mF5D7484808AEAE24A43B678614D257FBF885026B (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  3521. {
  3522. static bool s_Il2CppMethodInitialized;
  3523. if (!s_Il2CppMethodInitialized)
  3524. {
  3525. il2cpp_codegen_initialize_method (UnityWebRequest_InternalDestroy_mF5D7484808AEAE24A43B678614D257FBF885026B_MetadataUsageId);
  3526. s_Il2CppMethodInitialized = true;
  3527. }
  3528. bool V_0 = false;
  3529. {
  3530. intptr_t L_0 = __this->get_m_Ptr_0();
  3531. bool L_1 = IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
  3532. V_0 = L_1;
  3533. bool L_2 = V_0;
  3534. if (!L_2)
  3535. {
  3536. goto IL_0030;
  3537. }
  3538. }
  3539. {
  3540. UnityWebRequest_Abort_mF2C9BD010E5B32FF9F57C2EB4A9A0C8D0289CA7E(__this, /*hidden argument*/NULL);
  3541. UnityWebRequest_Release_mD168D309DCE6696163B3357FA21047689D1A7D74(__this, /*hidden argument*/NULL);
  3542. __this->set_m_Ptr_0((intptr_t)(0));
  3543. }
  3544. IL_0030:
  3545. {
  3546. return;
  3547. }
  3548. }
  3549. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetDefaults()
  3550. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetDefaults_m644CC3C1C737838385F0EC9523A8930E696A9309 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  3551. {
  3552. {
  3553. UnityWebRequest_set_disposeDownloadHandlerOnDispose_mA888301C47844E383DEC96D88CAD6CB8D9E7B9FA_inline(__this, (bool)1, /*hidden argument*/NULL);
  3554. UnityWebRequest_set_disposeUploadHandlerOnDispose_mC176753B8AFBB40B69FAD7F1E2B2711CA5D6AA71_inline(__this, (bool)1, /*hidden argument*/NULL);
  3555. UnityWebRequest_set_disposeCertificateHandlerOnDispose_m8609E1213309D1796E00860ECA9228F6454114AE_inline(__this, (bool)1, /*hidden argument*/NULL);
  3556. return;
  3557. }
  3558. }
  3559. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String)
  3560. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_m8D62097CE983222DC563B0F47C9FC2C9B7A5F41F (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, const RuntimeMethod* method)
  3561. {
  3562. {
  3563. Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
  3564. intptr_t L_0 = UnityWebRequest_Create_m98363C34C71AA034B47FA64589711B6F0AEF6698(/*hidden argument*/NULL);
  3565. __this->set_m_Ptr_0((intptr_t)L_0);
  3566. UnityWebRequest_InternalSetDefaults_m644CC3C1C737838385F0EC9523A8930E696A9309(__this, /*hidden argument*/NULL);
  3567. String_t* L_1 = ___url0;
  3568. UnityWebRequest_set_url_mA698FD94C447FF7C1C429D50C2EBAEEDD473007D(__this, L_1, /*hidden argument*/NULL);
  3569. return;
  3570. }
  3571. }
  3572. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String)
  3573. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_m3CBA159B3514D89C931002DFD333B9768A08EBFA (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, String_t* ___method1, const RuntimeMethod* method)
  3574. {
  3575. {
  3576. Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
  3577. intptr_t L_0 = UnityWebRequest_Create_m98363C34C71AA034B47FA64589711B6F0AEF6698(/*hidden argument*/NULL);
  3578. __this->set_m_Ptr_0((intptr_t)L_0);
  3579. UnityWebRequest_InternalSetDefaults_m644CC3C1C737838385F0EC9523A8930E696A9309(__this, /*hidden argument*/NULL);
  3580. String_t* L_1 = ___url0;
  3581. UnityWebRequest_set_url_mA698FD94C447FF7C1C429D50C2EBAEEDD473007D(__this, L_1, /*hidden argument*/NULL);
  3582. String_t* L_2 = ___method1;
  3583. UnityWebRequest_set_method_mF2DAC86EB05D65B9BCB52056B7CBB2C1AD87EEC6(__this, L_2, /*hidden argument*/NULL);
  3584. return;
  3585. }
  3586. }
  3587. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String,UnityEngine.Networking.DownloadHandler,UnityEngine.Networking.UploadHandler)
  3588. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_m0D2F8F3E1202EF4256D17E91B95DB6CC673FC8D6 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, String_t* ___method1, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___downloadHandler2, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * ___uploadHandler3, const RuntimeMethod* method)
  3589. {
  3590. {
  3591. Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
  3592. intptr_t L_0 = UnityWebRequest_Create_m98363C34C71AA034B47FA64589711B6F0AEF6698(/*hidden argument*/NULL);
  3593. __this->set_m_Ptr_0((intptr_t)L_0);
  3594. UnityWebRequest_InternalSetDefaults_m644CC3C1C737838385F0EC9523A8930E696A9309(__this, /*hidden argument*/NULL);
  3595. String_t* L_1 = ___url0;
  3596. UnityWebRequest_set_url_mA698FD94C447FF7C1C429D50C2EBAEEDD473007D(__this, L_1, /*hidden argument*/NULL);
  3597. String_t* L_2 = ___method1;
  3598. UnityWebRequest_set_method_mF2DAC86EB05D65B9BCB52056B7CBB2C1AD87EEC6(__this, L_2, /*hidden argument*/NULL);
  3599. DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * L_3 = ___downloadHandler2;
  3600. UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E(__this, L_3, /*hidden argument*/NULL);
  3601. UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_4 = ___uploadHandler3;
  3602. UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1(__this, L_4, /*hidden argument*/NULL);
  3603. return;
  3604. }
  3605. }
  3606. // System.Void UnityEngine.Networking.UnityWebRequest::Finalize()
  3607. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Finalize_mEBEE0B5A630F0D75CE9F23CDA91DB5048D92CF2C (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  3608. {
  3609. Exception_t * __last_unhandled_exception = 0;
  3610. NO_UNUSED_WARNING (__last_unhandled_exception);
  3611. Exception_t * __exception_local = 0;
  3612. NO_UNUSED_WARNING (__exception_local);
  3613. void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
  3614. il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
  3615. NO_UNUSED_WARNING (__leave_targets);
  3616. {
  3617. }
  3618. IL_0001:
  3619. try
  3620. { // begin try (depth: 1)
  3621. UnityWebRequest_DisposeHandlers_m0E54EE2A704090B2C2F1F3C90D30A47E3BF2B5C9(__this, /*hidden argument*/NULL);
  3622. UnityWebRequest_InternalDestroy_mF5D7484808AEAE24A43B678614D257FBF885026B(__this, /*hidden argument*/NULL);
  3623. IL2CPP_LEAVE(0x1A, FINALLY_0012);
  3624. } // end try (depth: 1)
  3625. catch(Il2CppExceptionWrapper& e)
  3626. {
  3627. __last_unhandled_exception = (Exception_t *)e.ex;
  3628. goto FINALLY_0012;
  3629. }
  3630. FINALLY_0012:
  3631. { // begin finally (depth: 1)
  3632. Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
  3633. IL2CPP_END_FINALLY(18)
  3634. } // end finally (depth: 1)
  3635. IL2CPP_CLEANUP(18)
  3636. {
  3637. IL2CPP_JUMP_TBL(0x1A, IL_001a)
  3638. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  3639. }
  3640. IL_001a:
  3641. {
  3642. return;
  3643. }
  3644. }
  3645. // System.Void UnityEngine.Networking.UnityWebRequest::Dispose()
  3646. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Dispose_m6AFA87DA329282058723E5ACE016B0B08CFE806D (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  3647. {
  3648. static bool s_Il2CppMethodInitialized;
  3649. if (!s_Il2CppMethodInitialized)
  3650. {
  3651. il2cpp_codegen_initialize_method (UnityWebRequest_Dispose_m6AFA87DA329282058723E5ACE016B0B08CFE806D_MetadataUsageId);
  3652. s_Il2CppMethodInitialized = true;
  3653. }
  3654. {
  3655. UnityWebRequest_DisposeHandlers_m0E54EE2A704090B2C2F1F3C90D30A47E3BF2B5C9(__this, /*hidden argument*/NULL);
  3656. UnityWebRequest_InternalDestroy_mF5D7484808AEAE24A43B678614D257FBF885026B(__this, /*hidden argument*/NULL);
  3657. IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var);
  3658. GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(__this, /*hidden argument*/NULL);
  3659. return;
  3660. }
  3661. }
  3662. // System.Void UnityEngine.Networking.UnityWebRequest::DisposeHandlers()
  3663. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_DisposeHandlers_m0E54EE2A704090B2C2F1F3C90D30A47E3BF2B5C9 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  3664. {
  3665. bool V_0 = false;
  3666. DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * V_1 = NULL;
  3667. bool V_2 = false;
  3668. bool V_3 = false;
  3669. UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * V_4 = NULL;
  3670. bool V_5 = false;
  3671. bool V_6 = false;
  3672. CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * V_7 = NULL;
  3673. bool V_8 = false;
  3674. {
  3675. bool L_0 = UnityWebRequest_get_disposeDownloadHandlerOnDispose_m3BE68E08A94D92D7076F49CB5196019E6E5E17AA_inline(__this, /*hidden argument*/NULL);
  3676. V_0 = L_0;
  3677. bool L_1 = V_0;
  3678. if (!L_1)
  3679. {
  3680. goto IL_0025;
  3681. }
  3682. }
  3683. {
  3684. DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * L_2 = UnityWebRequest_get_downloadHandler_m83044026479E6B4B2739DCE9EEA8A0FAE7D9AF41(__this, /*hidden argument*/NULL);
  3685. V_1 = L_2;
  3686. DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * L_3 = V_1;
  3687. V_2 = (bool)((!(((RuntimeObject*)(DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 *)L_3) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
  3688. bool L_4 = V_2;
  3689. if (!L_4)
  3690. {
  3691. goto IL_0024;
  3692. }
  3693. }
  3694. {
  3695. DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * L_5 = V_1;
  3696. NullCheck(L_5);
  3697. DownloadHandler_Dispose_m7478E72B2DBA4B55FAA25F7A1975A13BA5891D4B(L_5, /*hidden argument*/NULL);
  3698. }
  3699. IL_0024:
  3700. {
  3701. }
  3702. IL_0025:
  3703. {
  3704. bool L_6 = UnityWebRequest_get_disposeUploadHandlerOnDispose_mE4A39A3A06DB4450DA49972254B4498A5F8F69DE_inline(__this, /*hidden argument*/NULL);
  3705. V_3 = L_6;
  3706. bool L_7 = V_3;
  3707. if (!L_7)
  3708. {
  3709. goto IL_004e;
  3710. }
  3711. }
  3712. {
  3713. UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_8 = UnityWebRequest_get_uploadHandler_mB23A35C2412258E44538F37AA540421C95E69A5C(__this, /*hidden argument*/NULL);
  3714. V_4 = L_8;
  3715. UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_9 = V_4;
  3716. V_5 = (bool)((!(((RuntimeObject*)(UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 *)L_9) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
  3717. bool L_10 = V_5;
  3718. if (!L_10)
  3719. {
  3720. goto IL_004d;
  3721. }
  3722. }
  3723. {
  3724. UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_11 = V_4;
  3725. NullCheck(L_11);
  3726. UploadHandler_Dispose_m9BBE8D7D2BBAAC2DE84B52BADA0B79CEA6F2DAB2(L_11, /*hidden argument*/NULL);
  3727. }
  3728. IL_004d:
  3729. {
  3730. }
  3731. IL_004e:
  3732. {
  3733. bool L_12 = UnityWebRequest_get_disposeCertificateHandlerOnDispose_m98EFCAC30D637479DC0DC45CFD8A15D402328F99_inline(__this, /*hidden argument*/NULL);
  3734. V_6 = L_12;
  3735. bool L_13 = V_6;
  3736. if (!L_13)
  3737. {
  3738. goto IL_0079;
  3739. }
  3740. }
  3741. {
  3742. CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * L_14 = UnityWebRequest_get_certificateHandler_mD3C46D07991190373A7144A6732E390FFBE6DF00(__this, /*hidden argument*/NULL);
  3743. V_7 = L_14;
  3744. CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * L_15 = V_7;
  3745. V_8 = (bool)((!(((RuntimeObject*)(CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 *)L_15) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
  3746. bool L_16 = V_8;
  3747. if (!L_16)
  3748. {
  3749. goto IL_0078;
  3750. }
  3751. }
  3752. {
  3753. CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * L_17 = V_7;
  3754. NullCheck(L_17);
  3755. CertificateHandler_Dispose_m9C71BAA51760FDF05AB999B6AB6E6BC71BCB8CA0(L_17, /*hidden argument*/NULL);
  3756. }
  3757. IL_0078:
  3758. {
  3759. }
  3760. IL_0079:
  3761. {
  3762. return;
  3763. }
  3764. }
  3765. // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::BeginWebRequest()
  3766. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * UnityWebRequest_BeginWebRequest_m1EF3612D316F7924F6E40D63DD3B0D0118C50CC0 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  3767. {
  3768. typedef UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * (*UnityWebRequest_BeginWebRequest_m1EF3612D316F7924F6E40D63DD3B0D0118C50CC0_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *);
  3769. static UnityWebRequest_BeginWebRequest_m1EF3612D316F7924F6E40D63DD3B0D0118C50CC0_ftn _il2cpp_icall_func;
  3770. if (!_il2cpp_icall_func)
  3771. _il2cpp_icall_func = (UnityWebRequest_BeginWebRequest_m1EF3612D316F7924F6E40D63DD3B0D0118C50CC0_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::BeginWebRequest()");
  3772. UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * retVal = _il2cpp_icall_func(__this);
  3773. return retVal;
  3774. }
  3775. // UnityEngine.AsyncOperation UnityEngine.Networking.UnityWebRequest::Send()
  3776. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D * UnityWebRequest_Send_mE2BC0213F05A8E6E8384AB4BB8BA75883BDD801F (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  3777. {
  3778. AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D * V_0 = NULL;
  3779. {
  3780. UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * L_0 = UnityWebRequest_SendWebRequest_mF536CB2A0A39354A54B555B66B017816C5833EBD(__this, /*hidden argument*/NULL);
  3781. V_0 = L_0;
  3782. goto IL_000a;
  3783. }
  3784. IL_000a:
  3785. {
  3786. AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D * L_1 = V_0;
  3787. return L_1;
  3788. }
  3789. }
  3790. // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::SendWebRequest()
  3791. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * UnityWebRequest_SendWebRequest_mF536CB2A0A39354A54B555B66B017816C5833EBD (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  3792. {
  3793. UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * V_0 = NULL;
  3794. bool V_1 = false;
  3795. UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * V_2 = NULL;
  3796. {
  3797. UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * L_0 = UnityWebRequest_BeginWebRequest_m1EF3612D316F7924F6E40D63DD3B0D0118C50CC0(__this, /*hidden argument*/NULL);
  3798. V_0 = L_0;
  3799. UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * L_1 = V_0;
  3800. V_1 = (bool)((!(((RuntimeObject*)(UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 *)L_1) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
  3801. bool L_2 = V_1;
  3802. if (!L_2)
  3803. {
  3804. goto IL_0018;
  3805. }
  3806. }
  3807. {
  3808. UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * L_3 = V_0;
  3809. NullCheck(L_3);
  3810. UnityWebRequestAsyncOperation_set_webRequest_m07869D44180E2A93042A18260FA5A2BB934AC42F_inline(L_3, __this, /*hidden argument*/NULL);
  3811. }
  3812. IL_0018:
  3813. {
  3814. UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * L_4 = V_0;
  3815. V_2 = L_4;
  3816. goto IL_001c;
  3817. }
  3818. IL_001c:
  3819. {
  3820. UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * L_5 = V_2;
  3821. return L_5;
  3822. }
  3823. }
  3824. // System.Void UnityEngine.Networking.UnityWebRequest::Abort()
  3825. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_mF2C9BD010E5B32FF9F57C2EB4A9A0C8D0289CA7E (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  3826. {
  3827. typedef void (*UnityWebRequest_Abort_mF2C9BD010E5B32FF9F57C2EB4A9A0C8D0289CA7E_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *);
  3828. static UnityWebRequest_Abort_mF2C9BD010E5B32FF9F57C2EB4A9A0C8D0289CA7E_ftn _il2cpp_icall_func;
  3829. if (!_il2cpp_icall_func)
  3830. _il2cpp_icall_func = (UnityWebRequest_Abort_mF2C9BD010E5B32FF9F57C2EB4A9A0C8D0289CA7E_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Abort()");
  3831. _il2cpp_icall_func(__this);
  3832. }
  3833. // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetMethod(UnityEngine.Networking.UnityWebRequest_UnityWebRequestMethod)
  3834. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_mEE55FF0E071E784318B8C2110E3A3688BF4661CB (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, int32_t ___methodType0, const RuntimeMethod* method)
  3835. {
  3836. typedef int32_t (*UnityWebRequest_SetMethod_mEE55FF0E071E784318B8C2110E3A3688BF4661CB_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, int32_t);
  3837. static UnityWebRequest_SetMethod_mEE55FF0E071E784318B8C2110E3A3688BF4661CB_ftn _il2cpp_icall_func;
  3838. if (!_il2cpp_icall_func)
  3839. _il2cpp_icall_func = (UnityWebRequest_SetMethod_mEE55FF0E071E784318B8C2110E3A3688BF4661CB_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)");
  3840. int32_t retVal = _il2cpp_icall_func(__this, ___methodType0);
  3841. return retVal;
  3842. }
  3843. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetMethod(UnityEngine.Networking.UnityWebRequest_UnityWebRequestMethod)
  3844. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, int32_t ___methodType0, const RuntimeMethod* method)
  3845. {
  3846. static bool s_Il2CppMethodInitialized;
  3847. if (!s_Il2CppMethodInitialized)
  3848. {
  3849. il2cpp_codegen_initialize_method (UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9_MetadataUsageId);
  3850. s_Il2CppMethodInitialized = true;
  3851. }
  3852. int32_t V_0 = 0;
  3853. bool V_1 = false;
  3854. bool V_2 = false;
  3855. {
  3856. bool L_0 = UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342(__this, /*hidden argument*/NULL);
  3857. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  3858. bool L_1 = V_1;
  3859. if (!L_1)
  3860. {
  3861. goto IL_0019;
  3862. }
  3863. }
  3864. {
  3865. InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
  3866. InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, _stringLiteral70EE7E18113E0328AAE2B1D5D212C2735F1C00F8, /*hidden argument*/NULL);
  3867. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9_RuntimeMethod_var);
  3868. }
  3869. IL_0019:
  3870. {
  3871. int32_t L_3 = ___methodType0;
  3872. int32_t L_4 = UnityWebRequest_SetMethod_mEE55FF0E071E784318B8C2110E3A3688BF4661CB(__this, L_3, /*hidden argument*/NULL);
  3873. V_0 = L_4;
  3874. int32_t L_5 = V_0;
  3875. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  3876. bool L_6 = V_2;
  3877. if (!L_6)
  3878. {
  3879. goto IL_0035;
  3880. }
  3881. }
  3882. {
  3883. int32_t L_7 = V_0;
  3884. String_t* L_8 = UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D(L_7, /*hidden argument*/NULL);
  3885. InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_9 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
  3886. InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_9, L_8, /*hidden argument*/NULL);
  3887. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9_RuntimeMethod_var);
  3888. }
  3889. IL_0035:
  3890. {
  3891. return;
  3892. }
  3893. }
  3894. // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetCustomMethod(System.String)
  3895. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_mC818FAC0FD8B91FD454C6DFBF7561EEE2D0BA4F4 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___customMethodName0, const RuntimeMethod* method)
  3896. {
  3897. typedef int32_t (*UnityWebRequest_SetCustomMethod_mC818FAC0FD8B91FD454C6DFBF7561EEE2D0BA4F4_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, String_t*);
  3898. static UnityWebRequest_SetCustomMethod_mC818FAC0FD8B91FD454C6DFBF7561EEE2D0BA4F4_ftn _il2cpp_icall_func;
  3899. if (!_il2cpp_icall_func)
  3900. _il2cpp_icall_func = (UnityWebRequest_SetCustomMethod_mC818FAC0FD8B91FD454C6DFBF7561EEE2D0BA4F4_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetCustomMethod(System.String)");
  3901. int32_t retVal = _il2cpp_icall_func(__this, ___customMethodName0);
  3902. return retVal;
  3903. }
  3904. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetCustomMethod(System.String)
  3905. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetCustomMethod_mE9F0C84C6DCD5412AEDD76280EEC4FB82516EF16 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___customMethodName0, const RuntimeMethod* method)
  3906. {
  3907. static bool s_Il2CppMethodInitialized;
  3908. if (!s_Il2CppMethodInitialized)
  3909. {
  3910. il2cpp_codegen_initialize_method (UnityWebRequest_InternalSetCustomMethod_mE9F0C84C6DCD5412AEDD76280EEC4FB82516EF16_MetadataUsageId);
  3911. s_Il2CppMethodInitialized = true;
  3912. }
  3913. int32_t V_0 = 0;
  3914. bool V_1 = false;
  3915. bool V_2 = false;
  3916. {
  3917. bool L_0 = UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342(__this, /*hidden argument*/NULL);
  3918. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  3919. bool L_1 = V_1;
  3920. if (!L_1)
  3921. {
  3922. goto IL_0019;
  3923. }
  3924. }
  3925. {
  3926. InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
  3927. InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, _stringLiteral70EE7E18113E0328AAE2B1D5D212C2735F1C00F8, /*hidden argument*/NULL);
  3928. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnityWebRequest_InternalSetCustomMethod_mE9F0C84C6DCD5412AEDD76280EEC4FB82516EF16_RuntimeMethod_var);
  3929. }
  3930. IL_0019:
  3931. {
  3932. String_t* L_3 = ___customMethodName0;
  3933. int32_t L_4 = UnityWebRequest_SetCustomMethod_mC818FAC0FD8B91FD454C6DFBF7561EEE2D0BA4F4(__this, L_3, /*hidden argument*/NULL);
  3934. V_0 = L_4;
  3935. int32_t L_5 = V_0;
  3936. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  3937. bool L_6 = V_2;
  3938. if (!L_6)
  3939. {
  3940. goto IL_0035;
  3941. }
  3942. }
  3943. {
  3944. int32_t L_7 = V_0;
  3945. String_t* L_8 = UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D(L_7, /*hidden argument*/NULL);
  3946. InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_9 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
  3947. InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_9, L_8, /*hidden argument*/NULL);
  3948. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, UnityWebRequest_InternalSetCustomMethod_mE9F0C84C6DCD5412AEDD76280EEC4FB82516EF16_RuntimeMethod_var);
  3949. }
  3950. IL_0035:
  3951. {
  3952. return;
  3953. }
  3954. }
  3955. // System.Void UnityEngine.Networking.UnityWebRequest::set_method(System.String)
  3956. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_method_mF2DAC86EB05D65B9BCB52056B7CBB2C1AD87EEC6 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___value0, const RuntimeMethod* method)
  3957. {
  3958. static bool s_Il2CppMethodInitialized;
  3959. if (!s_Il2CppMethodInitialized)
  3960. {
  3961. il2cpp_codegen_initialize_method (UnityWebRequest_set_method_mF2DAC86EB05D65B9BCB52056B7CBB2C1AD87EEC6_MetadataUsageId);
  3962. s_Il2CppMethodInitialized = true;
  3963. }
  3964. bool V_0 = false;
  3965. String_t* V_1 = NULL;
  3966. {
  3967. String_t* L_0 = ___value0;
  3968. bool L_1 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_0, /*hidden argument*/NULL);
  3969. V_0 = L_1;
  3970. bool L_2 = V_0;
  3971. if (!L_2)
  3972. {
  3973. goto IL_0017;
  3974. }
  3975. }
  3976. {
  3977. ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
  3978. ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, _stringLiteralF37BF1E2A7C84A010A6E65E2E41A03F1C044F04B, /*hidden argument*/NULL);
  3979. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, UnityWebRequest_set_method_mF2DAC86EB05D65B9BCB52056B7CBB2C1AD87EEC6_RuntimeMethod_var);
  3980. }
  3981. IL_0017:
  3982. {
  3983. String_t* L_4 = ___value0;
  3984. NullCheck(L_4);
  3985. String_t* L_5 = String_ToUpper_m23D019B7C5EF2C5C01F524EB8137A424B33EEFE2(L_4, /*hidden argument*/NULL);
  3986. V_1 = L_5;
  3987. String_t* L_6 = V_1;
  3988. bool L_7 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_6, _stringLiteralF030BBBD32966CDE41037B98A8849C46B76E4BC1, /*hidden argument*/NULL);
  3989. if (L_7)
  3990. {
  3991. goto IL_0054;
  3992. }
  3993. }
  3994. {
  3995. String_t* L_8 = V_1;
  3996. bool L_9 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_8, _stringLiteral61FF81C30AA3C76E78AFEA62B2E3BD1DFA49E854, /*hidden argument*/NULL);
  3997. if (L_9)
  3998. {
  3999. goto IL_005e;
  4000. }
  4001. }
  4002. {
  4003. String_t* L_10 = V_1;
  4004. bool L_11 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_10, _stringLiteral091B0CE42EB0BD96169EA00B16DD938F6D63AC95, /*hidden argument*/NULL);
  4005. if (L_11)
  4006. {
  4007. goto IL_0068;
  4008. }
  4009. }
  4010. {
  4011. String_t* L_12 = V_1;
  4012. bool L_13 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_12, _stringLiteral7138A51661947B19B5088DA5A2BFEDE2876F49B9, /*hidden argument*/NULL);
  4013. if (L_13)
  4014. {
  4015. goto IL_0072;
  4016. }
  4017. }
  4018. {
  4019. goto IL_007c;
  4020. }
  4021. IL_0054:
  4022. {
  4023. UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9(__this, 0, /*hidden argument*/NULL);
  4024. goto IL_008b;
  4025. }
  4026. IL_005e:
  4027. {
  4028. UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9(__this, 1, /*hidden argument*/NULL);
  4029. goto IL_008b;
  4030. }
  4031. IL_0068:
  4032. {
  4033. UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9(__this, 2, /*hidden argument*/NULL);
  4034. goto IL_008b;
  4035. }
  4036. IL_0072:
  4037. {
  4038. UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9(__this, 3, /*hidden argument*/NULL);
  4039. goto IL_008b;
  4040. }
  4041. IL_007c:
  4042. {
  4043. String_t* L_14 = ___value0;
  4044. NullCheck(L_14);
  4045. String_t* L_15 = String_ToUpper_m23D019B7C5EF2C5C01F524EB8137A424B33EEFE2(L_14, /*hidden argument*/NULL);
  4046. UnityWebRequest_InternalSetCustomMethod_mE9F0C84C6DCD5412AEDD76280EEC4FB82516EF16(__this, L_15, /*hidden argument*/NULL);
  4047. goto IL_008b;
  4048. }
  4049. IL_008b:
  4050. {
  4051. return;
  4052. }
  4053. }
  4054. // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError UnityEngine.Networking.UnityWebRequest::GetError()
  4055. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetError_m55BF2299E3B195AC416CCCB46C3DBD83C075018C (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  4056. {
  4057. typedef int32_t (*UnityWebRequest_GetError_m55BF2299E3B195AC416CCCB46C3DBD83C075018C_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *);
  4058. static UnityWebRequest_GetError_m55BF2299E3B195AC416CCCB46C3DBD83C075018C_ftn _il2cpp_icall_func;
  4059. if (!_il2cpp_icall_func)
  4060. _il2cpp_icall_func = (UnityWebRequest_GetError_m55BF2299E3B195AC416CCCB46C3DBD83C075018C_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetError()");
  4061. int32_t retVal = _il2cpp_icall_func(__this);
  4062. return retVal;
  4063. }
  4064. // System.String UnityEngine.Networking.UnityWebRequest::get_error()
  4065. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_get_error_mC79FE2460B3F30B8F9E5385BD7D2B4C5B295D7CC (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  4066. {
  4067. static bool s_Il2CppMethodInitialized;
  4068. if (!s_Il2CppMethodInitialized)
  4069. {
  4070. il2cpp_codegen_initialize_method (UnityWebRequest_get_error_mC79FE2460B3F30B8F9E5385BD7D2B4C5B295D7CC_MetadataUsageId);
  4071. s_Il2CppMethodInitialized = true;
  4072. }
  4073. bool V_0 = false;
  4074. String_t* V_1 = NULL;
  4075. bool V_2 = false;
  4076. String_t* V_3 = NULL;
  4077. int32_t G_B3_0 = 0;
  4078. {
  4079. bool L_0 = UnityWebRequest_get_isNetworkError_m082AFE1A58A330AC4CBD179606B61CB39DD44588(__this, /*hidden argument*/NULL);
  4080. if (L_0)
  4081. {
  4082. goto IL_0014;
  4083. }
  4084. }
  4085. {
  4086. bool L_1 = UnityWebRequest_get_isHttpError_m8F636B70C239EC848FACC83189DE0C22CADEC1C3(__this, /*hidden argument*/NULL);
  4087. G_B3_0 = ((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
  4088. goto IL_0015;
  4089. }
  4090. IL_0014:
  4091. {
  4092. G_B3_0 = 0;
  4093. }
  4094. IL_0015:
  4095. {
  4096. V_0 = (bool)G_B3_0;
  4097. bool L_2 = V_0;
  4098. if (!L_2)
  4099. {
  4100. goto IL_001d;
  4101. }
  4102. }
  4103. {
  4104. V_1 = (String_t*)NULL;
  4105. goto IL_005c;
  4106. }
  4107. IL_001d:
  4108. {
  4109. bool L_3 = UnityWebRequest_get_isHttpError_m8F636B70C239EC848FACC83189DE0C22CADEC1C3(__this, /*hidden argument*/NULL);
  4110. V_2 = L_3;
  4111. bool L_4 = V_2;
  4112. if (!L_4)
  4113. {
  4114. goto IL_004d;
  4115. }
  4116. }
  4117. {
  4118. int64_t L_5 = UnityWebRequest_get_responseCode_m34819872549939D1EF9EA3D4010974FBEBAF0070(__this, /*hidden argument*/NULL);
  4119. String_t* L_6 = UnityWebRequest_GetHTTPStatusString_m370515E94B5B3C14B4A49677A31D8494262D7EDA(L_5, /*hidden argument*/NULL);
  4120. V_3 = L_6;
  4121. int64_t L_7 = UnityWebRequest_get_responseCode_m34819872549939D1EF9EA3D4010974FBEBAF0070(__this, /*hidden argument*/NULL);
  4122. int64_t L_8 = L_7;
  4123. RuntimeObject * L_9 = Box(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var, &L_8);
  4124. String_t* L_10 = V_3;
  4125. String_t* L_11 = String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A(_stringLiteral4DD76F7BD318A8B909BC0FF86CA3BE3625DA0374, L_9, L_10, /*hidden argument*/NULL);
  4126. V_1 = L_11;
  4127. goto IL_005c;
  4128. }
  4129. IL_004d:
  4130. {
  4131. int32_t L_12 = UnityWebRequest_GetError_m55BF2299E3B195AC416CCCB46C3DBD83C075018C(__this, /*hidden argument*/NULL);
  4132. String_t* L_13 = UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D(L_12, /*hidden argument*/NULL);
  4133. V_1 = L_13;
  4134. goto IL_005c;
  4135. }
  4136. IL_005c:
  4137. {
  4138. String_t* L_14 = V_1;
  4139. return L_14;
  4140. }
  4141. }
  4142. // System.String UnityEngine.Networking.UnityWebRequest::get_url()
  4143. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_get_url_m030A0D89670638A2C0E86A42AA84C767314672C6 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  4144. {
  4145. String_t* V_0 = NULL;
  4146. {
  4147. String_t* L_0 = UnityWebRequest_GetUrl_m54AFB82BFB0CFD276363E9EC03E2ED3CB89A45CB(__this, /*hidden argument*/NULL);
  4148. V_0 = L_0;
  4149. goto IL_000a;
  4150. }
  4151. IL_000a:
  4152. {
  4153. String_t* L_1 = V_0;
  4154. return L_1;
  4155. }
  4156. }
  4157. // System.Void UnityEngine.Networking.UnityWebRequest::set_url(System.String)
  4158. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_url_mA698FD94C447FF7C1C429D50C2EBAEEDD473007D (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___value0, const RuntimeMethod* method)
  4159. {
  4160. static bool s_Il2CppMethodInitialized;
  4161. if (!s_Il2CppMethodInitialized)
  4162. {
  4163. il2cpp_codegen_initialize_method (UnityWebRequest_set_url_mA698FD94C447FF7C1C429D50C2EBAEEDD473007D_MetadataUsageId);
  4164. s_Il2CppMethodInitialized = true;
  4165. }
  4166. String_t* V_0 = NULL;
  4167. {
  4168. V_0 = _stringLiteralF6C97A7F64063CFEE7C2DC2157847204D4DBF093;
  4169. String_t* L_0 = ___value0;
  4170. String_t* L_1 = V_0;
  4171. IL2CPP_RUNTIME_CLASS_INIT(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_il2cpp_TypeInfo_var);
  4172. String_t* L_2 = WebRequestUtils_MakeInitialUrl_m446CCE4EFB276BE27A9380D55B9E704D01107B83(L_0, L_1, /*hidden argument*/NULL);
  4173. UnityWebRequest_InternalSetUrl_m2E2C837A6F32065CAAAF6EFA7D0237C9E206689A(__this, L_2, /*hidden argument*/NULL);
  4174. return;
  4175. }
  4176. }
  4177. // System.String UnityEngine.Networking.UnityWebRequest::GetUrl()
  4178. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetUrl_m54AFB82BFB0CFD276363E9EC03E2ED3CB89A45CB (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  4179. {
  4180. typedef String_t* (*UnityWebRequest_GetUrl_m54AFB82BFB0CFD276363E9EC03E2ED3CB89A45CB_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *);
  4181. static UnityWebRequest_GetUrl_m54AFB82BFB0CFD276363E9EC03E2ED3CB89A45CB_ftn _il2cpp_icall_func;
  4182. if (!_il2cpp_icall_func)
  4183. _il2cpp_icall_func = (UnityWebRequest_GetUrl_m54AFB82BFB0CFD276363E9EC03E2ED3CB89A45CB_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetUrl()");
  4184. String_t* retVal = _il2cpp_icall_func(__this);
  4185. return retVal;
  4186. }
  4187. // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUrl(System.String)
  4188. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_mED007912E89AA114D1A3D6905586116F74C8D774 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, const RuntimeMethod* method)
  4189. {
  4190. typedef int32_t (*UnityWebRequest_SetUrl_mED007912E89AA114D1A3D6905586116F74C8D774_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, String_t*);
  4191. static UnityWebRequest_SetUrl_mED007912E89AA114D1A3D6905586116F74C8D774_ftn _il2cpp_icall_func;
  4192. if (!_il2cpp_icall_func)
  4193. _il2cpp_icall_func = (UnityWebRequest_SetUrl_mED007912E89AA114D1A3D6905586116F74C8D774_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetUrl(System.String)");
  4194. int32_t retVal = _il2cpp_icall_func(__this, ___url0);
  4195. return retVal;
  4196. }
  4197. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetUrl(System.String)
  4198. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetUrl_m2E2C837A6F32065CAAAF6EFA7D0237C9E206689A (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, const RuntimeMethod* method)
  4199. {
  4200. static bool s_Il2CppMethodInitialized;
  4201. if (!s_Il2CppMethodInitialized)
  4202. {
  4203. il2cpp_codegen_initialize_method (UnityWebRequest_InternalSetUrl_m2E2C837A6F32065CAAAF6EFA7D0237C9E206689A_MetadataUsageId);
  4204. s_Il2CppMethodInitialized = true;
  4205. }
  4206. int32_t V_0 = 0;
  4207. bool V_1 = false;
  4208. bool V_2 = false;
  4209. {
  4210. bool L_0 = UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342(__this, /*hidden argument*/NULL);
  4211. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  4212. bool L_1 = V_1;
  4213. if (!L_1)
  4214. {
  4215. goto IL_0019;
  4216. }
  4217. }
  4218. {
  4219. InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
  4220. InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, _stringLiteral81D42CE01525C0213D5284260BDB58819D046FB9, /*hidden argument*/NULL);
  4221. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnityWebRequest_InternalSetUrl_m2E2C837A6F32065CAAAF6EFA7D0237C9E206689A_RuntimeMethod_var);
  4222. }
  4223. IL_0019:
  4224. {
  4225. String_t* L_3 = ___url0;
  4226. int32_t L_4 = UnityWebRequest_SetUrl_mED007912E89AA114D1A3D6905586116F74C8D774(__this, L_3, /*hidden argument*/NULL);
  4227. V_0 = L_4;
  4228. int32_t L_5 = V_0;
  4229. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  4230. bool L_6 = V_2;
  4231. if (!L_6)
  4232. {
  4233. goto IL_0035;
  4234. }
  4235. }
  4236. {
  4237. int32_t L_7 = V_0;
  4238. String_t* L_8 = UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D(L_7, /*hidden argument*/NULL);
  4239. InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_9 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
  4240. InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_9, L_8, /*hidden argument*/NULL);
  4241. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, UnityWebRequest_InternalSetUrl_m2E2C837A6F32065CAAAF6EFA7D0237C9E206689A_RuntimeMethod_var);
  4242. }
  4243. IL_0035:
  4244. {
  4245. return;
  4246. }
  4247. }
  4248. // System.Int64 UnityEngine.Networking.UnityWebRequest::get_responseCode()
  4249. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_m34819872549939D1EF9EA3D4010974FBEBAF0070 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  4250. {
  4251. typedef int64_t (*UnityWebRequest_get_responseCode_m34819872549939D1EF9EA3D4010974FBEBAF0070_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *);
  4252. static UnityWebRequest_get_responseCode_m34819872549939D1EF9EA3D4010974FBEBAF0070_ftn _il2cpp_icall_func;
  4253. if (!_il2cpp_icall_func)
  4254. _il2cpp_icall_func = (UnityWebRequest_get_responseCode_m34819872549939D1EF9EA3D4010974FBEBAF0070_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_responseCode()");
  4255. int64_t retVal = _il2cpp_icall_func(__this);
  4256. return retVal;
  4257. }
  4258. // System.Boolean UnityEngine.Networking.UnityWebRequest::IsExecuting()
  4259. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_IsExecuting_m01B2C236790F9C97415C79F2AFDEBC0D234EEF09 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  4260. {
  4261. typedef bool (*UnityWebRequest_IsExecuting_m01B2C236790F9C97415C79F2AFDEBC0D234EEF09_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *);
  4262. static UnityWebRequest_IsExecuting_m01B2C236790F9C97415C79F2AFDEBC0D234EEF09_ftn _il2cpp_icall_func;
  4263. if (!_il2cpp_icall_func)
  4264. _il2cpp_icall_func = (UnityWebRequest_IsExecuting_m01B2C236790F9C97415C79F2AFDEBC0D234EEF09_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::IsExecuting()");
  4265. bool retVal = _il2cpp_icall_func(__this);
  4266. return retVal;
  4267. }
  4268. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isModifiable()
  4269. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  4270. {
  4271. typedef bool (*UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *);
  4272. static UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342_ftn _il2cpp_icall_func;
  4273. if (!_il2cpp_icall_func)
  4274. _il2cpp_icall_func = (UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_isModifiable()");
  4275. bool retVal = _il2cpp_icall_func(__this);
  4276. return retVal;
  4277. }
  4278. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isDone()
  4279. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isDone_mB3CC99A8DC3DB1DD44B23008688EB2DF20906FDA (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  4280. {
  4281. typedef bool (*UnityWebRequest_get_isDone_mB3CC99A8DC3DB1DD44B23008688EB2DF20906FDA_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *);
  4282. static UnityWebRequest_get_isDone_mB3CC99A8DC3DB1DD44B23008688EB2DF20906FDA_ftn _il2cpp_icall_func;
  4283. if (!_il2cpp_icall_func)
  4284. _il2cpp_icall_func = (UnityWebRequest_get_isDone_mB3CC99A8DC3DB1DD44B23008688EB2DF20906FDA_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_isDone()");
  4285. bool retVal = _il2cpp_icall_func(__this);
  4286. return retVal;
  4287. }
  4288. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isNetworkError()
  4289. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isNetworkError_m082AFE1A58A330AC4CBD179606B61CB39DD44588 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  4290. {
  4291. typedef bool (*UnityWebRequest_get_isNetworkError_m082AFE1A58A330AC4CBD179606B61CB39DD44588_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *);
  4292. static UnityWebRequest_get_isNetworkError_m082AFE1A58A330AC4CBD179606B61CB39DD44588_ftn _il2cpp_icall_func;
  4293. if (!_il2cpp_icall_func)
  4294. _il2cpp_icall_func = (UnityWebRequest_get_isNetworkError_m082AFE1A58A330AC4CBD179606B61CB39DD44588_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_isNetworkError()");
  4295. bool retVal = _il2cpp_icall_func(__this);
  4296. return retVal;
  4297. }
  4298. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isHttpError()
  4299. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isHttpError_m8F636B70C239EC848FACC83189DE0C22CADEC1C3 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  4300. {
  4301. typedef bool (*UnityWebRequest_get_isHttpError_m8F636B70C239EC848FACC83189DE0C22CADEC1C3_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *);
  4302. static UnityWebRequest_get_isHttpError_m8F636B70C239EC848FACC83189DE0C22CADEC1C3_ftn _il2cpp_icall_func;
  4303. if (!_il2cpp_icall_func)
  4304. _il2cpp_icall_func = (UnityWebRequest_get_isHttpError_m8F636B70C239EC848FACC83189DE0C22CADEC1C3_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_isHttpError()");
  4305. bool retVal = _il2cpp_icall_func(__this);
  4306. return retVal;
  4307. }
  4308. // System.Single UnityEngine.Networking.UnityWebRequest::GetDownloadProgress()
  4309. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UnityWebRequest_GetDownloadProgress_mD003AA45A293CEFEDB9ECB8E33DDC6D63C5E1578 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  4310. {
  4311. typedef float (*UnityWebRequest_GetDownloadProgress_mD003AA45A293CEFEDB9ECB8E33DDC6D63C5E1578_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *);
  4312. static UnityWebRequest_GetDownloadProgress_mD003AA45A293CEFEDB9ECB8E33DDC6D63C5E1578_ftn _il2cpp_icall_func;
  4313. if (!_il2cpp_icall_func)
  4314. _il2cpp_icall_func = (UnityWebRequest_GetDownloadProgress_mD003AA45A293CEFEDB9ECB8E33DDC6D63C5E1578_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetDownloadProgress()");
  4315. float retVal = _il2cpp_icall_func(__this);
  4316. return retVal;
  4317. }
  4318. // System.Single UnityEngine.Networking.UnityWebRequest::get_downloadProgress()
  4319. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UnityWebRequest_get_downloadProgress_mE09FED8FB4ED03B0BBC23A3A243B283D4E148DC5 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  4320. {
  4321. bool V_0 = false;
  4322. float V_1 = 0.0f;
  4323. int32_t G_B3_0 = 0;
  4324. {
  4325. bool L_0 = UnityWebRequest_IsExecuting_m01B2C236790F9C97415C79F2AFDEBC0D234EEF09(__this, /*hidden argument*/NULL);
  4326. if (L_0)
  4327. {
  4328. goto IL_0014;
  4329. }
  4330. }
  4331. {
  4332. bool L_1 = UnityWebRequest_get_isDone_mB3CC99A8DC3DB1DD44B23008688EB2DF20906FDA(__this, /*hidden argument*/NULL);
  4333. G_B3_0 = ((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
  4334. goto IL_0015;
  4335. }
  4336. IL_0014:
  4337. {
  4338. G_B3_0 = 0;
  4339. }
  4340. IL_0015:
  4341. {
  4342. V_0 = (bool)G_B3_0;
  4343. bool L_2 = V_0;
  4344. if (!L_2)
  4345. {
  4346. goto IL_0021;
  4347. }
  4348. }
  4349. {
  4350. V_1 = (-1.0f);
  4351. goto IL_002a;
  4352. }
  4353. IL_0021:
  4354. {
  4355. float L_3 = UnityWebRequest_GetDownloadProgress_mD003AA45A293CEFEDB9ECB8E33DDC6D63C5E1578(__this, /*hidden argument*/NULL);
  4356. V_1 = L_3;
  4357. goto IL_002a;
  4358. }
  4359. IL_002a:
  4360. {
  4361. float L_4 = V_1;
  4362. return L_4;
  4363. }
  4364. }
  4365. // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetChunked(System.Boolean)
  4366. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetChunked_mB7640F345604631D7A71C3C1EA89C88FA6F4BE5A (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___chunked0, const RuntimeMethod* method)
  4367. {
  4368. typedef int32_t (*UnityWebRequest_SetChunked_mB7640F345604631D7A71C3C1EA89C88FA6F4BE5A_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, bool);
  4369. static UnityWebRequest_SetChunked_mB7640F345604631D7A71C3C1EA89C88FA6F4BE5A_ftn _il2cpp_icall_func;
  4370. if (!_il2cpp_icall_func)
  4371. _il2cpp_icall_func = (UnityWebRequest_SetChunked_mB7640F345604631D7A71C3C1EA89C88FA6F4BE5A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetChunked(System.Boolean)");
  4372. int32_t retVal = _il2cpp_icall_func(__this, ___chunked0);
  4373. return retVal;
  4374. }
  4375. // System.Void UnityEngine.Networking.UnityWebRequest::set_chunkedTransfer(System.Boolean)
  4376. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_chunkedTransfer_mA453AD2975C8B488B9A84C8FD3205AC20DA96430 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___value0, const RuntimeMethod* method)
  4377. {
  4378. static bool s_Il2CppMethodInitialized;
  4379. if (!s_Il2CppMethodInitialized)
  4380. {
  4381. il2cpp_codegen_initialize_method (UnityWebRequest_set_chunkedTransfer_mA453AD2975C8B488B9A84C8FD3205AC20DA96430_MetadataUsageId);
  4382. s_Il2CppMethodInitialized = true;
  4383. }
  4384. int32_t V_0 = 0;
  4385. bool V_1 = false;
  4386. bool V_2 = false;
  4387. {
  4388. bool L_0 = UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342(__this, /*hidden argument*/NULL);
  4389. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  4390. bool L_1 = V_1;
  4391. if (!L_1)
  4392. {
  4393. goto IL_0019;
  4394. }
  4395. }
  4396. {
  4397. InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
  4398. InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, _stringLiteral2E202793DA456513F1E823D3CE20D84EF57C1E73, /*hidden argument*/NULL);
  4399. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnityWebRequest_set_chunkedTransfer_mA453AD2975C8B488B9A84C8FD3205AC20DA96430_RuntimeMethod_var);
  4400. }
  4401. IL_0019:
  4402. {
  4403. bool L_3 = ___value0;
  4404. int32_t L_4 = UnityWebRequest_SetChunked_mB7640F345604631D7A71C3C1EA89C88FA6F4BE5A(__this, L_3, /*hidden argument*/NULL);
  4405. V_0 = L_4;
  4406. int32_t L_5 = V_0;
  4407. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  4408. bool L_6 = V_2;
  4409. if (!L_6)
  4410. {
  4411. goto IL_0035;
  4412. }
  4413. }
  4414. {
  4415. int32_t L_7 = V_0;
  4416. String_t* L_8 = UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D(L_7, /*hidden argument*/NULL);
  4417. InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_9 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
  4418. InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_9, L_8, /*hidden argument*/NULL);
  4419. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, UnityWebRequest_set_chunkedTransfer_mA453AD2975C8B488B9A84C8FD3205AC20DA96430_RuntimeMethod_var);
  4420. }
  4421. IL_0035:
  4422. {
  4423. return;
  4424. }
  4425. }
  4426. // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError UnityEngine.Networking.UnityWebRequest::InternalSetRequestHeader(System.String,System.String)
  4427. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_InternalSetRequestHeader_m7481D7E49B6E6078598E40B81D1A3DA9B8D2BD10 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method)
  4428. {
  4429. typedef int32_t (*UnityWebRequest_InternalSetRequestHeader_m7481D7E49B6E6078598E40B81D1A3DA9B8D2BD10_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, String_t*, String_t*);
  4430. static UnityWebRequest_InternalSetRequestHeader_m7481D7E49B6E6078598E40B81D1A3DA9B8D2BD10_ftn _il2cpp_icall_func;
  4431. if (!_il2cpp_icall_func)
  4432. _il2cpp_icall_func = (UnityWebRequest_InternalSetRequestHeader_m7481D7E49B6E6078598E40B81D1A3DA9B8D2BD10_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::InternalSetRequestHeader(System.String,System.String)");
  4433. int32_t retVal = _il2cpp_icall_func(__this, ___name0, ___value1);
  4434. return retVal;
  4435. }
  4436. // System.Void UnityEngine.Networking.UnityWebRequest::SetRequestHeader(System.String,System.String)
  4437. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method)
  4438. {
  4439. static bool s_Il2CppMethodInitialized;
  4440. if (!s_Il2CppMethodInitialized)
  4441. {
  4442. il2cpp_codegen_initialize_method (UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309_MetadataUsageId);
  4443. s_Il2CppMethodInitialized = true;
  4444. }
  4445. int32_t V_0 = 0;
  4446. bool V_1 = false;
  4447. bool V_2 = false;
  4448. bool V_3 = false;
  4449. bool V_4 = false;
  4450. {
  4451. String_t* L_0 = ___name0;
  4452. bool L_1 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_0, /*hidden argument*/NULL);
  4453. V_1 = L_1;
  4454. bool L_2 = V_1;
  4455. if (!L_2)
  4456. {
  4457. goto IL_0016;
  4458. }
  4459. }
  4460. {
  4461. ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
  4462. ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, _stringLiteralBEDBFCA635D617975AC8C4A6D1FBC9714BC86399, /*hidden argument*/NULL);
  4463. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309_RuntimeMethod_var);
  4464. }
  4465. IL_0016:
  4466. {
  4467. String_t* L_4 = ___value1;
  4468. V_2 = (bool)((((RuntimeObject*)(String_t*)L_4) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
  4469. bool L_5 = V_2;
  4470. if (!L_5)
  4471. {
  4472. goto IL_0029;
  4473. }
  4474. }
  4475. {
  4476. ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
  4477. ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_6, _stringLiteralA288E90C6C4E12B4E76A10851EF1ABD903F1EAE7, /*hidden argument*/NULL);
  4478. IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309_RuntimeMethod_var);
  4479. }
  4480. IL_0029:
  4481. {
  4482. bool L_7 = UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342(__this, /*hidden argument*/NULL);
  4483. V_3 = (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
  4484. bool L_8 = V_3;
  4485. if (!L_8)
  4486. {
  4487. goto IL_0041;
  4488. }
  4489. }
  4490. {
  4491. InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_9 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
  4492. InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_9, _stringLiteralAEA05C1AAB9D42F987C023592D1AF2F1D8403D2F, /*hidden argument*/NULL);
  4493. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309_RuntimeMethod_var);
  4494. }
  4495. IL_0041:
  4496. {
  4497. String_t* L_10 = ___name0;
  4498. String_t* L_11 = ___value1;
  4499. int32_t L_12 = UnityWebRequest_InternalSetRequestHeader_m7481D7E49B6E6078598E40B81D1A3DA9B8D2BD10(__this, L_10, L_11, /*hidden argument*/NULL);
  4500. V_0 = L_12;
  4501. int32_t L_13 = V_0;
  4502. V_4 = (bool)((!(((uint32_t)L_13) <= ((uint32_t)0)))? 1 : 0);
  4503. bool L_14 = V_4;
  4504. if (!L_14)
  4505. {
  4506. goto IL_0060;
  4507. }
  4508. }
  4509. {
  4510. int32_t L_15 = V_0;
  4511. String_t* L_16 = UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D(L_15, /*hidden argument*/NULL);
  4512. InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_17 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
  4513. InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_17, L_16, /*hidden argument*/NULL);
  4514. IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309_RuntimeMethod_var);
  4515. }
  4516. IL_0060:
  4517. {
  4518. return;
  4519. }
  4520. }
  4521. // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUploadHandler(UnityEngine.Networking.UploadHandler)
  4522. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_m046EF4089035441F661AED13F703024DEE030525 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * ___uh0, const RuntimeMethod* method)
  4523. {
  4524. typedef int32_t (*UnityWebRequest_SetUploadHandler_m046EF4089035441F661AED13F703024DEE030525_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 *);
  4525. static UnityWebRequest_SetUploadHandler_m046EF4089035441F661AED13F703024DEE030525_ftn _il2cpp_icall_func;
  4526. if (!_il2cpp_icall_func)
  4527. _il2cpp_icall_func = (UnityWebRequest_SetUploadHandler_m046EF4089035441F661AED13F703024DEE030525_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetUploadHandler(UnityEngine.Networking.UploadHandler)");
  4528. int32_t retVal = _il2cpp_icall_func(__this, ___uh0);
  4529. return retVal;
  4530. }
  4531. // UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::get_uploadHandler()
  4532. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * UnityWebRequest_get_uploadHandler_mB23A35C2412258E44538F37AA540421C95E69A5C (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  4533. {
  4534. UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * V_0 = NULL;
  4535. {
  4536. UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_0 = __this->get_m_UploadHandler_2();
  4537. V_0 = L_0;
  4538. goto IL_000a;
  4539. }
  4540. IL_000a:
  4541. {
  4542. UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_1 = V_0;
  4543. return L_1;
  4544. }
  4545. }
  4546. // System.Void UnityEngine.Networking.UnityWebRequest::set_uploadHandler(UnityEngine.Networking.UploadHandler)
  4547. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * ___value0, const RuntimeMethod* method)
  4548. {
  4549. static bool s_Il2CppMethodInitialized;
  4550. if (!s_Il2CppMethodInitialized)
  4551. {
  4552. il2cpp_codegen_initialize_method (UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1_MetadataUsageId);
  4553. s_Il2CppMethodInitialized = true;
  4554. }
  4555. int32_t V_0 = 0;
  4556. bool V_1 = false;
  4557. bool V_2 = false;
  4558. {
  4559. bool L_0 = UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342(__this, /*hidden argument*/NULL);
  4560. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  4561. bool L_1 = V_1;
  4562. if (!L_1)
  4563. {
  4564. goto IL_0019;
  4565. }
  4566. }
  4567. {
  4568. InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
  4569. InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, _stringLiteralF80B07414273FEB6D1B5EAB1E91186C7CE65DE24, /*hidden argument*/NULL);
  4570. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1_RuntimeMethod_var);
  4571. }
  4572. IL_0019:
  4573. {
  4574. UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_3 = ___value0;
  4575. int32_t L_4 = UnityWebRequest_SetUploadHandler_m046EF4089035441F661AED13F703024DEE030525(__this, L_3, /*hidden argument*/NULL);
  4576. V_0 = L_4;
  4577. int32_t L_5 = V_0;
  4578. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  4579. bool L_6 = V_2;
  4580. if (!L_6)
  4581. {
  4582. goto IL_0035;
  4583. }
  4584. }
  4585. {
  4586. int32_t L_7 = V_0;
  4587. String_t* L_8 = UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D(L_7, /*hidden argument*/NULL);
  4588. InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_9 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
  4589. InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_9, L_8, /*hidden argument*/NULL);
  4590. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1_RuntimeMethod_var);
  4591. }
  4592. IL_0035:
  4593. {
  4594. UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_10 = ___value0;
  4595. __this->set_m_UploadHandler_2(L_10);
  4596. return;
  4597. }
  4598. }
  4599. // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetDownloadHandler(UnityEngine.Networking.DownloadHandler)
  4600. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_mDE4E6137C34A90754C41B3A0B7B303135771EEDD (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___dh0, const RuntimeMethod* method)
  4601. {
  4602. typedef int32_t (*UnityWebRequest_SetDownloadHandler_mDE4E6137C34A90754C41B3A0B7B303135771EEDD_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 *);
  4603. static UnityWebRequest_SetDownloadHandler_mDE4E6137C34A90754C41B3A0B7B303135771EEDD_ftn _il2cpp_icall_func;
  4604. if (!_il2cpp_icall_func)
  4605. _il2cpp_icall_func = (UnityWebRequest_SetDownloadHandler_mDE4E6137C34A90754C41B3A0B7B303135771EEDD_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetDownloadHandler(UnityEngine.Networking.DownloadHandler)");
  4606. int32_t retVal = _il2cpp_icall_func(__this, ___dh0);
  4607. return retVal;
  4608. }
  4609. // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::get_downloadHandler()
  4610. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * UnityWebRequest_get_downloadHandler_m83044026479E6B4B2739DCE9EEA8A0FAE7D9AF41 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  4611. {
  4612. DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * V_0 = NULL;
  4613. {
  4614. DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * L_0 = __this->get_m_DownloadHandler_1();
  4615. V_0 = L_0;
  4616. goto IL_000a;
  4617. }
  4618. IL_000a:
  4619. {
  4620. DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * L_1 = V_0;
  4621. return L_1;
  4622. }
  4623. }
  4624. // System.Void UnityEngine.Networking.UnityWebRequest::set_downloadHandler(UnityEngine.Networking.DownloadHandler)
  4625. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___value0, const RuntimeMethod* method)
  4626. {
  4627. static bool s_Il2CppMethodInitialized;
  4628. if (!s_Il2CppMethodInitialized)
  4629. {
  4630. il2cpp_codegen_initialize_method (UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E_MetadataUsageId);
  4631. s_Il2CppMethodInitialized = true;
  4632. }
  4633. int32_t V_0 = 0;
  4634. bool V_1 = false;
  4635. bool V_2 = false;
  4636. {
  4637. bool L_0 = UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342(__this, /*hidden argument*/NULL);
  4638. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  4639. bool L_1 = V_1;
  4640. if (!L_1)
  4641. {
  4642. goto IL_0019;
  4643. }
  4644. }
  4645. {
  4646. InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
  4647. InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, _stringLiteralA58AA001D4152D20F7F8E0809B9CD782BE38A82C, /*hidden argument*/NULL);
  4648. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E_RuntimeMethod_var);
  4649. }
  4650. IL_0019:
  4651. {
  4652. DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * L_3 = ___value0;
  4653. int32_t L_4 = UnityWebRequest_SetDownloadHandler_mDE4E6137C34A90754C41B3A0B7B303135771EEDD(__this, L_3, /*hidden argument*/NULL);
  4654. V_0 = L_4;
  4655. int32_t L_5 = V_0;
  4656. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  4657. bool L_6 = V_2;
  4658. if (!L_6)
  4659. {
  4660. goto IL_0035;
  4661. }
  4662. }
  4663. {
  4664. int32_t L_7 = V_0;
  4665. String_t* L_8 = UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D(L_7, /*hidden argument*/NULL);
  4666. InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_9 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
  4667. InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_9, L_8, /*hidden argument*/NULL);
  4668. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E_RuntimeMethod_var);
  4669. }
  4670. IL_0035:
  4671. {
  4672. DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * L_10 = ___value0;
  4673. __this->set_m_DownloadHandler_1(L_10);
  4674. return;
  4675. }
  4676. }
  4677. // UnityEngine.Networking.CertificateHandler UnityEngine.Networking.UnityWebRequest::get_certificateHandler()
  4678. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * UnityWebRequest_get_certificateHandler_mD3C46D07991190373A7144A6732E390FFBE6DF00 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  4679. {
  4680. CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * V_0 = NULL;
  4681. {
  4682. CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * L_0 = __this->get_m_CertificateHandler_3();
  4683. V_0 = L_0;
  4684. goto IL_000a;
  4685. }
  4686. IL_000a:
  4687. {
  4688. CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * L_1 = V_0;
  4689. return L_1;
  4690. }
  4691. }
  4692. // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetTimeoutMsec(System.Int32)
  4693. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetTimeoutMsec_m53542B77D1BA4486039178C0BEBED3005A6AF079 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, int32_t ___timeout0, const RuntimeMethod* method)
  4694. {
  4695. typedef int32_t (*UnityWebRequest_SetTimeoutMsec_m53542B77D1BA4486039178C0BEBED3005A6AF079_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, int32_t);
  4696. static UnityWebRequest_SetTimeoutMsec_m53542B77D1BA4486039178C0BEBED3005A6AF079_ftn _il2cpp_icall_func;
  4697. if (!_il2cpp_icall_func)
  4698. _il2cpp_icall_func = (UnityWebRequest_SetTimeoutMsec_m53542B77D1BA4486039178C0BEBED3005A6AF079_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetTimeoutMsec(System.Int32)");
  4699. int32_t retVal = _il2cpp_icall_func(__this, ___timeout0);
  4700. return retVal;
  4701. }
  4702. // System.Void UnityEngine.Networking.UnityWebRequest::set_timeout(System.Int32)
  4703. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_timeout_mA80432BD1798C9227EAE77554A795293072C6E1F (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, int32_t ___value0, const RuntimeMethod* method)
  4704. {
  4705. static bool s_Il2CppMethodInitialized;
  4706. if (!s_Il2CppMethodInitialized)
  4707. {
  4708. il2cpp_codegen_initialize_method (UnityWebRequest_set_timeout_mA80432BD1798C9227EAE77554A795293072C6E1F_MetadataUsageId);
  4709. s_Il2CppMethodInitialized = true;
  4710. }
  4711. int32_t V_0 = 0;
  4712. bool V_1 = false;
  4713. bool V_2 = false;
  4714. {
  4715. bool L_0 = UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342(__this, /*hidden argument*/NULL);
  4716. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  4717. bool L_1 = V_1;
  4718. if (!L_1)
  4719. {
  4720. goto IL_0019;
  4721. }
  4722. }
  4723. {
  4724. InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
  4725. InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, _stringLiteralD953731CD3AE7D9E5F32ADAB3A935068E83C5BB2, /*hidden argument*/NULL);
  4726. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, UnityWebRequest_set_timeout_mA80432BD1798C9227EAE77554A795293072C6E1F_RuntimeMethod_var);
  4727. }
  4728. IL_0019:
  4729. {
  4730. int32_t L_3 = ___value0;
  4731. IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
  4732. int32_t L_4 = Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2(L_3, 0, /*hidden argument*/NULL);
  4733. ___value0 = L_4;
  4734. int32_t L_5 = ___value0;
  4735. int32_t L_6 = UnityWebRequest_SetTimeoutMsec_m53542B77D1BA4486039178C0BEBED3005A6AF079(__this, ((int32_t)il2cpp_codegen_multiply((int32_t)L_5, (int32_t)((int32_t)1000))), /*hidden argument*/NULL);
  4736. V_0 = L_6;
  4737. int32_t L_7 = V_0;
  4738. V_2 = (bool)((!(((uint32_t)L_7) <= ((uint32_t)0)))? 1 : 0);
  4739. bool L_8 = V_2;
  4740. if (!L_8)
  4741. {
  4742. goto IL_0044;
  4743. }
  4744. }
  4745. {
  4746. int32_t L_9 = V_0;
  4747. String_t* L_10 = UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D(L_9, /*hidden argument*/NULL);
  4748. InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_11 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
  4749. InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_11, L_10, /*hidden argument*/NULL);
  4750. IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, UnityWebRequest_set_timeout_mA80432BD1798C9227EAE77554A795293072C6E1F_RuntimeMethod_var);
  4751. }
  4752. IL_0044:
  4753. {
  4754. return;
  4755. }
  4756. }
  4757. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Get(System.String)
  4758. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * UnityWebRequest_Get_mF4E12AA47AAF25221AD738B434B0EA8D40659B18 (String_t* ___uri0, const RuntimeMethod* method)
  4759. {
  4760. static bool s_Il2CppMethodInitialized;
  4761. if (!s_Il2CppMethodInitialized)
  4762. {
  4763. il2cpp_codegen_initialize_method (UnityWebRequest_Get_mF4E12AA47AAF25221AD738B434B0EA8D40659B18_MetadataUsageId);
  4764. s_Il2CppMethodInitialized = true;
  4765. }
  4766. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * V_0 = NULL;
  4767. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * V_1 = NULL;
  4768. {
  4769. String_t* L_0 = ___uri0;
  4770. DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * L_1 = (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 *)il2cpp_codegen_object_new(DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_il2cpp_TypeInfo_var);
  4771. DownloadHandlerBuffer__ctor_m2134187D8FB07FBAEA2CE23BFCEB13FD94261A9A(L_1, /*hidden argument*/NULL);
  4772. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_2 = (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *)il2cpp_codegen_object_new(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_il2cpp_TypeInfo_var);
  4773. UnityWebRequest__ctor_m0D2F8F3E1202EF4256D17E91B95DB6CC673FC8D6(L_2, L_0, _stringLiteralF030BBBD32966CDE41037B98A8849C46B76E4BC1, L_1, (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 *)NULL, /*hidden argument*/NULL);
  4774. V_0 = L_2;
  4775. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_3 = V_0;
  4776. V_1 = L_3;
  4777. goto IL_0017;
  4778. }
  4779. IL_0017:
  4780. {
  4781. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_4 = V_1;
  4782. return L_4;
  4783. }
  4784. }
  4785. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Post(System.String,System.String)
  4786. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * UnityWebRequest_Post_m677069528E4C23CF91208E5A66D672568EDE17E5 (String_t* ___uri0, String_t* ___postData1, const RuntimeMethod* method)
  4787. {
  4788. static bool s_Il2CppMethodInitialized;
  4789. if (!s_Il2CppMethodInitialized)
  4790. {
  4791. il2cpp_codegen_initialize_method (UnityWebRequest_Post_m677069528E4C23CF91208E5A66D672568EDE17E5_MetadataUsageId);
  4792. s_Il2CppMethodInitialized = true;
  4793. }
  4794. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * V_0 = NULL;
  4795. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * V_1 = NULL;
  4796. {
  4797. String_t* L_0 = ___uri0;
  4798. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_1 = (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *)il2cpp_codegen_object_new(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_il2cpp_TypeInfo_var);
  4799. UnityWebRequest__ctor_m3CBA159B3514D89C931002DFD333B9768A08EBFA(L_1, L_0, _stringLiteral61FF81C30AA3C76E78AFEA62B2E3BD1DFA49E854, /*hidden argument*/NULL);
  4800. V_0 = L_1;
  4801. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_2 = V_0;
  4802. String_t* L_3 = ___postData1;
  4803. UnityWebRequest_SetupPost_mAB03D6DF06B96684D7E1A25449868CD4D1AABA57(L_2, L_3, /*hidden argument*/NULL);
  4804. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_4 = V_0;
  4805. V_1 = L_4;
  4806. goto IL_0019;
  4807. }
  4808. IL_0019:
  4809. {
  4810. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_5 = V_1;
  4811. return L_5;
  4812. }
  4813. }
  4814. // System.Void UnityEngine.Networking.UnityWebRequest::SetupPost(UnityEngine.Networking.UnityWebRequest,System.String)
  4815. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetupPost_mAB03D6DF06B96684D7E1A25449868CD4D1AABA57 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * ___request0, String_t* ___postData1, const RuntimeMethod* method)
  4816. {
  4817. static bool s_Il2CppMethodInitialized;
  4818. if (!s_Il2CppMethodInitialized)
  4819. {
  4820. il2cpp_codegen_initialize_method (UnityWebRequest_SetupPost_mAB03D6DF06B96684D7E1A25449868CD4D1AABA57_MetadataUsageId);
  4821. s_Il2CppMethodInitialized = true;
  4822. }
  4823. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
  4824. bool V_1 = false;
  4825. String_t* V_2 = NULL;
  4826. {
  4827. V_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
  4828. String_t* L_0 = ___postData1;
  4829. bool L_1 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_0, /*hidden argument*/NULL);
  4830. V_1 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
  4831. bool L_2 = V_1;
  4832. if (!L_2)
  4833. {
  4834. goto IL_002a;
  4835. }
  4836. }
  4837. {
  4838. String_t* L_3 = ___postData1;
  4839. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_4 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL);
  4840. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var);
  4841. String_t* L_5 = WWWTranscoder_DataEncode_m991CA7AD8C98345736244A24979E440E23E5035A(L_3, L_4, /*hidden argument*/NULL);
  4842. V_2 = L_5;
  4843. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_6 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL);
  4844. String_t* L_7 = V_2;
  4845. NullCheck(L_6);
  4846. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(16 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_6, L_7);
  4847. V_0 = L_8;
  4848. }
  4849. IL_002a:
  4850. {
  4851. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_9 = ___request0;
  4852. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = V_0;
  4853. UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 * L_11 = (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 *)il2cpp_codegen_object_new(UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_il2cpp_TypeInfo_var);
  4854. UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935(L_11, L_10, /*hidden argument*/NULL);
  4855. NullCheck(L_9);
  4856. UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1(L_9, L_11, /*hidden argument*/NULL);
  4857. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_12 = ___request0;
  4858. NullCheck(L_12);
  4859. UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_13 = UnityWebRequest_get_uploadHandler_mB23A35C2412258E44538F37AA540421C95E69A5C(L_12, /*hidden argument*/NULL);
  4860. NullCheck(L_13);
  4861. UploadHandler_set_contentType_mB90BEE88AD0FCD496BED349F4E8086AB3C76FF3E(L_13, _stringLiteralE3D6849AF2EC582D2E5BA2EE543CA6818D1B03AC, /*hidden argument*/NULL);
  4862. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_14 = ___request0;
  4863. DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * L_15 = (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 *)il2cpp_codegen_object_new(DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_il2cpp_TypeInfo_var);
  4864. DownloadHandlerBuffer__ctor_m2134187D8FB07FBAEA2CE23BFCEB13FD94261A9A(L_15, /*hidden argument*/NULL);
  4865. NullCheck(L_14);
  4866. UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E(L_14, L_15, /*hidden argument*/NULL);
  4867. return;
  4868. }
  4869. }
  4870. #ifdef __clang__
  4871. #pragma clang diagnostic pop
  4872. #endif
  4873. #ifdef __clang__
  4874. #pragma clang diagnostic push
  4875. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4876. #pragma clang diagnostic ignored "-Wunused-variable"
  4877. #endif
  4878. #ifdef __clang__
  4879. #pragma clang diagnostic pop
  4880. #endif
  4881. #ifdef __clang__
  4882. #pragma clang diagnostic push
  4883. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4884. #pragma clang diagnostic ignored "-Wunused-variable"
  4885. #endif
  4886. #ifdef __clang__
  4887. #pragma clang diagnostic pop
  4888. #endif
  4889. #ifdef __clang__
  4890. #pragma clang diagnostic push
  4891. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4892. #pragma clang diagnostic ignored "-Wunused-variable"
  4893. #endif
  4894. // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation
  4895. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshal_pinvoke(const UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353& unmarshaled, UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshaled_pinvoke& marshaled)
  4896. {
  4897. Exception_t* ___U3CwebRequestU3Ek__BackingField_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  4898. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL);
  4899. }
  4900. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshal_pinvoke_back(const UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshaled_pinvoke& marshaled, UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353& unmarshaled)
  4901. {
  4902. Exception_t* ___U3CwebRequestU3Ek__BackingField_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  4903. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL);
  4904. }
  4905. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation
  4906. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshal_pinvoke_cleanup(UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshaled_pinvoke& marshaled)
  4907. {
  4908. }
  4909. // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation
  4910. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshal_com(const UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353& unmarshaled, UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshaled_com& marshaled)
  4911. {
  4912. Exception_t* ___U3CwebRequestU3Ek__BackingField_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  4913. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL);
  4914. }
  4915. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshal_com_back(const UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshaled_com& marshaled, UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353& unmarshaled)
  4916. {
  4917. Exception_t* ___U3CwebRequestU3Ek__BackingField_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  4918. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL);
  4919. }
  4920. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation
  4921. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshal_com_cleanup(UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshaled_com& marshaled)
  4922. {
  4923. }
  4924. // System.Void UnityEngine.Networking.UnityWebRequestAsyncOperation::set_webRequest(UnityEngine.Networking.UnityWebRequest)
  4925. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_m07869D44180E2A93042A18260FA5A2BB934AC42F (UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * __this, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * ___value0, const RuntimeMethod* method)
  4926. {
  4927. {
  4928. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_0 = ___value0;
  4929. __this->set_U3CwebRequestU3Ek__BackingField_2(L_0);
  4930. return;
  4931. }
  4932. }
  4933. // System.Void UnityEngine.Networking.UnityWebRequestAsyncOperation::.ctor()
  4934. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation__ctor_mB260FD4CE600B27EB9A2ABA0BDD20FAF8449D523 (UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * __this, const RuntimeMethod* method)
  4935. {
  4936. {
  4937. AsyncOperation__ctor_mEEE6114B72B8807F4AA6FF48FA79E4EFE480293F(__this, /*hidden argument*/NULL);
  4938. return;
  4939. }
  4940. }
  4941. #ifdef __clang__
  4942. #pragma clang diagnostic pop
  4943. #endif
  4944. #ifdef __clang__
  4945. #pragma clang diagnostic push
  4946. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4947. #pragma clang diagnostic ignored "-Wunused-variable"
  4948. #endif
  4949. // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandler
  4950. IL2CPP_EXTERN_C void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_pinvoke(const UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4& unmarshaled, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke& marshaled)
  4951. {
  4952. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  4953. }
  4954. IL2CPP_EXTERN_C void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_pinvoke_back(const UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke& marshaled, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4& unmarshaled)
  4955. {
  4956. intptr_t unmarshaled_m_Ptr_temp_0;
  4957. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  4958. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  4959. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  4960. }
  4961. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandler
  4962. IL2CPP_EXTERN_C void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_pinvoke_cleanup(UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke& marshaled)
  4963. {
  4964. }
  4965. // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandler
  4966. IL2CPP_EXTERN_C void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_com(const UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4& unmarshaled, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com& marshaled)
  4967. {
  4968. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  4969. }
  4970. IL2CPP_EXTERN_C void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_com_back(const UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com& marshaled, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4& unmarshaled)
  4971. {
  4972. intptr_t unmarshaled_m_Ptr_temp_0;
  4973. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  4974. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  4975. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  4976. }
  4977. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandler
  4978. IL2CPP_EXTERN_C void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_com_cleanup(UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com& marshaled)
  4979. {
  4980. }
  4981. // System.Void UnityEngine.Networking.UploadHandler::Release()
  4982. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Release_m1723A22438AF0A7BE616D512E54190D9CE0EC3C4 (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, const RuntimeMethod* method)
  4983. {
  4984. typedef void (*UploadHandler_Release_m1723A22438AF0A7BE616D512E54190D9CE0EC3C4_ftn) (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 *);
  4985. static UploadHandler_Release_m1723A22438AF0A7BE616D512E54190D9CE0EC3C4_ftn _il2cpp_icall_func;
  4986. if (!_il2cpp_icall_func)
  4987. _il2cpp_icall_func = (UploadHandler_Release_m1723A22438AF0A7BE616D512E54190D9CE0EC3C4_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UploadHandler::Release()");
  4988. _il2cpp_icall_func(__this);
  4989. }
  4990. // System.Void UnityEngine.Networking.UploadHandler::.ctor()
  4991. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler__ctor_m3F76154710C5CB7099388479FA02E6555D077F6E (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, const RuntimeMethod* method)
  4992. {
  4993. {
  4994. Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
  4995. return;
  4996. }
  4997. }
  4998. // System.Void UnityEngine.Networking.UploadHandler::Finalize()
  4999. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Finalize_m68B0CC0B647B11B53908CA4E577AEA5DBA31E4D8 (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, const RuntimeMethod* method)
  5000. {
  5001. Exception_t * __last_unhandled_exception = 0;
  5002. NO_UNUSED_WARNING (__last_unhandled_exception);
  5003. Exception_t * __exception_local = 0;
  5004. NO_UNUSED_WARNING (__exception_local);
  5005. void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
  5006. il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
  5007. NO_UNUSED_WARNING (__leave_targets);
  5008. {
  5009. }
  5010. IL_0001:
  5011. try
  5012. { // begin try (depth: 1)
  5013. UploadHandler_Dispose_m9BBE8D7D2BBAAC2DE84B52BADA0B79CEA6F2DAB2(__this, /*hidden argument*/NULL);
  5014. IL2CPP_LEAVE(0x13, FINALLY_000b);
  5015. } // end try (depth: 1)
  5016. catch(Il2CppExceptionWrapper& e)
  5017. {
  5018. __last_unhandled_exception = (Exception_t *)e.ex;
  5019. goto FINALLY_000b;
  5020. }
  5021. FINALLY_000b:
  5022. { // begin finally (depth: 1)
  5023. Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
  5024. IL2CPP_END_FINALLY(11)
  5025. } // end finally (depth: 1)
  5026. IL2CPP_CLEANUP(11)
  5027. {
  5028. IL2CPP_JUMP_TBL(0x13, IL_0013)
  5029. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  5030. }
  5031. IL_0013:
  5032. {
  5033. return;
  5034. }
  5035. }
  5036. // System.Void UnityEngine.Networking.UploadHandler::Dispose()
  5037. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Dispose_m9BBE8D7D2BBAAC2DE84B52BADA0B79CEA6F2DAB2 (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, const RuntimeMethod* method)
  5038. {
  5039. static bool s_Il2CppMethodInitialized;
  5040. if (!s_Il2CppMethodInitialized)
  5041. {
  5042. il2cpp_codegen_initialize_method (UploadHandler_Dispose_m9BBE8D7D2BBAAC2DE84B52BADA0B79CEA6F2DAB2_MetadataUsageId);
  5043. s_Il2CppMethodInitialized = true;
  5044. }
  5045. bool V_0 = false;
  5046. {
  5047. intptr_t L_0 = __this->get_m_Ptr_0();
  5048. bool L_1 = IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
  5049. V_0 = L_1;
  5050. bool L_2 = V_0;
  5051. if (!L_2)
  5052. {
  5053. goto IL_0029;
  5054. }
  5055. }
  5056. {
  5057. UploadHandler_Release_m1723A22438AF0A7BE616D512E54190D9CE0EC3C4(__this, /*hidden argument*/NULL);
  5058. __this->set_m_Ptr_0((intptr_t)(0));
  5059. }
  5060. IL_0029:
  5061. {
  5062. return;
  5063. }
  5064. }
  5065. // System.Void UnityEngine.Networking.UploadHandler::set_contentType(System.String)
  5066. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_set_contentType_mB90BEE88AD0FCD496BED349F4E8086AB3C76FF3E (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, String_t* ___value0, const RuntimeMethod* method)
  5067. {
  5068. {
  5069. String_t* L_0 = ___value0;
  5070. VirtActionInvoker1< String_t* >::Invoke(5 /* System.Void UnityEngine.Networking.UploadHandler::SetContentType(System.String) */, __this, L_0);
  5071. return;
  5072. }
  5073. }
  5074. // System.Void UnityEngine.Networking.UploadHandler::SetContentType(System.String)
  5075. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_SetContentType_m71CDE15CBF56F82F32A6BFA79BD8B53A16743602 (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, String_t* ___newContentType0, const RuntimeMethod* method)
  5076. {
  5077. {
  5078. String_t* L_0 = ___newContentType0;
  5079. UploadHandler_InternalSetContentType_m86E3E9307206530DD096E7E112A2E2F8B2B1D9B3(__this, L_0, /*hidden argument*/NULL);
  5080. return;
  5081. }
  5082. }
  5083. // System.Void UnityEngine.Networking.UploadHandler::InternalSetContentType(System.String)
  5084. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_InternalSetContentType_m86E3E9307206530DD096E7E112A2E2F8B2B1D9B3 (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, String_t* ___newContentType0, const RuntimeMethod* method)
  5085. {
  5086. typedef void (*UploadHandler_InternalSetContentType_m86E3E9307206530DD096E7E112A2E2F8B2B1D9B3_ftn) (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 *, String_t*);
  5087. static UploadHandler_InternalSetContentType_m86E3E9307206530DD096E7E112A2E2F8B2B1D9B3_ftn _il2cpp_icall_func;
  5088. if (!_il2cpp_icall_func)
  5089. _il2cpp_icall_func = (UploadHandler_InternalSetContentType_m86E3E9307206530DD096E7E112A2E2F8B2B1D9B3_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UploadHandler::InternalSetContentType(System.String)");
  5090. _il2cpp_icall_func(__this, ___newContentType0);
  5091. }
  5092. #ifdef __clang__
  5093. #pragma clang diagnostic pop
  5094. #endif
  5095. #ifdef __clang__
  5096. #pragma clang diagnostic push
  5097. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5098. #pragma clang diagnostic ignored "-Wunused-variable"
  5099. #endif
  5100. // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandlerRaw
  5101. IL2CPP_EXTERN_C void UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshal_pinvoke(const UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27& unmarshaled, UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshaled_pinvoke& marshaled)
  5102. {
  5103. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  5104. }
  5105. IL2CPP_EXTERN_C void UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshal_pinvoke_back(const UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshaled_pinvoke& marshaled, UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27& unmarshaled)
  5106. {
  5107. intptr_t unmarshaled_m_Ptr_temp_0;
  5108. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  5109. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  5110. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  5111. }
  5112. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandlerRaw
  5113. IL2CPP_EXTERN_C void UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshal_pinvoke_cleanup(UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshaled_pinvoke& marshaled)
  5114. {
  5115. }
  5116. // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandlerRaw
  5117. IL2CPP_EXTERN_C void UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshal_com(const UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27& unmarshaled, UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshaled_com& marshaled)
  5118. {
  5119. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  5120. }
  5121. IL2CPP_EXTERN_C void UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshal_com_back(const UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshaled_com& marshaled, UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27& unmarshaled)
  5122. {
  5123. intptr_t unmarshaled_m_Ptr_temp_0;
  5124. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  5125. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  5126. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  5127. }
  5128. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandlerRaw
  5129. IL2CPP_EXTERN_C void UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshal_com_cleanup(UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshaled_com& marshaled)
  5130. {
  5131. }
  5132. // System.IntPtr UnityEngine.Networking.UploadHandlerRaw::Create(UnityEngine.Networking.UploadHandlerRaw,System.Byte[])
  5133. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UploadHandlerRaw_Create_m921D80A8952FC740F358E5FD28E6D5A70622687B (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 * ___self0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data1, const RuntimeMethod* method)
  5134. {
  5135. typedef intptr_t (*UploadHandlerRaw_Create_m921D80A8952FC740F358E5FD28E6D5A70622687B_ftn) (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 *, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*);
  5136. static UploadHandlerRaw_Create_m921D80A8952FC740F358E5FD28E6D5A70622687B_ftn _il2cpp_icall_func;
  5137. if (!_il2cpp_icall_func)
  5138. _il2cpp_icall_func = (UploadHandlerRaw_Create_m921D80A8952FC740F358E5FD28E6D5A70622687B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UploadHandlerRaw::Create(UnityEngine.Networking.UploadHandlerRaw,System.Byte[])");
  5139. intptr_t retVal = _il2cpp_icall_func(___self0, ___data1);
  5140. return retVal;
  5141. }
  5142. // System.Void UnityEngine.Networking.UploadHandlerRaw::.ctor(System.Byte[])
  5143. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935 (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method)
  5144. {
  5145. static bool s_Il2CppMethodInitialized;
  5146. if (!s_Il2CppMethodInitialized)
  5147. {
  5148. il2cpp_codegen_initialize_method (UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935_MetadataUsageId);
  5149. s_Il2CppMethodInitialized = true;
  5150. }
  5151. bool V_0 = false;
  5152. int32_t G_B3_0 = 0;
  5153. {
  5154. UploadHandler__ctor_m3F76154710C5CB7099388479FA02E6555D077F6E(__this, /*hidden argument*/NULL);
  5155. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___data0;
  5156. if (!L_0)
  5157. {
  5158. goto IL_0012;
  5159. }
  5160. }
  5161. {
  5162. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___data0;
  5163. NullCheck(L_1);
  5164. G_B3_0 = ((((int32_t)(((RuntimeArray*)L_1)->max_length)) == ((int32_t)0))? 1 : 0);
  5165. goto IL_0013;
  5166. }
  5167. IL_0012:
  5168. {
  5169. G_B3_0 = 0;
  5170. }
  5171. IL_0013:
  5172. {
  5173. V_0 = (bool)G_B3_0;
  5174. bool L_2 = V_0;
  5175. if (!L_2)
  5176. {
  5177. goto IL_0022;
  5178. }
  5179. }
  5180. {
  5181. ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
  5182. ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, _stringLiteral4E5057793E1875AA08F21BE7F738453AD461E5F0, /*hidden argument*/NULL);
  5183. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935_RuntimeMethod_var);
  5184. }
  5185. IL_0022:
  5186. {
  5187. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___data0;
  5188. intptr_t L_5 = UploadHandlerRaw_Create_m921D80A8952FC740F358E5FD28E6D5A70622687B(__this, L_4, /*hidden argument*/NULL);
  5189. ((UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 *)__this)->set_m_Ptr_0((intptr_t)L_5);
  5190. return;
  5191. }
  5192. }
  5193. #ifdef __clang__
  5194. #pragma clang diagnostic pop
  5195. #endif
  5196. #ifdef __clang__
  5197. #pragma clang diagnostic push
  5198. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5199. #pragma clang diagnostic ignored "-Wunused-variable"
  5200. #endif
  5201. // System.Text.Encoding UnityEngine.WWWForm::get_DefaultEncoding()
  5202. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F (const RuntimeMethod* method)
  5203. {
  5204. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * V_0 = NULL;
  5205. {
  5206. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E(/*hidden argument*/NULL);
  5207. V_0 = L_0;
  5208. goto IL_0009;
  5209. }
  5210. IL_0009:
  5211. {
  5212. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = V_0;
  5213. return L_1;
  5214. }
  5215. }
  5216. #ifdef __clang__
  5217. #pragma clang diagnostic pop
  5218. #endif
  5219. #ifdef __clang__
  5220. #pragma clang diagnostic push
  5221. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5222. #pragma clang diagnostic ignored "-Wunused-variable"
  5223. #endif
  5224. // System.Byte UnityEngine.WWWTranscoder::Hex2Byte(System.Byte[],System.Int32)
  5225. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t WWWTranscoder_Hex2Byte_mD417CA540CFBE045FCE32959CD3443EB9C8C7423 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___b0, int32_t ___offset1, const RuntimeMethod* method)
  5226. {
  5227. uint8_t V_0 = 0x0;
  5228. int32_t V_1 = 0;
  5229. int32_t V_2 = 0;
  5230. bool V_3 = false;
  5231. bool V_4 = false;
  5232. bool V_5 = false;
  5233. bool V_6 = false;
  5234. uint8_t V_7 = 0x0;
  5235. bool V_8 = false;
  5236. int32_t G_B4_0 = 0;
  5237. int32_t G_B9_0 = 0;
  5238. int32_t G_B14_0 = 0;
  5239. {
  5240. V_0 = (uint8_t)0;
  5241. int32_t L_0 = ___offset1;
  5242. V_1 = L_0;
  5243. goto IL_0082;
  5244. }
  5245. IL_0007:
  5246. {
  5247. uint8_t L_1 = V_0;
  5248. V_0 = (uint8_t)(((int32_t)((uint8_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)16))))));
  5249. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___b0;
  5250. int32_t L_3 = V_1;
  5251. NullCheck(L_2);
  5252. int32_t L_4 = L_3;
  5253. uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
  5254. V_2 = L_5;
  5255. int32_t L_6 = V_2;
  5256. if ((((int32_t)L_6) < ((int32_t)((int32_t)48))))
  5257. {
  5258. goto IL_0021;
  5259. }
  5260. }
  5261. {
  5262. int32_t L_7 = V_2;
  5263. G_B4_0 = ((((int32_t)((((int32_t)L_7) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  5264. goto IL_0022;
  5265. }
  5266. IL_0021:
  5267. {
  5268. G_B4_0 = 0;
  5269. }
  5270. IL_0022:
  5271. {
  5272. V_3 = (bool)G_B4_0;
  5273. bool L_8 = V_3;
  5274. if (!L_8)
  5275. {
  5276. goto IL_002d;
  5277. }
  5278. }
  5279. {
  5280. int32_t L_9 = V_2;
  5281. V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)48)));
  5282. goto IL_0065;
  5283. }
  5284. IL_002d:
  5285. {
  5286. int32_t L_10 = V_2;
  5287. if ((((int32_t)L_10) < ((int32_t)((int32_t)65))))
  5288. {
  5289. goto IL_003c;
  5290. }
  5291. }
  5292. {
  5293. int32_t L_11 = V_2;
  5294. G_B9_0 = ((((int32_t)((((int32_t)L_11) > ((int32_t)((int32_t)75)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  5295. goto IL_003d;
  5296. }
  5297. IL_003c:
  5298. {
  5299. G_B9_0 = 0;
  5300. }
  5301. IL_003d:
  5302. {
  5303. V_4 = (bool)G_B9_0;
  5304. bool L_12 = V_4;
  5305. if (!L_12)
  5306. {
  5307. goto IL_004a;
  5308. }
  5309. }
  5310. {
  5311. int32_t L_13 = V_2;
  5312. V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)((int32_t)55)));
  5313. goto IL_0065;
  5314. }
  5315. IL_004a:
  5316. {
  5317. int32_t L_14 = V_2;
  5318. if ((((int32_t)L_14) < ((int32_t)((int32_t)97))))
  5319. {
  5320. goto IL_0059;
  5321. }
  5322. }
  5323. {
  5324. int32_t L_15 = V_2;
  5325. G_B14_0 = ((((int32_t)((((int32_t)L_15) > ((int32_t)((int32_t)102)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  5326. goto IL_005a;
  5327. }
  5328. IL_0059:
  5329. {
  5330. G_B14_0 = 0;
  5331. }
  5332. IL_005a:
  5333. {
  5334. V_5 = (bool)G_B14_0;
  5335. bool L_16 = V_5;
  5336. if (!L_16)
  5337. {
  5338. goto IL_0065;
  5339. }
  5340. }
  5341. {
  5342. int32_t L_17 = V_2;
  5343. V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)((int32_t)87)));
  5344. }
  5345. IL_0065:
  5346. {
  5347. int32_t L_18 = V_2;
  5348. V_6 = (bool)((((int32_t)L_18) > ((int32_t)((int32_t)15)))? 1 : 0);
  5349. bool L_19 = V_6;
  5350. if (!L_19)
  5351. {
  5352. goto IL_0077;
  5353. }
  5354. }
  5355. {
  5356. V_7 = (uint8_t)((int32_t)63);
  5357. goto IL_0096;
  5358. }
  5359. IL_0077:
  5360. {
  5361. uint8_t L_20 = V_0;
  5362. int32_t L_21 = V_2;
  5363. V_0 = (uint8_t)(((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)(((int32_t)((uint8_t)L_21))))))));
  5364. int32_t L_22 = V_1;
  5365. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
  5366. }
  5367. IL_0082:
  5368. {
  5369. int32_t L_23 = V_1;
  5370. int32_t L_24 = ___offset1;
  5371. V_8 = (bool)((((int32_t)L_23) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)2))))? 1 : 0);
  5372. bool L_25 = V_8;
  5373. if (L_25)
  5374. {
  5375. goto IL_0007;
  5376. }
  5377. }
  5378. {
  5379. uint8_t L_26 = V_0;
  5380. V_7 = L_26;
  5381. goto IL_0096;
  5382. }
  5383. IL_0096:
  5384. {
  5385. uint8_t L_27 = V_7;
  5386. return L_27;
  5387. }
  5388. }
  5389. // System.Byte[] UnityEngine.WWWTranscoder::Byte2Hex(System.Byte,System.Byte[])
  5390. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_Byte2Hex_mA129675BFEDFED879713DAB1592772BC52FA04FB (uint8_t ___b0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___hexChars1, const RuntimeMethod* method)
  5391. {
  5392. static bool s_Il2CppMethodInitialized;
  5393. if (!s_Il2CppMethodInitialized)
  5394. {
  5395. il2cpp_codegen_initialize_method (WWWTranscoder_Byte2Hex_mA129675BFEDFED879713DAB1592772BC52FA04FB_MetadataUsageId);
  5396. s_Il2CppMethodInitialized = true;
  5397. }
  5398. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
  5399. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
  5400. {
  5401. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)2);
  5402. V_0 = L_0;
  5403. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0;
  5404. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___hexChars1;
  5405. uint8_t L_3 = ___b0;
  5406. NullCheck(L_2);
  5407. int32_t L_4 = ((int32_t)((int32_t)L_3>>(int32_t)4));
  5408. uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
  5409. NullCheck(L_1);
  5410. (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_5);
  5411. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = V_0;
  5412. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___hexChars1;
  5413. uint8_t L_8 = ___b0;
  5414. NullCheck(L_7);
  5415. int32_t L_9 = ((int32_t)((int32_t)L_8&(int32_t)((int32_t)15)));
  5416. uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
  5417. NullCheck(L_6);
  5418. (L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)L_10);
  5419. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = V_0;
  5420. V_1 = L_11;
  5421. goto IL_001d;
  5422. }
  5423. IL_001d:
  5424. {
  5425. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = V_1;
  5426. return L_12;
  5427. }
  5428. }
  5429. // System.String UnityEngine.WWWTranscoder::DataEncode(System.String,System.Text.Encoding)
  5430. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WWWTranscoder_DataEncode_m991CA7AD8C98345736244A24979E440E23E5035A (String_t* ___toEncode0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___e1, const RuntimeMethod* method)
  5431. {
  5432. static bool s_Il2CppMethodInitialized;
  5433. if (!s_Il2CppMethodInitialized)
  5434. {
  5435. il2cpp_codegen_initialize_method (WWWTranscoder_DataEncode_m991CA7AD8C98345736244A24979E440E23E5035A_MetadataUsageId);
  5436. s_Il2CppMethodInitialized = true;
  5437. }
  5438. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
  5439. String_t* V_1 = NULL;
  5440. {
  5441. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ___e1;
  5442. String_t* L_1 = ___toEncode0;
  5443. NullCheck(L_0);
  5444. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(16 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, L_1);
  5445. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var);
  5446. uint8_t L_3 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_urlEscapeChar_2();
  5447. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_dataSpace_4();
  5448. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_urlForbidden_5();
  5449. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = WWWTranscoder_Encode_m2D65124BA0FF6E92A66B5804596B75898068CF84(L_2, L_3, L_4, L_5, (bool)0, /*hidden argument*/NULL);
  5450. V_0 = L_6;
  5451. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_7 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL);
  5452. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_0;
  5453. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_0;
  5454. NullCheck(L_9);
  5455. NullCheck(L_7);
  5456. String_t* L_10 = VirtFuncInvoker3< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(33 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_7, L_8, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))));
  5457. V_1 = L_10;
  5458. goto IL_0030;
  5459. }
  5460. IL_0030:
  5461. {
  5462. String_t* L_11 = V_1;
  5463. return L_11;
  5464. }
  5465. }
  5466. // System.Byte[] UnityEngine.WWWTranscoder::Encode(System.Byte[],System.Byte,System.Byte[],System.Byte[],System.Boolean)
  5467. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_Encode_m2D65124BA0FF6E92A66B5804596B75898068CF84 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, uint8_t ___escapeChar1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___space2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___forbidden3, bool ___uppercase4, const RuntimeMethod* method)
  5468. {
  5469. static bool s_Il2CppMethodInitialized;
  5470. if (!s_Il2CppMethodInitialized)
  5471. {
  5472. il2cpp_codegen_initialize_method (WWWTranscoder_Encode_m2D65124BA0FF6E92A66B5804596B75898068CF84_MetadataUsageId);
  5473. s_Il2CppMethodInitialized = true;
  5474. }
  5475. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * V_0 = NULL;
  5476. int32_t V_1 = 0;
  5477. bool V_2 = false;
  5478. bool V_3 = false;
  5479. bool V_4 = false;
  5480. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_5 = NULL;
  5481. Exception_t * __last_unhandled_exception = 0;
  5482. NO_UNUSED_WARNING (__last_unhandled_exception);
  5483. Exception_t * __exception_local = 0;
  5484. NO_UNUSED_WARNING (__exception_local);
  5485. void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
  5486. il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
  5487. NO_UNUSED_WARNING (__leave_targets);
  5488. int32_t G_B8_0 = 0;
  5489. int32_t G_B11_0 = 0;
  5490. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * G_B11_1 = NULL;
  5491. int32_t G_B10_0 = 0;
  5492. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * G_B10_1 = NULL;
  5493. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B12_0 = NULL;
  5494. int32_t G_B12_1 = 0;
  5495. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * G_B12_2 = NULL;
  5496. {
  5497. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___input0;
  5498. NullCheck(L_0);
  5499. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_1 = (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C *)il2cpp_codegen_object_new(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C_il2cpp_TypeInfo_var);
  5500. MemoryStream__ctor_m78689C82DED9ACE5022B7EABF28F17FF318DF2AA(L_1, ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))), (int32_t)2)), /*hidden argument*/NULL);
  5501. V_0 = L_1;
  5502. }
  5503. IL_000c:
  5504. try
  5505. { // begin try (depth: 1)
  5506. {
  5507. V_1 = 0;
  5508. goto IL_0089;
  5509. }
  5510. IL_0011:
  5511. {
  5512. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___input0;
  5513. int32_t L_3 = V_1;
  5514. NullCheck(L_2);
  5515. int32_t L_4 = L_3;
  5516. uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
  5517. V_2 = (bool)((((int32_t)L_5) == ((int32_t)((int32_t)32)))? 1 : 0);
  5518. bool L_6 = V_2;
  5519. if (!L_6)
  5520. {
  5521. goto IL_002d;
  5522. }
  5523. }
  5524. IL_001d:
  5525. {
  5526. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_7 = V_0;
  5527. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___space2;
  5528. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___space2;
  5529. NullCheck(L_9);
  5530. NullCheck(L_7);
  5531. VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(29 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_7, L_8, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))));
  5532. goto IL_0084;
  5533. }
  5534. IL_002d:
  5535. {
  5536. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ___input0;
  5537. int32_t L_11 = V_1;
  5538. NullCheck(L_10);
  5539. int32_t L_12 = L_11;
  5540. uint8_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
  5541. if ((((int32_t)L_13) < ((int32_t)((int32_t)32))))
  5542. {
  5543. goto IL_0046;
  5544. }
  5545. }
  5546. IL_0034:
  5547. {
  5548. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = ___input0;
  5549. int32_t L_15 = V_1;
  5550. NullCheck(L_14);
  5551. int32_t L_16 = L_15;
  5552. uint8_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
  5553. if ((((int32_t)L_17) > ((int32_t)((int32_t)126))))
  5554. {
  5555. goto IL_0046;
  5556. }
  5557. }
  5558. IL_003b:
  5559. {
  5560. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = ___forbidden3;
  5561. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = ___input0;
  5562. int32_t L_20 = V_1;
  5563. NullCheck(L_19);
  5564. int32_t L_21 = L_20;
  5565. uint8_t L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
  5566. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var);
  5567. bool L_23 = WWWTranscoder_ByteArrayContains_mC89ADE5434606470BB3BAF857D786138825E2D0B(L_18, L_22, /*hidden argument*/NULL);
  5568. G_B8_0 = ((int32_t)(L_23));
  5569. goto IL_0047;
  5570. }
  5571. IL_0046:
  5572. {
  5573. G_B8_0 = 1;
  5574. }
  5575. IL_0047:
  5576. {
  5577. V_3 = (bool)G_B8_0;
  5578. bool L_24 = V_3;
  5579. if (!L_24)
  5580. {
  5581. goto IL_0078;
  5582. }
  5583. }
  5584. IL_004b:
  5585. {
  5586. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_25 = V_0;
  5587. uint8_t L_26 = ___escapeChar1;
  5588. NullCheck(L_25);
  5589. VirtActionInvoker1< uint8_t >::Invoke(30 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_25, L_26);
  5590. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_27 = V_0;
  5591. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = ___input0;
  5592. int32_t L_29 = V_1;
  5593. NullCheck(L_28);
  5594. int32_t L_30 = L_29;
  5595. uint8_t L_31 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_30));
  5596. bool L_32 = ___uppercase4;
  5597. G_B10_0 = ((int32_t)(L_31));
  5598. G_B10_1 = L_27;
  5599. if (L_32)
  5600. {
  5601. G_B11_0 = ((int32_t)(L_31));
  5602. G_B11_1 = L_27;
  5603. goto IL_0063;
  5604. }
  5605. }
  5606. IL_005c:
  5607. {
  5608. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var);
  5609. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_lcHexChars_1();
  5610. G_B12_0 = L_33;
  5611. G_B12_1 = G_B10_0;
  5612. G_B12_2 = G_B10_1;
  5613. goto IL_0068;
  5614. }
  5615. IL_0063:
  5616. {
  5617. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var);
  5618. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_ucHexChars_0();
  5619. G_B12_0 = L_34;
  5620. G_B12_1 = G_B11_0;
  5621. G_B12_2 = G_B11_1;
  5622. }
  5623. IL_0068:
  5624. {
  5625. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var);
  5626. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = WWWTranscoder_Byte2Hex_mA129675BFEDFED879713DAB1592772BC52FA04FB((uint8_t)G_B12_1, G_B12_0, /*hidden argument*/NULL);
  5627. NullCheck(G_B12_2);
  5628. VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(29 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, G_B12_2, L_35, 0, 2);
  5629. goto IL_0084;
  5630. }
  5631. IL_0078:
  5632. {
  5633. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_36 = V_0;
  5634. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_37 = ___input0;
  5635. int32_t L_38 = V_1;
  5636. NullCheck(L_37);
  5637. int32_t L_39 = L_38;
  5638. uint8_t L_40 = (L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_39));
  5639. NullCheck(L_36);
  5640. VirtActionInvoker1< uint8_t >::Invoke(30 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_36, L_40);
  5641. }
  5642. IL_0084:
  5643. {
  5644. int32_t L_41 = V_1;
  5645. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1));
  5646. }
  5647. IL_0089:
  5648. {
  5649. int32_t L_42 = V_1;
  5650. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_43 = ___input0;
  5651. NullCheck(L_43);
  5652. V_4 = (bool)((((int32_t)L_42) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_43)->max_length))))))? 1 : 0);
  5653. bool L_44 = V_4;
  5654. if (L_44)
  5655. {
  5656. goto IL_0011;
  5657. }
  5658. }
  5659. IL_0098:
  5660. {
  5661. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_45 = V_0;
  5662. NullCheck(L_45);
  5663. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_46 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(34 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_45);
  5664. V_5 = L_46;
  5665. IL2CPP_LEAVE(0xAD, FINALLY_00a2);
  5666. }
  5667. } // end try (depth: 1)
  5668. catch(Il2CppExceptionWrapper& e)
  5669. {
  5670. __last_unhandled_exception = (Exception_t *)e.ex;
  5671. goto FINALLY_00a2;
  5672. }
  5673. FINALLY_00a2:
  5674. { // begin finally (depth: 1)
  5675. {
  5676. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_47 = V_0;
  5677. if (!L_47)
  5678. {
  5679. goto IL_00ac;
  5680. }
  5681. }
  5682. IL_00a5:
  5683. {
  5684. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_48 = V_0;
  5685. NullCheck(L_48);
  5686. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_48);
  5687. }
  5688. IL_00ac:
  5689. {
  5690. IL2CPP_END_FINALLY(162)
  5691. }
  5692. } // end finally (depth: 1)
  5693. IL2CPP_CLEANUP(162)
  5694. {
  5695. IL2CPP_JUMP_TBL(0xAD, IL_00ad)
  5696. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  5697. }
  5698. IL_00ad:
  5699. {
  5700. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_49 = V_5;
  5701. return L_49;
  5702. }
  5703. }
  5704. // System.Boolean UnityEngine.WWWTranscoder::ByteArrayContains(System.Byte[],System.Byte)
  5705. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteArrayContains_mC89ADE5434606470BB3BAF857D786138825E2D0B (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, uint8_t ___b1, const RuntimeMethod* method)
  5706. {
  5707. int32_t V_0 = 0;
  5708. int32_t V_1 = 0;
  5709. bool V_2 = false;
  5710. bool V_3 = false;
  5711. bool V_4 = false;
  5712. {
  5713. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___array0;
  5714. NullCheck(L_0);
  5715. V_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))));
  5716. V_1 = 0;
  5717. goto IL_001d;
  5718. }
  5719. IL_0009:
  5720. {
  5721. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___array0;
  5722. int32_t L_2 = V_1;
  5723. NullCheck(L_1);
  5724. int32_t L_3 = L_2;
  5725. uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
  5726. uint8_t L_5 = ___b1;
  5727. V_2 = (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
  5728. bool L_6 = V_2;
  5729. if (!L_6)
  5730. {
  5731. goto IL_0018;
  5732. }
  5733. }
  5734. {
  5735. V_3 = (bool)1;
  5736. goto IL_002b;
  5737. }
  5738. IL_0018:
  5739. {
  5740. int32_t L_7 = V_1;
  5741. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
  5742. }
  5743. IL_001d:
  5744. {
  5745. int32_t L_8 = V_1;
  5746. int32_t L_9 = V_0;
  5747. V_4 = (bool)((((int32_t)L_8) < ((int32_t)L_9))? 1 : 0);
  5748. bool L_10 = V_4;
  5749. if (L_10)
  5750. {
  5751. goto IL_0009;
  5752. }
  5753. }
  5754. {
  5755. V_3 = (bool)0;
  5756. goto IL_002b;
  5757. }
  5758. IL_002b:
  5759. {
  5760. bool L_11 = V_3;
  5761. return L_11;
  5762. }
  5763. }
  5764. // System.Byte[] UnityEngine.WWWTranscoder::URLDecode(System.Byte[])
  5765. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_URLDecode_m591A567154B1B8737ECBFE065AF4FCA59217F5D8 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___toEncode0, const RuntimeMethod* method)
  5766. {
  5767. static bool s_Il2CppMethodInitialized;
  5768. if (!s_Il2CppMethodInitialized)
  5769. {
  5770. il2cpp_codegen_initialize_method (WWWTranscoder_URLDecode_m591A567154B1B8737ECBFE065AF4FCA59217F5D8_MetadataUsageId);
  5771. s_Il2CppMethodInitialized = true;
  5772. }
  5773. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
  5774. {
  5775. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___toEncode0;
  5776. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var);
  5777. uint8_t L_1 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_urlEscapeChar_2();
  5778. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_urlSpace_3();
  5779. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = WWWTranscoder_Decode_m2533830DAAAE6F33AA6EE85A5BF63C96F5D631D4(L_0, L_1, L_2, /*hidden argument*/NULL);
  5780. V_0 = L_3;
  5781. goto IL_0014;
  5782. }
  5783. IL_0014:
  5784. {
  5785. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_0;
  5786. return L_4;
  5787. }
  5788. }
  5789. // System.Boolean UnityEngine.WWWTranscoder::ByteSubArrayEquals(System.Byte[],System.Int32,System.Byte[])
  5790. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteSubArrayEquals_m268C2A9B31CCF4D81E7BEEF843DF5D477ECA9958 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, int32_t ___index1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___comperand2, const RuntimeMethod* method)
  5791. {
  5792. bool V_0 = false;
  5793. bool V_1 = false;
  5794. int32_t V_2 = 0;
  5795. bool V_3 = false;
  5796. bool V_4 = false;
  5797. {
  5798. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___array0;
  5799. NullCheck(L_0);
  5800. int32_t L_1 = ___index1;
  5801. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___comperand2;
  5802. NullCheck(L_2);
  5803. V_0 = (bool)((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))), (int32_t)L_1))) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))? 1 : 0);
  5804. bool L_3 = V_0;
  5805. if (!L_3)
  5806. {
  5807. goto IL_0013;
  5808. }
  5809. }
  5810. {
  5811. V_1 = (bool)0;
  5812. goto IL_0040;
  5813. }
  5814. IL_0013:
  5815. {
  5816. V_2 = 0;
  5817. goto IL_0030;
  5818. }
  5819. IL_0017:
  5820. {
  5821. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___array0;
  5822. int32_t L_5 = ___index1;
  5823. int32_t L_6 = V_2;
  5824. NullCheck(L_4);
  5825. int32_t L_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)L_6));
  5826. uint8_t L_8 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
  5827. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___comperand2;
  5828. int32_t L_10 = V_2;
  5829. NullCheck(L_9);
  5830. int32_t L_11 = L_10;
  5831. uint8_t L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
  5832. V_3 = (bool)((((int32_t)((((int32_t)L_8) == ((int32_t)L_12))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  5833. bool L_13 = V_3;
  5834. if (!L_13)
  5835. {
  5836. goto IL_002c;
  5837. }
  5838. }
  5839. {
  5840. V_1 = (bool)0;
  5841. goto IL_0040;
  5842. }
  5843. IL_002c:
  5844. {
  5845. int32_t L_14 = V_2;
  5846. V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
  5847. }
  5848. IL_0030:
  5849. {
  5850. int32_t L_15 = V_2;
  5851. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = ___comperand2;
  5852. NullCheck(L_16);
  5853. V_4 = (bool)((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))))))? 1 : 0);
  5854. bool L_17 = V_4;
  5855. if (L_17)
  5856. {
  5857. goto IL_0017;
  5858. }
  5859. }
  5860. {
  5861. V_1 = (bool)1;
  5862. goto IL_0040;
  5863. }
  5864. IL_0040:
  5865. {
  5866. bool L_18 = V_1;
  5867. return L_18;
  5868. }
  5869. }
  5870. // System.Byte[] UnityEngine.WWWTranscoder::Decode(System.Byte[],System.Byte,System.Byte[])
  5871. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_Decode_m2533830DAAAE6F33AA6EE85A5BF63C96F5D631D4 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, uint8_t ___escapeChar1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___space2, const RuntimeMethod* method)
  5872. {
  5873. static bool s_Il2CppMethodInitialized;
  5874. if (!s_Il2CppMethodInitialized)
  5875. {
  5876. il2cpp_codegen_initialize_method (WWWTranscoder_Decode_m2533830DAAAE6F33AA6EE85A5BF63C96F5D631D4_MetadataUsageId);
  5877. s_Il2CppMethodInitialized = true;
  5878. }
  5879. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * V_0 = NULL;
  5880. int32_t V_1 = 0;
  5881. bool V_2 = false;
  5882. bool V_3 = false;
  5883. bool V_4 = false;
  5884. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_5 = NULL;
  5885. Exception_t * __last_unhandled_exception = 0;
  5886. NO_UNUSED_WARNING (__last_unhandled_exception);
  5887. Exception_t * __exception_local = 0;
  5888. NO_UNUSED_WARNING (__exception_local);
  5889. void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
  5890. il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
  5891. NO_UNUSED_WARNING (__leave_targets);
  5892. int32_t G_B7_0 = 0;
  5893. {
  5894. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___input0;
  5895. NullCheck(L_0);
  5896. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_1 = (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C *)il2cpp_codegen_object_new(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C_il2cpp_TypeInfo_var);
  5897. MemoryStream__ctor_m78689C82DED9ACE5022B7EABF28F17FF318DF2AA(L_1, (((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))), /*hidden argument*/NULL);
  5898. V_0 = L_1;
  5899. }
  5900. IL_000a:
  5901. try
  5902. { // begin try (depth: 1)
  5903. {
  5904. V_1 = 0;
  5905. goto IL_0071;
  5906. }
  5907. IL_000f:
  5908. {
  5909. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___input0;
  5910. int32_t L_3 = V_1;
  5911. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___space2;
  5912. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var);
  5913. bool L_5 = WWWTranscoder_ByteSubArrayEquals_m268C2A9B31CCF4D81E7BEEF843DF5D477ECA9958(L_2, L_3, L_4, /*hidden argument*/NULL);
  5914. V_2 = L_5;
  5915. bool L_6 = V_2;
  5916. if (!L_6)
  5917. {
  5918. goto IL_0031;
  5919. }
  5920. }
  5921. IL_001c:
  5922. {
  5923. int32_t L_7 = V_1;
  5924. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___space2;
  5925. NullCheck(L_8);
  5926. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)1))));
  5927. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_9 = V_0;
  5928. NullCheck(L_9);
  5929. VirtActionInvoker1< uint8_t >::Invoke(30 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_9, (uint8_t)((int32_t)32));
  5930. goto IL_006c;
  5931. }
  5932. IL_0031:
  5933. {
  5934. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ___input0;
  5935. int32_t L_11 = V_1;
  5936. NullCheck(L_10);
  5937. int32_t L_12 = L_11;
  5938. uint8_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
  5939. uint8_t L_14 = ___escapeChar1;
  5940. if ((!(((uint32_t)L_13) == ((uint32_t)L_14))))
  5941. {
  5942. goto IL_0041;
  5943. }
  5944. }
  5945. IL_0037:
  5946. {
  5947. int32_t L_15 = V_1;
  5948. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = ___input0;
  5949. NullCheck(L_16);
  5950. G_B7_0 = ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)2))) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))))))? 1 : 0);
  5951. goto IL_0042;
  5952. }
  5953. IL_0041:
  5954. {
  5955. G_B7_0 = 0;
  5956. }
  5957. IL_0042:
  5958. {
  5959. V_3 = (bool)G_B7_0;
  5960. bool L_17 = V_3;
  5961. if (!L_17)
  5962. {
  5963. goto IL_0060;
  5964. }
  5965. }
  5966. IL_0046:
  5967. {
  5968. int32_t L_18 = V_1;
  5969. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1));
  5970. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_19 = V_0;
  5971. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = ___input0;
  5972. int32_t L_21 = V_1;
  5973. int32_t L_22 = L_21;
  5974. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
  5975. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var);
  5976. uint8_t L_23 = WWWTranscoder_Hex2Byte_mD417CA540CFBE045FCE32959CD3443EB9C8C7423(L_20, L_22, /*hidden argument*/NULL);
  5977. NullCheck(L_19);
  5978. VirtActionInvoker1< uint8_t >::Invoke(30 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_19, L_23);
  5979. goto IL_006c;
  5980. }
  5981. IL_0060:
  5982. {
  5983. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_24 = V_0;
  5984. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = ___input0;
  5985. int32_t L_26 = V_1;
  5986. NullCheck(L_25);
  5987. int32_t L_27 = L_26;
  5988. uint8_t L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
  5989. NullCheck(L_24);
  5990. VirtActionInvoker1< uint8_t >::Invoke(30 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_24, L_28);
  5991. }
  5992. IL_006c:
  5993. {
  5994. int32_t L_29 = V_1;
  5995. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1));
  5996. }
  5997. IL_0071:
  5998. {
  5999. int32_t L_30 = V_1;
  6000. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = ___input0;
  6001. NullCheck(L_31);
  6002. V_4 = (bool)((((int32_t)L_30) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length))))))? 1 : 0);
  6003. bool L_32 = V_4;
  6004. if (L_32)
  6005. {
  6006. goto IL_000f;
  6007. }
  6008. }
  6009. IL_007d:
  6010. {
  6011. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_33 = V_0;
  6012. NullCheck(L_33);
  6013. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(34 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_33);
  6014. V_5 = L_34;
  6015. IL2CPP_LEAVE(0x92, FINALLY_0087);
  6016. }
  6017. } // end try (depth: 1)
  6018. catch(Il2CppExceptionWrapper& e)
  6019. {
  6020. __last_unhandled_exception = (Exception_t *)e.ex;
  6021. goto FINALLY_0087;
  6022. }
  6023. FINALLY_0087:
  6024. { // begin finally (depth: 1)
  6025. {
  6026. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_35 = V_0;
  6027. if (!L_35)
  6028. {
  6029. goto IL_0091;
  6030. }
  6031. }
  6032. IL_008a:
  6033. {
  6034. MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_36 = V_0;
  6035. NullCheck(L_36);
  6036. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_36);
  6037. }
  6038. IL_0091:
  6039. {
  6040. IL2CPP_END_FINALLY(135)
  6041. }
  6042. } // end finally (depth: 1)
  6043. IL2CPP_CLEANUP(135)
  6044. {
  6045. IL2CPP_JUMP_TBL(0x92, IL_0092)
  6046. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  6047. }
  6048. IL_0092:
  6049. {
  6050. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_37 = V_5;
  6051. return L_37;
  6052. }
  6053. }
  6054. // System.Void UnityEngine.WWWTranscoder::.cctor()
  6055. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWTranscoder__cctor_m3436CCA2D8667A6BCF6981B6573EF048BDA49F51 (const RuntimeMethod* method)
  6056. {
  6057. static bool s_Il2CppMethodInitialized;
  6058. if (!s_Il2CppMethodInitialized)
  6059. {
  6060. il2cpp_codegen_initialize_method (WWWTranscoder__cctor_m3436CCA2D8667A6BCF6981B6573EF048BDA49F51_MetadataUsageId);
  6061. s_Il2CppMethodInitialized = true;
  6062. }
  6063. {
  6064. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL);
  6065. NullCheck(L_0);
  6066. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(16 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, _stringLiteralCE27CB141098FEB00714E758646BE3E99C185B71);
  6067. ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_ucHexChars_0(L_1);
  6068. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL);
  6069. NullCheck(L_2);
  6070. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(16 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_2, _stringLiteralFE5567E8D769550852182CDF69D74BB16DFF8E29);
  6071. ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_lcHexChars_1(L_3);
  6072. ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_urlEscapeChar_2((uint8_t)((int32_t)37));
  6073. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
  6074. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = L_4;
  6075. NullCheck(L_5);
  6076. (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)43));
  6077. ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_urlSpace_3(L_5);
  6078. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_6 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL);
  6079. NullCheck(L_6);
  6080. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(16 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_6, _stringLiteral986F2ED15C79ED805000ECCD85519810B2DB2A93);
  6081. ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_dataSpace_4(L_7);
  6082. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_8 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL);
  6083. NullCheck(L_8);
  6084. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(16 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_8, _stringLiteral1C5E5F29CEB079B561835055FFA20C2E0B53F397);
  6085. ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_urlForbidden_5(L_9);
  6086. ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_qpEscapeChar_6((uint8_t)((int32_t)61));
  6087. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
  6088. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = L_10;
  6089. NullCheck(L_11);
  6090. (L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)95));
  6091. ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_qpSpace_7(L_11);
  6092. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_12 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL);
  6093. NullCheck(L_12);
  6094. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(16 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_12, _stringLiteral38263C0B87E5FC0881F12EF855C8F694115D8213);
  6095. ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_qpForbidden_8(L_13);
  6096. return;
  6097. }
  6098. }
  6099. #ifdef __clang__
  6100. #pragma clang diagnostic pop
  6101. #endif
  6102. #ifdef __clang__
  6103. #pragma clang diagnostic push
  6104. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6105. #pragma clang diagnostic ignored "-Wunused-variable"
  6106. #endif
  6107. // System.String UnityEngineInternal.WebRequestUtils::RedirectTo(System.String,System.String)
  6108. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_RedirectTo_m8AC7C0BFC562550118F6FF4AE218898717E922C1 (String_t* ___baseUri0, String_t* ___redirectUri1, const RuntimeMethod* method)
  6109. {
  6110. static bool s_Il2CppMethodInitialized;
  6111. if (!s_Il2CppMethodInitialized)
  6112. {
  6113. il2cpp_codegen_initialize_method (WebRequestUtils_RedirectTo_m8AC7C0BFC562550118F6FF4AE218898717E922C1_MetadataUsageId);
  6114. s_Il2CppMethodInitialized = true;
  6115. }
  6116. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * V_0 = NULL;
  6117. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * V_1 = NULL;
  6118. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * V_2 = NULL;
  6119. bool V_3 = false;
  6120. bool V_4 = false;
  6121. String_t* V_5 = NULL;
  6122. {
  6123. String_t* L_0 = ___redirectUri1;
  6124. NullCheck(L_0);
  6125. Il2CppChar L_1 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, 0, /*hidden argument*/NULL);
  6126. V_3 = (bool)((((int32_t)L_1) == ((int32_t)((int32_t)47)))? 1 : 0);
  6127. bool L_2 = V_3;
  6128. if (!L_2)
  6129. {
  6130. goto IL_001a;
  6131. }
  6132. }
  6133. {
  6134. String_t* L_3 = ___redirectUri1;
  6135. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_4 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
  6136. Uri__ctor_mA02DB222F4F35380DE2700D84F58EB42497FDDE4(L_4, L_3, 2, /*hidden argument*/NULL);
  6137. V_0 = L_4;
  6138. goto IL_0022;
  6139. }
  6140. IL_001a:
  6141. {
  6142. String_t* L_5 = ___redirectUri1;
  6143. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_6 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
  6144. Uri__ctor_mA02DB222F4F35380DE2700D84F58EB42497FDDE4(L_6, L_5, 0, /*hidden argument*/NULL);
  6145. V_0 = L_6;
  6146. }
  6147. IL_0022:
  6148. {
  6149. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_7 = V_0;
  6150. NullCheck(L_7);
  6151. bool L_8 = Uri_get_IsAbsoluteUri_m8C189085F1C675DBC3148AA70C38074EC075D722(L_7, /*hidden argument*/NULL);
  6152. V_4 = L_8;
  6153. bool L_9 = V_4;
  6154. if (!L_9)
  6155. {
  6156. goto IL_0038;
  6157. }
  6158. }
  6159. {
  6160. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_10 = V_0;
  6161. NullCheck(L_10);
  6162. String_t* L_11 = Uri_get_AbsoluteUri_m4326730E572E7E3874021E802813EB6F49F7F99E(L_10, /*hidden argument*/NULL);
  6163. V_5 = L_11;
  6164. goto IL_0052;
  6165. }
  6166. IL_0038:
  6167. {
  6168. String_t* L_12 = ___baseUri0;
  6169. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_13 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
  6170. Uri__ctor_mA02DB222F4F35380DE2700D84F58EB42497FDDE4(L_13, L_12, 1, /*hidden argument*/NULL);
  6171. V_1 = L_13;
  6172. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_14 = V_1;
  6173. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_15 = V_0;
  6174. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_16 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
  6175. Uri__ctor_m42192656437FBEF1EEA8724D3EF2BB67DA0ED6BF(L_16, L_14, L_15, /*hidden argument*/NULL);
  6176. V_2 = L_16;
  6177. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_17 = V_2;
  6178. NullCheck(L_17);
  6179. String_t* L_18 = Uri_get_AbsoluteUri_m4326730E572E7E3874021E802813EB6F49F7F99E(L_17, /*hidden argument*/NULL);
  6180. V_5 = L_18;
  6181. goto IL_0052;
  6182. }
  6183. IL_0052:
  6184. {
  6185. String_t* L_19 = V_5;
  6186. return L_19;
  6187. }
  6188. }
  6189. // System.String UnityEngineInternal.WebRequestUtils::MakeInitialUrl(System.String,System.String)
  6190. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeInitialUrl_m446CCE4EFB276BE27A9380D55B9E704D01107B83 (String_t* ___targetUrl0, String_t* ___localUrl1, const RuntimeMethod* method)
  6191. {
  6192. static bool s_Il2CppMethodInitialized;
  6193. if (!s_Il2CppMethodInitialized)
  6194. {
  6195. il2cpp_codegen_initialize_method (WebRequestUtils_MakeInitialUrl_m446CCE4EFB276BE27A9380D55B9E704D01107B83_MetadataUsageId);
  6196. s_Il2CppMethodInitialized = true;
  6197. }
  6198. bool V_0 = false;
  6199. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * V_1 = NULL;
  6200. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * V_2 = NULL;
  6201. FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * V_3 = NULL;
  6202. bool V_4 = false;
  6203. String_t* V_5 = NULL;
  6204. bool V_6 = false;
  6205. bool V_7 = false;
  6206. bool V_8 = false;
  6207. FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * V_9 = NULL;
  6208. bool V_10 = false;
  6209. Exception_t * __last_unhandled_exception = 0;
  6210. NO_UNUSED_WARNING (__last_unhandled_exception);
  6211. Exception_t * __exception_local = 0;
  6212. NO_UNUSED_WARNING (__exception_local);
  6213. void* __leave_targets_storage = alloca(sizeof(int32_t) * 3);
  6214. il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
  6215. NO_UNUSED_WARNING (__leave_targets);
  6216. int32_t G_B7_0 = 0;
  6217. int32_t G_B13_0 = 0;
  6218. {
  6219. String_t* L_0 = ___targetUrl0;
  6220. bool L_1 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_0, /*hidden argument*/NULL);
  6221. V_4 = L_1;
  6222. bool L_2 = V_4;
  6223. if (!L_2)
  6224. {
  6225. goto IL_0019;
  6226. }
  6227. }
  6228. {
  6229. V_5 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  6230. goto IL_00d6;
  6231. }
  6232. IL_0019:
  6233. {
  6234. V_0 = (bool)0;
  6235. String_t* L_3 = ___localUrl1;
  6236. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_4 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
  6237. Uri__ctor_mBA69907A1D799CD12ED44B611985B25FE4C626A2(L_4, L_3, /*hidden argument*/NULL);
  6238. V_1 = L_4;
  6239. V_2 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)NULL;
  6240. String_t* L_5 = ___targetUrl0;
  6241. NullCheck(L_5);
  6242. Il2CppChar L_6 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_5, 0, /*hidden argument*/NULL);
  6243. V_6 = (bool)((((int32_t)L_6) == ((int32_t)((int32_t)47)))? 1 : 0);
  6244. bool L_7 = V_6;
  6245. if (!L_7)
  6246. {
  6247. goto IL_0041;
  6248. }
  6249. }
  6250. {
  6251. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_8 = V_1;
  6252. String_t* L_9 = ___targetUrl0;
  6253. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_10 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
  6254. Uri__ctor_m41A759BF295FB902084DD289849793E01A65A14E(L_10, L_8, L_9, /*hidden argument*/NULL);
  6255. V_2 = L_10;
  6256. V_0 = (bool)1;
  6257. }
  6258. IL_0041:
  6259. {
  6260. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_11 = V_2;
  6261. IL2CPP_RUNTIME_CLASS_INIT(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
  6262. bool L_12 = Uri_op_Equality_mFED3D4AFAB090B76D2088C485507F8F702ADA18F(L_11, (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)NULL, /*hidden argument*/NULL);
  6263. if (!L_12)
  6264. {
  6265. goto IL_0057;
  6266. }
  6267. }
  6268. {
  6269. IL2CPP_RUNTIME_CLASS_INIT(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_il2cpp_TypeInfo_var);
  6270. Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * L_13 = ((WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_il2cpp_TypeInfo_var))->get_domainRegex_0();
  6271. String_t* L_14 = ___targetUrl0;
  6272. NullCheck(L_13);
  6273. bool L_15 = Regex_IsMatch_m79684C4D2CE6C5495BCCE9A32AC029E1E5950B7C(L_13, L_14, /*hidden argument*/NULL);
  6274. G_B7_0 = ((int32_t)(L_15));
  6275. goto IL_0058;
  6276. }
  6277. IL_0057:
  6278. {
  6279. G_B7_0 = 0;
  6280. }
  6281. IL_0058:
  6282. {
  6283. V_7 = (bool)G_B7_0;
  6284. bool L_16 = V_7;
  6285. if (!L_16)
  6286. {
  6287. goto IL_0075;
  6288. }
  6289. }
  6290. {
  6291. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_17 = V_1;
  6292. NullCheck(L_17);
  6293. String_t* L_18 = Uri_get_Scheme_m14A8F0018D8AACADBEF39600A59944F33EE39187(L_17, /*hidden argument*/NULL);
  6294. String_t* L_19 = ___targetUrl0;
  6295. String_t* L_20 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_18, _stringLiteralEF81042E1E86ACB765718EA37393A1292452BBCC, L_19, /*hidden argument*/NULL);
  6296. ___targetUrl0 = L_20;
  6297. V_0 = (bool)1;
  6298. }
  6299. IL_0075:
  6300. {
  6301. V_3 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)NULL;
  6302. }
  6303. IL_0077:
  6304. try
  6305. { // begin try (depth: 1)
  6306. {
  6307. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_21 = V_2;
  6308. IL2CPP_RUNTIME_CLASS_INIT(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
  6309. bool L_22 = Uri_op_Equality_mFED3D4AFAB090B76D2088C485507F8F702ADA18F(L_21, (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)NULL, /*hidden argument*/NULL);
  6310. if (!L_22)
  6311. {
  6312. goto IL_0091;
  6313. }
  6314. }
  6315. IL_0081:
  6316. {
  6317. String_t* L_23 = ___targetUrl0;
  6318. NullCheck(L_23);
  6319. Il2CppChar L_24 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_23, 0, /*hidden argument*/NULL);
  6320. G_B13_0 = ((((int32_t)((((int32_t)L_24) == ((int32_t)((int32_t)46)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  6321. goto IL_0092;
  6322. }
  6323. IL_0091:
  6324. {
  6325. G_B13_0 = 0;
  6326. }
  6327. IL_0092:
  6328. {
  6329. V_8 = (bool)G_B13_0;
  6330. bool L_25 = V_8;
  6331. if (!L_25)
  6332. {
  6333. goto IL_009f;
  6334. }
  6335. }
  6336. IL_0098:
  6337. {
  6338. String_t* L_26 = ___targetUrl0;
  6339. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_27 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
  6340. Uri__ctor_mBA69907A1D799CD12ED44B611985B25FE4C626A2(L_27, L_26, /*hidden argument*/NULL);
  6341. V_2 = L_27;
  6342. }
  6343. IL_009f:
  6344. {
  6345. goto IL_00ab;
  6346. }
  6347. } // end try (depth: 1)
  6348. catch(Il2CppExceptionWrapper& e)
  6349. {
  6350. __exception_local = (Exception_t *)e.ex;
  6351. if(il2cpp_codegen_class_is_assignable_from (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
  6352. goto CATCH_00a2;
  6353. throw e;
  6354. }
  6355. CATCH_00a2:
  6356. { // begin catch(System.FormatException)
  6357. V_9 = ((FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)__exception_local);
  6358. FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_28 = V_9;
  6359. V_3 = L_28;
  6360. goto IL_00ab;
  6361. } // end catch (depth: 1)
  6362. IL_00ab:
  6363. {
  6364. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_29 = V_2;
  6365. IL2CPP_RUNTIME_CLASS_INIT(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
  6366. bool L_30 = Uri_op_Equality_mFED3D4AFAB090B76D2088C485507F8F702ADA18F(L_29, (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)NULL, /*hidden argument*/NULL);
  6367. V_10 = L_30;
  6368. bool L_31 = V_10;
  6369. if (!L_31)
  6370. {
  6371. goto IL_00ca;
  6372. }
  6373. }
  6374. IL_00b8:
  6375. try
  6376. { // begin try (depth: 1)
  6377. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_32 = V_1;
  6378. String_t* L_33 = ___targetUrl0;
  6379. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_34 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
  6380. Uri__ctor_m41A759BF295FB902084DD289849793E01A65A14E(L_34, L_32, L_33, /*hidden argument*/NULL);
  6381. V_2 = L_34;
  6382. V_0 = (bool)1;
  6383. goto IL_00ca;
  6384. } // end try (depth: 1)
  6385. catch(Il2CppExceptionWrapper& e)
  6386. {
  6387. __exception_local = (Exception_t *)e.ex;
  6388. if(il2cpp_codegen_class_is_assignable_from (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
  6389. goto CATCH_00c6;
  6390. throw e;
  6391. }
  6392. CATCH_00c6:
  6393. { // begin catch(System.FormatException)
  6394. FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_35 = V_3;
  6395. IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, WebRequestUtils_MakeInitialUrl_m446CCE4EFB276BE27A9380D55B9E704D01107B83_RuntimeMethod_var);
  6396. } // end catch (depth: 1)
  6397. IL_00ca:
  6398. {
  6399. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_36 = V_2;
  6400. String_t* L_37 = ___targetUrl0;
  6401. bool L_38 = V_0;
  6402. IL2CPP_RUNTIME_CLASS_INIT(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_il2cpp_TypeInfo_var);
  6403. String_t* L_39 = WebRequestUtils_MakeUriString_m5693EA04230335B9611278EFC189BD58339D01E4(L_36, L_37, L_38, /*hidden argument*/NULL);
  6404. V_5 = L_39;
  6405. goto IL_00d6;
  6406. }
  6407. IL_00d6:
  6408. {
  6409. String_t* L_40 = V_5;
  6410. return L_40;
  6411. }
  6412. }
  6413. // System.String UnityEngineInternal.WebRequestUtils::MakeUriString(System.Uri,System.String,System.Boolean)
  6414. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeUriString_m5693EA04230335B9611278EFC189BD58339D01E4 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___targetUri0, String_t* ___targetUrl1, bool ___prependProtocol2, const RuntimeMethod* method)
  6415. {
  6416. static bool s_Il2CppMethodInitialized;
  6417. if (!s_Il2CppMethodInitialized)
  6418. {
  6419. il2cpp_codegen_initialize_method (WebRequestUtils_MakeUriString_m5693EA04230335B9611278EFC189BD58339D01E4_MetadataUsageId);
  6420. s_Il2CppMethodInitialized = true;
  6421. }
  6422. String_t* V_0 = NULL;
  6423. bool V_1 = false;
  6424. String_t* V_2 = NULL;
  6425. bool V_3 = false;
  6426. String_t* V_4 = NULL;
  6427. bool V_5 = false;
  6428. bool V_6 = false;
  6429. bool V_7 = false;
  6430. StringBuilder_t * V_8 = NULL;
  6431. bool V_9 = false;
  6432. String_t* V_10 = NULL;
  6433. bool V_11 = false;
  6434. bool V_12 = false;
  6435. bool V_13 = false;
  6436. int32_t G_B8_0 = 0;
  6437. int32_t G_B15_0 = 0;
  6438. int32_t G_B23_0 = 0;
  6439. {
  6440. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_0 = ___targetUri0;
  6441. NullCheck(L_0);
  6442. bool L_1 = Uri_get_IsFile_m06AB5A15E2A34BBC5177C6E902C5C9D7E766A213(L_0, /*hidden argument*/NULL);
  6443. V_1 = L_1;
  6444. bool L_2 = V_1;
  6445. if (!L_2)
  6446. {
  6447. goto IL_0083;
  6448. }
  6449. }
  6450. {
  6451. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_3 = ___targetUri0;
  6452. NullCheck(L_3);
  6453. bool L_4 = Uri_get_IsLoopback_mCD7E1228C8296730CBD31C713B0A81B660D99BC4(L_3, /*hidden argument*/NULL);
  6454. V_3 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
  6455. bool L_5 = V_3;
  6456. if (!L_5)
  6457. {
  6458. goto IL_0026;
  6459. }
  6460. }
  6461. {
  6462. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_6 = ___targetUri0;
  6463. NullCheck(L_6);
  6464. String_t* L_7 = Uri_get_OriginalString_m56099E46276F0A52524347F1F46A2F88E948504F(L_6, /*hidden argument*/NULL);
  6465. V_4 = L_7;
  6466. goto IL_01c1;
  6467. }
  6468. IL_0026:
  6469. {
  6470. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_8 = ___targetUri0;
  6471. NullCheck(L_8);
  6472. String_t* L_9 = Uri_get_AbsolutePath_mA9A825E2BBD0A43AD76EB9A9765E29E45FE32F31(L_8, /*hidden argument*/NULL);
  6473. V_2 = L_9;
  6474. String_t* L_10 = V_2;
  6475. NullCheck(L_10);
  6476. bool L_11 = String_Contains_m4488034AF8CB3EEA9A205EB8A1F25D438FF8704B(L_10, _stringLiteral4345CB1FA27885A8FBFE7C0C830A592CC76A552B, /*hidden argument*/NULL);
  6477. V_5 = L_11;
  6478. bool L_12 = V_5;
  6479. if (!L_12)
  6480. {
  6481. goto IL_0045;
  6482. }
  6483. }
  6484. {
  6485. String_t* L_13 = V_2;
  6486. IL2CPP_RUNTIME_CLASS_INIT(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_il2cpp_TypeInfo_var);
  6487. String_t* L_14 = WebRequestUtils_URLDecode_m3F75FA29F50FB340B93815988517E9208C52EE62(L_13, /*hidden argument*/NULL);
  6488. V_2 = L_14;
  6489. }
  6490. IL_0045:
  6491. {
  6492. String_t* L_15 = V_2;
  6493. NullCheck(L_15);
  6494. int32_t L_16 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_15, /*hidden argument*/NULL);
  6495. if ((((int32_t)L_16) <= ((int32_t)0)))
  6496. {
  6497. goto IL_005e;
  6498. }
  6499. }
  6500. {
  6501. String_t* L_17 = V_2;
  6502. NullCheck(L_17);
  6503. Il2CppChar L_18 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_17, 0, /*hidden argument*/NULL);
  6504. G_B8_0 = ((((int32_t)((((int32_t)L_18) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  6505. goto IL_005f;
  6506. }
  6507. IL_005e:
  6508. {
  6509. G_B8_0 = 0;
  6510. }
  6511. IL_005f:
  6512. {
  6513. V_6 = (bool)G_B8_0;
  6514. bool L_19 = V_6;
  6515. if (!L_19)
  6516. {
  6517. goto IL_0071;
  6518. }
  6519. }
  6520. {
  6521. String_t* L_20 = V_2;
  6522. String_t* L_21 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral42099B4AF021E53FD8FD4E056C2568D7C2E3FFA8, L_20, /*hidden argument*/NULL);
  6523. V_2 = L_21;
  6524. }
  6525. IL_0071:
  6526. {
  6527. String_t* L_22 = V_2;
  6528. String_t* L_23 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralA91E4897CA9F429677AFC57ED00D90DE8D3C7001, L_22, /*hidden argument*/NULL);
  6529. V_4 = L_23;
  6530. goto IL_01c1;
  6531. }
  6532. IL_0083:
  6533. {
  6534. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_24 = ___targetUri0;
  6535. NullCheck(L_24);
  6536. String_t* L_25 = Uri_get_Scheme_m14A8F0018D8AACADBEF39600A59944F33EE39187(L_24, /*hidden argument*/NULL);
  6537. V_0 = L_25;
  6538. bool L_26 = ___prependProtocol2;
  6539. if (L_26)
  6540. {
  6541. goto IL_00b4;
  6542. }
  6543. }
  6544. {
  6545. String_t* L_27 = ___targetUrl1;
  6546. NullCheck(L_27);
  6547. int32_t L_28 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_27, /*hidden argument*/NULL);
  6548. String_t* L_29 = V_0;
  6549. NullCheck(L_29);
  6550. int32_t L_30 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_29, /*hidden argument*/NULL);
  6551. if ((((int32_t)L_28) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)2)))))
  6552. {
  6553. goto IL_00b4;
  6554. }
  6555. }
  6556. {
  6557. String_t* L_31 = ___targetUrl1;
  6558. String_t* L_32 = V_0;
  6559. NullCheck(L_32);
  6560. int32_t L_33 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_32, /*hidden argument*/NULL);
  6561. NullCheck(L_31);
  6562. Il2CppChar L_34 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_31, ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)), /*hidden argument*/NULL);
  6563. G_B15_0 = ((((int32_t)((((int32_t)L_34) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  6564. goto IL_00b5;
  6565. }
  6566. IL_00b4:
  6567. {
  6568. G_B15_0 = 0;
  6569. }
  6570. IL_00b5:
  6571. {
  6572. V_7 = (bool)G_B15_0;
  6573. bool L_35 = V_7;
  6574. if (!L_35)
  6575. {
  6576. goto IL_019c;
  6577. }
  6578. }
  6579. {
  6580. String_t* L_36 = V_0;
  6581. String_t* L_37 = ___targetUrl1;
  6582. NullCheck(L_37);
  6583. int32_t L_38 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_37, /*hidden argument*/NULL);
  6584. StringBuilder_t * L_39 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
  6585. StringBuilder__ctor_m786CAFE74FE0D479747A0D474BE6EBCFDA5743EA(L_39, L_36, L_38, /*hidden argument*/NULL);
  6586. V_8 = L_39;
  6587. StringBuilder_t * L_40 = V_8;
  6588. NullCheck(L_40);
  6589. StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_40, ((int32_t)58), /*hidden argument*/NULL);
  6590. String_t* L_41 = V_0;
  6591. bool L_42 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_41, _stringLiteralF92E777F4341930BAD9B2422283C4680D00DBC06, /*hidden argument*/NULL);
  6592. V_9 = L_42;
  6593. bool L_43 = V_9;
  6594. if (!L_43)
  6595. {
  6596. goto IL_0175;
  6597. }
  6598. }
  6599. {
  6600. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_44 = ___targetUri0;
  6601. NullCheck(L_44);
  6602. String_t* L_45 = Uri_get_AbsolutePath_mA9A825E2BBD0A43AD76EB9A9765E29E45FE32F31(L_44, /*hidden argument*/NULL);
  6603. V_10 = L_45;
  6604. String_t* L_46 = V_10;
  6605. NullCheck(L_46);
  6606. bool L_47 = String_Contains_m4488034AF8CB3EEA9A205EB8A1F25D438FF8704B(L_46, _stringLiteral4345CB1FA27885A8FBFE7C0C830A592CC76A552B, /*hidden argument*/NULL);
  6607. V_11 = L_47;
  6608. bool L_48 = V_11;
  6609. if (!L_48)
  6610. {
  6611. goto IL_010f;
  6612. }
  6613. }
  6614. {
  6615. String_t* L_49 = V_10;
  6616. IL2CPP_RUNTIME_CLASS_INIT(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_il2cpp_TypeInfo_var);
  6617. String_t* L_50 = WebRequestUtils_URLDecode_m3F75FA29F50FB340B93815988517E9208C52EE62(L_49, /*hidden argument*/NULL);
  6618. V_10 = L_50;
  6619. }
  6620. IL_010f:
  6621. {
  6622. String_t* L_51 = V_10;
  6623. NullCheck(L_51);
  6624. bool L_52 = String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1(L_51, _stringLiteral947518D877FB275850A375D795BE6A44C27AB526, /*hidden argument*/NULL);
  6625. if (!L_52)
  6626. {
  6627. goto IL_0138;
  6628. }
  6629. }
  6630. {
  6631. String_t* L_53 = V_10;
  6632. NullCheck(L_53);
  6633. int32_t L_54 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_53, /*hidden argument*/NULL);
  6634. if ((((int32_t)L_54) <= ((int32_t)6)))
  6635. {
  6636. goto IL_0138;
  6637. }
  6638. }
  6639. {
  6640. String_t* L_55 = V_10;
  6641. NullCheck(L_55);
  6642. Il2CppChar L_56 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_55, 6, /*hidden argument*/NULL);
  6643. G_B23_0 = ((((int32_t)((((int32_t)L_56) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  6644. goto IL_0139;
  6645. }
  6646. IL_0138:
  6647. {
  6648. G_B23_0 = 0;
  6649. }
  6650. IL_0139:
  6651. {
  6652. V_12 = (bool)G_B23_0;
  6653. bool L_57 = V_12;
  6654. if (!L_57)
  6655. {
  6656. goto IL_0160;
  6657. }
  6658. }
  6659. {
  6660. StringBuilder_t * L_58 = V_8;
  6661. NullCheck(L_58);
  6662. StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_58, _stringLiteralA91E4897CA9F429677AFC57ED00D90DE8D3C7001, /*hidden argument*/NULL);
  6663. StringBuilder_t * L_59 = V_8;
  6664. String_t* L_60 = V_10;
  6665. NullCheck(L_60);
  6666. String_t* L_61 = String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE(L_60, 5, /*hidden argument*/NULL);
  6667. NullCheck(L_59);
  6668. StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_59, L_61, /*hidden argument*/NULL);
  6669. goto IL_016a;
  6670. }
  6671. IL_0160:
  6672. {
  6673. StringBuilder_t * L_62 = V_8;
  6674. String_t* L_63 = V_10;
  6675. NullCheck(L_62);
  6676. StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_62, L_63, /*hidden argument*/NULL);
  6677. }
  6678. IL_016a:
  6679. {
  6680. StringBuilder_t * L_64 = V_8;
  6681. NullCheck(L_64);
  6682. String_t* L_65 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_64);
  6683. V_4 = L_65;
  6684. goto IL_01c1;
  6685. }
  6686. IL_0175:
  6687. {
  6688. StringBuilder_t * L_66 = V_8;
  6689. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_67 = ___targetUri0;
  6690. NullCheck(L_67);
  6691. String_t* L_68 = Uri_get_PathAndQuery_mF079BA04B7A397B2729E5B5DEE72B3654A44E384(L_67, /*hidden argument*/NULL);
  6692. NullCheck(L_66);
  6693. StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_66, L_68, /*hidden argument*/NULL);
  6694. StringBuilder_t * L_69 = V_8;
  6695. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_70 = ___targetUri0;
  6696. NullCheck(L_70);
  6697. String_t* L_71 = Uri_get_Fragment_m111666DD668AC59B9F3C3D3CEEEC7F70F6904D41(L_70, /*hidden argument*/NULL);
  6698. NullCheck(L_69);
  6699. StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_69, L_71, /*hidden argument*/NULL);
  6700. StringBuilder_t * L_72 = V_8;
  6701. NullCheck(L_72);
  6702. String_t* L_73 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_72);
  6703. V_4 = L_73;
  6704. goto IL_01c1;
  6705. }
  6706. IL_019c:
  6707. {
  6708. String_t* L_74 = ___targetUrl1;
  6709. NullCheck(L_74);
  6710. bool L_75 = String_Contains_m4488034AF8CB3EEA9A205EB8A1F25D438FF8704B(L_74, _stringLiteral4345CB1FA27885A8FBFE7C0C830A592CC76A552B, /*hidden argument*/NULL);
  6711. V_13 = L_75;
  6712. bool L_76 = V_13;
  6713. if (!L_76)
  6714. {
  6715. goto IL_01b7;
  6716. }
  6717. }
  6718. {
  6719. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_77 = ___targetUri0;
  6720. NullCheck(L_77);
  6721. String_t* L_78 = Uri_get_OriginalString_m56099E46276F0A52524347F1F46A2F88E948504F(L_77, /*hidden argument*/NULL);
  6722. V_4 = L_78;
  6723. goto IL_01c1;
  6724. }
  6725. IL_01b7:
  6726. {
  6727. Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_79 = ___targetUri0;
  6728. NullCheck(L_79);
  6729. String_t* L_80 = Uri_get_AbsoluteUri_m4326730E572E7E3874021E802813EB6F49F7F99E(L_79, /*hidden argument*/NULL);
  6730. V_4 = L_80;
  6731. goto IL_01c1;
  6732. }
  6733. IL_01c1:
  6734. {
  6735. String_t* L_81 = V_4;
  6736. return L_81;
  6737. }
  6738. }
  6739. // System.String UnityEngineInternal.WebRequestUtils::URLDecode(System.String)
  6740. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_URLDecode_m3F75FA29F50FB340B93815988517E9208C52EE62 (String_t* ___encoded0, const RuntimeMethod* method)
  6741. {
  6742. static bool s_Il2CppMethodInitialized;
  6743. if (!s_Il2CppMethodInitialized)
  6744. {
  6745. il2cpp_codegen_initialize_method (WebRequestUtils_URLDecode_m3F75FA29F50FB340B93815988517E9208C52EE62_MetadataUsageId);
  6746. s_Il2CppMethodInitialized = true;
  6747. }
  6748. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
  6749. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
  6750. String_t* V_2 = NULL;
  6751. {
  6752. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL);
  6753. String_t* L_1 = ___encoded0;
  6754. NullCheck(L_0);
  6755. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(16 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, L_1);
  6756. V_0 = L_2;
  6757. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_0;
  6758. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var);
  6759. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = WWWTranscoder_URLDecode_m591A567154B1B8737ECBFE065AF4FCA59217F5D8(L_3, /*hidden argument*/NULL);
  6760. V_1 = L_4;
  6761. Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_5 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL);
  6762. ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = V_1;
  6763. NullCheck(L_5);
  6764. String_t* L_7 = VirtFuncInvoker1< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(32 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_5, L_6);
  6765. V_2 = L_7;
  6766. goto IL_0022;
  6767. }
  6768. IL_0022:
  6769. {
  6770. String_t* L_8 = V_2;
  6771. return L_8;
  6772. }
  6773. }
  6774. // System.Void UnityEngineInternal.WebRequestUtils::.cctor()
  6775. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequestUtils__cctor_m31EB3E45EC49AB6B33C7A10F79F1CD4FF2BE715A (const RuntimeMethod* method)
  6776. {
  6777. static bool s_Il2CppMethodInitialized;
  6778. if (!s_Il2CppMethodInitialized)
  6779. {
  6780. il2cpp_codegen_initialize_method (WebRequestUtils__cctor_m31EB3E45EC49AB6B33C7A10F79F1CD4FF2BE715A_MetadataUsageId);
  6781. s_Il2CppMethodInitialized = true;
  6782. }
  6783. {
  6784. Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * L_0 = (Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF *)il2cpp_codegen_object_new(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_il2cpp_TypeInfo_var);
  6785. Regex__ctor_m2769A5BA7B7A835514F6C0E4D30FAD467C6B1B0C(L_0, _stringLiteral56F03F5F25FB2048BF4AB5FBBF7B5E3D39A3ECEB, /*hidden argument*/NULL);
  6786. ((WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_il2cpp_TypeInfo_var))->set_domainRegex_0(L_0);
  6787. return;
  6788. }
  6789. }
  6790. #ifdef __clang__
  6791. #pragma clang diagnostic pop
  6792. #endif
  6793. IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_mA888301C47844E383DEC96D88CAD6CB8D9E7B9FA_inline (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___value0, const RuntimeMethod* method)
  6794. {
  6795. {
  6796. bool L_0 = ___value0;
  6797. __this->set_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_12(L_0);
  6798. return;
  6799. }
  6800. }
  6801. IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mC176753B8AFBB40B69FAD7F1E2B2711CA5D6AA71_inline (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___value0, const RuntimeMethod* method)
  6802. {
  6803. {
  6804. bool L_0 = ___value0;
  6805. __this->set_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_13(L_0);
  6806. return;
  6807. }
  6808. }
  6809. IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m8609E1213309D1796E00860ECA9228F6454114AE_inline (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___value0, const RuntimeMethod* method)
  6810. {
  6811. {
  6812. bool L_0 = ___value0;
  6813. __this->set_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_11(L_0);
  6814. return;
  6815. }
  6816. }
  6817. IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_m3BE68E08A94D92D7076F49CB5196019E6E5E17AA_inline (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  6818. {
  6819. {
  6820. bool L_0 = __this->get_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_12();
  6821. return L_0;
  6822. }
  6823. }
  6824. IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_mE4A39A3A06DB4450DA49972254B4498A5F8F69DE_inline (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  6825. {
  6826. {
  6827. bool L_0 = __this->get_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_13();
  6828. return L_0;
  6829. }
  6830. }
  6831. IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m98EFCAC30D637479DC0DC45CFD8A15D402328F99_inline (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method)
  6832. {
  6833. {
  6834. bool L_0 = __this->get_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_11();
  6835. return L_0;
  6836. }
  6837. }
  6838. IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_m07869D44180E2A93042A18260FA5A2BB934AC42F_inline (UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * __this, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * ___value0, const RuntimeMethod* method)
  6839. {
  6840. {
  6841. UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_0 = ___value0;
  6842. __this->set_U3CwebRequestU3Ek__BackingField_2(L_0);
  6843. return;
  6844. }
  6845. }
  6846. IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method)
  6847. {
  6848. {
  6849. int32_t L_0 = __this->get_m_stringLength_0();
  6850. return L_0;
  6851. }
  6852. }