Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. template <typename R>
  9. struct VirtualFuncInvoker0
  10. {
  11. typedef R (*Func)(void*, const RuntimeMethod*);
  12. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  13. {
  14. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  15. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  16. }
  17. };
  18. template <typename R>
  19. struct InterfaceFuncInvoker0
  20. {
  21. typedef R (*Func)(void*, const RuntimeMethod*);
  22. static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  23. {
  24. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  25. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  26. }
  27. };
  28. // System.Action`1<AppleAuth.Enums.CredentialState>
  29. struct Action_1_t7CF092A129C468D25C4E6E5AC20FE3453FC7EC66;
  30. // System.Action`1<AppleAuth.Interfaces.IAppleError>
  31. struct Action_1_tC3903E0A1B057943FABF1B75BE7AAD0683CA51CA;
  32. // System.Action`1<AppleAuth.Interfaces.ICredential>
  33. struct Action_1_tB908D6FD75107728FE1DCDA76696B95672204A80;
  34. // System.Action`1<System.String>
  35. struct Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A;
  36. // System.Collections.Generic.List`1<System.Object>
  37. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
  38. // System.Collections.Generic.List`1<System.String>
  39. struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
  40. // System.Byte[]
  41. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  42. // System.Delegate[]
  43. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  44. // System.IntPtr[]
  45. struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
  46. // System.Object[]
  47. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  48. // System.Diagnostics.StackTrace[]
  49. struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
  50. // System.String[]
  51. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
  52. // System.Type[]
  53. struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
  54. // AppleAuth.AppleAuthManager
  55. struct AppleAuthManager_t9A6ECFB3E5DA602DB80B9AA03575872FF3B853E4;
  56. // AppleAuth.Native.AppleError
  57. struct AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA;
  58. // AppleAuth.Native.AppleIDCredential
  59. struct AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75;
  60. // System.Reflection.Binder
  61. struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
  62. // AppleAuth.Native.CredentialStateResponse
  63. struct CredentialStateResponse_t168DFACCC4FBA9919D9EBF9314CFC5652199EB27;
  64. // System.DelegateData
  65. struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
  66. // System.Exception
  67. struct Exception_t;
  68. // AppleAuth.Native.FullPersonName
  69. struct FullPersonName_t0454AAAB2D27D3182F2AB37B3F6B49BD94B6E9E8;
  70. // AppleAuth.Interfaces.IAppleError
  71. struct IAppleError_tFE643037BCCCF4362368CEDC73AC94B90E1B5AC0;
  72. // AppleAuth.Interfaces.IAppleIDCredential
  73. struct IAppleIDCredential_t29B66F5F775F5233192B1FF591BE6471AE7A5E9E;
  74. // AppleAuth.Interfaces.ICredential
  75. struct ICredential_t3F553A85F7FED597AA128C5E4A223ABA6735DD52;
  76. // AppleAuth.Interfaces.ICredentialStateResponse
  77. struct ICredentialStateResponse_t1898A0EE06898B4687A7B63A71B0982905D5E151;
  78. // System.Collections.IDictionary
  79. struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
  80. // AppleAuth.Interfaces.ILoginWithAppleIdResponse
  81. struct ILoginWithAppleIdResponse_t5D26EEEDB8BED224C65516DD2A29DD041EFFA31E;
  82. // AppleAuth.Interfaces.IPasswordCredential
  83. struct IPasswordCredential_t85F86A7DEBB8A7CE36CF75B443684DCF152E5012;
  84. // AppleAuth.Interfaces.IPayloadDeserializer
  85. struct IPayloadDeserializer_t0C8DAC2DA8B0E14F11F345A24D9390CD6CFD83FF;
  86. // AppleAuth.Interfaces.IPersonName
  87. struct IPersonName_tD95EE7AB5A8B25C9DC7D160FDAECDDA149AB5591;
  88. // AppleAuth.Native.LoginWithAppleIdResponse
  89. struct LoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F;
  90. // System.Reflection.MemberFilter
  91. struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
  92. // System.Reflection.MethodInfo
  93. struct MethodInfo_t;
  94. // AppleAuth.Native.PasswordCredential
  95. struct PasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1;
  96. // AppleAuth.Native.PayloadDeserializer
  97. struct PayloadDeserializer_tB856F635041B5A76FCF832A0A329EABD65C3BD07;
  98. // AppleAuth.Native.PersonName
  99. struct PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78;
  100. // System.Runtime.Serialization.SafeSerializationManager
  101. struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
  102. // System.String
  103. struct String_t;
  104. // System.Type
  105. struct Type_t;
  106. // System.Void
  107. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  108. IL2CPP_EXTERN_C RuntimeClass* Console_t5EDF9498D011BD48287171978EDBBA6964829C3E_il2cpp_TypeInfo_var;
  109. IL2CPP_EXTERN_C RuntimeClass* Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var;
  110. IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
  111. IL2CPP_EXTERN_C RuntimeClass* Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var;
  112. IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
  113. IL2CPP_EXTERN_C RuntimeClass* IAppleError_tFE643037BCCCF4362368CEDC73AC94B90E1B5AC0_il2cpp_TypeInfo_var;
  114. IL2CPP_EXTERN_C RuntimeClass* IPersonName_tD95EE7AB5A8B25C9DC7D160FDAECDDA149AB5591_il2cpp_TypeInfo_var;
  115. IL2CPP_EXTERN_C RuntimeClass* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var;
  116. IL2CPP_EXTERN_C RuntimeClass* List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var;
  117. IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
  118. IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745;
  119. IL2CPP_EXTERN_C String_t* _stringLiteral4B31B12774EADD6A7DE8A6382F262DAD80E785C9;
  120. IL2CPP_EXTERN_C String_t* _stringLiteral66A865E28B2B5657FCF66691A6F7AC2B94FE50BA;
  121. IL2CPP_EXTERN_C String_t* _stringLiteral93D9B00D6E9CE12A85069965CC351E5DE11CA3AD;
  122. IL2CPP_EXTERN_C String_t* _stringLiteralA95898025CC11DF26437FBBC4B43CA5F697F5DB1;
  123. IL2CPP_EXTERN_C String_t* _stringLiteralAAFEF493C52F96B5A12AC31A8C67F85BBF99BC17;
  124. IL2CPP_EXTERN_C String_t* _stringLiteralCA0DA7AFA13D06380B286383F61CFD3BFBFDEB4B;
  125. IL2CPP_EXTERN_C String_t* _stringLiteralCDD4C83DD410201E5E465766DBA93DED78585395;
  126. IL2CPP_EXTERN_C String_t* _stringLiteralDA3990537E355E81C23A6B8320705118BC1046ED;
  127. IL2CPP_EXTERN_C const RuntimeMethod* AppleAuthManager_GetCredentialState_m7646C8E8F7DFA9A8C77E576C39DFE4059BE5AD02_RuntimeMethod_var;
  128. IL2CPP_EXTERN_C const RuntimeMethod* AppleAuthManager_LoginWithAppleId_m41AA28DCBBCED940184CCD2D353C8B8D7E3EA355_RuntimeMethod_var;
  129. IL2CPP_EXTERN_C const RuntimeMethod* AppleAuthManager_QuickLogin_m6729A39051EC9885AD1668BA28B94B9489D39F08_RuntimeMethod_var;
  130. IL2CPP_EXTERN_C const RuntimeMethod* JsonUtility_FromJson_TisCredentialStateResponse_t168DFACCC4FBA9919D9EBF9314CFC5652199EB27_mFFC31E6199B5FD55E8D74129CF9DF94F71984BCD_RuntimeMethod_var;
  131. IL2CPP_EXTERN_C const RuntimeMethod* JsonUtility_FromJson_TisLoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F_m2A9E23518A15B0370E1D4EED22057138CE4EC82E_RuntimeMethod_var;
  132. IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var;
  133. IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A_RuntimeMethod_var;
  134. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var;
  135. IL2CPP_EXTERN_C const RuntimeMethod* SerializationTools_FixSerializationForArray_TisString_t_m57606979A1ED7546D7B023E5757A3AA080909A67_RuntimeMethod_var;
  136. IL2CPP_EXTERN_C const RuntimeMethod* SerializationTools_FixSerializationForObject_TisAppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA_m573E3F0F3F5A75C7D43F1273173F4662000CDE3E_RuntimeMethod_var;
  137. IL2CPP_EXTERN_C const RuntimeMethod* SerializationTools_FixSerializationForObject_TisAppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75_m7BB1F4ADA60F4A3962B8BAC814E36A1663B85138_RuntimeMethod_var;
  138. IL2CPP_EXTERN_C const RuntimeMethod* SerializationTools_FixSerializationForObject_TisFullPersonName_t0454AAAB2D27D3182F2AB37B3F6B49BD94B6E9E8_mABB550706F6C9991A33950DCD86264475417AF55_RuntimeMethod_var;
  139. IL2CPP_EXTERN_C const RuntimeMethod* SerializationTools_FixSerializationForObject_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1DA694AEF2B22DFB0D3891C37C07E8D71822A932_RuntimeMethod_var;
  140. IL2CPP_EXTERN_C const RuntimeMethod* SerializationTools_FixSerializationForObject_TisPasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1_m4953F1B78CB811CB2E64DC3D05AA28377D751BC8_RuntimeMethod_var;
  141. IL2CPP_EXTERN_C const RuntimeMethod* SerializationTools_FixSerializationForObject_TisPersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78_m46785A42311D7DBCC23278C437B7EA2C9CA5F5CD_RuntimeMethod_var;
  142. IL2CPP_EXTERN_C const RuntimeType* AuthorizationErrorCode_t7DF2ED12266D6A7885C609086E1BFA7E359B4087_0_0_0_var;
  143. struct Delegate_t_marshaled_com;
  144. struct Delegate_t_marshaled_pinvoke;
  145. struct Exception_t_marshaled_com;
  146. struct Exception_t_marshaled_pinvoke;
  147. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  148. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  149. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
  150. IL2CPP_EXTERN_C_BEGIN
  151. IL2CPP_EXTERN_C_END
  152. #ifdef __clang__
  153. #pragma clang diagnostic push
  154. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  155. #pragma clang diagnostic ignored "-Wunused-variable"
  156. #endif
  157. // <Module>
  158. struct U3CModuleU3E_t797990FE5768C8E6C4A6DD8010A5EE4D33B41ECD
  159. {
  160. };
  161. // System.Collections.Generic.List`1<System.Object>
  162. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
  163. {
  164. // T[] System.Collections.Generic.List`1::_items
  165. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
  166. // System.Int32 System.Collections.Generic.List`1::_size
  167. int32_t ____size_2;
  168. // System.Int32 System.Collections.Generic.List`1::_version
  169. int32_t ____version_3;
  170. // System.Object System.Collections.Generic.List`1::_syncRoot
  171. RuntimeObject* ____syncRoot_4;
  172. };
  173. // System.Collections.Generic.List`1<System.String>
  174. struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD : public RuntimeObject
  175. {
  176. // T[] System.Collections.Generic.List`1::_items
  177. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____items_1;
  178. // System.Int32 System.Collections.Generic.List`1::_size
  179. int32_t ____size_2;
  180. // System.Int32 System.Collections.Generic.List`1::_version
  181. int32_t ____version_3;
  182. // System.Object System.Collections.Generic.List`1::_syncRoot
  183. RuntimeObject* ____syncRoot_4;
  184. };
  185. // AppleAuth.AppleAuthManager
  186. struct AppleAuthManager_t9A6ECFB3E5DA602DB80B9AA03575872FF3B853E4 : public RuntimeObject
  187. {
  188. };
  189. // AppleAuth.Native.AppleError
  190. struct AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA : public RuntimeObject
  191. {
  192. // System.Int32 AppleAuth.Native.AppleError::_code
  193. int32_t ____code_0;
  194. // System.String AppleAuth.Native.AppleError::_domain
  195. String_t* ____domain_1;
  196. // System.String AppleAuth.Native.AppleError::_localizedDescription
  197. String_t* ____localizedDescription_2;
  198. // System.String[] AppleAuth.Native.AppleError::_localizedRecoveryOptions
  199. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____localizedRecoveryOptions_3;
  200. // System.String AppleAuth.Native.AppleError::_localizedRecoverySuggestion
  201. String_t* ____localizedRecoverySuggestion_4;
  202. // System.String AppleAuth.Native.AppleError::_localizedFailureReason
  203. String_t* ____localizedFailureReason_5;
  204. };
  205. // AppleAuth.Extensions.AppleErrorExtensions
  206. struct AppleErrorExtensions_t28DD633BFF4B001172FC3B560C6233FF96D2F5B4 : public RuntimeObject
  207. {
  208. };
  209. // AppleAuth.Native.AppleIDCredential
  210. struct AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75 : public RuntimeObject
  211. {
  212. // System.String AppleAuth.Native.AppleIDCredential::_base64IdentityToken
  213. String_t* ____base64IdentityToken_0;
  214. // System.String AppleAuth.Native.AppleIDCredential::_base64AuthorizationCode
  215. String_t* ____base64AuthorizationCode_1;
  216. // System.String AppleAuth.Native.AppleIDCredential::_state
  217. String_t* ____state_2;
  218. // System.String AppleAuth.Native.AppleIDCredential::_user
  219. String_t* ____user_3;
  220. // System.String[] AppleAuth.Native.AppleIDCredential::_authorizedScopes
  221. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____authorizedScopes_4;
  222. // System.Boolean AppleAuth.Native.AppleIDCredential::_hasFullName
  223. bool ____hasFullName_5;
  224. // AppleAuth.Native.FullPersonName AppleAuth.Native.AppleIDCredential::_fullName
  225. FullPersonName_t0454AAAB2D27D3182F2AB37B3F6B49BD94B6E9E8* ____fullName_6;
  226. // System.String AppleAuth.Native.AppleIDCredential::_email
  227. String_t* ____email_7;
  228. // System.Int32 AppleAuth.Native.AppleIDCredential::_realUserStatus
  229. int32_t ____realUserStatus_8;
  230. // System.Byte[] AppleAuth.Native.AppleIDCredential::_identityToken
  231. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____identityToken_9;
  232. // System.Byte[] AppleAuth.Native.AppleIDCredential::_authorizationCode
  233. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____authorizationCode_10;
  234. };
  235. // AppleAuth.Native.CredentialStateResponse
  236. struct CredentialStateResponse_t168DFACCC4FBA9919D9EBF9314CFC5652199EB27 : public RuntimeObject
  237. {
  238. // System.Boolean AppleAuth.Native.CredentialStateResponse::_success
  239. bool ____success_0;
  240. // System.Boolean AppleAuth.Native.CredentialStateResponse::_hasCredentialState
  241. bool ____hasCredentialState_1;
  242. // System.Boolean AppleAuth.Native.CredentialStateResponse::_hasError
  243. bool ____hasError_2;
  244. // System.Int32 AppleAuth.Native.CredentialStateResponse::_credentialState
  245. int32_t ____credentialState_3;
  246. // AppleAuth.Native.AppleError AppleAuth.Native.CredentialStateResponse::_error
  247. AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA* ____error_4;
  248. };
  249. // AppleAuth.Native.LoginWithAppleIdResponse
  250. struct LoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F : public RuntimeObject
  251. {
  252. // System.Boolean AppleAuth.Native.LoginWithAppleIdResponse::_success
  253. bool ____success_0;
  254. // System.Boolean AppleAuth.Native.LoginWithAppleIdResponse::_hasAppleIdCredential
  255. bool ____hasAppleIdCredential_1;
  256. // System.Boolean AppleAuth.Native.LoginWithAppleIdResponse::_hasPasswordCredential
  257. bool ____hasPasswordCredential_2;
  258. // System.Boolean AppleAuth.Native.LoginWithAppleIdResponse::_hasError
  259. bool ____hasError_3;
  260. // AppleAuth.Native.AppleIDCredential AppleAuth.Native.LoginWithAppleIdResponse::_appleIdCredential
  261. AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75* ____appleIdCredential_4;
  262. // AppleAuth.Native.PasswordCredential AppleAuth.Native.LoginWithAppleIdResponse::_passwordCredential
  263. PasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1* ____passwordCredential_5;
  264. // AppleAuth.Native.AppleError AppleAuth.Native.LoginWithAppleIdResponse::_error
  265. AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA* ____error_6;
  266. };
  267. // System.Reflection.MemberInfo
  268. struct MemberInfo_t : public RuntimeObject
  269. {
  270. };
  271. // AppleAuth.Native.PasswordCredential
  272. struct PasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1 : public RuntimeObject
  273. {
  274. // System.String AppleAuth.Native.PasswordCredential::_user
  275. String_t* ____user_0;
  276. // System.String AppleAuth.Native.PasswordCredential::_password
  277. String_t* ____password_1;
  278. };
  279. // AppleAuth.Native.PayloadDeserializer
  280. struct PayloadDeserializer_tB856F635041B5A76FCF832A0A329EABD65C3BD07 : public RuntimeObject
  281. {
  282. };
  283. // AppleAuth.Native.PersonName
  284. struct PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78 : public RuntimeObject
  285. {
  286. // System.String AppleAuth.Native.PersonName::_namePrefix
  287. String_t* ____namePrefix_0;
  288. // System.String AppleAuth.Native.PersonName::_givenName
  289. String_t* ____givenName_1;
  290. // System.String AppleAuth.Native.PersonName::_middleName
  291. String_t* ____middleName_2;
  292. // System.String AppleAuth.Native.PersonName::_familyName
  293. String_t* ____familyName_3;
  294. // System.String AppleAuth.Native.PersonName::_nameSuffix
  295. String_t* ____nameSuffix_4;
  296. // System.String AppleAuth.Native.PersonName::_nickname
  297. String_t* ____nickname_5;
  298. };
  299. // AppleAuth.Extensions.PersonNameExtensions
  300. struct PersonNameExtensions_t3AD482DB712313DD237BEC2E86F11D81C7AAE283 : public RuntimeObject
  301. {
  302. };
  303. // AppleAuth.Native.SerializationTools
  304. struct SerializationTools_tB41428FC4691220F44942E228E64E81CE7FE075D : public RuntimeObject
  305. {
  306. };
  307. // System.String
  308. struct String_t : public RuntimeObject
  309. {
  310. // System.Int32 System.String::_stringLength
  311. int32_t ____stringLength_4;
  312. // System.Char System.String::_firstChar
  313. Il2CppChar ____firstChar_5;
  314. };
  315. // System.ValueType
  316. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  317. {
  318. };
  319. // Native definition for P/Invoke marshalling of System.ValueType
  320. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  321. {
  322. };
  323. // Native definition for COM marshalling of System.ValueType
  324. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  325. {
  326. };
  327. // AppleAuth.AppleAuthLoginArgs
  328. struct AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4
  329. {
  330. // AppleAuth.Enums.LoginOptions AppleAuth.AppleAuthLoginArgs::Options
  331. int32_t ___Options_0;
  332. // System.String AppleAuth.AppleAuthLoginArgs::Nonce
  333. String_t* ___Nonce_1;
  334. // System.String AppleAuth.AppleAuthLoginArgs::State
  335. String_t* ___State_2;
  336. };
  337. // Native definition for P/Invoke marshalling of AppleAuth.AppleAuthLoginArgs
  338. struct AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4_marshaled_pinvoke
  339. {
  340. int32_t ___Options_0;
  341. char* ___Nonce_1;
  342. char* ___State_2;
  343. };
  344. // Native definition for COM marshalling of AppleAuth.AppleAuthLoginArgs
  345. struct AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4_marshaled_com
  346. {
  347. int32_t ___Options_0;
  348. Il2CppChar* ___Nonce_1;
  349. Il2CppChar* ___State_2;
  350. };
  351. // AppleAuth.AppleAuthQuickLoginArgs
  352. struct AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C
  353. {
  354. // System.String AppleAuth.AppleAuthQuickLoginArgs::Nonce
  355. String_t* ___Nonce_0;
  356. // System.String AppleAuth.AppleAuthQuickLoginArgs::State
  357. String_t* ___State_1;
  358. };
  359. // Native definition for P/Invoke marshalling of AppleAuth.AppleAuthQuickLoginArgs
  360. struct AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C_marshaled_pinvoke
  361. {
  362. char* ___Nonce_0;
  363. char* ___State_1;
  364. };
  365. // Native definition for COM marshalling of AppleAuth.AppleAuthQuickLoginArgs
  366. struct AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C_marshaled_com
  367. {
  368. Il2CppChar* ___Nonce_0;
  369. Il2CppChar* ___State_1;
  370. };
  371. // System.Boolean
  372. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  373. {
  374. // System.Boolean System.Boolean::m_value
  375. bool ___m_value_0;
  376. };
  377. // System.Byte
  378. struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
  379. {
  380. // System.Byte System.Byte::m_value
  381. uint8_t ___m_value_0;
  382. };
  383. // AppleAuth.Native.FullPersonName
  384. struct FullPersonName_t0454AAAB2D27D3182F2AB37B3F6B49BD94B6E9E8 : public PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78
  385. {
  386. // System.Boolean AppleAuth.Native.FullPersonName::_hasPhoneticRepresentation
  387. bool ____hasPhoneticRepresentation_6;
  388. // AppleAuth.Native.PersonName AppleAuth.Native.FullPersonName::_phoneticRepresentation
  389. PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78* ____phoneticRepresentation_7;
  390. };
  391. // System.Int32
  392. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  393. {
  394. // System.Int32 System.Int32::m_value
  395. int32_t ___m_value_0;
  396. };
  397. // System.IntPtr
  398. struct IntPtr_t
  399. {
  400. // System.Void* System.IntPtr::m_value
  401. void* ___m_value_0;
  402. };
  403. // System.Void
  404. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  405. {
  406. union
  407. {
  408. struct
  409. {
  410. };
  411. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  412. };
  413. };
  414. // System.Delegate
  415. struct Delegate_t : public RuntimeObject
  416. {
  417. // System.IntPtr System.Delegate::method_ptr
  418. Il2CppMethodPointer ___method_ptr_0;
  419. // System.IntPtr System.Delegate::invoke_impl
  420. intptr_t ___invoke_impl_1;
  421. // System.Object System.Delegate::m_target
  422. RuntimeObject* ___m_target_2;
  423. // System.IntPtr System.Delegate::method
  424. intptr_t ___method_3;
  425. // System.IntPtr System.Delegate::delegate_trampoline
  426. intptr_t ___delegate_trampoline_4;
  427. // System.IntPtr System.Delegate::extra_arg
  428. intptr_t ___extra_arg_5;
  429. // System.IntPtr System.Delegate::method_code
  430. intptr_t ___method_code_6;
  431. // System.IntPtr System.Delegate::interp_method
  432. intptr_t ___interp_method_7;
  433. // System.IntPtr System.Delegate::interp_invoke_impl
  434. intptr_t ___interp_invoke_impl_8;
  435. // System.Reflection.MethodInfo System.Delegate::method_info
  436. MethodInfo_t* ___method_info_9;
  437. // System.Reflection.MethodInfo System.Delegate::original_method_info
  438. MethodInfo_t* ___original_method_info_10;
  439. // System.DelegateData System.Delegate::data
  440. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
  441. // System.Boolean System.Delegate::method_is_virtual
  442. bool ___method_is_virtual_12;
  443. };
  444. // Native definition for P/Invoke marshalling of System.Delegate
  445. struct Delegate_t_marshaled_pinvoke
  446. {
  447. intptr_t ___method_ptr_0;
  448. intptr_t ___invoke_impl_1;
  449. Il2CppIUnknown* ___m_target_2;
  450. intptr_t ___method_3;
  451. intptr_t ___delegate_trampoline_4;
  452. intptr_t ___extra_arg_5;
  453. intptr_t ___method_code_6;
  454. intptr_t ___interp_method_7;
  455. intptr_t ___interp_invoke_impl_8;
  456. MethodInfo_t* ___method_info_9;
  457. MethodInfo_t* ___original_method_info_10;
  458. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
  459. int32_t ___method_is_virtual_12;
  460. };
  461. // Native definition for COM marshalling of System.Delegate
  462. struct Delegate_t_marshaled_com
  463. {
  464. intptr_t ___method_ptr_0;
  465. intptr_t ___invoke_impl_1;
  466. Il2CppIUnknown* ___m_target_2;
  467. intptr_t ___method_3;
  468. intptr_t ___delegate_trampoline_4;
  469. intptr_t ___extra_arg_5;
  470. intptr_t ___method_code_6;
  471. intptr_t ___interp_method_7;
  472. intptr_t ___interp_invoke_impl_8;
  473. MethodInfo_t* ___method_info_9;
  474. MethodInfo_t* ___original_method_info_10;
  475. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
  476. int32_t ___method_is_virtual_12;
  477. };
  478. // System.Exception
  479. struct Exception_t : public RuntimeObject
  480. {
  481. // System.String System.Exception::_className
  482. String_t* ____className_1;
  483. // System.String System.Exception::_message
  484. String_t* ____message_2;
  485. // System.Collections.IDictionary System.Exception::_data
  486. RuntimeObject* ____data_3;
  487. // System.Exception System.Exception::_innerException
  488. Exception_t* ____innerException_4;
  489. // System.String System.Exception::_helpURL
  490. String_t* ____helpURL_5;
  491. // System.Object System.Exception::_stackTrace
  492. RuntimeObject* ____stackTrace_6;
  493. // System.String System.Exception::_stackTraceString
  494. String_t* ____stackTraceString_7;
  495. // System.String System.Exception::_remoteStackTraceString
  496. String_t* ____remoteStackTraceString_8;
  497. // System.Int32 System.Exception::_remoteStackIndex
  498. int32_t ____remoteStackIndex_9;
  499. // System.Object System.Exception::_dynamicMethods
  500. RuntimeObject* ____dynamicMethods_10;
  501. // System.Int32 System.Exception::_HResult
  502. int32_t ____HResult_11;
  503. // System.String System.Exception::_source
  504. String_t* ____source_12;
  505. // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
  506. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
  507. // System.Diagnostics.StackTrace[] System.Exception::captured_traces
  508. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
  509. // System.IntPtr[] System.Exception::native_trace_ips
  510. IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
  511. // System.Int32 System.Exception::caught_in_unmanaged
  512. int32_t ___caught_in_unmanaged_16;
  513. };
  514. // Native definition for P/Invoke marshalling of System.Exception
  515. struct Exception_t_marshaled_pinvoke
  516. {
  517. char* ____className_1;
  518. char* ____message_2;
  519. RuntimeObject* ____data_3;
  520. Exception_t_marshaled_pinvoke* ____innerException_4;
  521. char* ____helpURL_5;
  522. Il2CppIUnknown* ____stackTrace_6;
  523. char* ____stackTraceString_7;
  524. char* ____remoteStackTraceString_8;
  525. int32_t ____remoteStackIndex_9;
  526. Il2CppIUnknown* ____dynamicMethods_10;
  527. int32_t ____HResult_11;
  528. char* ____source_12;
  529. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
  530. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
  531. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  532. int32_t ___caught_in_unmanaged_16;
  533. };
  534. // Native definition for COM marshalling of System.Exception
  535. struct Exception_t_marshaled_com
  536. {
  537. Il2CppChar* ____className_1;
  538. Il2CppChar* ____message_2;
  539. RuntimeObject* ____data_3;
  540. Exception_t_marshaled_com* ____innerException_4;
  541. Il2CppChar* ____helpURL_5;
  542. Il2CppIUnknown* ____stackTrace_6;
  543. Il2CppChar* ____stackTraceString_7;
  544. Il2CppChar* ____remoteStackTraceString_8;
  545. int32_t ____remoteStackIndex_9;
  546. Il2CppIUnknown* ____dynamicMethods_10;
  547. int32_t ____HResult_11;
  548. Il2CppChar* ____source_12;
  549. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
  550. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
  551. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  552. int32_t ___caught_in_unmanaged_16;
  553. };
  554. // System.RuntimeTypeHandle
  555. struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
  556. {
  557. // System.IntPtr System.RuntimeTypeHandle::value
  558. intptr_t ___value_0;
  559. };
  560. // System.MulticastDelegate
  561. struct MulticastDelegate_t : public Delegate_t
  562. {
  563. // System.Delegate[] System.MulticastDelegate::delegates
  564. DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
  565. };
  566. // Native definition for P/Invoke marshalling of System.MulticastDelegate
  567. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  568. {
  569. Delegate_t_marshaled_pinvoke** ___delegates_13;
  570. };
  571. // Native definition for COM marshalling of System.MulticastDelegate
  572. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  573. {
  574. Delegate_t_marshaled_com** ___delegates_13;
  575. };
  576. // System.Type
  577. struct Type_t : public MemberInfo_t
  578. {
  579. // System.RuntimeTypeHandle System.Type::_impl
  580. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
  581. };
  582. // System.Action`1<AppleAuth.Enums.CredentialState>
  583. struct Action_1_t7CF092A129C468D25C4E6E5AC20FE3453FC7EC66 : public MulticastDelegate_t
  584. {
  585. };
  586. // System.Action`1<AppleAuth.Interfaces.IAppleError>
  587. struct Action_1_tC3903E0A1B057943FABF1B75BE7AAD0683CA51CA : public MulticastDelegate_t
  588. {
  589. };
  590. // System.Action`1<AppleAuth.Interfaces.ICredential>
  591. struct Action_1_tB908D6FD75107728FE1DCDA76696B95672204A80 : public MulticastDelegate_t
  592. {
  593. };
  594. // System.Action`1<System.String>
  595. struct Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A : public MulticastDelegate_t
  596. {
  597. };
  598. // <Module>
  599. // <Module>
  600. // System.Collections.Generic.List`1<System.Object>
  601. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
  602. {
  603. // T[] System.Collections.Generic.List`1::s_emptyArray
  604. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
  605. };
  606. // System.Collections.Generic.List`1<System.Object>
  607. // System.Collections.Generic.List`1<System.String>
  608. struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_StaticFields
  609. {
  610. // T[] System.Collections.Generic.List`1::s_emptyArray
  611. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_emptyArray_5;
  612. };
  613. // System.Collections.Generic.List`1<System.String>
  614. // AppleAuth.AppleAuthManager
  615. // AppleAuth.AppleAuthManager
  616. // AppleAuth.Native.AppleError
  617. // AppleAuth.Native.AppleError
  618. // AppleAuth.Extensions.AppleErrorExtensions
  619. // AppleAuth.Extensions.AppleErrorExtensions
  620. // AppleAuth.Native.AppleIDCredential
  621. // AppleAuth.Native.AppleIDCredential
  622. // AppleAuth.Native.CredentialStateResponse
  623. // AppleAuth.Native.CredentialStateResponse
  624. // AppleAuth.Native.LoginWithAppleIdResponse
  625. // AppleAuth.Native.LoginWithAppleIdResponse
  626. // AppleAuth.Native.PasswordCredential
  627. // AppleAuth.Native.PasswordCredential
  628. // AppleAuth.Native.PayloadDeserializer
  629. // AppleAuth.Native.PayloadDeserializer
  630. // AppleAuth.Native.PersonName
  631. // AppleAuth.Native.PersonName
  632. // AppleAuth.Extensions.PersonNameExtensions
  633. // AppleAuth.Extensions.PersonNameExtensions
  634. // AppleAuth.Native.SerializationTools
  635. // AppleAuth.Native.SerializationTools
  636. // System.String
  637. struct String_t_StaticFields
  638. {
  639. // System.String System.String::Empty
  640. String_t* ___Empty_6;
  641. };
  642. // System.String
  643. // AppleAuth.AppleAuthLoginArgs
  644. // AppleAuth.AppleAuthLoginArgs
  645. // AppleAuth.AppleAuthQuickLoginArgs
  646. // AppleAuth.AppleAuthQuickLoginArgs
  647. // System.Boolean
  648. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
  649. {
  650. // System.String System.Boolean::TrueString
  651. String_t* ___TrueString_5;
  652. // System.String System.Boolean::FalseString
  653. String_t* ___FalseString_6;
  654. };
  655. // System.Boolean
  656. // System.Byte
  657. // System.Byte
  658. // AppleAuth.Native.FullPersonName
  659. // AppleAuth.Native.FullPersonName
  660. // System.Int32
  661. // System.Int32
  662. // System.Void
  663. // System.Void
  664. // System.Exception
  665. struct Exception_t_StaticFields
  666. {
  667. // System.Object System.Exception::s_EDILock
  668. RuntimeObject* ___s_EDILock_0;
  669. };
  670. // System.Exception
  671. // System.RuntimeTypeHandle
  672. // System.RuntimeTypeHandle
  673. // System.Type
  674. struct Type_t_StaticFields
  675. {
  676. // System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
  677. Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
  678. // System.Char System.Type::Delimiter
  679. Il2CppChar ___Delimiter_1;
  680. // System.Type[] System.Type::EmptyTypes
  681. TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
  682. // System.Object System.Type::Missing
  683. RuntimeObject* ___Missing_3;
  684. // System.Reflection.MemberFilter System.Type::FilterAttribute
  685. MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
  686. // System.Reflection.MemberFilter System.Type::FilterName
  687. MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
  688. // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
  689. MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
  690. };
  691. // System.Type
  692. // System.Action`1<AppleAuth.Enums.CredentialState>
  693. // System.Action`1<AppleAuth.Enums.CredentialState>
  694. // System.Action`1<AppleAuth.Interfaces.IAppleError>
  695. // System.Action`1<AppleAuth.Interfaces.IAppleError>
  696. // System.Action`1<AppleAuth.Interfaces.ICredential>
  697. // System.Action`1<AppleAuth.Interfaces.ICredential>
  698. // System.Action`1<System.String>
  699. // System.Action`1<System.String>
  700. #ifdef __clang__
  701. #pragma clang diagnostic pop
  702. #endif
  703. // System.String[]
  704. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
  705. {
  706. ALIGN_FIELD (8) String_t* m_Items[1];
  707. inline String_t* GetAt(il2cpp_array_size_t index) const
  708. {
  709. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  710. return m_Items[index];
  711. }
  712. inline String_t** GetAddressAt(il2cpp_array_size_t index)
  713. {
  714. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  715. return m_Items + index;
  716. }
  717. inline void SetAt(il2cpp_array_size_t index, String_t* value)
  718. {
  719. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  720. m_Items[index] = value;
  721. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  722. }
  723. inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
  724. {
  725. return m_Items[index];
  726. }
  727. inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
  728. {
  729. return m_Items + index;
  730. }
  731. inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
  732. {
  733. m_Items[index] = value;
  734. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  735. }
  736. };
  737. // System.Byte[]
  738. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
  739. {
  740. ALIGN_FIELD (8) uint8_t m_Items[1];
  741. inline uint8_t GetAt(il2cpp_array_size_t index) const
  742. {
  743. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  744. return m_Items[index];
  745. }
  746. inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
  747. {
  748. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  749. return m_Items + index;
  750. }
  751. inline void SetAt(il2cpp_array_size_t index, uint8_t value)
  752. {
  753. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  754. m_Items[index] = value;
  755. }
  756. inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
  757. {
  758. return m_Items[index];
  759. }
  760. inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
  761. {
  762. return m_Items + index;
  763. }
  764. inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
  765. {
  766. m_Items[index] = value;
  767. }
  768. };
  769. // System.Object[]
  770. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
  771. {
  772. ALIGN_FIELD (8) RuntimeObject* m_Items[1];
  773. inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
  774. {
  775. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  776. return m_Items[index];
  777. }
  778. inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
  779. {
  780. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  781. return m_Items + index;
  782. }
  783. inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
  784. {
  785. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  786. m_Items[index] = value;
  787. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  788. }
  789. inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
  790. {
  791. return m_Items[index];
  792. }
  793. inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
  794. {
  795. return m_Items + index;
  796. }
  797. inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
  798. {
  799. m_Items[index] = value;
  800. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  801. }
  802. };
  803. // System.Void AppleAuth.Native.SerializationTools::FixSerializationForArray<System.Object>(T[]&)
  804. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationTools_FixSerializationForArray_TisRuntimeObject_mD6DF7074EA60654FFD90EA67B7158CE2BDBBFAA6_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918** ___0_originalArray, const RuntimeMethod* method) ;
  805. // System.Void AppleAuth.Native.SerializationTools::FixSerializationForObject<System.Object>(T&,System.Boolean)
  806. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationTools_FixSerializationForObject_TisRuntimeObject_m48D5F37A782A264E7C61CA07B38D1792FDAB28A0_gshared (RuntimeObject** ___0_originalObject, bool ___1_hasOriginalObject, const RuntimeMethod* method) ;
  807. // System.Void AppleAuth.Native.SerializationTools::FixSerializationForObject<System.Int32>(T&,System.Boolean)
  808. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationTools_FixSerializationForObject_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1DA694AEF2B22DFB0D3891C37C07E8D71822A932_gshared (int32_t* ___0_originalObject, bool ___1_hasOriginalObject, const RuntimeMethod* method) ;
  809. // T UnityEngine.JsonUtility::FromJson<System.Object>(System.String)
  810. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* JsonUtility_FromJson_TisRuntimeObject_m0CCF0FE109BF4C85AECC9C5D0DBB43422A24FB40_gshared (String_t* ___0_json, const RuntimeMethod* method) ;
  811. // System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
  812. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
  813. // System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
  814. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
  815. // T[] System.Collections.Generic.List`1<System.Object>::ToArray()
  816. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* List_1_ToArray_mD7E4F8E7C11C3C67CB5739FCC0A6E86106A6291F_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
  817. // System.Void AppleAuth.AppleAuthLoginArgs::.ctor(AppleAuth.Enums.LoginOptions,System.String,System.String)
  818. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleAuthLoginArgs__ctor_m979F04437958F29BD5E8FBB8B91085932E47DEC2 (AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4* __this, int32_t ___0_options, String_t* ___1_nonce, String_t* ___2_state, const RuntimeMethod* method) ;
  819. // System.Void UnityEngine.Debug::Log(System.Object)
  820. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Log_m87A9A3C761FF5C43ED8A53B16190A53D08F818BB (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
  821. // System.Void System.Object::.ctor()
  822. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  823. // System.Void AppleAuth.AppleAuthManager::QuickLogin(AppleAuth.AppleAuthQuickLoginArgs,System.Action`1<AppleAuth.Interfaces.ICredential>,System.Action`1<AppleAuth.Interfaces.IAppleError>)
  824. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleAuthManager_QuickLogin_m6729A39051EC9885AD1668BA28B94B9489D39F08 (AppleAuthManager_t9A6ECFB3E5DA602DB80B9AA03575872FF3B853E4* __this, AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C ___0_quickLoginArgs, Action_1_tB908D6FD75107728FE1DCDA76696B95672204A80* ___1_successCallback, Action_1_tC3903E0A1B057943FABF1B75BE7AAD0683CA51CA* ___2_errorCallback, const RuntimeMethod* method) ;
  825. // System.Void System.Exception::.ctor(System.String)
  826. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F (Exception_t* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  827. // System.Void AppleAuth.AppleAuthManager::LoginWithAppleId(AppleAuth.AppleAuthLoginArgs,System.Action`1<AppleAuth.Interfaces.ICredential>,System.Action`1<AppleAuth.Interfaces.IAppleError>)
  828. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleAuthManager_LoginWithAppleId_m41AA28DCBBCED940184CCD2D353C8B8D7E3EA355 (AppleAuthManager_t9A6ECFB3E5DA602DB80B9AA03575872FF3B853E4* __this, AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4 ___0_loginArgs, Action_1_tB908D6FD75107728FE1DCDA76696B95672204A80* ___1_successCallback, Action_1_tC3903E0A1B057943FABF1B75BE7AAD0683CA51CA* ___2_errorCallback, const RuntimeMethod* method) ;
  829. // System.Void AppleAuth.AppleAuthQuickLoginArgs::.ctor(System.String,System.String)
  830. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleAuthQuickLoginArgs__ctor_m29E70947A3CB463F0138B6F58BC35EA58A851AB4 (AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C* __this, String_t* ___0_nonce, String_t* ___1_state, const RuntimeMethod* method) ;
  831. // System.Void AppleAuth.Native.SerializationTools::FixSerializationForString(System.String&)
  832. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F (String_t** ___0_originalString, const RuntimeMethod* method) ;
  833. // System.Void AppleAuth.Native.SerializationTools::FixSerializationForArray<System.String>(T[]&)
  834. inline void SerializationTools_FixSerializationForArray_TisString_t_m57606979A1ED7546D7B023E5757A3AA080909A67 (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** ___0_originalArray, const RuntimeMethod* method)
  835. {
  836. (( void (*) (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248**, const RuntimeMethod*))SerializationTools_FixSerializationForArray_TisRuntimeObject_mD6DF7074EA60654FFD90EA67B7158CE2BDBBFAA6_gshared)(___0_originalArray, method);
  837. }
  838. // System.String System.String::Format(System.String,System.Object,System.Object,System.Object)
  839. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, RuntimeObject* ___3_arg2, const RuntimeMethod* method) ;
  840. // System.Void AppleAuth.Native.SerializationTools::FixSerializationForObject<AppleAuth.Native.FullPersonName>(T&,System.Boolean)
  841. inline void SerializationTools_FixSerializationForObject_TisFullPersonName_t0454AAAB2D27D3182F2AB37B3F6B49BD94B6E9E8_mABB550706F6C9991A33950DCD86264475417AF55 (FullPersonName_t0454AAAB2D27D3182F2AB37B3F6B49BD94B6E9E8** ___0_originalObject, bool ___1_hasOriginalObject, const RuntimeMethod* method)
  842. {
  843. (( void (*) (FullPersonName_t0454AAAB2D27D3182F2AB37B3F6B49BD94B6E9E8**, bool, const RuntimeMethod*))SerializationTools_FixSerializationForObject_TisRuntimeObject_m48D5F37A782A264E7C61CA07B38D1792FDAB28A0_gshared)(___0_originalObject, ___1_hasOriginalObject, method);
  844. }
  845. // System.Byte[] AppleAuth.Native.SerializationTools::GetBytesFromBase64String(System.String,System.String)
  846. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* SerializationTools_GetBytesFromBase64String_m4C24E80BE8646637F981906DDC1DC001C4785D9F (String_t* ___0_base64String, String_t* ___1_fieldName, const RuntimeMethod* method) ;
  847. // System.Void AppleAuth.Native.SerializationTools::FixSerializationForObject<System.Int32>(T&,System.Boolean)
  848. inline void SerializationTools_FixSerializationForObject_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1DA694AEF2B22DFB0D3891C37C07E8D71822A932 (int32_t* ___0_originalObject, bool ___1_hasOriginalObject, const RuntimeMethod* method)
  849. {
  850. (( void (*) (int32_t*, bool, const RuntimeMethod*))SerializationTools_FixSerializationForObject_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1DA694AEF2B22DFB0D3891C37C07E8D71822A932_gshared)(___0_originalObject, ___1_hasOriginalObject, method);
  851. }
  852. // System.Void AppleAuth.Native.SerializationTools::FixSerializationForObject<AppleAuth.Native.AppleError>(T&,System.Boolean)
  853. inline void SerializationTools_FixSerializationForObject_TisAppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA_m573E3F0F3F5A75C7D43F1273173F4662000CDE3E (AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA** ___0_originalObject, bool ___1_hasOriginalObject, const RuntimeMethod* method)
  854. {
  855. (( void (*) (AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA**, bool, const RuntimeMethod*))SerializationTools_FixSerializationForObject_TisRuntimeObject_m48D5F37A782A264E7C61CA07B38D1792FDAB28A0_gshared)(___0_originalObject, ___1_hasOriginalObject, method);
  856. }
  857. // System.Void AppleAuth.Native.PersonName::OnAfterDeserialize()
  858. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PersonName_OnAfterDeserialize_m62A1515986426365B43F5A7BF5B7FB130EDA0D6E (PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78* __this, const RuntimeMethod* method) ;
  859. // System.Void AppleAuth.Native.SerializationTools::FixSerializationForObject<AppleAuth.Native.PersonName>(T&,System.Boolean)
  860. inline void SerializationTools_FixSerializationForObject_TisPersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78_m46785A42311D7DBCC23278C437B7EA2C9CA5F5CD (PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78** ___0_originalObject, bool ___1_hasOriginalObject, const RuntimeMethod* method)
  861. {
  862. (( void (*) (PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78**, bool, const RuntimeMethod*))SerializationTools_FixSerializationForObject_TisRuntimeObject_m48D5F37A782A264E7C61CA07B38D1792FDAB28A0_gshared)(___0_originalObject, ___1_hasOriginalObject, method);
  863. }
  864. // System.Void AppleAuth.Native.PersonName::.ctor()
  865. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PersonName__ctor_m0F0E4933C32F156BAA3F4DB66D4BE72313F76C55 (PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78* __this, const RuntimeMethod* method) ;
  866. // System.Void AppleAuth.Native.SerializationTools::FixSerializationForObject<AppleAuth.Native.AppleIDCredential>(T&,System.Boolean)
  867. inline void SerializationTools_FixSerializationForObject_TisAppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75_m7BB1F4ADA60F4A3962B8BAC814E36A1663B85138 (AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75** ___0_originalObject, bool ___1_hasOriginalObject, const RuntimeMethod* method)
  868. {
  869. (( void (*) (AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75**, bool, const RuntimeMethod*))SerializationTools_FixSerializationForObject_TisRuntimeObject_m48D5F37A782A264E7C61CA07B38D1792FDAB28A0_gshared)(___0_originalObject, ___1_hasOriginalObject, method);
  870. }
  871. // System.Void AppleAuth.Native.SerializationTools::FixSerializationForObject<AppleAuth.Native.PasswordCredential>(T&,System.Boolean)
  872. inline void SerializationTools_FixSerializationForObject_TisPasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1_m4953F1B78CB811CB2E64DC3D05AA28377D751BC8 (PasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1** ___0_originalObject, bool ___1_hasOriginalObject, const RuntimeMethod* method)
  873. {
  874. (( void (*) (PasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1**, bool, const RuntimeMethod*))SerializationTools_FixSerializationForObject_TisRuntimeObject_m48D5F37A782A264E7C61CA07B38D1792FDAB28A0_gshared)(___0_originalObject, ___1_hasOriginalObject, method);
  875. }
  876. // T UnityEngine.JsonUtility::FromJson<AppleAuth.Native.CredentialStateResponse>(System.String)
  877. inline CredentialStateResponse_t168DFACCC4FBA9919D9EBF9314CFC5652199EB27* JsonUtility_FromJson_TisCredentialStateResponse_t168DFACCC4FBA9919D9EBF9314CFC5652199EB27_mFFC31E6199B5FD55E8D74129CF9DF94F71984BCD (String_t* ___0_json, const RuntimeMethod* method)
  878. {
  879. return (( CredentialStateResponse_t168DFACCC4FBA9919D9EBF9314CFC5652199EB27* (*) (String_t*, const RuntimeMethod*))JsonUtility_FromJson_TisRuntimeObject_m0CCF0FE109BF4C85AECC9C5D0DBB43422A24FB40_gshared)(___0_json, method);
  880. }
  881. // T UnityEngine.JsonUtility::FromJson<AppleAuth.Native.LoginWithAppleIdResponse>(System.String)
  882. inline LoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F* JsonUtility_FromJson_TisLoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F_m2A9E23518A15B0370E1D4EED22057138CE4EC82E (String_t* ___0_json, const RuntimeMethod* method)
  883. {
  884. return (( LoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F* (*) (String_t*, const RuntimeMethod*))JsonUtility_FromJson_TisRuntimeObject_m0CCF0FE109BF4C85AECC9C5D0DBB43422A24FB40_gshared)(___0_json, method);
  885. }
  886. // System.Boolean System.String::IsNullOrEmpty(System.String)
  887. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478 (String_t* ___0_value, const RuntimeMethod* method) ;
  888. // System.Byte[] System.Convert::FromBase64String(System.String)
  889. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Convert_FromBase64String_m267327B074B41D93C9622D142B95CFAA4ACCCA9C (String_t* ___0_s, const RuntimeMethod* method) ;
  890. // System.String System.String::Concat(System.String,System.String)
  891. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ;
  892. // System.Void System.Console::WriteLine(System.String)
  893. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Console_WriteLine_m77CEDA0C084428F0D6220988DA66992EC1925AEA (String_t* ___0_value, const RuntimeMethod* method) ;
  894. // System.Boolean System.String::op_Equality(System.String,System.String)
  895. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
  896. // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
  897. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ;
  898. // System.Boolean System.Enum::IsDefined(System.Type,System.Object)
  899. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_IsDefined_m1C9A0C4F54B0538351585FF563A01091A6FE2F28 (Type_t* ___0_enumType, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
  900. // System.Void System.Collections.Generic.List`1<System.String>::.ctor()
  901. inline void List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method)
  902. {
  903. (( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
  904. }
  905. // System.Void System.Collections.Generic.List`1<System.String>::Add(T)
  906. inline void List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, String_t* ___0_item, const RuntimeMethod* method)
  907. {
  908. (( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, String_t*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
  909. }
  910. // T[] System.Collections.Generic.List`1<System.String>::ToArray()
  911. inline StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method)
  912. {
  913. return (( StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, const RuntimeMethod*))List_1_ToArray_mD7E4F8E7C11C3C67CB5739FCC0A6E86106A6291F_gshared)(__this, method);
  914. }
  915. // System.String System.String::Join(System.String,System.String[])
  916. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Join_m557B6B554B87C1742FA0B128500073B421ED0BFD (String_t* ___0_separator, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_value, const RuntimeMethod* method) ;
  917. #ifdef __clang__
  918. #pragma clang diagnostic push
  919. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  920. #pragma clang diagnostic ignored "-Wunused-variable"
  921. #endif
  922. #ifdef __clang__
  923. #pragma clang diagnostic pop
  924. #endif
  925. #ifdef __clang__
  926. #pragma clang diagnostic push
  927. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  928. #pragma clang diagnostic ignored "-Wunused-variable"
  929. #endif
  930. // Conversion methods for marshalling of: AppleAuth.AppleAuthLoginArgs
  931. IL2CPP_EXTERN_C void AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4_marshal_pinvoke(const AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4& unmarshaled, AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4_marshaled_pinvoke& marshaled)
  932. {
  933. marshaled.___Options_0 = unmarshaled.___Options_0;
  934. marshaled.___Nonce_1 = il2cpp_codegen_marshal_string(unmarshaled.___Nonce_1);
  935. marshaled.___State_2 = il2cpp_codegen_marshal_string(unmarshaled.___State_2);
  936. }
  937. IL2CPP_EXTERN_C void AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4_marshal_pinvoke_back(const AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4_marshaled_pinvoke& marshaled, AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4& unmarshaled)
  938. {
  939. int32_t unmarshaledOptions_temp_0 = 0;
  940. unmarshaledOptions_temp_0 = marshaled.___Options_0;
  941. unmarshaled.___Options_0 = unmarshaledOptions_temp_0;
  942. unmarshaled.___Nonce_1 = il2cpp_codegen_marshal_string_result(marshaled.___Nonce_1);
  943. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___Nonce_1), (void*)il2cpp_codegen_marshal_string_result(marshaled.___Nonce_1));
  944. unmarshaled.___State_2 = il2cpp_codegen_marshal_string_result(marshaled.___State_2);
  945. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___State_2), (void*)il2cpp_codegen_marshal_string_result(marshaled.___State_2));
  946. }
  947. // Conversion method for clean up from marshalling of: AppleAuth.AppleAuthLoginArgs
  948. IL2CPP_EXTERN_C void AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4_marshal_pinvoke_cleanup(AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4_marshaled_pinvoke& marshaled)
  949. {
  950. il2cpp_codegen_marshal_free(marshaled.___Nonce_1);
  951. marshaled.___Nonce_1 = NULL;
  952. il2cpp_codegen_marshal_free(marshaled.___State_2);
  953. marshaled.___State_2 = NULL;
  954. }
  955. // Conversion methods for marshalling of: AppleAuth.AppleAuthLoginArgs
  956. IL2CPP_EXTERN_C void AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4_marshal_com(const AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4& unmarshaled, AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4_marshaled_com& marshaled)
  957. {
  958. marshaled.___Options_0 = unmarshaled.___Options_0;
  959. marshaled.___Nonce_1 = il2cpp_codegen_marshal_bstring(unmarshaled.___Nonce_1);
  960. marshaled.___State_2 = il2cpp_codegen_marshal_bstring(unmarshaled.___State_2);
  961. }
  962. IL2CPP_EXTERN_C void AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4_marshal_com_back(const AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4_marshaled_com& marshaled, AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4& unmarshaled)
  963. {
  964. int32_t unmarshaledOptions_temp_0 = 0;
  965. unmarshaledOptions_temp_0 = marshaled.___Options_0;
  966. unmarshaled.___Options_0 = unmarshaledOptions_temp_0;
  967. unmarshaled.___Nonce_1 = il2cpp_codegen_marshal_bstring_result(marshaled.___Nonce_1);
  968. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___Nonce_1), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___Nonce_1));
  969. unmarshaled.___State_2 = il2cpp_codegen_marshal_bstring_result(marshaled.___State_2);
  970. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___State_2), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___State_2));
  971. }
  972. // Conversion method for clean up from marshalling of: AppleAuth.AppleAuthLoginArgs
  973. IL2CPP_EXTERN_C void AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4_marshal_com_cleanup(AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4_marshaled_com& marshaled)
  974. {
  975. il2cpp_codegen_marshal_free_bstring(marshaled.___Nonce_1);
  976. marshaled.___Nonce_1 = NULL;
  977. il2cpp_codegen_marshal_free_bstring(marshaled.___State_2);
  978. marshaled.___State_2 = NULL;
  979. }
  980. // System.Void AppleAuth.AppleAuthLoginArgs::.ctor(AppleAuth.Enums.LoginOptions,System.String,System.String)
  981. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleAuthLoginArgs__ctor_m979F04437958F29BD5E8FBB8B91085932E47DEC2 (AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4* __this, int32_t ___0_options, String_t* ___1_nonce, String_t* ___2_state, const RuntimeMethod* method)
  982. {
  983. {
  984. // this.Options = options;
  985. int32_t L_0 = ___0_options;
  986. __this->___Options_0 = L_0;
  987. // this.Nonce = nonce;
  988. String_t* L_1 = ___1_nonce;
  989. __this->___Nonce_1 = L_1;
  990. Il2CppCodeGenWriteBarrier((void**)(&__this->___Nonce_1), (void*)L_1);
  991. // this.State = state;
  992. String_t* L_2 = ___2_state;
  993. __this->___State_2 = L_2;
  994. Il2CppCodeGenWriteBarrier((void**)(&__this->___State_2), (void*)L_2);
  995. // }
  996. return;
  997. }
  998. }
  999. IL2CPP_EXTERN_C void AppleAuthLoginArgs__ctor_m979F04437958F29BD5E8FBB8B91085932E47DEC2_AdjustorThunk (RuntimeObject* __this, int32_t ___0_options, String_t* ___1_nonce, String_t* ___2_state, const RuntimeMethod* method)
  1000. {
  1001. AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4* _thisAdjusted;
  1002. int32_t _offset = 1;
  1003. _thisAdjusted = reinterpret_cast<AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4*>(__this + _offset);
  1004. AppleAuthLoginArgs__ctor_m979F04437958F29BD5E8FBB8B91085932E47DEC2(_thisAdjusted, ___0_options, ___1_nonce, ___2_state, method);
  1005. }
  1006. #ifdef __clang__
  1007. #pragma clang diagnostic pop
  1008. #endif
  1009. #ifdef __clang__
  1010. #pragma clang diagnostic push
  1011. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1012. #pragma clang diagnostic ignored "-Wunused-variable"
  1013. #endif
  1014. // System.Void AppleAuth.AppleAuthManager::.cctor()
  1015. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleAuthManager__cctor_mD2B1F2782B50BD07F7EE6DF67CE2BCD0196CD1C1 (const RuntimeMethod* method)
  1016. {
  1017. static bool s_Il2CppMethodInitialized;
  1018. if (!s_Il2CppMethodInitialized)
  1019. {
  1020. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
  1021. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAAFEF493C52F96B5A12AC31A8C67F85BBF99BC17);
  1022. s_Il2CppMethodInitialized = true;
  1023. }
  1024. {
  1025. // UnityEngine.Debug.Log(versionMessage);
  1026. il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
  1027. Debug_Log_m87A9A3C761FF5C43ED8A53B16190A53D08F818BB(_stringLiteralAAFEF493C52F96B5A12AC31A8C67F85BBF99BC17, NULL);
  1028. // }
  1029. return;
  1030. }
  1031. }
  1032. // System.Boolean AppleAuth.AppleAuthManager::get_IsCurrentPlatformSupported()
  1033. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AppleAuthManager_get_IsCurrentPlatformSupported_m7A452E34F3B87A9FBF6F9E79DAD9792B87AB9B9C (const RuntimeMethod* method)
  1034. {
  1035. {
  1036. // return false;
  1037. return (bool)0;
  1038. }
  1039. }
  1040. // System.Void AppleAuth.AppleAuthManager::.ctor(AppleAuth.Interfaces.IPayloadDeserializer)
  1041. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleAuthManager__ctor_mFCE1994D8BD7BFCC9EA201E091A1C09BF63945B3 (AppleAuthManager_t9A6ECFB3E5DA602DB80B9AA03575872FF3B853E4* __this, RuntimeObject* ___0_payloadDeserializer, const RuntimeMethod* method)
  1042. {
  1043. {
  1044. // public AppleAuthManager(IPayloadDeserializer payloadDeserializer)
  1045. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  1046. // }
  1047. return;
  1048. }
  1049. }
  1050. // System.Void AppleAuth.AppleAuthManager::QuickLogin(System.Action`1<AppleAuth.Interfaces.ICredential>,System.Action`1<AppleAuth.Interfaces.IAppleError>)
  1051. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleAuthManager_QuickLogin_m50DC36CEED4EFA9A98B758F7BE696F01D3957506 (AppleAuthManager_t9A6ECFB3E5DA602DB80B9AA03575872FF3B853E4* __this, Action_1_tB908D6FD75107728FE1DCDA76696B95672204A80* ___0_successCallback, Action_1_tC3903E0A1B057943FABF1B75BE7AAD0683CA51CA* ___1_errorCallback, const RuntimeMethod* method)
  1052. {
  1053. AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C V_0;
  1054. memset((&V_0), 0, sizeof(V_0));
  1055. {
  1056. // this.QuickLogin(new AppleAuthQuickLoginArgs(), successCallback, errorCallback);
  1057. il2cpp_codegen_initobj((&V_0), sizeof(AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C));
  1058. AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C L_0 = V_0;
  1059. Action_1_tB908D6FD75107728FE1DCDA76696B95672204A80* L_1 = ___0_successCallback;
  1060. Action_1_tC3903E0A1B057943FABF1B75BE7AAD0683CA51CA* L_2 = ___1_errorCallback;
  1061. AppleAuthManager_QuickLogin_m6729A39051EC9885AD1668BA28B94B9489D39F08(__this, L_0, L_1, L_2, NULL);
  1062. // }
  1063. return;
  1064. }
  1065. }
  1066. // System.Void AppleAuth.AppleAuthManager::QuickLogin(AppleAuth.AppleAuthQuickLoginArgs,System.Action`1<AppleAuth.Interfaces.ICredential>,System.Action`1<AppleAuth.Interfaces.IAppleError>)
  1067. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleAuthManager_QuickLogin_m6729A39051EC9885AD1668BA28B94B9489D39F08 (AppleAuthManager_t9A6ECFB3E5DA602DB80B9AA03575872FF3B853E4* __this, AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C ___0_quickLoginArgs, Action_1_tB908D6FD75107728FE1DCDA76696B95672204A80* ___1_successCallback, Action_1_tC3903E0A1B057943FABF1B75BE7AAD0683CA51CA* ___2_errorCallback, const RuntimeMethod* method)
  1068. {
  1069. {
  1070. // throw new Exception("AppleAuthManager is not supported in this platform");
  1071. Exception_t* L_0 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
  1072. NullCheck(L_0);
  1073. Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCDD4C83DD410201E5E465766DBA93DED78585395)), NULL);
  1074. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AppleAuthManager_QuickLogin_m6729A39051EC9885AD1668BA28B94B9489D39F08_RuntimeMethod_var)));
  1075. }
  1076. }
  1077. // System.Void AppleAuth.AppleAuthManager::LoginWithAppleId(AppleAuth.Enums.LoginOptions,System.Action`1<AppleAuth.Interfaces.ICredential>,System.Action`1<AppleAuth.Interfaces.IAppleError>)
  1078. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleAuthManager_LoginWithAppleId_m7F9D42479BB718C417A879E00F86EA3844B0405F (AppleAuthManager_t9A6ECFB3E5DA602DB80B9AA03575872FF3B853E4* __this, int32_t ___0_options, Action_1_tB908D6FD75107728FE1DCDA76696B95672204A80* ___1_successCallback, Action_1_tC3903E0A1B057943FABF1B75BE7AAD0683CA51CA* ___2_errorCallback, const RuntimeMethod* method)
  1079. {
  1080. {
  1081. // this.LoginWithAppleId(new AppleAuthLoginArgs(options), successCallback, errorCallback);
  1082. int32_t L_0 = ___0_options;
  1083. AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4 L_1;
  1084. memset((&L_1), 0, sizeof(L_1));
  1085. AppleAuthLoginArgs__ctor_m979F04437958F29BD5E8FBB8B91085932E47DEC2((&L_1), L_0, (String_t*)NULL, (String_t*)NULL, /*hidden argument*/NULL);
  1086. Action_1_tB908D6FD75107728FE1DCDA76696B95672204A80* L_2 = ___1_successCallback;
  1087. Action_1_tC3903E0A1B057943FABF1B75BE7AAD0683CA51CA* L_3 = ___2_errorCallback;
  1088. AppleAuthManager_LoginWithAppleId_m41AA28DCBBCED940184CCD2D353C8B8D7E3EA355(__this, L_1, L_2, L_3, NULL);
  1089. // }
  1090. return;
  1091. }
  1092. }
  1093. // System.Void AppleAuth.AppleAuthManager::LoginWithAppleId(AppleAuth.AppleAuthLoginArgs,System.Action`1<AppleAuth.Interfaces.ICredential>,System.Action`1<AppleAuth.Interfaces.IAppleError>)
  1094. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleAuthManager_LoginWithAppleId_m41AA28DCBBCED940184CCD2D353C8B8D7E3EA355 (AppleAuthManager_t9A6ECFB3E5DA602DB80B9AA03575872FF3B853E4* __this, AppleAuthLoginArgs_tEC38AFD6B2C1CCBD455014707F0E505CDF8972B4 ___0_loginArgs, Action_1_tB908D6FD75107728FE1DCDA76696B95672204A80* ___1_successCallback, Action_1_tC3903E0A1B057943FABF1B75BE7AAD0683CA51CA* ___2_errorCallback, const RuntimeMethod* method)
  1095. {
  1096. {
  1097. // throw new Exception("AppleAuthManager is not supported in this platform");
  1098. Exception_t* L_0 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
  1099. NullCheck(L_0);
  1100. Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCDD4C83DD410201E5E465766DBA93DED78585395)), NULL);
  1101. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AppleAuthManager_LoginWithAppleId_m41AA28DCBBCED940184CCD2D353C8B8D7E3EA355_RuntimeMethod_var)));
  1102. }
  1103. }
  1104. // System.Void AppleAuth.AppleAuthManager::GetCredentialState(System.String,System.Action`1<AppleAuth.Enums.CredentialState>,System.Action`1<AppleAuth.Interfaces.IAppleError>)
  1105. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleAuthManager_GetCredentialState_m7646C8E8F7DFA9A8C77E576C39DFE4059BE5AD02 (AppleAuthManager_t9A6ECFB3E5DA602DB80B9AA03575872FF3B853E4* __this, String_t* ___0_userId, Action_1_t7CF092A129C468D25C4E6E5AC20FE3453FC7EC66* ___1_successCallback, Action_1_tC3903E0A1B057943FABF1B75BE7AAD0683CA51CA* ___2_errorCallback, const RuntimeMethod* method)
  1106. {
  1107. {
  1108. // throw new Exception("AppleAuthManager is not supported in this platform");
  1109. Exception_t* L_0 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
  1110. NullCheck(L_0);
  1111. Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCDD4C83DD410201E5E465766DBA93DED78585395)), NULL);
  1112. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AppleAuthManager_GetCredentialState_m7646C8E8F7DFA9A8C77E576C39DFE4059BE5AD02_RuntimeMethod_var)));
  1113. }
  1114. }
  1115. // System.Void AppleAuth.AppleAuthManager::SetCredentialsRevokedCallback(System.Action`1<System.String>)
  1116. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleAuthManager_SetCredentialsRevokedCallback_m0C1A9F85CAE89C2AAAB94863C48F535D315E0CBA (AppleAuthManager_t9A6ECFB3E5DA602DB80B9AA03575872FF3B853E4* __this, Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A* ___0_credentialsRevokedCallback, const RuntimeMethod* method)
  1117. {
  1118. {
  1119. // }
  1120. return;
  1121. }
  1122. }
  1123. // System.Void AppleAuth.AppleAuthManager::Update()
  1124. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleAuthManager_Update_mE6CCC051DC13A8B6A838B4E52CEFDA6683B0956A (AppleAuthManager_t9A6ECFB3E5DA602DB80B9AA03575872FF3B853E4* __this, const RuntimeMethod* method)
  1125. {
  1126. {
  1127. // }
  1128. return;
  1129. }
  1130. }
  1131. #ifdef __clang__
  1132. #pragma clang diagnostic pop
  1133. #endif
  1134. #ifdef __clang__
  1135. #pragma clang diagnostic push
  1136. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1137. #pragma clang diagnostic ignored "-Wunused-variable"
  1138. #endif
  1139. // Conversion methods for marshalling of: AppleAuth.AppleAuthQuickLoginArgs
  1140. IL2CPP_EXTERN_C void AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C_marshal_pinvoke(const AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C& unmarshaled, AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C_marshaled_pinvoke& marshaled)
  1141. {
  1142. marshaled.___Nonce_0 = il2cpp_codegen_marshal_string(unmarshaled.___Nonce_0);
  1143. marshaled.___State_1 = il2cpp_codegen_marshal_string(unmarshaled.___State_1);
  1144. }
  1145. IL2CPP_EXTERN_C void AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C_marshal_pinvoke_back(const AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C_marshaled_pinvoke& marshaled, AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C& unmarshaled)
  1146. {
  1147. unmarshaled.___Nonce_0 = il2cpp_codegen_marshal_string_result(marshaled.___Nonce_0);
  1148. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___Nonce_0), (void*)il2cpp_codegen_marshal_string_result(marshaled.___Nonce_0));
  1149. unmarshaled.___State_1 = il2cpp_codegen_marshal_string_result(marshaled.___State_1);
  1150. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___State_1), (void*)il2cpp_codegen_marshal_string_result(marshaled.___State_1));
  1151. }
  1152. // Conversion method for clean up from marshalling of: AppleAuth.AppleAuthQuickLoginArgs
  1153. IL2CPP_EXTERN_C void AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C_marshal_pinvoke_cleanup(AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C_marshaled_pinvoke& marshaled)
  1154. {
  1155. il2cpp_codegen_marshal_free(marshaled.___Nonce_0);
  1156. marshaled.___Nonce_0 = NULL;
  1157. il2cpp_codegen_marshal_free(marshaled.___State_1);
  1158. marshaled.___State_1 = NULL;
  1159. }
  1160. // Conversion methods for marshalling of: AppleAuth.AppleAuthQuickLoginArgs
  1161. IL2CPP_EXTERN_C void AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C_marshal_com(const AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C& unmarshaled, AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C_marshaled_com& marshaled)
  1162. {
  1163. marshaled.___Nonce_0 = il2cpp_codegen_marshal_bstring(unmarshaled.___Nonce_0);
  1164. marshaled.___State_1 = il2cpp_codegen_marshal_bstring(unmarshaled.___State_1);
  1165. }
  1166. IL2CPP_EXTERN_C void AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C_marshal_com_back(const AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C_marshaled_com& marshaled, AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C& unmarshaled)
  1167. {
  1168. unmarshaled.___Nonce_0 = il2cpp_codegen_marshal_bstring_result(marshaled.___Nonce_0);
  1169. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___Nonce_0), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___Nonce_0));
  1170. unmarshaled.___State_1 = il2cpp_codegen_marshal_bstring_result(marshaled.___State_1);
  1171. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___State_1), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___State_1));
  1172. }
  1173. // Conversion method for clean up from marshalling of: AppleAuth.AppleAuthQuickLoginArgs
  1174. IL2CPP_EXTERN_C void AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C_marshal_com_cleanup(AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C_marshaled_com& marshaled)
  1175. {
  1176. il2cpp_codegen_marshal_free_bstring(marshaled.___Nonce_0);
  1177. marshaled.___Nonce_0 = NULL;
  1178. il2cpp_codegen_marshal_free_bstring(marshaled.___State_1);
  1179. marshaled.___State_1 = NULL;
  1180. }
  1181. // System.Void AppleAuth.AppleAuthQuickLoginArgs::.ctor(System.String,System.String)
  1182. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleAuthQuickLoginArgs__ctor_m29E70947A3CB463F0138B6F58BC35EA58A851AB4 (AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C* __this, String_t* ___0_nonce, String_t* ___1_state, const RuntimeMethod* method)
  1183. {
  1184. {
  1185. // this.Nonce = nonce;
  1186. String_t* L_0 = ___0_nonce;
  1187. __this->___Nonce_0 = L_0;
  1188. Il2CppCodeGenWriteBarrier((void**)(&__this->___Nonce_0), (void*)L_0);
  1189. // this.State = state;
  1190. String_t* L_1 = ___1_state;
  1191. __this->___State_1 = L_1;
  1192. Il2CppCodeGenWriteBarrier((void**)(&__this->___State_1), (void*)L_1);
  1193. // }
  1194. return;
  1195. }
  1196. }
  1197. IL2CPP_EXTERN_C void AppleAuthQuickLoginArgs__ctor_m29E70947A3CB463F0138B6F58BC35EA58A851AB4_AdjustorThunk (RuntimeObject* __this, String_t* ___0_nonce, String_t* ___1_state, const RuntimeMethod* method)
  1198. {
  1199. AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C* _thisAdjusted;
  1200. int32_t _offset = 1;
  1201. _thisAdjusted = reinterpret_cast<AppleAuthQuickLoginArgs_tBB2B39ED7803A5FA6916A70CB519F33099AAE38C*>(__this + _offset);
  1202. AppleAuthQuickLoginArgs__ctor_m29E70947A3CB463F0138B6F58BC35EA58A851AB4(_thisAdjusted, ___0_nonce, ___1_state, method);
  1203. }
  1204. #ifdef __clang__
  1205. #pragma clang diagnostic pop
  1206. #endif
  1207. #ifdef __clang__
  1208. #pragma clang diagnostic push
  1209. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1210. #pragma clang diagnostic ignored "-Wunused-variable"
  1211. #endif
  1212. // System.Int32 AppleAuth.Native.AppleError::get_Code()
  1213. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AppleError_get_Code_m961287BECF360B2EDAD83FA060A8C7FDB6418FD5 (AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA* __this, const RuntimeMethod* method)
  1214. {
  1215. {
  1216. // public int Code { get { return this._code; } }
  1217. int32_t L_0 = __this->____code_0;
  1218. return L_0;
  1219. }
  1220. }
  1221. // System.String AppleAuth.Native.AppleError::get_Domain()
  1222. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppleError_get_Domain_m63E5CABE6AF7F50CC0FB9B9C55D074AC01D22DDF (AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA* __this, const RuntimeMethod* method)
  1223. {
  1224. {
  1225. // public string Domain { get { return this._domain; } }
  1226. String_t* L_0 = __this->____domain_1;
  1227. return L_0;
  1228. }
  1229. }
  1230. // System.String AppleAuth.Native.AppleError::get_LocalizedDescription()
  1231. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppleError_get_LocalizedDescription_m430AE126F8F82BCD7D41545FC20102B666C700E5 (AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA* __this, const RuntimeMethod* method)
  1232. {
  1233. {
  1234. // public string LocalizedDescription { get { return this._localizedDescription; } }
  1235. String_t* L_0 = __this->____localizedDescription_2;
  1236. return L_0;
  1237. }
  1238. }
  1239. // System.String[] AppleAuth.Native.AppleError::get_LocalizedRecoveryOptions()
  1240. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* AppleError_get_LocalizedRecoveryOptions_m70B334E472068D36B4797AF8BE86C641E347F564 (AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA* __this, const RuntimeMethod* method)
  1241. {
  1242. {
  1243. // public string[] LocalizedRecoveryOptions { get { return this._localizedRecoveryOptions; } }
  1244. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->____localizedRecoveryOptions_3;
  1245. return L_0;
  1246. }
  1247. }
  1248. // System.String AppleAuth.Native.AppleError::get_LocalizedRecoverySuggestion()
  1249. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppleError_get_LocalizedRecoverySuggestion_m2CA60B369F391895F8307B37BB767122522B29A9 (AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA* __this, const RuntimeMethod* method)
  1250. {
  1251. {
  1252. // public string LocalizedRecoverySuggestion { get { return this._localizedRecoverySuggestion; } }
  1253. String_t* L_0 = __this->____localizedRecoverySuggestion_4;
  1254. return L_0;
  1255. }
  1256. }
  1257. // System.String AppleAuth.Native.AppleError::get_LocalizedFailureReason()
  1258. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppleError_get_LocalizedFailureReason_m51C96BF4FE7F7E50B5739793C800343D05489DB9 (AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA* __this, const RuntimeMethod* method)
  1259. {
  1260. {
  1261. // public string LocalizedFailureReason { get { return this._localizedFailureReason; } }
  1262. String_t* L_0 = __this->____localizedFailureReason_5;
  1263. return L_0;
  1264. }
  1265. }
  1266. // System.Void AppleAuth.Native.AppleError::OnBeforeSerialize()
  1267. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleError_OnBeforeSerialize_mAEAD2F39FA81174491484481AD72D7B005DB67F7 (AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA* __this, const RuntimeMethod* method)
  1268. {
  1269. {
  1270. // public void OnBeforeSerialize() { }
  1271. return;
  1272. }
  1273. }
  1274. // System.Void AppleAuth.Native.AppleError::OnAfterDeserialize()
  1275. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleError_OnAfterDeserialize_m0BCD7127B5E7D5505CE32993DA8F2A4D2AA592E2 (AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA* __this, const RuntimeMethod* method)
  1276. {
  1277. static bool s_Il2CppMethodInitialized;
  1278. if (!s_Il2CppMethodInitialized)
  1279. {
  1280. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SerializationTools_FixSerializationForArray_TisString_t_m57606979A1ED7546D7B023E5757A3AA080909A67_RuntimeMethod_var);
  1281. s_Il2CppMethodInitialized = true;
  1282. }
  1283. {
  1284. // SerializationTools.FixSerializationForString(ref this._domain);
  1285. String_t** L_0 = (&__this->____domain_1);
  1286. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_0, NULL);
  1287. // SerializationTools.FixSerializationForString(ref this._localizedDescription);
  1288. String_t** L_1 = (&__this->____localizedDescription_2);
  1289. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_1, NULL);
  1290. // SerializationTools.FixSerializationForString(ref this._localizedRecoverySuggestion);
  1291. String_t** L_2 = (&__this->____localizedRecoverySuggestion_4);
  1292. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_2, NULL);
  1293. // SerializationTools.FixSerializationForString(ref this._localizedFailureReason);
  1294. String_t** L_3 = (&__this->____localizedFailureReason_5);
  1295. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_3, NULL);
  1296. // SerializationTools.FixSerializationForArray(ref this._localizedRecoveryOptions);
  1297. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** L_4 = (&__this->____localizedRecoveryOptions_3);
  1298. SerializationTools_FixSerializationForArray_TisString_t_m57606979A1ED7546D7B023E5757A3AA080909A67(L_4, SerializationTools_FixSerializationForArray_TisString_t_m57606979A1ED7546D7B023E5757A3AA080909A67_RuntimeMethod_var);
  1299. // }
  1300. return;
  1301. }
  1302. }
  1303. // System.String AppleAuth.Native.AppleError::ToString()
  1304. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppleError_ToString_m288F1388415E5031ED251BD778FED627F9BC0DC5 (AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA* __this, const RuntimeMethod* method)
  1305. {
  1306. static bool s_Il2CppMethodInitialized;
  1307. if (!s_Il2CppMethodInitialized)
  1308. {
  1309. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
  1310. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral93D9B00D6E9CE12A85069965CC351E5DE11CA3AD);
  1311. s_Il2CppMethodInitialized = true;
  1312. }
  1313. {
  1314. // return $"Domain={_domain} Code={_code} Description={_localizedDescription}";
  1315. String_t* L_0 = __this->____domain_1;
  1316. int32_t L_1 = __this->____code_0;
  1317. int32_t L_2 = L_1;
  1318. RuntimeObject* L_3 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_2);
  1319. String_t* L_4 = __this->____localizedDescription_2;
  1320. String_t* L_5;
  1321. L_5 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(_stringLiteral93D9B00D6E9CE12A85069965CC351E5DE11CA3AD, L_0, L_3, L_4, NULL);
  1322. return L_5;
  1323. }
  1324. }
  1325. // System.Void AppleAuth.Native.AppleError::.ctor()
  1326. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleError__ctor_m66C93CADE0B99B97DD2891FDA0B886E2B02AADD1 (AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA* __this, const RuntimeMethod* method)
  1327. {
  1328. {
  1329. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  1330. return;
  1331. }
  1332. }
  1333. #ifdef __clang__
  1334. #pragma clang diagnostic pop
  1335. #endif
  1336. #ifdef __clang__
  1337. #pragma clang diagnostic push
  1338. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1339. #pragma clang diagnostic ignored "-Wunused-variable"
  1340. #endif
  1341. // System.Byte[] AppleAuth.Native.AppleIDCredential::get_IdentityToken()
  1342. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* AppleIDCredential_get_IdentityToken_m34B56460123F4D5FA0F3F0E9F11889E776583355 (AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75* __this, const RuntimeMethod* method)
  1343. {
  1344. {
  1345. // public byte[] IdentityToken { get { return this._identityToken; } }
  1346. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->____identityToken_9;
  1347. return L_0;
  1348. }
  1349. }
  1350. // System.Byte[] AppleAuth.Native.AppleIDCredential::get_AuthorizationCode()
  1351. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* AppleIDCredential_get_AuthorizationCode_mF451C6107719D30009CC68965869BA7C0BD50CE8 (AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75* __this, const RuntimeMethod* method)
  1352. {
  1353. {
  1354. // public byte[] AuthorizationCode { get { return this._authorizationCode; } }
  1355. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = __this->____authorizationCode_10;
  1356. return L_0;
  1357. }
  1358. }
  1359. // System.String AppleAuth.Native.AppleIDCredential::get_State()
  1360. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppleIDCredential_get_State_m84B3905825D39FD46B45AF489FA8163247C74278 (AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75* __this, const RuntimeMethod* method)
  1361. {
  1362. {
  1363. // public string State { get { return this._state; } }
  1364. String_t* L_0 = __this->____state_2;
  1365. return L_0;
  1366. }
  1367. }
  1368. // System.String AppleAuth.Native.AppleIDCredential::get_User()
  1369. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppleIDCredential_get_User_m981CFCEE8723C5A25E0C1F4DA3289D9831EA57F5 (AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75* __this, const RuntimeMethod* method)
  1370. {
  1371. {
  1372. // public string User { get { return this._user; } }
  1373. String_t* L_0 = __this->____user_3;
  1374. return L_0;
  1375. }
  1376. }
  1377. // System.String[] AppleAuth.Native.AppleIDCredential::get_AuthorizedScopes()
  1378. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* AppleIDCredential_get_AuthorizedScopes_m1FC899AEECADDD9871C8622C6F08E73E812C9D92 (AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75* __this, const RuntimeMethod* method)
  1379. {
  1380. {
  1381. // public string[] AuthorizedScopes { get { return this._authorizedScopes; } }
  1382. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->____authorizedScopes_4;
  1383. return L_0;
  1384. }
  1385. }
  1386. // AppleAuth.Interfaces.IPersonName AppleAuth.Native.AppleIDCredential::get_FullName()
  1387. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AppleIDCredential_get_FullName_mFD2563DD49DE8936E5F71447BA75E5D1836402D8 (AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75* __this, const RuntimeMethod* method)
  1388. {
  1389. {
  1390. // public IPersonName FullName { get { return this._fullName; } }
  1391. FullPersonName_t0454AAAB2D27D3182F2AB37B3F6B49BD94B6E9E8* L_0 = __this->____fullName_6;
  1392. return L_0;
  1393. }
  1394. }
  1395. // System.String AppleAuth.Native.AppleIDCredential::get_Email()
  1396. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppleIDCredential_get_Email_m714C9A646F5DFE85592A0E4A9FD3E68689685ABE (AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75* __this, const RuntimeMethod* method)
  1397. {
  1398. {
  1399. // public string Email { get { return this._email; } }
  1400. String_t* L_0 = __this->____email_7;
  1401. return L_0;
  1402. }
  1403. }
  1404. // AppleAuth.Enums.RealUserStatus AppleAuth.Native.AppleIDCredential::get_RealUserStatus()
  1405. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AppleIDCredential_get_RealUserStatus_mE69FF5EC598FB13CF28741DC57528CC2FFB9CF9E (AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75* __this, const RuntimeMethod* method)
  1406. {
  1407. {
  1408. // public RealUserStatus RealUserStatus { get { return (RealUserStatus) this._realUserStatus; } }
  1409. int32_t L_0 = __this->____realUserStatus_8;
  1410. return (int32_t)(L_0);
  1411. }
  1412. }
  1413. // System.Void AppleAuth.Native.AppleIDCredential::OnBeforeSerialize()
  1414. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleIDCredential_OnBeforeSerialize_m131D67351E1C50C5B86C9DF5524BDDDE44AA0E61 (AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75* __this, const RuntimeMethod* method)
  1415. {
  1416. {
  1417. // public void OnBeforeSerialize() { }
  1418. return;
  1419. }
  1420. }
  1421. // System.Void AppleAuth.Native.AppleIDCredential::OnAfterDeserialize()
  1422. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleIDCredential_OnAfterDeserialize_mB5366B49FF04AF0671E94C27ED9A3715EEB295C9 (AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75* __this, const RuntimeMethod* method)
  1423. {
  1424. static bool s_Il2CppMethodInitialized;
  1425. if (!s_Il2CppMethodInitialized)
  1426. {
  1427. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SerializationTools_FixSerializationForArray_TisString_t_m57606979A1ED7546D7B023E5757A3AA080909A67_RuntimeMethod_var);
  1428. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SerializationTools_FixSerializationForObject_TisFullPersonName_t0454AAAB2D27D3182F2AB37B3F6B49BD94B6E9E8_mABB550706F6C9991A33950DCD86264475417AF55_RuntimeMethod_var);
  1429. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B31B12774EADD6A7DE8A6382F262DAD80E785C9);
  1430. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA3990537E355E81C23A6B8320705118BC1046ED);
  1431. s_Il2CppMethodInitialized = true;
  1432. }
  1433. {
  1434. // SerializationTools.FixSerializationForString(ref this._base64IdentityToken);
  1435. String_t** L_0 = (&__this->____base64IdentityToken_0);
  1436. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_0, NULL);
  1437. // SerializationTools.FixSerializationForString(ref this._base64AuthorizationCode);
  1438. String_t** L_1 = (&__this->____base64AuthorizationCode_1);
  1439. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_1, NULL);
  1440. // SerializationTools.FixSerializationForString(ref this._state);
  1441. String_t** L_2 = (&__this->____state_2);
  1442. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_2, NULL);
  1443. // SerializationTools.FixSerializationForString(ref this._user);
  1444. String_t** L_3 = (&__this->____user_3);
  1445. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_3, NULL);
  1446. // SerializationTools.FixSerializationForString(ref this._email);
  1447. String_t** L_4 = (&__this->____email_7);
  1448. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_4, NULL);
  1449. // SerializationTools.FixSerializationForArray(ref this._authorizedScopes);
  1450. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** L_5 = (&__this->____authorizedScopes_4);
  1451. SerializationTools_FixSerializationForArray_TisString_t_m57606979A1ED7546D7B023E5757A3AA080909A67(L_5, SerializationTools_FixSerializationForArray_TisString_t_m57606979A1ED7546D7B023E5757A3AA080909A67_RuntimeMethod_var);
  1452. // SerializationTools.FixSerializationForObject(ref this._fullName, this._hasFullName);
  1453. FullPersonName_t0454AAAB2D27D3182F2AB37B3F6B49BD94B6E9E8** L_6 = (&__this->____fullName_6);
  1454. bool L_7 = __this->____hasFullName_5;
  1455. SerializationTools_FixSerializationForObject_TisFullPersonName_t0454AAAB2D27D3182F2AB37B3F6B49BD94B6E9E8_mABB550706F6C9991A33950DCD86264475417AF55(L_6, L_7, SerializationTools_FixSerializationForObject_TisFullPersonName_t0454AAAB2D27D3182F2AB37B3F6B49BD94B6E9E8_mABB550706F6C9991A33950DCD86264475417AF55_RuntimeMethod_var);
  1456. // this._identityToken = SerializationTools.GetBytesFromBase64String(this._base64IdentityToken, "_identityToken");
  1457. String_t* L_8 = __this->____base64IdentityToken_0;
  1458. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9;
  1459. L_9 = SerializationTools_GetBytesFromBase64String_m4C24E80BE8646637F981906DDC1DC001C4785D9F(L_8, _stringLiteralDA3990537E355E81C23A6B8320705118BC1046ED, NULL);
  1460. __this->____identityToken_9 = L_9;
  1461. Il2CppCodeGenWriteBarrier((void**)(&__this->____identityToken_9), (void*)L_9);
  1462. // this._authorizationCode = SerializationTools.GetBytesFromBase64String(this._base64AuthorizationCode, "_authorizationCode");
  1463. String_t* L_10 = __this->____base64AuthorizationCode_1;
  1464. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11;
  1465. L_11 = SerializationTools_GetBytesFromBase64String_m4C24E80BE8646637F981906DDC1DC001C4785D9F(L_10, _stringLiteral4B31B12774EADD6A7DE8A6382F262DAD80E785C9, NULL);
  1466. __this->____authorizationCode_10 = L_11;
  1467. Il2CppCodeGenWriteBarrier((void**)(&__this->____authorizationCode_10), (void*)L_11);
  1468. // }
  1469. return;
  1470. }
  1471. }
  1472. // System.Void AppleAuth.Native.AppleIDCredential::.ctor()
  1473. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppleIDCredential__ctor_m51A44FA1D980EC9AF22D63D6072DB75A6FA01C63 (AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75* __this, const RuntimeMethod* method)
  1474. {
  1475. {
  1476. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  1477. return;
  1478. }
  1479. }
  1480. #ifdef __clang__
  1481. #pragma clang diagnostic pop
  1482. #endif
  1483. #ifdef __clang__
  1484. #pragma clang diagnostic push
  1485. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1486. #pragma clang diagnostic ignored "-Wunused-variable"
  1487. #endif
  1488. // System.Boolean AppleAuth.Native.CredentialStateResponse::get_Success()
  1489. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CredentialStateResponse_get_Success_m2AE6E6E1D34B0114F4C52C039174DDF9AFA6BC4D (CredentialStateResponse_t168DFACCC4FBA9919D9EBF9314CFC5652199EB27* __this, const RuntimeMethod* method)
  1490. {
  1491. {
  1492. // public bool Success { get { return this._success; } }
  1493. bool L_0 = __this->____success_0;
  1494. return L_0;
  1495. }
  1496. }
  1497. // AppleAuth.Enums.CredentialState AppleAuth.Native.CredentialStateResponse::get_CredentialState()
  1498. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CredentialStateResponse_get_CredentialState_m65D7E15BA3EC5C3A7F367597A050193DD4209797 (CredentialStateResponse_t168DFACCC4FBA9919D9EBF9314CFC5652199EB27* __this, const RuntimeMethod* method)
  1499. {
  1500. {
  1501. // public CredentialState CredentialState { get { return (CredentialState) this._credentialState; } }
  1502. int32_t L_0 = __this->____credentialState_3;
  1503. return (int32_t)(L_0);
  1504. }
  1505. }
  1506. // AppleAuth.Interfaces.IAppleError AppleAuth.Native.CredentialStateResponse::get_Error()
  1507. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CredentialStateResponse_get_Error_m57C00B45E8F57B0BE47A95942C096E33EE75E13C (CredentialStateResponse_t168DFACCC4FBA9919D9EBF9314CFC5652199EB27* __this, const RuntimeMethod* method)
  1508. {
  1509. {
  1510. // public IAppleError Error { get { return this._error; } }
  1511. AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA* L_0 = __this->____error_4;
  1512. return L_0;
  1513. }
  1514. }
  1515. // System.Void AppleAuth.Native.CredentialStateResponse::OnBeforeSerialize()
  1516. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CredentialStateResponse_OnBeforeSerialize_mAC5BB42DE4654E67E38843519A7DC253F50850B5 (CredentialStateResponse_t168DFACCC4FBA9919D9EBF9314CFC5652199EB27* __this, const RuntimeMethod* method)
  1517. {
  1518. {
  1519. // public void OnBeforeSerialize() { }
  1520. return;
  1521. }
  1522. }
  1523. // System.Void AppleAuth.Native.CredentialStateResponse::OnAfterDeserialize()
  1524. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CredentialStateResponse_OnAfterDeserialize_mFB21B4973EF797A938B387C7055C5929051AEE60 (CredentialStateResponse_t168DFACCC4FBA9919D9EBF9314CFC5652199EB27* __this, const RuntimeMethod* method)
  1525. {
  1526. static bool s_Il2CppMethodInitialized;
  1527. if (!s_Il2CppMethodInitialized)
  1528. {
  1529. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SerializationTools_FixSerializationForObject_TisAppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA_m573E3F0F3F5A75C7D43F1273173F4662000CDE3E_RuntimeMethod_var);
  1530. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SerializationTools_FixSerializationForObject_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1DA694AEF2B22DFB0D3891C37C07E8D71822A932_RuntimeMethod_var);
  1531. s_Il2CppMethodInitialized = true;
  1532. }
  1533. {
  1534. // SerializationTools.FixSerializationForObject(ref this._credentialState, this._hasCredentialState);
  1535. int32_t* L_0 = (&__this->____credentialState_3);
  1536. bool L_1 = __this->____hasCredentialState_1;
  1537. SerializationTools_FixSerializationForObject_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1DA694AEF2B22DFB0D3891C37C07E8D71822A932(L_0, L_1, SerializationTools_FixSerializationForObject_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m1DA694AEF2B22DFB0D3891C37C07E8D71822A932_RuntimeMethod_var);
  1538. // SerializationTools.FixSerializationForObject(ref this._error, this._hasError);
  1539. AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA** L_2 = (&__this->____error_4);
  1540. bool L_3 = __this->____hasError_2;
  1541. SerializationTools_FixSerializationForObject_TisAppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA_m573E3F0F3F5A75C7D43F1273173F4662000CDE3E(L_2, L_3, SerializationTools_FixSerializationForObject_TisAppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA_m573E3F0F3F5A75C7D43F1273173F4662000CDE3E_RuntimeMethod_var);
  1542. // }
  1543. return;
  1544. }
  1545. }
  1546. // System.Void AppleAuth.Native.CredentialStateResponse::.ctor()
  1547. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CredentialStateResponse__ctor_mD9EDB0D8782201A4B143772B6FE1140C1A20A6B3 (CredentialStateResponse_t168DFACCC4FBA9919D9EBF9314CFC5652199EB27* __this, const RuntimeMethod* method)
  1548. {
  1549. {
  1550. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  1551. return;
  1552. }
  1553. }
  1554. #ifdef __clang__
  1555. #pragma clang diagnostic pop
  1556. #endif
  1557. #ifdef __clang__
  1558. #pragma clang diagnostic push
  1559. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1560. #pragma clang diagnostic ignored "-Wunused-variable"
  1561. #endif
  1562. // AppleAuth.Interfaces.IPersonName AppleAuth.Native.FullPersonName::get_PhoneticRepresentation()
  1563. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* FullPersonName_get_PhoneticRepresentation_m4C047353D1B6B779000A36AD5A9E95112FB4B78D (FullPersonName_t0454AAAB2D27D3182F2AB37B3F6B49BD94B6E9E8* __this, const RuntimeMethod* method)
  1564. {
  1565. {
  1566. // public new IPersonName PhoneticRepresentation { get { return _phoneticRepresentation; } }
  1567. PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78* L_0 = __this->____phoneticRepresentation_7;
  1568. return L_0;
  1569. }
  1570. }
  1571. // System.Void AppleAuth.Native.FullPersonName::OnAfterDeserialize()
  1572. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FullPersonName_OnAfterDeserialize_mD8D3FA785A18B097DA24A5346927BCE5891E2726 (FullPersonName_t0454AAAB2D27D3182F2AB37B3F6B49BD94B6E9E8* __this, const RuntimeMethod* method)
  1573. {
  1574. static bool s_Il2CppMethodInitialized;
  1575. if (!s_Il2CppMethodInitialized)
  1576. {
  1577. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SerializationTools_FixSerializationForObject_TisPersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78_m46785A42311D7DBCC23278C437B7EA2C9CA5F5CD_RuntimeMethod_var);
  1578. s_Il2CppMethodInitialized = true;
  1579. }
  1580. {
  1581. // base.OnAfterDeserialize();
  1582. PersonName_OnAfterDeserialize_m62A1515986426365B43F5A7BF5B7FB130EDA0D6E(__this, NULL);
  1583. // SerializationTools.FixSerializationForObject(ref this._phoneticRepresentation, this._hasPhoneticRepresentation);
  1584. PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78** L_0 = (&__this->____phoneticRepresentation_7);
  1585. bool L_1 = __this->____hasPhoneticRepresentation_6;
  1586. SerializationTools_FixSerializationForObject_TisPersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78_m46785A42311D7DBCC23278C437B7EA2C9CA5F5CD(L_0, L_1, SerializationTools_FixSerializationForObject_TisPersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78_m46785A42311D7DBCC23278C437B7EA2C9CA5F5CD_RuntimeMethod_var);
  1587. // }
  1588. return;
  1589. }
  1590. }
  1591. // System.Void AppleAuth.Native.FullPersonName::.ctor()
  1592. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FullPersonName__ctor_m26740204D45973B681D9A56AAEA22BA07054781B (FullPersonName_t0454AAAB2D27D3182F2AB37B3F6B49BD94B6E9E8* __this, const RuntimeMethod* method)
  1593. {
  1594. {
  1595. PersonName__ctor_m0F0E4933C32F156BAA3F4DB66D4BE72313F76C55(__this, NULL);
  1596. return;
  1597. }
  1598. }
  1599. #ifdef __clang__
  1600. #pragma clang diagnostic pop
  1601. #endif
  1602. #ifdef __clang__
  1603. #pragma clang diagnostic push
  1604. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1605. #pragma clang diagnostic ignored "-Wunused-variable"
  1606. #endif
  1607. // System.Boolean AppleAuth.Native.LoginWithAppleIdResponse::get_Success()
  1608. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LoginWithAppleIdResponse_get_Success_mE6C377A510A993911F409C936A65584C9049779C (LoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F* __this, const RuntimeMethod* method)
  1609. {
  1610. {
  1611. // public bool Success { get { return this._success; } }
  1612. bool L_0 = __this->____success_0;
  1613. return L_0;
  1614. }
  1615. }
  1616. // AppleAuth.Interfaces.IAppleError AppleAuth.Native.LoginWithAppleIdResponse::get_Error()
  1617. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LoginWithAppleIdResponse_get_Error_mCCC27C3D0F46A1D52F2CE2D969005696E8E5AE76 (LoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F* __this, const RuntimeMethod* method)
  1618. {
  1619. {
  1620. // public IAppleError Error { get { return this._error; } }
  1621. AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA* L_0 = __this->____error_6;
  1622. return L_0;
  1623. }
  1624. }
  1625. // AppleAuth.Interfaces.IAppleIDCredential AppleAuth.Native.LoginWithAppleIdResponse::get_AppleIDCredential()
  1626. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LoginWithAppleIdResponse_get_AppleIDCredential_m8621F583B1DC2542599CD2C3A666A478660B2366 (LoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F* __this, const RuntimeMethod* method)
  1627. {
  1628. {
  1629. // public IAppleIDCredential AppleIDCredential { get { return this._appleIdCredential; } }
  1630. AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75* L_0 = __this->____appleIdCredential_4;
  1631. return L_0;
  1632. }
  1633. }
  1634. // AppleAuth.Interfaces.IPasswordCredential AppleAuth.Native.LoginWithAppleIdResponse::get_PasswordCredential()
  1635. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LoginWithAppleIdResponse_get_PasswordCredential_mF712CF23994A66D33B5AE81DE4DB37BFE0900DD0 (LoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F* __this, const RuntimeMethod* method)
  1636. {
  1637. {
  1638. // public IPasswordCredential PasswordCredential { get { return this._passwordCredential; } }
  1639. PasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1* L_0 = __this->____passwordCredential_5;
  1640. return L_0;
  1641. }
  1642. }
  1643. // System.Void AppleAuth.Native.LoginWithAppleIdResponse::OnBeforeSerialize()
  1644. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LoginWithAppleIdResponse_OnBeforeSerialize_m7921D7B73269C8D01C61CD21A99F2D25E2A768D3 (LoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F* __this, const RuntimeMethod* method)
  1645. {
  1646. {
  1647. // public void OnBeforeSerialize() { }
  1648. return;
  1649. }
  1650. }
  1651. // System.Void AppleAuth.Native.LoginWithAppleIdResponse::OnAfterDeserialize()
  1652. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LoginWithAppleIdResponse_OnAfterDeserialize_m5F4392761E520B362F204ADAA71470944CCB7226 (LoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F* __this, const RuntimeMethod* method)
  1653. {
  1654. static bool s_Il2CppMethodInitialized;
  1655. if (!s_Il2CppMethodInitialized)
  1656. {
  1657. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SerializationTools_FixSerializationForObject_TisAppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA_m573E3F0F3F5A75C7D43F1273173F4662000CDE3E_RuntimeMethod_var);
  1658. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SerializationTools_FixSerializationForObject_TisAppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75_m7BB1F4ADA60F4A3962B8BAC814E36A1663B85138_RuntimeMethod_var);
  1659. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SerializationTools_FixSerializationForObject_TisPasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1_m4953F1B78CB811CB2E64DC3D05AA28377D751BC8_RuntimeMethod_var);
  1660. s_Il2CppMethodInitialized = true;
  1661. }
  1662. {
  1663. // SerializationTools.FixSerializationForObject(ref this._error, this._hasError);
  1664. AppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA** L_0 = (&__this->____error_6);
  1665. bool L_1 = __this->____hasError_3;
  1666. SerializationTools_FixSerializationForObject_TisAppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA_m573E3F0F3F5A75C7D43F1273173F4662000CDE3E(L_0, L_1, SerializationTools_FixSerializationForObject_TisAppleError_t1DB8D1CB5586B26914C6ADC9E708F907A4192CEA_m573E3F0F3F5A75C7D43F1273173F4662000CDE3E_RuntimeMethod_var);
  1667. // SerializationTools.FixSerializationForObject(ref this._appleIdCredential, this._hasAppleIdCredential);
  1668. AppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75** L_2 = (&__this->____appleIdCredential_4);
  1669. bool L_3 = __this->____hasAppleIdCredential_1;
  1670. SerializationTools_FixSerializationForObject_TisAppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75_m7BB1F4ADA60F4A3962B8BAC814E36A1663B85138(L_2, L_3, SerializationTools_FixSerializationForObject_TisAppleIDCredential_tD23942C97513881D942DFF29A29F55D0B4EA8A75_m7BB1F4ADA60F4A3962B8BAC814E36A1663B85138_RuntimeMethod_var);
  1671. // SerializationTools.FixSerializationForObject(ref this._passwordCredential, this._hasPasswordCredential);
  1672. PasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1** L_4 = (&__this->____passwordCredential_5);
  1673. bool L_5 = __this->____hasPasswordCredential_2;
  1674. SerializationTools_FixSerializationForObject_TisPasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1_m4953F1B78CB811CB2E64DC3D05AA28377D751BC8(L_4, L_5, SerializationTools_FixSerializationForObject_TisPasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1_m4953F1B78CB811CB2E64DC3D05AA28377D751BC8_RuntimeMethod_var);
  1675. // }
  1676. return;
  1677. }
  1678. }
  1679. // System.Void AppleAuth.Native.LoginWithAppleIdResponse::.ctor()
  1680. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LoginWithAppleIdResponse__ctor_m559AF38D99EA5F01245B730C66C0C575A7D1DFA5 (LoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F* __this, const RuntimeMethod* method)
  1681. {
  1682. {
  1683. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  1684. return;
  1685. }
  1686. }
  1687. #ifdef __clang__
  1688. #pragma clang diagnostic pop
  1689. #endif
  1690. #ifdef __clang__
  1691. #pragma clang diagnostic push
  1692. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1693. #pragma clang diagnostic ignored "-Wunused-variable"
  1694. #endif
  1695. // System.String AppleAuth.Native.PasswordCredential::get_User()
  1696. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PasswordCredential_get_User_m14F3321F1778473BAD88C092D9DB7E4E6EBA2BFE (PasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1* __this, const RuntimeMethod* method)
  1697. {
  1698. {
  1699. // public string User { get { return this._user; } }
  1700. String_t* L_0 = __this->____user_0;
  1701. return L_0;
  1702. }
  1703. }
  1704. // System.String AppleAuth.Native.PasswordCredential::get_Password()
  1705. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PasswordCredential_get_Password_m550FE9C9FFC658487D37E4CCBC81646AAA0B6971 (PasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1* __this, const RuntimeMethod* method)
  1706. {
  1707. {
  1708. // public string Password { get { return this._password; } }
  1709. String_t* L_0 = __this->____password_1;
  1710. return L_0;
  1711. }
  1712. }
  1713. // System.Void AppleAuth.Native.PasswordCredential::OnBeforeSerialize()
  1714. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PasswordCredential_OnBeforeSerialize_m4BFB71F9E84B9BF858BD2B79B725972821DFE288 (PasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1* __this, const RuntimeMethod* method)
  1715. {
  1716. {
  1717. // public void OnBeforeSerialize() { }
  1718. return;
  1719. }
  1720. }
  1721. // System.Void AppleAuth.Native.PasswordCredential::OnAfterDeserialize()
  1722. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PasswordCredential_OnAfterDeserialize_m16D32A34A6F6046F6333F7BB5F69193B37D0F2F5 (PasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1* __this, const RuntimeMethod* method)
  1723. {
  1724. {
  1725. // SerializationTools.FixSerializationForString(ref this._user);
  1726. String_t** L_0 = (&__this->____user_0);
  1727. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_0, NULL);
  1728. // SerializationTools.FixSerializationForString(ref this._password);
  1729. String_t** L_1 = (&__this->____password_1);
  1730. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_1, NULL);
  1731. // }
  1732. return;
  1733. }
  1734. }
  1735. // System.Void AppleAuth.Native.PasswordCredential::.ctor()
  1736. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PasswordCredential__ctor_m752B85E2013BE8BDA5F98F2E2BFF18BDFBF7676D (PasswordCredential_t63B67EAA715B6511D38EBF1B1440016648B450C1* __this, const RuntimeMethod* method)
  1737. {
  1738. {
  1739. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  1740. return;
  1741. }
  1742. }
  1743. #ifdef __clang__
  1744. #pragma clang diagnostic pop
  1745. #endif
  1746. #ifdef __clang__
  1747. #pragma clang diagnostic push
  1748. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1749. #pragma clang diagnostic ignored "-Wunused-variable"
  1750. #endif
  1751. // AppleAuth.Interfaces.ICredentialStateResponse AppleAuth.Native.PayloadDeserializer::DeserializeCredentialStateResponse(System.String)
  1752. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PayloadDeserializer_DeserializeCredentialStateResponse_mD711A60594EEB3B4A2B82769E58C745CC50FD516 (PayloadDeserializer_tB856F635041B5A76FCF832A0A329EABD65C3BD07* __this, String_t* ___0_payload, const RuntimeMethod* method)
  1753. {
  1754. static bool s_Il2CppMethodInitialized;
  1755. if (!s_Il2CppMethodInitialized)
  1756. {
  1757. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonUtility_FromJson_TisCredentialStateResponse_t168DFACCC4FBA9919D9EBF9314CFC5652199EB27_mFFC31E6199B5FD55E8D74129CF9DF94F71984BCD_RuntimeMethod_var);
  1758. s_Il2CppMethodInitialized = true;
  1759. }
  1760. {
  1761. // return JsonUtility.FromJson<CredentialStateResponse>(payload);
  1762. String_t* L_0 = ___0_payload;
  1763. CredentialStateResponse_t168DFACCC4FBA9919D9EBF9314CFC5652199EB27* L_1;
  1764. L_1 = JsonUtility_FromJson_TisCredentialStateResponse_t168DFACCC4FBA9919D9EBF9314CFC5652199EB27_mFFC31E6199B5FD55E8D74129CF9DF94F71984BCD(L_0, JsonUtility_FromJson_TisCredentialStateResponse_t168DFACCC4FBA9919D9EBF9314CFC5652199EB27_mFFC31E6199B5FD55E8D74129CF9DF94F71984BCD_RuntimeMethod_var);
  1765. return L_1;
  1766. }
  1767. }
  1768. // AppleAuth.Interfaces.ILoginWithAppleIdResponse AppleAuth.Native.PayloadDeserializer::DeserializeLoginWithAppleIdResponse(System.String)
  1769. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PayloadDeserializer_DeserializeLoginWithAppleIdResponse_mDD6FE763342C1ADB26C95A9F07ECE906FD33D22A (PayloadDeserializer_tB856F635041B5A76FCF832A0A329EABD65C3BD07* __this, String_t* ___0_payload, const RuntimeMethod* method)
  1770. {
  1771. static bool s_Il2CppMethodInitialized;
  1772. if (!s_Il2CppMethodInitialized)
  1773. {
  1774. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JsonUtility_FromJson_TisLoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F_m2A9E23518A15B0370E1D4EED22057138CE4EC82E_RuntimeMethod_var);
  1775. s_Il2CppMethodInitialized = true;
  1776. }
  1777. {
  1778. // return JsonUtility.FromJson<LoginWithAppleIdResponse>(payload);
  1779. String_t* L_0 = ___0_payload;
  1780. LoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F* L_1;
  1781. L_1 = JsonUtility_FromJson_TisLoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F_m2A9E23518A15B0370E1D4EED22057138CE4EC82E(L_0, JsonUtility_FromJson_TisLoginWithAppleIdResponse_t6A4F5AC518D2615E97D6972C7A90F40A5A10447F_m2A9E23518A15B0370E1D4EED22057138CE4EC82E_RuntimeMethod_var);
  1782. return L_1;
  1783. }
  1784. }
  1785. // System.Void AppleAuth.Native.PayloadDeserializer::.ctor()
  1786. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PayloadDeserializer__ctor_mFBD229EF68EBE24EC32CA9609AA005AB90C65C42 (PayloadDeserializer_tB856F635041B5A76FCF832A0A329EABD65C3BD07* __this, const RuntimeMethod* method)
  1787. {
  1788. {
  1789. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  1790. return;
  1791. }
  1792. }
  1793. #ifdef __clang__
  1794. #pragma clang diagnostic pop
  1795. #endif
  1796. #ifdef __clang__
  1797. #pragma clang diagnostic push
  1798. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1799. #pragma clang diagnostic ignored "-Wunused-variable"
  1800. #endif
  1801. // System.String AppleAuth.Native.PersonName::get_NamePrefix()
  1802. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PersonName_get_NamePrefix_mD8E065B1341FE87F408B1A43AC98AB752EC37792 (PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78* __this, const RuntimeMethod* method)
  1803. {
  1804. {
  1805. // public string NamePrefix { get { return _namePrefix; } }
  1806. String_t* L_0 = __this->____namePrefix_0;
  1807. return L_0;
  1808. }
  1809. }
  1810. // System.String AppleAuth.Native.PersonName::get_GivenName()
  1811. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PersonName_get_GivenName_m0284F3BF19006384CE40D9F2584E9B898E3167BB (PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78* __this, const RuntimeMethod* method)
  1812. {
  1813. {
  1814. // public string GivenName { get { return _givenName; } }
  1815. String_t* L_0 = __this->____givenName_1;
  1816. return L_0;
  1817. }
  1818. }
  1819. // System.String AppleAuth.Native.PersonName::get_MiddleName()
  1820. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PersonName_get_MiddleName_mCFAC728FA738FF02EA1673A41528F15E771B0127 (PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78* __this, const RuntimeMethod* method)
  1821. {
  1822. {
  1823. // public string MiddleName { get { return _middleName; } }
  1824. String_t* L_0 = __this->____middleName_2;
  1825. return L_0;
  1826. }
  1827. }
  1828. // System.String AppleAuth.Native.PersonName::get_FamilyName()
  1829. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PersonName_get_FamilyName_mFF3940EE55E62FC22A6CFA6975BCCFF796D6BB26 (PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78* __this, const RuntimeMethod* method)
  1830. {
  1831. {
  1832. // public string FamilyName { get { return _familyName; } }
  1833. String_t* L_0 = __this->____familyName_3;
  1834. return L_0;
  1835. }
  1836. }
  1837. // System.String AppleAuth.Native.PersonName::get_NameSuffix()
  1838. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PersonName_get_NameSuffix_m28CC64A01463A58CF35EFC6A4CE6CFADCB2518E8 (PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78* __this, const RuntimeMethod* method)
  1839. {
  1840. {
  1841. // public string NameSuffix { get { return _nameSuffix; } }
  1842. String_t* L_0 = __this->____nameSuffix_4;
  1843. return L_0;
  1844. }
  1845. }
  1846. // System.String AppleAuth.Native.PersonName::get_Nickname()
  1847. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PersonName_get_Nickname_m678081BDCCFFD3DED731F9AB66F7FB350166B4C1 (PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78* __this, const RuntimeMethod* method)
  1848. {
  1849. {
  1850. // public string Nickname { get { return _nickname; } }
  1851. String_t* L_0 = __this->____nickname_5;
  1852. return L_0;
  1853. }
  1854. }
  1855. // AppleAuth.Interfaces.IPersonName AppleAuth.Native.PersonName::get_PhoneticRepresentation()
  1856. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PersonName_get_PhoneticRepresentation_m89AA341DA25ACEBFAA1E062842E646B1165A99DB (PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78* __this, const RuntimeMethod* method)
  1857. {
  1858. {
  1859. // public IPersonName PhoneticRepresentation { get { return null; } }
  1860. return (RuntimeObject*)NULL;
  1861. }
  1862. }
  1863. // System.Void AppleAuth.Native.PersonName::OnBeforeSerialize()
  1864. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PersonName_OnBeforeSerialize_m4D57A809AC62FE6817EB498247E4AEE5B8B0B510 (PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78* __this, const RuntimeMethod* method)
  1865. {
  1866. {
  1867. // public void OnBeforeSerialize() { }
  1868. return;
  1869. }
  1870. }
  1871. // System.Void AppleAuth.Native.PersonName::OnAfterDeserialize()
  1872. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PersonName_OnAfterDeserialize_m62A1515986426365B43F5A7BF5B7FB130EDA0D6E (PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78* __this, const RuntimeMethod* method)
  1873. {
  1874. {
  1875. // SerializationTools.FixSerializationForString(ref this._namePrefix);
  1876. String_t** L_0 = (&__this->____namePrefix_0);
  1877. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_0, NULL);
  1878. // SerializationTools.FixSerializationForString(ref this._givenName);
  1879. String_t** L_1 = (&__this->____givenName_1);
  1880. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_1, NULL);
  1881. // SerializationTools.FixSerializationForString(ref this._middleName);
  1882. String_t** L_2 = (&__this->____middleName_2);
  1883. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_2, NULL);
  1884. // SerializationTools.FixSerializationForString(ref this._familyName);
  1885. String_t** L_3 = (&__this->____familyName_3);
  1886. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_3, NULL);
  1887. // SerializationTools.FixSerializationForString(ref this._nameSuffix);
  1888. String_t** L_4 = (&__this->____nameSuffix_4);
  1889. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_4, NULL);
  1890. // SerializationTools.FixSerializationForString(ref this._nickname);
  1891. String_t** L_5 = (&__this->____nickname_5);
  1892. SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F(L_5, NULL);
  1893. // }
  1894. return;
  1895. }
  1896. }
  1897. // System.Void AppleAuth.Native.PersonName::.ctor()
  1898. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PersonName__ctor_m0F0E4933C32F156BAA3F4DB66D4BE72313F76C55 (PersonName_tC85CD1987B6BB8340FF6C66426BE3A97E7753D78* __this, const RuntimeMethod* method)
  1899. {
  1900. {
  1901. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  1902. return;
  1903. }
  1904. }
  1905. #ifdef __clang__
  1906. #pragma clang diagnostic pop
  1907. #endif
  1908. #ifdef __clang__
  1909. #pragma clang diagnostic push
  1910. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1911. #pragma clang diagnostic ignored "-Wunused-variable"
  1912. #endif
  1913. // System.Void AppleAuth.Native.SerializationTools::FixSerializationForString(System.String&)
  1914. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationTools_FixSerializationForString_mF3AF273F198E247A988066CBE929451830480D5F (String_t** ___0_originalString, const RuntimeMethod* method)
  1915. {
  1916. {
  1917. // if (string.IsNullOrEmpty(originalString))
  1918. String_t** L_0 = ___0_originalString;
  1919. String_t* L_1 = *((String_t**)L_0);
  1920. bool L_2;
  1921. L_2 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_1, NULL);
  1922. if (!L_2)
  1923. {
  1924. goto IL_000c;
  1925. }
  1926. }
  1927. {
  1928. // originalString = null;
  1929. String_t** L_3 = ___0_originalString;
  1930. *((RuntimeObject**)L_3) = (RuntimeObject*)NULL;
  1931. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_3, (void*)(RuntimeObject*)NULL);
  1932. }
  1933. IL_000c:
  1934. {
  1935. // }
  1936. return;
  1937. }
  1938. }
  1939. // System.Byte[] AppleAuth.Native.SerializationTools::GetBytesFromBase64String(System.String,System.String)
  1940. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* SerializationTools_GetBytesFromBase64String_m4C24E80BE8646637F981906DDC1DC001C4785D9F (String_t* ___0_base64String, String_t* ___1_fieldName, const RuntimeMethod* method)
  1941. {
  1942. static bool s_Il2CppMethodInitialized;
  1943. if (!s_Il2CppMethodInitialized)
  1944. {
  1945. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
  1946. s_Il2CppMethodInitialized = true;
  1947. }
  1948. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  1949. Exception_t* V_1 = NULL;
  1950. il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
  1951. Exception_t* G_B6_0 = NULL;
  1952. String_t* G_B6_1 = NULL;
  1953. Exception_t* G_B5_0 = NULL;
  1954. String_t* G_B5_1 = NULL;
  1955. String_t* G_B7_0 = NULL;
  1956. String_t* G_B7_1 = NULL;
  1957. {
  1958. // if (base64String == null)
  1959. String_t* L_0 = ___0_base64String;
  1960. if (L_0)
  1961. {
  1962. goto IL_0005;
  1963. }
  1964. }
  1965. {
  1966. // return null;
  1967. return (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
  1968. }
  1969. IL_0005:
  1970. {
  1971. // var returnedBytes = default(byte[]);
  1972. V_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
  1973. }
  1974. try
  1975. {// begin try (depth: 1)
  1976. // returnedBytes = Convert.FromBase64String(base64String);
  1977. String_t* L_1 = ___0_base64String;
  1978. il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
  1979. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2;
  1980. L_2 = Convert_FromBase64String_m267327B074B41D93C9622D142B95CFAA4ACCCA9C(L_1, NULL);
  1981. V_0 = L_2;
  1982. // }
  1983. goto IL_0041;
  1984. }// end try (depth: 1)
  1985. catch(Il2CppExceptionWrapper& e)
  1986. {
  1987. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  1988. {
  1989. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  1990. goto CATCH_0010;
  1991. }
  1992. throw e;
  1993. }
  1994. CATCH_0010:
  1995. {// begin catch(System.Exception)
  1996. {
  1997. // catch (Exception exception)
  1998. V_1 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
  1999. // Console.WriteLine("Received exception while deserializing byte array for " + fieldName);
  2000. String_t* L_3 = ___1_fieldName;
  2001. String_t* L_4;
  2002. L_4 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral66A865E28B2B5657FCF66691A6F7AC2B94FE50BA)), L_3, NULL);
  2003. il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Console_t5EDF9498D011BD48287171978EDBBA6964829C3E_il2cpp_TypeInfo_var)));
  2004. Console_WriteLine_m77CEDA0C084428F0D6220988DA66992EC1925AEA(L_4, NULL);
  2005. // Console.WriteLine("Exception: " + exception);
  2006. Exception_t* L_5 = V_1;
  2007. Exception_t* L_6 = L_5;
  2008. G_B5_0 = L_6;
  2009. G_B5_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA95898025CC11DF26437FBBC4B43CA5F697F5DB1));
  2010. if (L_6)
  2011. {
  2012. G_B6_0 = L_6;
  2013. G_B6_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA95898025CC11DF26437FBBC4B43CA5F697F5DB1));
  2014. goto IL_002e;
  2015. }
  2016. }
  2017. {
  2018. G_B7_0 = ((String_t*)(NULL));
  2019. G_B7_1 = G_B5_1;
  2020. goto IL_0033;
  2021. }
  2022. IL_002e:
  2023. {
  2024. NullCheck(G_B6_0);
  2025. String_t* L_7;
  2026. L_7 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B6_0);
  2027. G_B7_0 = L_7;
  2028. G_B7_1 = G_B6_1;
  2029. }
  2030. IL_0033:
  2031. {
  2032. String_t* L_8;
  2033. L_8 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(G_B7_1, G_B7_0, NULL);
  2034. il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Console_t5EDF9498D011BD48287171978EDBBA6964829C3E_il2cpp_TypeInfo_var)));
  2035. Console_WriteLine_m77CEDA0C084428F0D6220988DA66992EC1925AEA(L_8, NULL);
  2036. // returnedBytes = null;
  2037. V_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
  2038. // }
  2039. IL2CPP_POP_ACTIVE_EXCEPTION();
  2040. goto IL_0041;
  2041. }
  2042. }// end catch (depth: 1)
  2043. IL_0041:
  2044. {
  2045. // return returnedBytes;
  2046. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = V_0;
  2047. return L_9;
  2048. }
  2049. }
  2050. #ifdef __clang__
  2051. #pragma clang diagnostic pop
  2052. #endif
  2053. #ifdef __clang__
  2054. #pragma clang diagnostic push
  2055. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2056. #pragma clang diagnostic ignored "-Wunused-variable"
  2057. #endif
  2058. // AppleAuth.Enums.AuthorizationErrorCode AppleAuth.Extensions.AppleErrorExtensions::GetAuthorizationErrorCode(AppleAuth.Interfaces.IAppleError)
  2059. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AppleErrorExtensions_GetAuthorizationErrorCode_m2D356E9280D7A2C580B337A9CCC9B65E32746219 (RuntimeObject* ___0_error, const RuntimeMethod* method)
  2060. {
  2061. static bool s_Il2CppMethodInitialized;
  2062. if (!s_Il2CppMethodInitialized)
  2063. {
  2064. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AuthorizationErrorCode_t7DF2ED12266D6A7885C609086E1BFA7E359B4087_0_0_0_var);
  2065. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
  2066. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAppleError_tFE643037BCCCF4362368CEDC73AC94B90E1B5AC0_il2cpp_TypeInfo_var);
  2067. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
  2068. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
  2069. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCA0DA7AFA13D06380B286383F61CFD3BFBFDEB4B);
  2070. s_Il2CppMethodInitialized = true;
  2071. }
  2072. {
  2073. // if (error.Domain == "com.apple.AuthenticationServices.AuthorizationError" &&
  2074. // Enum.IsDefined(typeof(AuthorizationErrorCode), error.Code))
  2075. RuntimeObject* L_0 = ___0_error;
  2076. NullCheck(L_0);
  2077. String_t* L_1;
  2078. L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String AppleAuth.Interfaces.IAppleError::get_Domain() */, IAppleError_tFE643037BCCCF4362368CEDC73AC94B90E1B5AC0_il2cpp_TypeInfo_var, L_0);
  2079. bool L_2;
  2080. L_2 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_1, _stringLiteralCA0DA7AFA13D06380B286383F61CFD3BFBFDEB4B, NULL);
  2081. if (!L_2)
  2082. {
  2083. goto IL_0035;
  2084. }
  2085. }
  2086. {
  2087. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (AuthorizationErrorCode_t7DF2ED12266D6A7885C609086E1BFA7E359B4087_0_0_0_var) };
  2088. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  2089. Type_t* L_4;
  2090. L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
  2091. RuntimeObject* L_5 = ___0_error;
  2092. NullCheck(L_5);
  2093. int32_t L_6;
  2094. L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 AppleAuth.Interfaces.IAppleError::get_Code() */, IAppleError_tFE643037BCCCF4362368CEDC73AC94B90E1B5AC0_il2cpp_TypeInfo_var, L_5);
  2095. int32_t L_7 = L_6;
  2096. RuntimeObject* L_8 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_7);
  2097. il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
  2098. bool L_9;
  2099. L_9 = Enum_IsDefined_m1C9A0C4F54B0538351585FF563A01091A6FE2F28(L_4, L_8, NULL);
  2100. if (!L_9)
  2101. {
  2102. goto IL_0035;
  2103. }
  2104. }
  2105. {
  2106. // return (AuthorizationErrorCode)error.Code;
  2107. RuntimeObject* L_10 = ___0_error;
  2108. NullCheck(L_10);
  2109. int32_t L_11;
  2110. L_11 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 AppleAuth.Interfaces.IAppleError::get_Code() */, IAppleError_tFE643037BCCCF4362368CEDC73AC94B90E1B5AC0_il2cpp_TypeInfo_var, L_10);
  2111. return (int32_t)(L_11);
  2112. }
  2113. IL_0035:
  2114. {
  2115. // return AuthorizationErrorCode.Unknown;
  2116. return (int32_t)(((int32_t)1000));
  2117. }
  2118. }
  2119. #ifdef __clang__
  2120. #pragma clang diagnostic pop
  2121. #endif
  2122. #ifdef __clang__
  2123. #pragma clang diagnostic push
  2124. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2125. #pragma clang diagnostic ignored "-Wunused-variable"
  2126. #endif
  2127. // System.String AppleAuth.Extensions.PersonNameExtensions::ToLocalizedString(AppleAuth.Interfaces.IPersonName,AppleAuth.Enums.PersonNameFormatterStyle,System.Boolean)
  2128. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PersonNameExtensions_ToLocalizedString_mD357263F722B7C188313D67D6C54495393189E83 (RuntimeObject* ___0_personName, int32_t ___1_style, bool ___2_usePhoneticRepresentation, const RuntimeMethod* method)
  2129. {
  2130. static bool s_Il2CppMethodInitialized;
  2131. if (!s_Il2CppMethodInitialized)
  2132. {
  2133. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPersonName_tD95EE7AB5A8B25C9DC7D160FDAECDDA149AB5591_il2cpp_TypeInfo_var);
  2134. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2135. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A_RuntimeMethod_var);
  2136. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
  2137. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
  2138. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
  2139. s_Il2CppMethodInitialized = true;
  2140. }
  2141. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* V_0 = NULL;
  2142. {
  2143. // var orderedParts = new System.Collections.Generic.List<string>();
  2144. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_0 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
  2145. NullCheck(L_0);
  2146. List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_0, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
  2147. V_0 = L_0;
  2148. // if (string.IsNullOrEmpty(personName.NamePrefix))
  2149. RuntimeObject* L_1 = ___0_personName;
  2150. NullCheck(L_1);
  2151. String_t* L_2;
  2152. L_2 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String AppleAuth.Interfaces.IPersonName::get_NamePrefix() */, IPersonName_tD95EE7AB5A8B25C9DC7D160FDAECDDA149AB5591_il2cpp_TypeInfo_var, L_1);
  2153. bool L_3;
  2154. L_3 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_2, NULL);
  2155. if (!L_3)
  2156. {
  2157. goto IL_001f;
  2158. }
  2159. }
  2160. {
  2161. // orderedParts.Add(personName.NamePrefix);
  2162. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_4 = V_0;
  2163. RuntimeObject* L_5 = ___0_personName;
  2164. NullCheck(L_5);
  2165. String_t* L_6;
  2166. L_6 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String AppleAuth.Interfaces.IPersonName::get_NamePrefix() */, IPersonName_tD95EE7AB5A8B25C9DC7D160FDAECDDA149AB5591_il2cpp_TypeInfo_var, L_5);
  2167. NullCheck(L_4);
  2168. List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_4, L_6, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2169. }
  2170. IL_001f:
  2171. {
  2172. // if (string.IsNullOrEmpty(personName.GivenName))
  2173. RuntimeObject* L_7 = ___0_personName;
  2174. NullCheck(L_7);
  2175. String_t* L_8;
  2176. L_8 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String AppleAuth.Interfaces.IPersonName::get_GivenName() */, IPersonName_tD95EE7AB5A8B25C9DC7D160FDAECDDA149AB5591_il2cpp_TypeInfo_var, L_7);
  2177. bool L_9;
  2178. L_9 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_8, NULL);
  2179. if (!L_9)
  2180. {
  2181. goto IL_0038;
  2182. }
  2183. }
  2184. {
  2185. // orderedParts.Add(personName.GivenName);
  2186. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_10 = V_0;
  2187. RuntimeObject* L_11 = ___0_personName;
  2188. NullCheck(L_11);
  2189. String_t* L_12;
  2190. L_12 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String AppleAuth.Interfaces.IPersonName::get_GivenName() */, IPersonName_tD95EE7AB5A8B25C9DC7D160FDAECDDA149AB5591_il2cpp_TypeInfo_var, L_11);
  2191. NullCheck(L_10);
  2192. List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_10, L_12, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2193. }
  2194. IL_0038:
  2195. {
  2196. // if (string.IsNullOrEmpty(personName.MiddleName))
  2197. RuntimeObject* L_13 = ___0_personName;
  2198. NullCheck(L_13);
  2199. String_t* L_14;
  2200. L_14 = InterfaceFuncInvoker0< String_t* >::Invoke(2 /* System.String AppleAuth.Interfaces.IPersonName::get_MiddleName() */, IPersonName_tD95EE7AB5A8B25C9DC7D160FDAECDDA149AB5591_il2cpp_TypeInfo_var, L_13);
  2201. bool L_15;
  2202. L_15 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_14, NULL);
  2203. if (!L_15)
  2204. {
  2205. goto IL_0051;
  2206. }
  2207. }
  2208. {
  2209. // orderedParts.Add(personName.MiddleName);
  2210. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_16 = V_0;
  2211. RuntimeObject* L_17 = ___0_personName;
  2212. NullCheck(L_17);
  2213. String_t* L_18;
  2214. L_18 = InterfaceFuncInvoker0< String_t* >::Invoke(2 /* System.String AppleAuth.Interfaces.IPersonName::get_MiddleName() */, IPersonName_tD95EE7AB5A8B25C9DC7D160FDAECDDA149AB5591_il2cpp_TypeInfo_var, L_17);
  2215. NullCheck(L_16);
  2216. List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_16, L_18, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2217. }
  2218. IL_0051:
  2219. {
  2220. // if (string.IsNullOrEmpty(personName.FamilyName))
  2221. RuntimeObject* L_19 = ___0_personName;
  2222. NullCheck(L_19);
  2223. String_t* L_20;
  2224. L_20 = InterfaceFuncInvoker0< String_t* >::Invoke(3 /* System.String AppleAuth.Interfaces.IPersonName::get_FamilyName() */, IPersonName_tD95EE7AB5A8B25C9DC7D160FDAECDDA149AB5591_il2cpp_TypeInfo_var, L_19);
  2225. bool L_21;
  2226. L_21 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_20, NULL);
  2227. if (!L_21)
  2228. {
  2229. goto IL_006a;
  2230. }
  2231. }
  2232. {
  2233. // orderedParts.Add(personName.FamilyName);
  2234. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_22 = V_0;
  2235. RuntimeObject* L_23 = ___0_personName;
  2236. NullCheck(L_23);
  2237. String_t* L_24;
  2238. L_24 = InterfaceFuncInvoker0< String_t* >::Invoke(3 /* System.String AppleAuth.Interfaces.IPersonName::get_FamilyName() */, IPersonName_tD95EE7AB5A8B25C9DC7D160FDAECDDA149AB5591_il2cpp_TypeInfo_var, L_23);
  2239. NullCheck(L_22);
  2240. List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_22, L_24, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2241. }
  2242. IL_006a:
  2243. {
  2244. // if (string.IsNullOrEmpty(personName.NameSuffix))
  2245. RuntimeObject* L_25 = ___0_personName;
  2246. NullCheck(L_25);
  2247. String_t* L_26;
  2248. L_26 = InterfaceFuncInvoker0< String_t* >::Invoke(4 /* System.String AppleAuth.Interfaces.IPersonName::get_NameSuffix() */, IPersonName_tD95EE7AB5A8B25C9DC7D160FDAECDDA149AB5591_il2cpp_TypeInfo_var, L_25);
  2249. bool L_27;
  2250. L_27 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_26, NULL);
  2251. if (!L_27)
  2252. {
  2253. goto IL_0083;
  2254. }
  2255. }
  2256. {
  2257. // orderedParts.Add(personName.NameSuffix);
  2258. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_28 = V_0;
  2259. RuntimeObject* L_29 = ___0_personName;
  2260. NullCheck(L_29);
  2261. String_t* L_30;
  2262. L_30 = InterfaceFuncInvoker0< String_t* >::Invoke(4 /* System.String AppleAuth.Interfaces.IPersonName::get_NameSuffix() */, IPersonName_tD95EE7AB5A8B25C9DC7D160FDAECDDA149AB5591_il2cpp_TypeInfo_var, L_29);
  2263. NullCheck(L_28);
  2264. List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_28, L_30, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2265. }
  2266. IL_0083:
  2267. {
  2268. // return string.Join(" ", orderedParts.ToArray());
  2269. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_31 = V_0;
  2270. NullCheck(L_31);
  2271. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_32;
  2272. L_32 = List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A(L_31, List_1_ToArray_m2C402D882AA60FC1D5C7C09A129BE7779F833B4A_RuntimeMethod_var);
  2273. String_t* L_33;
  2274. L_33 = String_Join_m557B6B554B87C1742FA0B128500073B421ED0BFD(_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, L_32, NULL);
  2275. return L_33;
  2276. }
  2277. }
  2278. #ifdef __clang__
  2279. #pragma clang diagnostic pop
  2280. #endif
  2281. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
  2282. {
  2283. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
  2284. int32_t V_1 = 0;
  2285. {
  2286. int32_t L_0 = (int32_t)__this->____version_3;
  2287. __this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
  2288. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
  2289. V_0 = L_1;
  2290. int32_t L_2 = (int32_t)__this->____size_2;
  2291. V_1 = L_2;
  2292. int32_t L_3 = V_1;
  2293. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
  2294. NullCheck(L_4);
  2295. if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
  2296. {
  2297. goto IL_0034;
  2298. }
  2299. }
  2300. {
  2301. int32_t L_5 = V_1;
  2302. __this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
  2303. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
  2304. int32_t L_7 = V_1;
  2305. RuntimeObject* L_8 = ___0_item;
  2306. NullCheck(L_6);
  2307. (L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
  2308. return;
  2309. }
  2310. IL_0034:
  2311. {
  2312. RuntimeObject* L_9 = ___0_item;
  2313. (( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  2314. return;
  2315. }
  2316. }