Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373
  1. #include "pch-cpp.hpp"
  2. template <typename T1>
  3. struct VirtualActionInvoker1
  4. {
  5. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  6. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  7. {
  8. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  9. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  10. }
  11. };
  12. template <typename R>
  13. struct VirtualFuncInvoker0
  14. {
  15. typedef R (*Func)(void*, const RuntimeMethod*);
  16. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  17. {
  18. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  19. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  20. }
  21. };
  22. template <typename T1>
  23. struct GenericVirtualActionInvoker1
  24. {
  25. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  26. static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
  27. {
  28. VirtualInvokeData invokeData;
  29. il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
  30. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  31. }
  32. };
  33. struct InterfaceActionInvoker0
  34. {
  35. typedef void (*Action)(void*, const RuntimeMethod*);
  36. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  37. {
  38. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  39. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  40. }
  41. };
  42. template <typename T1>
  43. struct InterfaceActionInvoker1
  44. {
  45. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  46. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
  47. {
  48. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  49. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  50. }
  51. };
  52. template <typename T1>
  53. struct GenericInterfaceActionInvoker1
  54. {
  55. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  56. static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
  57. {
  58. VirtualInvokeData invokeData;
  59. il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
  60. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  61. }
  62. };
  63. struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588;
  64. struct List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3;
  65. struct List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C;
  66. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
  67. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  68. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
  69. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  70. struct IEnlistmentNotificationU5BU5D_t43C61449FC3AA7F3AC02A1E6FE315C31416357F4;
  71. struct ISinglePhaseNotificationU5BU5D_tBCC1EA9782E893D8F493B8983F1B686826558207;
  72. struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
  73. struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
  74. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  75. struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
  76. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
  77. struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
  78. struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A;
  79. struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
  80. struct Delegate_t;
  81. struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
  82. struct Enlistment_tDF858DEFBA405B6DF5EF4DC746A92C59DE007552;
  83. struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377;
  84. struct Exception_t;
  85. struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
  86. struct IEnlistmentNotification_tACB7F43A9D736E8B9F4045339E86D063B540EC66;
  87. struct IFormatterConverter_t726606DAC82C384B08C82471313C340968DDB609;
  88. struct IPromotableSinglePhaseNotification_t55FA5C677628E609C73561E23A834E464F5B1321;
  89. struct ISinglePhaseNotification_tA01F24695E100E9C38BC5009D1AFE7BF90296335;
  90. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
  91. struct MethodInfo_t;
  92. struct MonoTODOAttribute_t7B6AA25D7749BF3B05CEEAC921F8A2AC37A0A22B;
  93. struct NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8;
  94. struct PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A;
  95. struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
  96. struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37;
  97. struct SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C;
  98. struct String_t;
  99. struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295;
  100. struct Timer_t763C1D5F5A36087DC92C7DA4D1F8AB578F83AB00;
  101. struct Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD;
  102. struct TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB;
  103. struct TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82;
  104. struct TransactionException_t93E8D757BC2F2616DA953B8A714A645EBCE730AF;
  105. struct TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA;
  106. struct TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4;
  107. struct Type_t;
  108. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  109. struct AsyncCommit_t71DC723123EBA5C843539A11885B9B64FBA2FF0D;
  110. IL2CPP_EXTERN_C RuntimeClass* ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var;
  111. IL2CPP_EXTERN_C RuntimeClass* EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var;
  112. IL2CPP_EXTERN_C RuntimeClass* IEnlistmentNotification_tACB7F43A9D736E8B9F4045339E86D063B540EC66_il2cpp_TypeInfo_var;
  113. IL2CPP_EXTERN_C RuntimeClass* IPromotableSinglePhaseNotification_t55FA5C677628E609C73561E23A834E464F5B1321_il2cpp_TypeInfo_var;
  114. IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
  115. IL2CPP_EXTERN_C RuntimeClass* List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C_il2cpp_TypeInfo_var;
  116. IL2CPP_EXTERN_C RuntimeClass* List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3_il2cpp_TypeInfo_var;
  117. IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var;
  118. IL2CPP_EXTERN_C RuntimeClass* PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var;
  119. IL2CPP_EXTERN_C RuntimeClass* SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C_il2cpp_TypeInfo_var;
  120. IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var;
  121. IL2CPP_EXTERN_C RuntimeClass* TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB_il2cpp_TypeInfo_var;
  122. IL2CPP_EXTERN_C RuntimeClass* TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82_il2cpp_TypeInfo_var;
  123. IL2CPP_EXTERN_C RuntimeClass* TransactionException_t93E8D757BC2F2616DA953B8A714A645EBCE730AF_il2cpp_TypeInfo_var;
  124. IL2CPP_EXTERN_C RuntimeClass* TransactionInterop_t4A05E24408C479CE0CCCE5ECE08439418E156057_il2cpp_TypeInfo_var;
  125. IL2CPP_EXTERN_C RuntimeClass* TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_il2cpp_TypeInfo_var;
  126. IL2CPP_EXTERN_C RuntimeClass* TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD_il2cpp_TypeInfo_var;
  127. IL2CPP_EXTERN_C RuntimeClass* TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4_il2cpp_TypeInfo_var;
  128. IL2CPP_EXTERN_C RuntimeClass* Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_il2cpp_TypeInfo_var;
  129. IL2CPP_EXTERN_C String_t* _stringLiteral17286A6E9257F0C447A083F31044867307170E84;
  130. IL2CPP_EXTERN_C String_t* _stringLiteralB0FCBD1BB0D5DDFC7C1E4FBDBC8880AC0B13F325;
  131. IL2CPP_EXTERN_C String_t* _stringLiteralE450D74F5D2BAAB6C582160F56F824E1F2E7676D;
  132. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mDB1BBD5EEB58E2F4C09ED5E3A1840B1C4D60A1DB_RuntimeMethod_var;
  133. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mBD39361874346D0E2EE2AA7CE005113DE0A7312A_RuntimeMethod_var;
  134. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m58D3F44C5938CA7235526999C2B9C068517BF822_RuntimeMethod_var;
  135. IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mA6A172F9F86EADBD4F544B8289E71343B533E367_RuntimeMethod_var;
  136. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m461856AF5428B8A52C0CFBF61D88239241CC0D08_RuntimeMethod_var;
  137. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mC3B48F43E26A08BF2940C08CC90EFABB187D157F_RuntimeMethod_var;
  138. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m17E6803A26B094A16DC42F1F23438275606091C1_RuntimeMethod_var;
  139. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m81C246985A289579522B217404C0B8C99E5C0147_RuntimeMethod_var;
  140. IL2CPP_EXTERN_C const RuntimeMethod* ThrowStub_ThrowNotSupportedException_m53C3B333318540135E1FEA2D1ADAD8EC68844340_RuntimeMethod_var;
  141. IL2CPP_EXTERN_C const RuntimeMethod* TransactionInterop_GetExportCookie_m8515B8A490064A999F1D786807C46C472DE94777_RuntimeMethod_var;
  142. IL2CPP_EXTERN_C const RuntimeMethod* Transaction_EnlistPromotableSinglePhase_mCEA9608511D131D0F87515A4AC5DD6F8FDC16F9C_RuntimeMethod_var;
  143. IL2CPP_EXTERN_C const RuntimeMethod* Transaction_EnsureIncompleteCurrentScope_m50358C964D025F5EAF27CC2F0D24229E86BBA031_RuntimeMethod_var;
  144. IL2CPP_EXTERN_C const RuntimeMethod* Transaction_GetPromotedToken_m6FD2831952E0FEDC2EEBFEAA3E89E2D2722BA4DC_RuntimeMethod_var;
  145. IL2CPP_EXTERN_C const RuntimeMethod* Transaction_Rollback_m298E5E20A30D81EFD61CC338DF07E9E3BA82C28D_RuntimeMethod_var;
  146. IL2CPP_EXTERN_C const RuntimeMethod* Transaction_SetDistributedTransactionIdentifier_m83301003959A5011F8121268B0A6F937E18C6D4F_RuntimeMethod_var;
  147. IL2CPP_EXTERN_C const RuntimeMethod* Transaction_System_Runtime_Serialization_ISerializable_GetObjectData_mCD8C8392E3EE07D0A0D0AB5362E7659BC4A83AB5_RuntimeMethod_var;
  148. IL2CPP_EXTERN_C const RuntimeMethod* Transaction__ctor_mDF856DFDF7C245002C76F0B0E0AC7821B25E7ADC_RuntimeMethod_var;
  149. struct Delegate_t_marshaled_com;
  150. struct Delegate_t_marshaled_pinvoke;
  151. struct Exception_t_marshaled_com;
  152. struct Exception_t_marshaled_pinvoke;
  153. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  154. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  155. IL2CPP_EXTERN_C_BEGIN
  156. IL2CPP_EXTERN_C_END
  157. #ifdef __clang__
  158. #pragma clang diagnostic push
  159. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  160. #pragma clang diagnostic ignored "-Wunused-variable"
  161. #endif
  162. struct U3CModuleU3E_tC7572A22E8932A2696F3A78168D22324B896BC29
  163. {
  164. };
  165. struct List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3 : public RuntimeObject
  166. {
  167. IEnlistmentNotificationU5BU5D_t43C61449FC3AA7F3AC02A1E6FE315C31416357F4* ____items;
  168. int32_t ____size;
  169. int32_t ____version;
  170. RuntimeObject* ____syncRoot;
  171. };
  172. struct List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C : public RuntimeObject
  173. {
  174. ISinglePhaseNotificationU5BU5D_tBCC1EA9782E893D8F493B8983F1B686826558207* ____items;
  175. int32_t ____size;
  176. int32_t ____version;
  177. RuntimeObject* ____syncRoot;
  178. };
  179. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
  180. {
  181. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items;
  182. int32_t ____size;
  183. int32_t ____version;
  184. RuntimeObject* ____syncRoot;
  185. };
  186. struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A : public RuntimeObject
  187. {
  188. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items;
  189. int32_t ____size;
  190. int32_t ____version;
  191. RuntimeObject* ____syncRoot;
  192. };
  193. struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
  194. {
  195. };
  196. struct Enlistment_tDF858DEFBA405B6DF5EF4DC746A92C59DE007552 : public RuntimeObject
  197. {
  198. bool ___done;
  199. };
  200. struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 : public RuntimeObject
  201. {
  202. };
  203. struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37 : public RuntimeObject
  204. {
  205. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_members;
  206. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_data;
  207. TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___m_types;
  208. Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___m_nameToIndex;
  209. int32_t ___m_currMember;
  210. RuntimeObject* ___m_converter;
  211. String_t* ___m_fullTypeName;
  212. String_t* ___m_assemName;
  213. Type_t* ___objectType;
  214. bool ___isFullTypeNameSetExplicit;
  215. bool ___isAssemblyNameSetExplicit;
  216. bool ___requireSameTokenInPartialTrust;
  217. };
  218. struct String_t : public RuntimeObject
  219. {
  220. int32_t ____stringLength;
  221. Il2CppChar ____firstChar;
  222. };
  223. struct TransactionInterop_t4A05E24408C479CE0CCCE5ECE08439418E156057 : public RuntimeObject
  224. {
  225. };
  226. struct TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98 : public RuntimeObject
  227. {
  228. };
  229. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  230. {
  231. };
  232. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  233. {
  234. };
  235. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  236. {
  237. };
  238. struct Enumerator_t99B22733591FFD9FAE27C9EFDB0DE1D3BFC99040
  239. {
  240. List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3* ____list;
  241. int32_t ____index;
  242. int32_t ____version;
  243. RuntimeObject* ____current;
  244. };
  245. struct Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A
  246. {
  247. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ____list;
  248. int32_t ____index;
  249. int32_t ____version;
  250. RuntimeObject* ____current;
  251. };
  252. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  253. {
  254. bool ___m_value;
  255. };
  256. struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
  257. {
  258. uint8_t ___m_value;
  259. };
  260. struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D
  261. {
  262. uint64_t ____dateData;
  263. };
  264. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
  265. {
  266. };
  267. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
  268. {
  269. };
  270. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
  271. {
  272. };
  273. struct Guid_t
  274. {
  275. int32_t ____a;
  276. int16_t ____b;
  277. int16_t ____c;
  278. uint8_t ____d;
  279. uint8_t ____e;
  280. uint8_t ____f;
  281. uint8_t ____g;
  282. uint8_t ____h;
  283. uint8_t ____i;
  284. uint8_t ____j;
  285. uint8_t ____k;
  286. };
  287. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  288. {
  289. int32_t ___m_value;
  290. };
  291. struct IntPtr_t
  292. {
  293. void* ___m_value;
  294. };
  295. struct MonoTODOAttribute_t7B6AA25D7749BF3B05CEEAC921F8A2AC37A0A22B : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
  296. {
  297. };
  298. struct SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C : public Enlistment_tDF858DEFBA405B6DF5EF4DC746A92C59DE007552
  299. {
  300. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___tx;
  301. RuntimeObject* ___abortingEnlisted;
  302. };
  303. struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A
  304. {
  305. int64_t ____ticks;
  306. };
  307. struct TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82 : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377
  308. {
  309. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___transaction;
  310. };
  311. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  312. {
  313. union
  314. {
  315. struct
  316. {
  317. };
  318. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  319. };
  320. };
  321. struct Delegate_t : public RuntimeObject
  322. {
  323. intptr_t ___method_ptr;
  324. intptr_t ___invoke_impl;
  325. RuntimeObject* ___m_target;
  326. intptr_t ___method;
  327. intptr_t ___delegate_trampoline;
  328. intptr_t ___extra_arg;
  329. intptr_t ___method_code;
  330. intptr_t ___interp_method;
  331. intptr_t ___interp_invoke_impl;
  332. MethodInfo_t* ___method_info;
  333. MethodInfo_t* ___original_method_info;
  334. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  335. bool ___method_is_virtual;
  336. };
  337. struct Delegate_t_marshaled_pinvoke
  338. {
  339. intptr_t ___method_ptr;
  340. intptr_t ___invoke_impl;
  341. Il2CppIUnknown* ___m_target;
  342. intptr_t ___method;
  343. intptr_t ___delegate_trampoline;
  344. intptr_t ___extra_arg;
  345. intptr_t ___method_code;
  346. intptr_t ___interp_method;
  347. intptr_t ___interp_invoke_impl;
  348. MethodInfo_t* ___method_info;
  349. MethodInfo_t* ___original_method_info;
  350. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  351. int32_t ___method_is_virtual;
  352. };
  353. struct Delegate_t_marshaled_com
  354. {
  355. intptr_t ___method_ptr;
  356. intptr_t ___invoke_impl;
  357. Il2CppIUnknown* ___m_target;
  358. intptr_t ___method;
  359. intptr_t ___delegate_trampoline;
  360. intptr_t ___extra_arg;
  361. intptr_t ___method_code;
  362. intptr_t ___interp_method;
  363. intptr_t ___interp_invoke_impl;
  364. MethodInfo_t* ___method_info;
  365. MethodInfo_t* ___original_method_info;
  366. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  367. int32_t ___method_is_virtual;
  368. };
  369. struct Exception_t : public RuntimeObject
  370. {
  371. String_t* ____className;
  372. String_t* ____message;
  373. RuntimeObject* ____data;
  374. Exception_t* ____innerException;
  375. String_t* ____helpURL;
  376. RuntimeObject* ____stackTrace;
  377. String_t* ____stackTraceString;
  378. String_t* ____remoteStackTraceString;
  379. int32_t ____remoteStackIndex;
  380. RuntimeObject* ____dynamicMethods;
  381. int32_t ____HResult;
  382. String_t* ____source;
  383. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  384. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  385. IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
  386. int32_t ___caught_in_unmanaged;
  387. };
  388. struct Exception_t_marshaled_pinvoke
  389. {
  390. char* ____className;
  391. char* ____message;
  392. RuntimeObject* ____data;
  393. Exception_t_marshaled_pinvoke* ____innerException;
  394. char* ____helpURL;
  395. Il2CppIUnknown* ____stackTrace;
  396. char* ____stackTraceString;
  397. char* ____remoteStackTraceString;
  398. int32_t ____remoteStackIndex;
  399. Il2CppIUnknown* ____dynamicMethods;
  400. int32_t ____HResult;
  401. char* ____source;
  402. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  403. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  404. Il2CppSafeArray* ___native_trace_ips;
  405. int32_t ___caught_in_unmanaged;
  406. };
  407. struct Exception_t_marshaled_com
  408. {
  409. Il2CppChar* ____className;
  410. Il2CppChar* ____message;
  411. RuntimeObject* ____data;
  412. Exception_t_marshaled_com* ____innerException;
  413. Il2CppChar* ____helpURL;
  414. Il2CppIUnknown* ____stackTrace;
  415. Il2CppChar* ____stackTraceString;
  416. Il2CppChar* ____remoteStackTraceString;
  417. int32_t ____remoteStackIndex;
  418. Il2CppIUnknown* ____dynamicMethods;
  419. int32_t ____HResult;
  420. Il2CppChar* ____source;
  421. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  422. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  423. Il2CppSafeArray* ___native_trace_ips;
  424. int32_t ___caught_in_unmanaged;
  425. };
  426. struct IsolationLevel_t11CCBA6EC4AB4CECA2F9BE8AA326340F6E391414
  427. {
  428. int32_t ___value__;
  429. };
  430. struct StreamingContextStates_t5EE358E619B251608A9327618C7BFE8638FC33C1
  431. {
  432. int32_t ___value__;
  433. };
  434. struct TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4 : public RuntimeObject
  435. {
  436. Timer_t763C1D5F5A36087DC92C7DA4D1F8AB578F83AB00* ___scopeTimer;
  437. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___transaction;
  438. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___oldTransaction;
  439. TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4* ___parentScope;
  440. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___timeout;
  441. int32_t ___nested;
  442. bool ___disposed;
  443. bool ___completed;
  444. bool ___aborted;
  445. bool ___isRoot;
  446. bool ___asyncFlowEnabled;
  447. };
  448. struct TransactionStatus_tBC9BC3EE11624F12DE229BF1EAC5D9496F9E513F
  449. {
  450. int32_t ___value__;
  451. };
  452. struct MulticastDelegate_t : public Delegate_t
  453. {
  454. DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
  455. };
  456. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  457. {
  458. Delegate_t_marshaled_pinvoke** ___delegates;
  459. };
  460. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  461. {
  462. Delegate_t_marshaled_com** ___delegates;
  463. };
  464. struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677
  465. {
  466. RuntimeObject* ___m_additionalContext;
  467. int32_t ___m_state;
  468. };
  469. struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_pinvoke
  470. {
  471. Il2CppIUnknown* ___m_additionalContext;
  472. int32_t ___m_state;
  473. };
  474. struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_com
  475. {
  476. Il2CppIUnknown* ___m_additionalContext;
  477. int32_t ___m_state;
  478. };
  479. struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
  480. {
  481. };
  482. struct Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD : public RuntimeObject
  483. {
  484. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___internalTransaction;
  485. int32_t ___level;
  486. TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* ___info;
  487. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___dependents;
  488. List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3* ___volatiles;
  489. List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C* ___durables;
  490. RuntimeObject* ___pspe;
  491. AsyncCommit_t71DC723123EBA5C843539A11885B9B64FBA2FF0D* ___asyncCommit;
  492. bool ___committing;
  493. bool ___committed;
  494. bool ___aborted;
  495. TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4* ___scope;
  496. Exception_t* ___innerException;
  497. Guid_t ___tag;
  498. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* ___TransactionCompletedInternal;
  499. };
  500. struct TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA : public RuntimeObject
  501. {
  502. String_t* ___local_id;
  503. Guid_t ___dtcId;
  504. DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___creation_time;
  505. int32_t ___status;
  506. };
  507. struct TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD
  508. {
  509. int32_t ___level;
  510. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___timeout;
  511. };
  512. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  513. {
  514. };
  515. struct NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  516. {
  517. };
  518. struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  519. {
  520. };
  521. struct TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB : public MulticastDelegate_t
  522. {
  523. };
  524. struct TransactionException_t93E8D757BC2F2616DA953B8A714A645EBCE730AF : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  525. {
  526. };
  527. struct AsyncCommit_t71DC723123EBA5C843539A11885B9B64FBA2FF0D : public MulticastDelegate_t
  528. {
  529. };
  530. struct ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB : public InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB
  531. {
  532. String_t* ____objectName;
  533. };
  534. struct PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A : public NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A
  535. {
  536. };
  537. struct ThrowStub_t0BE5E40CC257CB268BDB9004F8775ECE8FB0CBCF : public ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB
  538. {
  539. };
  540. struct List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3_StaticFields
  541. {
  542. IEnlistmentNotificationU5BU5D_t43C61449FC3AA7F3AC02A1E6FE315C31416357F4* ___s_emptyArray;
  543. };
  544. struct List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C_StaticFields
  545. {
  546. ISinglePhaseNotificationU5BU5D_tBCC1EA9782E893D8F493B8983F1B686826558207* ___s_emptyArray;
  547. };
  548. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
  549. {
  550. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray;
  551. };
  552. struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_StaticFields
  553. {
  554. EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___Empty;
  555. };
  556. struct String_t_StaticFields
  557. {
  558. String_t* ___Empty;
  559. };
  560. struct TransactionInterop_t4A05E24408C479CE0CCCE5ECE08439418E156057_StaticFields
  561. {
  562. Guid_t ___PromoterTypeDtc;
  563. };
  564. struct TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_StaticFields
  565. {
  566. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___defaultTimeout;
  567. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___maxTimeout;
  568. };
  569. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
  570. {
  571. String_t* ___TrueString;
  572. String_t* ___FalseString;
  573. };
  574. struct Guid_t_StaticFields
  575. {
  576. Guid_t ___Empty;
  577. };
  578. struct IntPtr_t_StaticFields
  579. {
  580. intptr_t ___Zero;
  581. };
  582. struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields
  583. {
  584. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Zero;
  585. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MaxValue;
  586. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MinValue;
  587. };
  588. struct Exception_t_StaticFields
  589. {
  590. RuntimeObject* ___s_EDILock;
  591. };
  592. struct TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4_StaticFields
  593. {
  594. TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD ___defaultOptions;
  595. };
  596. struct Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_ThreadStaticFields
  597. {
  598. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___ambient;
  599. };
  600. #ifdef __clang__
  601. #pragma clang diagnostic pop
  602. #endif
  603. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
  604. {
  605. ALIGN_FIELD (8) Delegate_t* m_Items[1];
  606. inline Delegate_t* GetAt(il2cpp_array_size_t index) const
  607. {
  608. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  609. return m_Items[index];
  610. }
  611. inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
  612. {
  613. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  614. return m_Items + index;
  615. }
  616. inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
  617. {
  618. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  619. m_Items[index] = value;
  620. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  621. }
  622. inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
  623. {
  624. return m_Items[index];
  625. }
  626. inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
  627. {
  628. return m_Items + index;
  629. }
  630. inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
  631. {
  632. m_Items[index] = value;
  633. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  634. }
  635. };
  636. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
  637. {
  638. ALIGN_FIELD (8) uint8_t m_Items[1];
  639. inline uint8_t GetAt(il2cpp_array_size_t index) const
  640. {
  641. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  642. return m_Items[index];
  643. }
  644. inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
  645. {
  646. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  647. return m_Items + index;
  648. }
  649. inline void SetAt(il2cpp_array_size_t index, uint8_t value)
  650. {
  651. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  652. m_Items[index] = value;
  653. }
  654. inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
  655. {
  656. return m_Items[index];
  657. }
  658. inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
  659. {
  660. return m_Items + index;
  661. }
  662. inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
  663. {
  664. m_Items[index] = value;
  665. }
  666. };
  667. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
  668. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
  669. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
  670. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
  671. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
  672. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
  673. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
  674. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2 (Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* __this, const RuntimeMethod* method) ;
  675. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  676. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enlistment__ctor_m8A01B2DCBBE2F2BB4CD040581D0D3521A449583F (Enlistment_tDF858DEFBA405B6DF5EF4DC746A92C59DE007552* __this, const RuntimeMethod* method) ;
  677. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SinglePhaseEnlistment_Aborted_m4896852069C6A3E1925500E74AC178E064CD7817 (SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C* __this, Exception_t* ___0_e, const RuntimeMethod* method) ;
  678. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Transaction_op_Inequality_mDDF0206373667C46B4E753596C1C0F1CC1DD730D (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___0_x, Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___1_y, const RuntimeMethod* method) ;
  679. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_Rollback_m298E5E20A30D81EFD61CC338DF07E9E3BA82C28D (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, Exception_t* ___0_ex, RuntimeObject* ___1_abortingEnlisted, const RuntimeMethod* method) ;
  680. inline void List_1__ctor_m461856AF5428B8A52C0CFBF61D88239241CC0D08 (List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3* __this, const RuntimeMethod* method)
  681. {
  682. (( void (*) (List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
  683. }
  684. inline void List_1__ctor_mC3B48F43E26A08BF2940C08CC90EFABB187D157F (List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C* __this, const RuntimeMethod* method)
  685. {
  686. (( void (*) (List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
  687. }
  688. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80 (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* __this, const RuntimeMethod* method) ;
  689. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Guid_NewGuid_m1F4894E8DC089811D6252148AD5858E58D43A7BD (const RuntimeMethod* method) ;
  690. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3* Transaction_get_Volatiles_mCD1BF84C66655C8FD244A1F5578DD02DBED0129A (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method) ;
  691. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C* Transaction_get_Durables_mCFB83FC73DFCF3EBD3A758327D3EE835389566A3 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method) ;
  692. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Transaction_get_Pspe_m67F7FB318447F2C29E24FA197842752957C6DDB7_inline (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method) ;
  693. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_mDAB47BC6BD0E342E8F2171E5CABE3E67EA049F1C (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* __this, const RuntimeMethod* method) ;
  694. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00 (Delegate_t* ___0_a, Delegate_t* ___1_b, const RuntimeMethod* method) ;
  695. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3 (Delegate_t* ___0_source, Delegate_t* ___1_value, const RuntimeMethod* method) ;
  696. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_add_TransactionCompleted_m9E637AD7829781DBAAF08792D1C62531C8193EC8 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* ___0_value, const RuntimeMethod* method) ;
  697. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_add_TransactionCompletedInternal_m7D04E41DB05C65045944548F62BE69F94EA791D4 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* ___0_value, const RuntimeMethod* method) ;
  698. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_remove_TransactionCompleted_m21745AD336162A3921EB40E8A299706A8AB2F297 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* ___0_value, const RuntimeMethod* method) ;
  699. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_remove_TransactionCompletedInternal_m8ED76A3D3AAB29E284ECF2054662D4DA27E8FCB2 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* ___0_value, const RuntimeMethod* method) ;
  700. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_EnsureIncompleteCurrentScope_m50358C964D025F5EAF27CC2F0D24229E86BBA031 (const RuntimeMethod* method) ;
  701. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* Transaction_get_CurrentInternal_m195CAC9933D30007BD941BF68FA56CE0C7C7FBEE_inline (const RuntimeMethod* method) ;
  702. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Transaction_set_CurrentInternal_mB1E7D608782C542652C5FAD9D72BA73CB6558565_inline (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___0_value, const RuntimeMethod* method) ;
  703. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction__ctor_m93009611565948CF42750CAA3DB57F741E9CB327 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___0_other, const RuntimeMethod* method) ;
  704. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* Transaction_get_TransactionInformation_mB4DBFB45362745793F6E268C7F5BD9ADED3E5861 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method) ;
  705. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransactionInformation_get_Status_mB45D34431DAC463611A59869926E98513B97414A_inline (TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* __this, const RuntimeMethod* method) ;
  706. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_Rollback_m700FBC7080668AD032FCDA055719E100117F14B5 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method) ;
  707. inline int32_t List_1_get_Count_m17E6803A26B094A16DC42F1F23438275606091C1_inline (List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C* __this, const RuntimeMethod* method)
  708. {
  709. return (( int32_t (*) (List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
  710. }
  711. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Transaction_Equals_mC586D4C5C87F45DCF282AF7B071738E8E8B2F6ED (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___0_t, const RuntimeMethod* method) ;
  712. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Transaction_op_Equality_m39B1A486DD944290954B17E02B0BFBDC248659BC (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___0_x, Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___1_y, const RuntimeMethod* method) ;
  713. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_Rollback_m7BEAC0E95FA3B45F0E78C5FF1857F914AAA1909E (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, Exception_t* ___0_e, const RuntimeMethod* method) ;
  714. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_FireCompleted_mD21E71C2CDB94A3F1ED8AEBD8F258C70F8210440 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method) ;
  715. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransactionException__ctor_mD6A1BC6487DB3CE81488727A3D811024D45F8859 (TransactionException_t93E8D757BC2F2616DA953B8A714A645EBCE730AF* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  716. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SinglePhaseEnlistment__ctor_mFE1891FDD22473024672131E28D94176F7D74A01 (SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C* __this, const RuntimeMethod* method) ;
  717. inline Enumerator_t99B22733591FFD9FAE27C9EFDB0DE1D3BFC99040 List_1_GetEnumerator_mA6A172F9F86EADBD4F544B8289E71343B533E367 (List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3* __this, const RuntimeMethod* method)
  718. {
  719. return (( Enumerator_t99B22733591FFD9FAE27C9EFDB0DE1D3BFC99040 (*) (List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
  720. }
  721. inline void Enumerator_Dispose_mDB1BBD5EEB58E2F4C09ED5E3A1840B1C4D60A1DB (Enumerator_t99B22733591FFD9FAE27C9EFDB0DE1D3BFC99040* __this, const RuntimeMethod* method)
  722. {
  723. (( void (*) (Enumerator_t99B22733591FFD9FAE27C9EFDB0DE1D3BFC99040*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
  724. }
  725. inline RuntimeObject* Enumerator_get_Current_m58D3F44C5938CA7235526999C2B9C068517BF822_inline (Enumerator_t99B22733591FFD9FAE27C9EFDB0DE1D3BFC99040* __this, const RuntimeMethod* method)
  726. {
  727. return (( RuntimeObject* (*) (Enumerator_t99B22733591FFD9FAE27C9EFDB0DE1D3BFC99040*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
  728. }
  729. inline bool Enumerator_MoveNext_mBD39361874346D0E2EE2AA7CE005113DE0A7312A (Enumerator_t99B22733591FFD9FAE27C9EFDB0DE1D3BFC99040* __this, const RuntimeMethod* method)
  730. {
  731. return (( bool (*) (Enumerator_t99B22733591FFD9FAE27C9EFDB0DE1D3BFC99040*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
  732. }
  733. inline RuntimeObject* List_1_get_Item_m81C246985A289579522B217404C0B8C99E5C0147 (List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C* __this, int32_t ___0_index, const RuntimeMethod* method)
  734. {
  735. return (( RuntimeObject* (*) (List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
  736. }
  737. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_set_Aborted_m24683739B6DC84AF5BEAF5E83C6ECA1D4B44BE17 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, bool ___0_value, const RuntimeMethod* method) ;
  738. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TransactionInformation_set_Status_m6D0E87BE8EDD80DC7AFD5A3CEC8E8EA4B1626AFE_inline (TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* __this, int32_t ___0_value, const RuntimeMethod* method) ;
  739. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransactionEventArgs__ctor_mDE16E072857474C6DD16928DB47058E2A9F98046 (TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* __this, Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___0_transaction, const RuntimeMethod* method) ;
  740. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_inline (TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* __this, RuntimeObject* ___0_sender, TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* ___1_e, const RuntimeMethod* method) ;
  741. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4* Transaction_get_Scope_mCB49E7F6BABD63238A74D8C3D08B7267B01CFB8E_inline (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method) ;
  742. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TransactionScope_get_IsComplete_mA48470D9FFCC137101B3972C9B1D46ED5EC51C8C_inline (TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4* __this, const RuntimeMethod* method) ;
  743. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  744. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_mC6F9412D03203ADEF854117542C8EBF61624C8C3 (EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* __this, const RuntimeMethod* method) ;
  745. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransactionEventArgs__ctor_mFD81A5A7A11F8417373C43F9BEB03EAABF6B28B3 (TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* __this, const RuntimeMethod* method) ;
  746. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mB30C3C4B8AB4DF43F4A453C97CCA76DC4AE63B80 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, const RuntimeMethod* method) ;
  747. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  748. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ;
  749. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_mAE66BA1C43B4194F4F7991E2E30370E36CBBF830 (Guid_t* __this, String_t* ___0_g, const RuntimeMethod* method) ;
  750. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, int32_t ___0_hours, int32_t ___1_minutes, int32_t ___2_seconds, const RuntimeMethod* method) ;
  751. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransactionOptions__ctor_mB6E01EA3E9A536D3DD7518541B0A19791D044910 (TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD* __this, int32_t ___0_level, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_timeout, const RuntimeMethod* method) ;
  752. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_Equality_m951689F806957B14F237DAFCEE4CB322799A723E (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___0_t1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_t2, const RuntimeMethod* method) ;
  753. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransactionOptions_op_Equality_m5B9B64DE16F3F0C7BBDE6C6201B59679B90E6C97 (TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD ___0_x, TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD ___1_y, const RuntimeMethod* method) ;
  754. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransactionOptions_Equals_m6E5D4EFB290F14239D57B0C7D364109797600E48 (TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  755. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_GetHashCode_m2CBBAD27522E17FE6006390ED0E3874676CAA76D (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ;
  756. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransactionOptions_GetHashCode_mD8274DC4F6F15118D764DB6D0043BB82AD162234 (TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD* __this, const RuntimeMethod* method) ;
  757. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TransactionManager_get_DefaultTimeout_m986CEE04836E5DCF3328652175C50A276DD75E0F_inline (const RuntimeMethod* method) ;
  758. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1 (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* __this, const RuntimeMethod* method) ;
  759. #ifdef __clang__
  760. #pragma clang diagnostic push
  761. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  762. #pragma clang diagnostic ignored "-Wunused-variable"
  763. #endif
  764. #ifdef __clang__
  765. #pragma clang diagnostic pop
  766. #endif
  767. #ifdef __clang__
  768. #pragma clang diagnostic push
  769. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  770. #pragma clang diagnostic ignored "-Wunused-variable"
  771. #endif
  772. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoTODOAttribute__ctor_m40097723D242705105133D2FEE544CDD0D4892F0 (MonoTODOAttribute_t7B6AA25D7749BF3B05CEEAC921F8A2AC37A0A22B* __this, const RuntimeMethod* method)
  773. {
  774. {
  775. Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
  776. return;
  777. }
  778. }
  779. #ifdef __clang__
  780. #pragma clang diagnostic pop
  781. #endif
  782. #ifdef __clang__
  783. #pragma clang diagnostic push
  784. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  785. #pragma clang diagnostic ignored "-Wunused-variable"
  786. #endif
  787. void TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_Multicast(TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* __this, RuntimeObject* ___0_sender, TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* ___1_e, const RuntimeMethod* method)
  788. {
  789. il2cpp_array_size_t length = __this->___delegates->max_length;
  790. Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
  791. for (il2cpp_array_size_t i = 0; i < length; i++)
  792. {
  793. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* currentDelegate = reinterpret_cast<TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB*>(delegatesToInvoke[i]);
  794. typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82*, const RuntimeMethod*);
  795. ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, ___0_sender, ___1_e, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
  796. }
  797. }
  798. void TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_OpenInst(TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* __this, RuntimeObject* ___0_sender, TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* ___1_e, const RuntimeMethod* method)
  799. {
  800. NullCheck(___0_sender);
  801. typedef void (*FunctionPointerType) (RuntimeObject*, TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82*, const RuntimeMethod*);
  802. ((FunctionPointerType)__this->___method_ptr)(___0_sender, ___1_e, method);
  803. }
  804. void TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_OpenStatic(TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* __this, RuntimeObject* ___0_sender, TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* ___1_e, const RuntimeMethod* method)
  805. {
  806. typedef void (*FunctionPointerType) (RuntimeObject*, TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82*, const RuntimeMethod*);
  807. ((FunctionPointerType)__this->___method_ptr)(___0_sender, ___1_e, method);
  808. }
  809. void TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_OpenVirtual(TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* __this, RuntimeObject* ___0_sender, TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* ___1_e, const RuntimeMethod* method)
  810. {
  811. NullCheck(___0_sender);
  812. VirtualActionInvoker1< TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* >::Invoke(il2cpp_codegen_method_get_slot(method), ___0_sender, ___1_e);
  813. }
  814. void TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_OpenInterface(TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* __this, RuntimeObject* ___0_sender, TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* ___1_e, const RuntimeMethod* method)
  815. {
  816. NullCheck(___0_sender);
  817. InterfaceActionInvoker1< TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___0_sender, ___1_e);
  818. }
  819. void TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_OpenGenericVirtual(TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* __this, RuntimeObject* ___0_sender, TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* ___1_e, const RuntimeMethod* method)
  820. {
  821. NullCheck(___0_sender);
  822. GenericVirtualActionInvoker1< TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* >::Invoke(method, ___0_sender, ___1_e);
  823. }
  824. void TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_OpenGenericInterface(TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* __this, RuntimeObject* ___0_sender, TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* ___1_e, const RuntimeMethod* method)
  825. {
  826. NullCheck(___0_sender);
  827. GenericInterfaceActionInvoker1< TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* >::Invoke(method, ___0_sender, ___1_e);
  828. }
  829. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransactionCompletedEventHandler__ctor_mAC6B56920A35858254ACE4F75E3645DD9C394CB4 (TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
  830. {
  831. __this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
  832. __this->___method = ___1_method;
  833. __this->___m_target = ___0_object;
  834. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
  835. int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
  836. __this->___method_code = (intptr_t)__this;
  837. if (MethodIsStatic((RuntimeMethod*)___1_method))
  838. {
  839. bool isOpen = parameterCount == 2;
  840. if (isOpen)
  841. __this->___invoke_impl = (intptr_t)&TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_OpenStatic;
  842. else
  843. {
  844. __this->___invoke_impl = __this->___method_ptr;
  845. __this->___method_code = (intptr_t)__this->___m_target;
  846. }
  847. }
  848. else
  849. {
  850. bool isOpen = parameterCount == 1;
  851. if (isOpen)
  852. {
  853. if (__this->___method_is_virtual)
  854. {
  855. if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___1_method))
  856. if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
  857. __this->___invoke_impl = (intptr_t)&TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_OpenGenericInterface;
  858. else
  859. __this->___invoke_impl = (intptr_t)&TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_OpenGenericVirtual;
  860. else
  861. if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
  862. __this->___invoke_impl = (intptr_t)&TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_OpenInterface;
  863. else
  864. __this->___invoke_impl = (intptr_t)&TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_OpenVirtual;
  865. }
  866. else
  867. {
  868. __this->___invoke_impl = (intptr_t)&TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_OpenInst;
  869. }
  870. }
  871. else
  872. {
  873. if (___0_object == NULL)
  874. il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
  875. __this->___invoke_impl = __this->___method_ptr;
  876. __this->___method_code = (intptr_t)__this->___m_target;
  877. }
  878. }
  879. __this->___extra_arg = (intptr_t)&TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_Multicast;
  880. }
  881. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D (TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* __this, RuntimeObject* ___0_sender, TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* ___1_e, const RuntimeMethod* method)
  882. {
  883. typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82*, const RuntimeMethod*);
  884. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_sender, ___1_e, reinterpret_cast<RuntimeMethod*>(__this->___method));
  885. }
  886. #ifdef __clang__
  887. #pragma clang diagnostic pop
  888. #endif
  889. #ifdef __clang__
  890. #pragma clang diagnostic push
  891. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  892. #pragma clang diagnostic ignored "-Wunused-variable"
  893. #endif
  894. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enlistment__ctor_m8A01B2DCBBE2F2BB4CD040581D0D3521A449583F (Enlistment_tDF858DEFBA405B6DF5EF4DC746A92C59DE007552* __this, const RuntimeMethod* method)
  895. {
  896. {
  897. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  898. __this->___done = (bool)0;
  899. return;
  900. }
  901. }
  902. #ifdef __clang__
  903. #pragma clang diagnostic pop
  904. #endif
  905. #ifdef __clang__
  906. #pragma clang diagnostic push
  907. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  908. #pragma clang diagnostic ignored "-Wunused-variable"
  909. #endif
  910. #ifdef __clang__
  911. #pragma clang diagnostic pop
  912. #endif
  913. #ifdef __clang__
  914. #pragma clang diagnostic push
  915. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  916. #pragma clang diagnostic ignored "-Wunused-variable"
  917. #endif
  918. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SinglePhaseEnlistment__ctor_mFE1891FDD22473024672131E28D94176F7D74A01 (SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C* __this, const RuntimeMethod* method)
  919. {
  920. {
  921. Enlistment__ctor_m8A01B2DCBBE2F2BB4CD040581D0D3521A449583F(__this, NULL);
  922. return;
  923. }
  924. }
  925. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SinglePhaseEnlistment_Aborted_m66FE899F83074B355F3F13DE9E24131185F1602F (SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C* __this, const RuntimeMethod* method)
  926. {
  927. {
  928. SinglePhaseEnlistment_Aborted_m4896852069C6A3E1925500E74AC178E064CD7817(__this, (Exception_t*)NULL, NULL);
  929. return;
  930. }
  931. }
  932. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SinglePhaseEnlistment_Aborted_m4896852069C6A3E1925500E74AC178E064CD7817 (SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C* __this, Exception_t* ___0_e, const RuntimeMethod* method)
  933. {
  934. {
  935. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_0 = __this->___tx;
  936. bool L_1;
  937. L_1 = Transaction_op_Inequality_mDDF0206373667C46B4E753596C1C0F1CC1DD730D(L_0, (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD*)NULL, NULL);
  938. if (!L_1)
  939. {
  940. goto IL_0020;
  941. }
  942. }
  943. {
  944. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_2 = __this->___tx;
  945. Exception_t* L_3 = ___0_e;
  946. RuntimeObject* L_4 = __this->___abortingEnlisted;
  947. NullCheck(L_2);
  948. Transaction_Rollback_m298E5E20A30D81EFD61CC338DF07E9E3BA82C28D(L_2, L_3, L_4, NULL);
  949. }
  950. IL_0020:
  951. {
  952. return;
  953. }
  954. }
  955. #ifdef __clang__
  956. #pragma clang diagnostic pop
  957. #endif
  958. #ifdef __clang__
  959. #pragma clang diagnostic push
  960. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  961. #pragma clang diagnostic ignored "-Wunused-variable"
  962. #endif
  963. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3* Transaction_get_Volatiles_mCD1BF84C66655C8FD244A1F5578DD02DBED0129A (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method)
  964. {
  965. static bool s_Il2CppMethodInitialized;
  966. if (!s_Il2CppMethodInitialized)
  967. {
  968. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m461856AF5428B8A52C0CFBF61D88239241CC0D08_RuntimeMethod_var);
  969. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3_il2cpp_TypeInfo_var);
  970. s_Il2CppMethodInitialized = true;
  971. }
  972. {
  973. List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3* L_0 = __this->___volatiles;
  974. if (L_0)
  975. {
  976. goto IL_0013;
  977. }
  978. }
  979. {
  980. List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3* L_1 = (List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3*)il2cpp_codegen_object_new(List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3_il2cpp_TypeInfo_var);
  981. List_1__ctor_m461856AF5428B8A52C0CFBF61D88239241CC0D08(L_1, List_1__ctor_m461856AF5428B8A52C0CFBF61D88239241CC0D08_RuntimeMethod_var);
  982. __this->___volatiles = L_1;
  983. Il2CppCodeGenWriteBarrier((void**)(&__this->___volatiles), (void*)L_1);
  984. }
  985. IL_0013:
  986. {
  987. List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3* L_2 = __this->___volatiles;
  988. return L_2;
  989. }
  990. }
  991. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C* Transaction_get_Durables_mCFB83FC73DFCF3EBD3A758327D3EE835389566A3 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method)
  992. {
  993. static bool s_Il2CppMethodInitialized;
  994. if (!s_Il2CppMethodInitialized)
  995. {
  996. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mC3B48F43E26A08BF2940C08CC90EFABB187D157F_RuntimeMethod_var);
  997. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C_il2cpp_TypeInfo_var);
  998. s_Il2CppMethodInitialized = true;
  999. }
  1000. {
  1001. List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C* L_0 = __this->___durables;
  1002. if (L_0)
  1003. {
  1004. goto IL_0013;
  1005. }
  1006. }
  1007. {
  1008. List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C* L_1 = (List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C*)il2cpp_codegen_object_new(List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C_il2cpp_TypeInfo_var);
  1009. List_1__ctor_mC3B48F43E26A08BF2940C08CC90EFABB187D157F(L_1, List_1__ctor_mC3B48F43E26A08BF2940C08CC90EFABB187D157F_RuntimeMethod_var);
  1010. __this->___durables = L_1;
  1011. Il2CppCodeGenWriteBarrier((void**)(&__this->___durables), (void*)L_1);
  1012. }
  1013. IL_0013:
  1014. {
  1015. List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C* L_2 = __this->___durables;
  1016. return L_2;
  1017. }
  1018. }
  1019. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Transaction_get_Pspe_m67F7FB318447F2C29E24FA197842752957C6DDB7 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method)
  1020. {
  1021. {
  1022. RuntimeObject* L_0 = __this->___pspe;
  1023. return L_0;
  1024. }
  1025. }
  1026. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction__ctor_m93009611565948CF42750CAA3DB57F741E9CB327 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___0_other, const RuntimeMethod* method)
  1027. {
  1028. static bool s_Il2CppMethodInitialized;
  1029. if (!s_Il2CppMethodInitialized)
  1030. {
  1031. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
  1032. s_Il2CppMethodInitialized = true;
  1033. }
  1034. {
  1035. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
  1036. ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_0, NULL);
  1037. __this->___dependents = L_0;
  1038. Il2CppCodeGenWriteBarrier((void**)(&__this->___dependents), (void*)L_0);
  1039. Guid_t L_1;
  1040. L_1 = Guid_NewGuid_m1F4894E8DC089811D6252148AD5858E58D43A7BD(NULL);
  1041. __this->___tag = L_1;
  1042. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  1043. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_2 = ___0_other;
  1044. NullCheck(L_2);
  1045. int32_t L_3 = L_2->___level;
  1046. __this->___level = L_3;
  1047. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_4 = ___0_other;
  1048. NullCheck(L_4);
  1049. TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* L_5 = L_4->___info;
  1050. __this->___info = L_5;
  1051. Il2CppCodeGenWriteBarrier((void**)(&__this->___info), (void*)L_5);
  1052. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_6 = ___0_other;
  1053. NullCheck(L_6);
  1054. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_7 = L_6->___dependents;
  1055. __this->___dependents = L_7;
  1056. Il2CppCodeGenWriteBarrier((void**)(&__this->___dependents), (void*)L_7);
  1057. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_8 = ___0_other;
  1058. NullCheck(L_8);
  1059. List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3* L_9;
  1060. L_9 = Transaction_get_Volatiles_mCD1BF84C66655C8FD244A1F5578DD02DBED0129A(L_8, NULL);
  1061. __this->___volatiles = L_9;
  1062. Il2CppCodeGenWriteBarrier((void**)(&__this->___volatiles), (void*)L_9);
  1063. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_10 = ___0_other;
  1064. NullCheck(L_10);
  1065. List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C* L_11;
  1066. L_11 = Transaction_get_Durables_mCFB83FC73DFCF3EBD3A758327D3EE835389566A3(L_10, NULL);
  1067. __this->___durables = L_11;
  1068. Il2CppCodeGenWriteBarrier((void**)(&__this->___durables), (void*)L_11);
  1069. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_12 = ___0_other;
  1070. NullCheck(L_12);
  1071. RuntimeObject* L_13;
  1072. L_13 = Transaction_get_Pspe_m67F7FB318447F2C29E24FA197842752957C6DDB7_inline(L_12, NULL);
  1073. __this->___pspe = L_13;
  1074. Il2CppCodeGenWriteBarrier((void**)(&__this->___pspe), (void*)L_13);
  1075. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_14 = ___0_other;
  1076. NullCheck(L_14);
  1077. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_15 = L_14->___TransactionCompletedInternal;
  1078. __this->___TransactionCompletedInternal = L_15;
  1079. Il2CppCodeGenWriteBarrier((void**)(&__this->___TransactionCompletedInternal), (void*)L_15);
  1080. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_16 = ___0_other;
  1081. __this->___internalTransaction = L_16;
  1082. Il2CppCodeGenWriteBarrier((void**)(&__this->___internalTransaction), (void*)L_16);
  1083. return;
  1084. }
  1085. }
  1086. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_System_Runtime_Serialization_ISerializable_GetObjectData_mCD8C8392E3EE07D0A0D0AB5362E7659BC4A83AB5 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
  1087. {
  1088. {
  1089. NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var)));
  1090. NotImplementedException__ctor_mDAB47BC6BD0E342E8F2171E5CABE3E67EA049F1C(L_0, NULL);
  1091. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Transaction_System_Runtime_Serialization_ISerializable_GetObjectData_mCD8C8392E3EE07D0A0D0AB5362E7659BC4A83AB5_RuntimeMethod_var)));
  1092. }
  1093. }
  1094. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_add_TransactionCompletedInternal_m7D04E41DB05C65045944548F62BE69F94EA791D4 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* ___0_value, const RuntimeMethod* method)
  1095. {
  1096. static bool s_Il2CppMethodInitialized;
  1097. if (!s_Il2CppMethodInitialized)
  1098. {
  1099. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB_il2cpp_TypeInfo_var);
  1100. s_Il2CppMethodInitialized = true;
  1101. }
  1102. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* V_0 = NULL;
  1103. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* V_1 = NULL;
  1104. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* V_2 = NULL;
  1105. {
  1106. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_0 = __this->___TransactionCompletedInternal;
  1107. V_0 = L_0;
  1108. }
  1109. IL_0007:
  1110. {
  1111. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_1 = V_0;
  1112. V_1 = L_1;
  1113. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_2 = V_1;
  1114. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_3 = ___0_value;
  1115. Delegate_t* L_4;
  1116. L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
  1117. V_2 = ((TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB*)CastclassSealed((RuntimeObject*)L_4, TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB_il2cpp_TypeInfo_var));
  1118. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB** L_5 = (TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB**)(&__this->___TransactionCompletedInternal);
  1119. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_6 = V_2;
  1120. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_7 = V_1;
  1121. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_8;
  1122. L_8 = InterlockedCompareExchangeImpl<TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB*>(L_5, L_6, L_7);
  1123. V_0 = L_8;
  1124. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_9 = V_0;
  1125. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_10 = V_1;
  1126. if ((!(((RuntimeObject*)(TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB*)L_9) == ((RuntimeObject*)(TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB*)L_10))))
  1127. {
  1128. goto IL_0007;
  1129. }
  1130. }
  1131. {
  1132. return;
  1133. }
  1134. }
  1135. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_remove_TransactionCompletedInternal_m8ED76A3D3AAB29E284ECF2054662D4DA27E8FCB2 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* ___0_value, const RuntimeMethod* method)
  1136. {
  1137. static bool s_Il2CppMethodInitialized;
  1138. if (!s_Il2CppMethodInitialized)
  1139. {
  1140. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB_il2cpp_TypeInfo_var);
  1141. s_Il2CppMethodInitialized = true;
  1142. }
  1143. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* V_0 = NULL;
  1144. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* V_1 = NULL;
  1145. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* V_2 = NULL;
  1146. {
  1147. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_0 = __this->___TransactionCompletedInternal;
  1148. V_0 = L_0;
  1149. }
  1150. IL_0007:
  1151. {
  1152. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_1 = V_0;
  1153. V_1 = L_1;
  1154. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_2 = V_1;
  1155. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_3 = ___0_value;
  1156. Delegate_t* L_4;
  1157. L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
  1158. V_2 = ((TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB*)CastclassSealed((RuntimeObject*)L_4, TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB_il2cpp_TypeInfo_var));
  1159. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB** L_5 = (TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB**)(&__this->___TransactionCompletedInternal);
  1160. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_6 = V_2;
  1161. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_7 = V_1;
  1162. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_8;
  1163. L_8 = InterlockedCompareExchangeImpl<TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB*>(L_5, L_6, L_7);
  1164. V_0 = L_8;
  1165. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_9 = V_0;
  1166. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_10 = V_1;
  1167. if ((!(((RuntimeObject*)(TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB*)L_9) == ((RuntimeObject*)(TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB*)L_10))))
  1168. {
  1169. goto IL_0007;
  1170. }
  1171. }
  1172. {
  1173. return;
  1174. }
  1175. }
  1176. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_add_TransactionCompleted_m9E637AD7829781DBAAF08792D1C62531C8193EC8 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* ___0_value, const RuntimeMethod* method)
  1177. {
  1178. {
  1179. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_0 = __this->___internalTransaction;
  1180. bool L_1;
  1181. L_1 = Transaction_op_Inequality_mDDF0206373667C46B4E753596C1C0F1CC1DD730D(L_0, (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD*)NULL, NULL);
  1182. if (!L_1)
  1183. {
  1184. goto IL_001a;
  1185. }
  1186. }
  1187. {
  1188. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_2 = __this->___internalTransaction;
  1189. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_3 = ___0_value;
  1190. NullCheck(L_2);
  1191. Transaction_add_TransactionCompleted_m9E637AD7829781DBAAF08792D1C62531C8193EC8(L_2, L_3, NULL);
  1192. }
  1193. IL_001a:
  1194. {
  1195. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_4 = ___0_value;
  1196. Transaction_add_TransactionCompletedInternal_m7D04E41DB05C65045944548F62BE69F94EA791D4(__this, L_4, NULL);
  1197. return;
  1198. }
  1199. }
  1200. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_remove_TransactionCompleted_m21745AD336162A3921EB40E8A299706A8AB2F297 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* ___0_value, const RuntimeMethod* method)
  1201. {
  1202. {
  1203. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_0 = __this->___internalTransaction;
  1204. bool L_1;
  1205. L_1 = Transaction_op_Inequality_mDDF0206373667C46B4E753596C1C0F1CC1DD730D(L_0, (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD*)NULL, NULL);
  1206. if (!L_1)
  1207. {
  1208. goto IL_001a;
  1209. }
  1210. }
  1211. {
  1212. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_2 = __this->___internalTransaction;
  1213. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_3 = ___0_value;
  1214. NullCheck(L_2);
  1215. Transaction_remove_TransactionCompleted_m21745AD336162A3921EB40E8A299706A8AB2F297(L_2, L_3, NULL);
  1216. }
  1217. IL_001a:
  1218. {
  1219. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_4 = ___0_value;
  1220. Transaction_remove_TransactionCompletedInternal_m8ED76A3D3AAB29E284ECF2054662D4DA27E8FCB2(__this, L_4, NULL);
  1221. return;
  1222. }
  1223. }
  1224. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* Transaction_get_Current_m4781EDC03D62E0BEBD0D9B647FA4A264814DC529 (const RuntimeMethod* method)
  1225. {
  1226. {
  1227. Transaction_EnsureIncompleteCurrentScope_m50358C964D025F5EAF27CC2F0D24229E86BBA031(NULL);
  1228. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_0;
  1229. L_0 = Transaction_get_CurrentInternal_m195CAC9933D30007BD941BF68FA56CE0C7C7FBEE_inline(NULL);
  1230. return L_0;
  1231. }
  1232. }
  1233. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_set_Current_mF5AC10B39CCF713DC1C566813F0B65E4E9224257 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___0_value, const RuntimeMethod* method)
  1234. {
  1235. {
  1236. Transaction_EnsureIncompleteCurrentScope_m50358C964D025F5EAF27CC2F0D24229E86BBA031(NULL);
  1237. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_0 = ___0_value;
  1238. Transaction_set_CurrentInternal_mB1E7D608782C542652C5FAD9D72BA73CB6558565_inline(L_0, NULL);
  1239. return;
  1240. }
  1241. }
  1242. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* Transaction_get_CurrentInternal_m195CAC9933D30007BD941BF68FA56CE0C7C7FBEE (const RuntimeMethod* method)
  1243. {
  1244. static bool s_Il2CppMethodInitialized;
  1245. if (!s_Il2CppMethodInitialized)
  1246. {
  1247. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_il2cpp_TypeInfo_var);
  1248. s_Il2CppMethodInitialized = true;
  1249. }
  1250. {
  1251. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_0 = ((Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_il2cpp_TypeInfo_var))->___ambient;
  1252. return L_0;
  1253. }
  1254. }
  1255. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_set_CurrentInternal_mB1E7D608782C542652C5FAD9D72BA73CB6558565 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___0_value, const RuntimeMethod* method)
  1256. {
  1257. static bool s_Il2CppMethodInitialized;
  1258. if (!s_Il2CppMethodInitialized)
  1259. {
  1260. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_il2cpp_TypeInfo_var);
  1261. s_Il2CppMethodInitialized = true;
  1262. }
  1263. {
  1264. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_0 = ___0_value;
  1265. ((Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_il2cpp_TypeInfo_var))->___ambient = L_0;
  1266. Il2CppCodeGenWriteBarrier((void**)(&((Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_il2cpp_TypeInfo_var))->___ambient), (void*)L_0);
  1267. return;
  1268. }
  1269. }
  1270. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Transaction_get_IsolationLevel_m3B9ACAC6C1A615154C3EB40B6C40CF9A7953806F (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method)
  1271. {
  1272. {
  1273. Transaction_EnsureIncompleteCurrentScope_m50358C964D025F5EAF27CC2F0D24229E86BBA031(NULL);
  1274. int32_t L_0 = __this->___level;
  1275. return L_0;
  1276. }
  1277. }
  1278. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* Transaction_get_TransactionInformation_mB4DBFB45362745793F6E268C7F5BD9ADED3E5861 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method)
  1279. {
  1280. {
  1281. Transaction_EnsureIncompleteCurrentScope_m50358C964D025F5EAF27CC2F0D24229E86BBA031(NULL);
  1282. TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* L_0 = __this->___info;
  1283. return L_0;
  1284. }
  1285. }
  1286. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* Transaction_Clone_mDE72E448132DEAF51B4800B90FA39A003AB0542B (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method)
  1287. {
  1288. static bool s_Il2CppMethodInitialized;
  1289. if (!s_Il2CppMethodInitialized)
  1290. {
  1291. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_il2cpp_TypeInfo_var);
  1292. s_Il2CppMethodInitialized = true;
  1293. }
  1294. {
  1295. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_0 = (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD*)il2cpp_codegen_object_new(Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_il2cpp_TypeInfo_var);
  1296. Transaction__ctor_m93009611565948CF42750CAA3DB57F741E9CB327(L_0, __this, NULL);
  1297. return L_0;
  1298. }
  1299. }
  1300. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_Dispose_m8507F1AF0ADFB3D1201F30E58BAB1166BD748585 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method)
  1301. {
  1302. {
  1303. TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* L_0;
  1304. L_0 = Transaction_get_TransactionInformation_mB4DBFB45362745793F6E268C7F5BD9ADED3E5861(__this, NULL);
  1305. NullCheck(L_0);
  1306. int32_t L_1;
  1307. L_1 = TransactionInformation_get_Status_mB45D34431DAC463611A59869926E98513B97414A_inline(L_0, NULL);
  1308. if (L_1)
  1309. {
  1310. goto IL_0013;
  1311. }
  1312. }
  1313. {
  1314. Transaction_Rollback_m700FBC7080668AD032FCDA055719E100117F14B5(__this, NULL);
  1315. }
  1316. IL_0013:
  1317. {
  1318. return;
  1319. }
  1320. }
  1321. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Transaction_EnlistPromotableSinglePhase_m3146489630F14B0472D26AD5FEADD6CA5097EA21 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, RuntimeObject* ___0_promotableSinglePhaseNotification, const RuntimeMethod* method)
  1322. {
  1323. static bool s_Il2CppMethodInitialized;
  1324. if (!s_Il2CppMethodInitialized)
  1325. {
  1326. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPromotableSinglePhaseNotification_t55FA5C677628E609C73561E23A834E464F5B1321_il2cpp_TypeInfo_var);
  1327. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m17E6803A26B094A16DC42F1F23438275606091C1_RuntimeMethod_var);
  1328. s_Il2CppMethodInitialized = true;
  1329. }
  1330. {
  1331. Transaction_EnsureIncompleteCurrentScope_m50358C964D025F5EAF27CC2F0D24229E86BBA031(NULL);
  1332. RuntimeObject* L_0 = __this->___pspe;
  1333. if (L_0)
  1334. {
  1335. goto IL_001b;
  1336. }
  1337. }
  1338. {
  1339. List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C* L_1;
  1340. L_1 = Transaction_get_Durables_mCFB83FC73DFCF3EBD3A758327D3EE835389566A3(__this, NULL);
  1341. NullCheck(L_1);
  1342. int32_t L_2;
  1343. L_2 = List_1_get_Count_m17E6803A26B094A16DC42F1F23438275606091C1_inline(L_1, List_1_get_Count_m17E6803A26B094A16DC42F1F23438275606091C1_RuntimeMethod_var);
  1344. if ((((int32_t)L_2) <= ((int32_t)0)))
  1345. {
  1346. goto IL_001d;
  1347. }
  1348. }
  1349. IL_001b:
  1350. {
  1351. return (bool)0;
  1352. }
  1353. IL_001d:
  1354. {
  1355. RuntimeObject* L_3 = ___0_promotableSinglePhaseNotification;
  1356. __this->___pspe = L_3;
  1357. Il2CppCodeGenWriteBarrier((void**)(&__this->___pspe), (void*)L_3);
  1358. RuntimeObject* L_4 = __this->___pspe;
  1359. NullCheck(L_4);
  1360. InterfaceActionInvoker0::Invoke(0, IPromotableSinglePhaseNotification_t55FA5C677628E609C73561E23A834E464F5B1321_il2cpp_TypeInfo_var, L_4);
  1361. return (bool)1;
  1362. }
  1363. }
  1364. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_SetDistributedTransactionIdentifier_m83301003959A5011F8121268B0A6F937E18C6D4F (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, RuntimeObject* ___0_promotableNotification, Guid_t ___1_distributedTransactionIdentifier, const RuntimeMethod* method)
  1365. {
  1366. {
  1367. NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var)));
  1368. NotImplementedException__ctor_mDAB47BC6BD0E342E8F2171E5CABE3E67EA049F1C(L_0, NULL);
  1369. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Transaction_SetDistributedTransactionIdentifier_m83301003959A5011F8121268B0A6F937E18C6D4F_RuntimeMethod_var)));
  1370. }
  1371. }
  1372. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Transaction_EnlistPromotableSinglePhase_mCEA9608511D131D0F87515A4AC5DD6F8FDC16F9C (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, RuntimeObject* ___0_promotableSinglePhaseNotification, Guid_t ___1_promoterType, const RuntimeMethod* method)
  1373. {
  1374. {
  1375. NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var)));
  1376. NotImplementedException__ctor_mDAB47BC6BD0E342E8F2171E5CABE3E67EA049F1C(L_0, NULL);
  1377. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Transaction_EnlistPromotableSinglePhase_mCEA9608511D131D0F87515A4AC5DD6F8FDC16F9C_RuntimeMethod_var)));
  1378. }
  1379. }
  1380. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Transaction_GetPromotedToken_m6FD2831952E0FEDC2EEBFEAA3E89E2D2722BA4DC (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method)
  1381. {
  1382. {
  1383. NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var)));
  1384. NotImplementedException__ctor_mDAB47BC6BD0E342E8F2171E5CABE3E67EA049F1C(L_0, NULL);
  1385. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Transaction_GetPromotedToken_m6FD2831952E0FEDC2EEBFEAA3E89E2D2722BA4DC_RuntimeMethod_var)));
  1386. }
  1387. }
  1388. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Transaction_Equals_m6F34A0E9EC2422A790EA8E9774E3E6BAB6B3C11A (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  1389. {
  1390. static bool s_Il2CppMethodInitialized;
  1391. if (!s_Il2CppMethodInitialized)
  1392. {
  1393. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_il2cpp_TypeInfo_var);
  1394. s_Il2CppMethodInitialized = true;
  1395. }
  1396. {
  1397. RuntimeObject* L_0 = ___0_obj;
  1398. bool L_1;
  1399. L_1 = Transaction_Equals_mC586D4C5C87F45DCF282AF7B071738E8E8B2F6ED(__this, ((Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD*)IsInstClass((RuntimeObject*)L_0, Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_il2cpp_TypeInfo_var)), NULL);
  1400. return L_1;
  1401. }
  1402. }
  1403. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Transaction_Equals_mC586D4C5C87F45DCF282AF7B071738E8E8B2F6ED (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___0_t, const RuntimeMethod* method)
  1404. {
  1405. {
  1406. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_0 = ___0_t;
  1407. if ((!(((RuntimeObject*)(Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD*)L_0) == ((RuntimeObject*)(Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD*)__this))))
  1408. {
  1409. goto IL_0006;
  1410. }
  1411. }
  1412. {
  1413. return (bool)1;
  1414. }
  1415. IL_0006:
  1416. {
  1417. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_1 = ___0_t;
  1418. if (L_1)
  1419. {
  1420. goto IL_000b;
  1421. }
  1422. }
  1423. {
  1424. return (bool)0;
  1425. }
  1426. IL_000b:
  1427. {
  1428. int32_t L_2 = __this->___level;
  1429. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_3 = ___0_t;
  1430. NullCheck(L_3);
  1431. int32_t L_4 = L_3->___level;
  1432. if ((!(((uint32_t)L_2) == ((uint32_t)L_4))))
  1433. {
  1434. goto IL_0028;
  1435. }
  1436. }
  1437. {
  1438. TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* L_5 = __this->___info;
  1439. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_6 = ___0_t;
  1440. NullCheck(L_6);
  1441. TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* L_7 = L_6->___info;
  1442. return (bool)((((RuntimeObject*)(TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA*)L_5) == ((RuntimeObject*)(TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA*)L_7))? 1 : 0);
  1443. }
  1444. IL_0028:
  1445. {
  1446. return (bool)0;
  1447. }
  1448. }
  1449. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Transaction_op_Equality_m39B1A486DD944290954B17E02B0BFBDC248659BC (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___0_x, Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___1_y, const RuntimeMethod* method)
  1450. {
  1451. {
  1452. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_0 = ___0_x;
  1453. if (L_0)
  1454. {
  1455. goto IL_0008;
  1456. }
  1457. }
  1458. {
  1459. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_1 = ___1_y;
  1460. return (bool)((((RuntimeObject*)(Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  1461. }
  1462. IL_0008:
  1463. {
  1464. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_2 = ___0_x;
  1465. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_3 = ___1_y;
  1466. NullCheck(L_2);
  1467. bool L_4;
  1468. L_4 = Transaction_Equals_mC586D4C5C87F45DCF282AF7B071738E8E8B2F6ED(L_2, L_3, NULL);
  1469. return L_4;
  1470. }
  1471. }
  1472. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Transaction_op_Inequality_mDDF0206373667C46B4E753596C1C0F1CC1DD730D (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___0_x, Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___1_y, const RuntimeMethod* method)
  1473. {
  1474. {
  1475. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_0 = ___0_x;
  1476. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_1 = ___1_y;
  1477. bool L_2;
  1478. L_2 = Transaction_op_Equality_m39B1A486DD944290954B17E02B0BFBDC248659BC(L_0, L_1, NULL);
  1479. return (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  1480. }
  1481. }
  1482. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Transaction_GetHashCode_mAE0370AD6752F802566D7F7D56997BE72D8E4CDB (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method)
  1483. {
  1484. {
  1485. int32_t L_0 = __this->___level;
  1486. TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* L_1 = __this->___info;
  1487. NullCheck(L_1);
  1488. int32_t L_2;
  1489. L_2 = VirtualFuncInvoker0< int32_t >::Invoke(2, L_1);
  1490. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = __this->___dependents;
  1491. NullCheck(L_3);
  1492. int32_t L_4;
  1493. L_4 = VirtualFuncInvoker0< int32_t >::Invoke(2, L_3);
  1494. return ((int32_t)(((int32_t)((int32_t)L_0^L_2))^L_4));
  1495. }
  1496. }
  1497. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_Rollback_m700FBC7080668AD032FCDA055719E100117F14B5 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method)
  1498. {
  1499. {
  1500. Transaction_Rollback_m7BEAC0E95FA3B45F0E78C5FF1857F914AAA1909E(__this, (Exception_t*)NULL, NULL);
  1501. return;
  1502. }
  1503. }
  1504. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_Rollback_m7BEAC0E95FA3B45F0E78C5FF1857F914AAA1909E (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, Exception_t* ___0_e, const RuntimeMethod* method)
  1505. {
  1506. {
  1507. Transaction_EnsureIncompleteCurrentScope_m50358C964D025F5EAF27CC2F0D24229E86BBA031(NULL);
  1508. Exception_t* L_0 = ___0_e;
  1509. Transaction_Rollback_m298E5E20A30D81EFD61CC338DF07E9E3BA82C28D(__this, L_0, NULL, NULL);
  1510. return;
  1511. }
  1512. }
  1513. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_Rollback_m298E5E20A30D81EFD61CC338DF07E9E3BA82C28D (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, Exception_t* ___0_ex, RuntimeObject* ___1_abortingEnlisted, const RuntimeMethod* method)
  1514. {
  1515. static bool s_Il2CppMethodInitialized;
  1516. if (!s_Il2CppMethodInitialized)
  1517. {
  1518. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mDB1BBD5EEB58E2F4C09ED5E3A1840B1C4D60A1DB_RuntimeMethod_var);
  1519. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mBD39361874346D0E2EE2AA7CE005113DE0A7312A_RuntimeMethod_var);
  1520. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m58D3F44C5938CA7235526999C2B9C068517BF822_RuntimeMethod_var);
  1521. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnlistmentNotification_tACB7F43A9D736E8B9F4045339E86D063B540EC66_il2cpp_TypeInfo_var);
  1522. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPromotableSinglePhaseNotification_t55FA5C677628E609C73561E23A834E464F5B1321_il2cpp_TypeInfo_var);
  1523. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mA6A172F9F86EADBD4F544B8289E71343B533E367_RuntimeMethod_var);
  1524. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m17E6803A26B094A16DC42F1F23438275606091C1_RuntimeMethod_var);
  1525. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m81C246985A289579522B217404C0B8C99E5C0147_RuntimeMethod_var);
  1526. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C_il2cpp_TypeInfo_var);
  1527. s_Il2CppMethodInitialized = true;
  1528. }
  1529. SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C* V_0 = NULL;
  1530. List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C* V_1 = NULL;
  1531. Enumerator_t99B22733591FFD9FAE27C9EFDB0DE1D3BFC99040 V_2;
  1532. memset((&V_2), 0, sizeof(V_2));
  1533. RuntimeObject* V_3 = NULL;
  1534. {
  1535. bool L_0 = __this->___aborted;
  1536. if (!L_0)
  1537. {
  1538. goto IL_000f;
  1539. }
  1540. }
  1541. {
  1542. Transaction_FireCompleted_mD21E71C2CDB94A3F1ED8AEBD8F258C70F8210440(__this, NULL);
  1543. return;
  1544. }
  1545. IL_000f:
  1546. {
  1547. TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* L_1 = __this->___info;
  1548. NullCheck(L_1);
  1549. int32_t L_2;
  1550. L_2 = TransactionInformation_get_Status_mB45D34431DAC463611A59869926E98513B97414A_inline(L_1, NULL);
  1551. if ((!(((uint32_t)L_2) == ((uint32_t)1))))
  1552. {
  1553. goto IL_0028;
  1554. }
  1555. }
  1556. {
  1557. TransactionException_t93E8D757BC2F2616DA953B8A714A645EBCE730AF* L_3 = (TransactionException_t93E8D757BC2F2616DA953B8A714A645EBCE730AF*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransactionException_t93E8D757BC2F2616DA953B8A714A645EBCE730AF_il2cpp_TypeInfo_var)));
  1558. TransactionException__ctor_mD6A1BC6487DB3CE81488727A3D811024D45F8859(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE450D74F5D2BAAB6C582160F56F824E1F2E7676D)), NULL);
  1559. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Transaction_Rollback_m298E5E20A30D81EFD61CC338DF07E9E3BA82C28D_RuntimeMethod_var)));
  1560. }
  1561. IL_0028:
  1562. {
  1563. Exception_t* L_4 = ___0_ex;
  1564. __this->___innerException = L_4;
  1565. Il2CppCodeGenWriteBarrier((void**)(&__this->___innerException), (void*)L_4);
  1566. SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C* L_5 = (SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C*)il2cpp_codegen_object_new(SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C_il2cpp_TypeInfo_var);
  1567. SinglePhaseEnlistment__ctor_mFE1891FDD22473024672131E28D94176F7D74A01(L_5, NULL);
  1568. V_0 = L_5;
  1569. List_1_t9F4F8EB487AD8634210B33C2FD40A9DB5604EDB3* L_6;
  1570. L_6 = Transaction_get_Volatiles_mCD1BF84C66655C8FD244A1F5578DD02DBED0129A(__this, NULL);
  1571. NullCheck(L_6);
  1572. Enumerator_t99B22733591FFD9FAE27C9EFDB0DE1D3BFC99040 L_7;
  1573. L_7 = List_1_GetEnumerator_mA6A172F9F86EADBD4F544B8289E71343B533E367(L_6, List_1_GetEnumerator_mA6A172F9F86EADBD4F544B8289E71343B533E367_RuntimeMethod_var);
  1574. V_2 = L_7;
  1575. }
  1576. {
  1577. auto __finallyBlock = il2cpp::utils::Finally([&]
  1578. {
  1579. FINALLY_0061:
  1580. {
  1581. Enumerator_Dispose_mDB1BBD5EEB58E2F4C09ED5E3A1840B1C4D60A1DB((&V_2), Enumerator_Dispose_mDB1BBD5EEB58E2F4C09ED5E3A1840B1C4D60A1DB_RuntimeMethod_var);
  1582. return;
  1583. }
  1584. });
  1585. try
  1586. {
  1587. {
  1588. goto IL_0056_1;
  1589. }
  1590. IL_0043_1:
  1591. {
  1592. RuntimeObject* L_8;
  1593. L_8 = Enumerator_get_Current_m58D3F44C5938CA7235526999C2B9C068517BF822_inline((&V_2), Enumerator_get_Current_m58D3F44C5938CA7235526999C2B9C068517BF822_RuntimeMethod_var);
  1594. V_3 = L_8;
  1595. RuntimeObject* L_9 = V_3;
  1596. RuntimeObject* L_10 = ___1_abortingEnlisted;
  1597. if ((((RuntimeObject*)(RuntimeObject*)L_9) == ((RuntimeObject*)(RuntimeObject*)L_10)))
  1598. {
  1599. goto IL_0056_1;
  1600. }
  1601. }
  1602. {
  1603. RuntimeObject* L_11 = V_3;
  1604. SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C* L_12 = V_0;
  1605. NullCheck(L_11);
  1606. InterfaceActionInvoker1< Enlistment_tDF858DEFBA405B6DF5EF4DC746A92C59DE007552* >::Invoke(0, IEnlistmentNotification_tACB7F43A9D736E8B9F4045339E86D063B540EC66_il2cpp_TypeInfo_var, L_11, L_12);
  1607. }
  1608. IL_0056_1:
  1609. {
  1610. bool L_13;
  1611. L_13 = Enumerator_MoveNext_mBD39361874346D0E2EE2AA7CE005113DE0A7312A((&V_2), Enumerator_MoveNext_mBD39361874346D0E2EE2AA7CE005113DE0A7312A_RuntimeMethod_var);
  1612. if (L_13)
  1613. {
  1614. goto IL_0043_1;
  1615. }
  1616. }
  1617. {
  1618. goto IL_006f;
  1619. }
  1620. }
  1621. catch(Il2CppExceptionWrapper& e)
  1622. {
  1623. __finallyBlock.StoreException(e.ex);
  1624. }
  1625. }
  1626. IL_006f:
  1627. {
  1628. List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C* L_14;
  1629. L_14 = Transaction_get_Durables_mCFB83FC73DFCF3EBD3A758327D3EE835389566A3(__this, NULL);
  1630. V_1 = L_14;
  1631. List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C* L_15 = V_1;
  1632. NullCheck(L_15);
  1633. int32_t L_16;
  1634. L_16 = List_1_get_Count_m17E6803A26B094A16DC42F1F23438275606091C1_inline(L_15, List_1_get_Count_m17E6803A26B094A16DC42F1F23438275606091C1_RuntimeMethod_var);
  1635. if ((((int32_t)L_16) <= ((int32_t)0)))
  1636. {
  1637. goto IL_0096;
  1638. }
  1639. }
  1640. {
  1641. List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C* L_17 = V_1;
  1642. NullCheck(L_17);
  1643. RuntimeObject* L_18;
  1644. L_18 = List_1_get_Item_m81C246985A289579522B217404C0B8C99E5C0147(L_17, 0, List_1_get_Item_m81C246985A289579522B217404C0B8C99E5C0147_RuntimeMethod_var);
  1645. RuntimeObject* L_19 = ___1_abortingEnlisted;
  1646. if ((((RuntimeObject*)(RuntimeObject*)L_18) == ((RuntimeObject*)(RuntimeObject*)L_19)))
  1647. {
  1648. goto IL_0096;
  1649. }
  1650. }
  1651. {
  1652. List_1_t151A1BC1807DD3664F9A0AD5F5D74FF992C57A4C* L_20 = V_1;
  1653. NullCheck(L_20);
  1654. RuntimeObject* L_21;
  1655. L_21 = List_1_get_Item_m81C246985A289579522B217404C0B8C99E5C0147(L_20, 0, List_1_get_Item_m81C246985A289579522B217404C0B8C99E5C0147_RuntimeMethod_var);
  1656. SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C* L_22 = V_0;
  1657. NullCheck(L_21);
  1658. InterfaceActionInvoker1< Enlistment_tDF858DEFBA405B6DF5EF4DC746A92C59DE007552* >::Invoke(0, IEnlistmentNotification_tACB7F43A9D736E8B9F4045339E86D063B540EC66_il2cpp_TypeInfo_var, L_21, L_22);
  1659. }
  1660. IL_0096:
  1661. {
  1662. RuntimeObject* L_23 = __this->___pspe;
  1663. if (!L_23)
  1664. {
  1665. goto IL_00b3;
  1666. }
  1667. }
  1668. {
  1669. RuntimeObject* L_24 = __this->___pspe;
  1670. RuntimeObject* L_25 = ___1_abortingEnlisted;
  1671. if ((((RuntimeObject*)(RuntimeObject*)L_24) == ((RuntimeObject*)(RuntimeObject*)L_25)))
  1672. {
  1673. goto IL_00b3;
  1674. }
  1675. }
  1676. {
  1677. RuntimeObject* L_26 = __this->___pspe;
  1678. SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C* L_27 = V_0;
  1679. NullCheck(L_26);
  1680. InterfaceActionInvoker1< SinglePhaseEnlistment_t7AA936D444F929C7355B1D02E9A9B6B2B55D135C* >::Invoke(1, IPromotableSinglePhaseNotification_t55FA5C677628E609C73561E23A834E464F5B1321_il2cpp_TypeInfo_var, L_26, L_27);
  1681. }
  1682. IL_00b3:
  1683. {
  1684. Transaction_set_Aborted_m24683739B6DC84AF5BEAF5E83C6ECA1D4B44BE17(__this, (bool)1, NULL);
  1685. Transaction_FireCompleted_mD21E71C2CDB94A3F1ED8AEBD8F258C70F8210440(__this, NULL);
  1686. return;
  1687. }
  1688. }
  1689. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_set_Aborted_m24683739B6DC84AF5BEAF5E83C6ECA1D4B44BE17 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, bool ___0_value, const RuntimeMethod* method)
  1690. {
  1691. {
  1692. bool L_0 = ___0_value;
  1693. __this->___aborted = L_0;
  1694. bool L_1 = __this->___aborted;
  1695. if (!L_1)
  1696. {
  1697. goto IL_001b;
  1698. }
  1699. }
  1700. {
  1701. TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* L_2 = __this->___info;
  1702. NullCheck(L_2);
  1703. TransactionInformation_set_Status_m6D0E87BE8EDD80DC7AFD5A3CEC8E8EA4B1626AFE_inline(L_2, 2, NULL);
  1704. }
  1705. IL_001b:
  1706. {
  1707. return;
  1708. }
  1709. }
  1710. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4* Transaction_get_Scope_mCB49E7F6BABD63238A74D8C3D08B7267B01CFB8E (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method)
  1711. {
  1712. {
  1713. TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4* L_0 = __this->___scope;
  1714. return L_0;
  1715. }
  1716. }
  1717. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_FireCompleted_mD21E71C2CDB94A3F1ED8AEBD8F258C70F8210440 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method)
  1718. {
  1719. static bool s_Il2CppMethodInitialized;
  1720. if (!s_Il2CppMethodInitialized)
  1721. {
  1722. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82_il2cpp_TypeInfo_var);
  1723. s_Il2CppMethodInitialized = true;
  1724. }
  1725. {
  1726. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_0 = __this->___TransactionCompletedInternal;
  1727. if (!L_0)
  1728. {
  1729. goto IL_001a;
  1730. }
  1731. }
  1732. {
  1733. TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* L_1 = __this->___TransactionCompletedInternal;
  1734. TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* L_2 = (TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82*)il2cpp_codegen_object_new(TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82_il2cpp_TypeInfo_var);
  1735. TransactionEventArgs__ctor_mDE16E072857474C6DD16928DB47058E2A9F98046(L_2, __this, NULL);
  1736. NullCheck(L_1);
  1737. TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_inline(L_1, __this, L_2, NULL);
  1738. }
  1739. IL_001a:
  1740. {
  1741. return;
  1742. }
  1743. }
  1744. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction_EnsureIncompleteCurrentScope_m50358C964D025F5EAF27CC2F0D24229E86BBA031 (const RuntimeMethod* method)
  1745. {
  1746. {
  1747. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_0;
  1748. L_0 = Transaction_get_CurrentInternal_m195CAC9933D30007BD941BF68FA56CE0C7C7FBEE_inline(NULL);
  1749. bool L_1;
  1750. L_1 = Transaction_op_Equality_m39B1A486DD944290954B17E02B0BFBDC248659BC(L_0, (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD*)NULL, NULL);
  1751. if (!L_1)
  1752. {
  1753. goto IL_000e;
  1754. }
  1755. }
  1756. {
  1757. return;
  1758. }
  1759. IL_000e:
  1760. {
  1761. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_2;
  1762. L_2 = Transaction_get_CurrentInternal_m195CAC9933D30007BD941BF68FA56CE0C7C7FBEE_inline(NULL);
  1763. NullCheck(L_2);
  1764. TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4* L_3;
  1765. L_3 = Transaction_get_Scope_mCB49E7F6BABD63238A74D8C3D08B7267B01CFB8E_inline(L_2, NULL);
  1766. if (!L_3)
  1767. {
  1768. goto IL_0036;
  1769. }
  1770. }
  1771. {
  1772. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_4;
  1773. L_4 = Transaction_get_CurrentInternal_m195CAC9933D30007BD941BF68FA56CE0C7C7FBEE_inline(NULL);
  1774. NullCheck(L_4);
  1775. TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4* L_5;
  1776. L_5 = Transaction_get_Scope_mCB49E7F6BABD63238A74D8C3D08B7267B01CFB8E_inline(L_4, NULL);
  1777. NullCheck(L_5);
  1778. bool L_6;
  1779. L_6 = TransactionScope_get_IsComplete_mA48470D9FFCC137101B3972C9B1D46ED5EC51C8C_inline(L_5, NULL);
  1780. if (!L_6)
  1781. {
  1782. goto IL_0036;
  1783. }
  1784. }
  1785. {
  1786. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  1787. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB0FCBD1BB0D5DDFC7C1E4FBDBC8880AC0B13F325)), NULL);
  1788. IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Transaction_EnsureIncompleteCurrentScope_m50358C964D025F5EAF27CC2F0D24229E86BBA031_RuntimeMethod_var)));
  1789. }
  1790. IL_0036:
  1791. {
  1792. return;
  1793. }
  1794. }
  1795. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transaction__ctor_mDF856DFDF7C245002C76F0B0E0AC7821B25E7ADC (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method)
  1796. {
  1797. static bool s_Il2CppMethodInitialized;
  1798. if (!s_Il2CppMethodInitialized)
  1799. {
  1800. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Transaction__ctor_mDF856DFDF7C245002C76F0B0E0AC7821B25E7ADC_RuntimeMethod_var);
  1801. s_Il2CppMethodInitialized = true;
  1802. }
  1803. {
  1804. il2cpp_codegen_raise_profile_exception(Transaction__ctor_mDF856DFDF7C245002C76F0B0E0AC7821B25E7ADC_RuntimeMethod_var);
  1805. return;
  1806. }
  1807. }
  1808. #ifdef __clang__
  1809. #pragma clang diagnostic pop
  1810. #endif
  1811. #ifdef __clang__
  1812. #pragma clang diagnostic push
  1813. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1814. #pragma clang diagnostic ignored "-Wunused-variable"
  1815. #endif
  1816. void AsyncCommit_Invoke_mAB6911D77D96EB8FAA0E2EE3FA1E3DCE323A528E_Multicast(AsyncCommit_t71DC723123EBA5C843539A11885B9B64FBA2FF0D* __this, const RuntimeMethod* method)
  1817. {
  1818. il2cpp_array_size_t length = __this->___delegates->max_length;
  1819. Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
  1820. for (il2cpp_array_size_t i = 0; i < length; i++)
  1821. {
  1822. AsyncCommit_t71DC723123EBA5C843539A11885B9B64FBA2FF0D* currentDelegate = reinterpret_cast<AsyncCommit_t71DC723123EBA5C843539A11885B9B64FBA2FF0D*>(delegatesToInvoke[i]);
  1823. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  1824. ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
  1825. }
  1826. }
  1827. void AsyncCommit_Invoke_mAB6911D77D96EB8FAA0E2EE3FA1E3DCE323A528E_OpenInst(AsyncCommit_t71DC723123EBA5C843539A11885B9B64FBA2FF0D* __this, const RuntimeMethod* method)
  1828. {
  1829. typedef void (*FunctionPointerType) (const RuntimeMethod*);
  1830. ((FunctionPointerType)__this->___method_ptr)(method);
  1831. }
  1832. void AsyncCommit_Invoke_mAB6911D77D96EB8FAA0E2EE3FA1E3DCE323A528E_OpenStatic(AsyncCommit_t71DC723123EBA5C843539A11885B9B64FBA2FF0D* __this, const RuntimeMethod* method)
  1833. {
  1834. typedef void (*FunctionPointerType) (const RuntimeMethod*);
  1835. ((FunctionPointerType)__this->___method_ptr)(method);
  1836. }
  1837. IL2CPP_EXTERN_C void DelegatePInvokeWrapper_AsyncCommit_t71DC723123EBA5C843539A11885B9B64FBA2FF0D (AsyncCommit_t71DC723123EBA5C843539A11885B9B64FBA2FF0D* __this, const RuntimeMethod* method)
  1838. {
  1839. typedef void (DEFAULT_CALL *PInvokeFunc)();
  1840. PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
  1841. il2cppPInvokeFunc();
  1842. }
  1843. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCommit__ctor_mBC316513E94C120C9626641E149466A8D0FCD0CF (AsyncCommit_t71DC723123EBA5C843539A11885B9B64FBA2FF0D* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
  1844. {
  1845. __this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
  1846. __this->___method = ___1_method;
  1847. __this->___m_target = ___0_object;
  1848. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
  1849. int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
  1850. __this->___method_code = (intptr_t)__this;
  1851. if (MethodIsStatic((RuntimeMethod*)___1_method))
  1852. {
  1853. bool isOpen = parameterCount == 0;
  1854. if (isOpen)
  1855. __this->___invoke_impl = (intptr_t)&AsyncCommit_Invoke_mAB6911D77D96EB8FAA0E2EE3FA1E3DCE323A528E_OpenStatic;
  1856. else
  1857. {
  1858. __this->___invoke_impl = __this->___method_ptr;
  1859. __this->___method_code = (intptr_t)__this->___m_target;
  1860. }
  1861. }
  1862. else
  1863. {
  1864. if (___0_object == NULL)
  1865. il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
  1866. __this->___invoke_impl = __this->___method_ptr;
  1867. __this->___method_code = (intptr_t)__this->___m_target;
  1868. }
  1869. __this->___extra_arg = (intptr_t)&AsyncCommit_Invoke_mAB6911D77D96EB8FAA0E2EE3FA1E3DCE323A528E_Multicast;
  1870. }
  1871. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCommit_Invoke_mAB6911D77D96EB8FAA0E2EE3FA1E3DCE323A528E (AsyncCommit_t71DC723123EBA5C843539A11885B9B64FBA2FF0D* __this, const RuntimeMethod* method)
  1872. {
  1873. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  1874. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
  1875. }
  1876. #ifdef __clang__
  1877. #pragma clang diagnostic pop
  1878. #endif
  1879. #ifdef __clang__
  1880. #pragma clang diagnostic push
  1881. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1882. #pragma clang diagnostic ignored "-Wunused-variable"
  1883. #endif
  1884. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransactionEventArgs__ctor_mFD81A5A7A11F8417373C43F9BEB03EAABF6B28B3 (TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* __this, const RuntimeMethod* method)
  1885. {
  1886. static bool s_Il2CppMethodInitialized;
  1887. if (!s_Il2CppMethodInitialized)
  1888. {
  1889. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var);
  1890. s_Il2CppMethodInitialized = true;
  1891. }
  1892. {
  1893. il2cpp_codegen_runtime_class_init_inline(EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var);
  1894. EventArgs__ctor_mC6F9412D03203ADEF854117542C8EBF61624C8C3(__this, NULL);
  1895. return;
  1896. }
  1897. }
  1898. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransactionEventArgs__ctor_mDE16E072857474C6DD16928DB47058E2A9F98046 (TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* __this, Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___0_transaction, const RuntimeMethod* method)
  1899. {
  1900. {
  1901. TransactionEventArgs__ctor_mFD81A5A7A11F8417373C43F9BEB03EAABF6B28B3(__this, NULL);
  1902. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_0 = ___0_transaction;
  1903. __this->___transaction = L_0;
  1904. Il2CppCodeGenWriteBarrier((void**)(&__this->___transaction), (void*)L_0);
  1905. return;
  1906. }
  1907. }
  1908. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* TransactionEventArgs_get_Transaction_mCC5CE3DF8037CCCDB96CE374CEB8BC155ADC01C7 (TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* __this, const RuntimeMethod* method)
  1909. {
  1910. {
  1911. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_0 = __this->___transaction;
  1912. return L_0;
  1913. }
  1914. }
  1915. #ifdef __clang__
  1916. #pragma clang diagnostic pop
  1917. #endif
  1918. #ifdef __clang__
  1919. #pragma clang diagnostic push
  1920. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1921. #pragma clang diagnostic ignored "-Wunused-variable"
  1922. #endif
  1923. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransactionException__ctor_m3C29A3EB6D1A3AA42E78B96EF45C22CC1F8171BB (TransactionException_t93E8D757BC2F2616DA953B8A714A645EBCE730AF* __this, const RuntimeMethod* method)
  1924. {
  1925. {
  1926. SystemException__ctor_mB30C3C4B8AB4DF43F4A453C97CCA76DC4AE63B80(__this, NULL);
  1927. return;
  1928. }
  1929. }
  1930. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransactionException__ctor_mD6A1BC6487DB3CE81488727A3D811024D45F8859 (TransactionException_t93E8D757BC2F2616DA953B8A714A645EBCE730AF* __this, String_t* ___0_message, const RuntimeMethod* method)
  1931. {
  1932. {
  1933. String_t* L_0 = ___0_message;
  1934. SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_0, NULL);
  1935. return;
  1936. }
  1937. }
  1938. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransactionException__ctor_m3FDD9AE8E185D636E05D9A9D83E738C6A63715E4 (TransactionException_t93E8D757BC2F2616DA953B8A714A645EBCE730AF* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
  1939. {
  1940. {
  1941. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info;
  1942. StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context;
  1943. SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879(__this, L_0, L_1, NULL);
  1944. return;
  1945. }
  1946. }
  1947. #ifdef __clang__
  1948. #pragma clang diagnostic pop
  1949. #endif
  1950. #ifdef __clang__
  1951. #pragma clang diagnostic push
  1952. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1953. #pragma clang diagnostic ignored "-Wunused-variable"
  1954. #endif
  1955. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransactionInformation_get_Status_mB45D34431DAC463611A59869926E98513B97414A (TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* __this, const RuntimeMethod* method)
  1956. {
  1957. {
  1958. int32_t L_0 = __this->___status;
  1959. return L_0;
  1960. }
  1961. }
  1962. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransactionInformation_set_Status_m6D0E87BE8EDD80DC7AFD5A3CEC8E8EA4B1626AFE (TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* __this, int32_t ___0_value, const RuntimeMethod* method)
  1963. {
  1964. {
  1965. int32_t L_0 = ___0_value;
  1966. __this->___status = L_0;
  1967. return;
  1968. }
  1969. }
  1970. #ifdef __clang__
  1971. #pragma clang diagnostic pop
  1972. #endif
  1973. #ifdef __clang__
  1974. #pragma clang diagnostic push
  1975. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1976. #pragma clang diagnostic ignored "-Wunused-variable"
  1977. #endif
  1978. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* TransactionInterop_GetExportCookie_m8515B8A490064A999F1D786807C46C472DE94777 (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___0_transaction, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_whereabouts, const RuntimeMethod* method)
  1979. {
  1980. {
  1981. NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var)));
  1982. NotImplementedException__ctor_mDAB47BC6BD0E342E8F2171E5CABE3E67EA049F1C(L_0, NULL);
  1983. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransactionInterop_GetExportCookie_m8515B8A490064A999F1D786807C46C472DE94777_RuntimeMethod_var)));
  1984. }
  1985. }
  1986. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransactionInterop__cctor_mDEEE139B98B0BE6A2FE2DD208FD67EA68582972D (const RuntimeMethod* method)
  1987. {
  1988. static bool s_Il2CppMethodInitialized;
  1989. if (!s_Il2CppMethodInitialized)
  1990. {
  1991. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransactionInterop_t4A05E24408C479CE0CCCE5ECE08439418E156057_il2cpp_TypeInfo_var);
  1992. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral17286A6E9257F0C447A083F31044867307170E84);
  1993. s_Il2CppMethodInitialized = true;
  1994. }
  1995. {
  1996. Guid_t L_0;
  1997. memset((&L_0), 0, sizeof(L_0));
  1998. Guid__ctor_mAE66BA1C43B4194F4F7991E2E30370E36CBBF830((&L_0), _stringLiteral17286A6E9257F0C447A083F31044867307170E84, NULL);
  1999. ((TransactionInterop_t4A05E24408C479CE0CCCE5ECE08439418E156057_StaticFields*)il2cpp_codegen_static_fields_for(TransactionInterop_t4A05E24408C479CE0CCCE5ECE08439418E156057_il2cpp_TypeInfo_var))->___PromoterTypeDtc = L_0;
  2000. return;
  2001. }
  2002. }
  2003. #ifdef __clang__
  2004. #pragma clang diagnostic pop
  2005. #endif
  2006. #ifdef __clang__
  2007. #pragma clang diagnostic push
  2008. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2009. #pragma clang diagnostic ignored "-Wunused-variable"
  2010. #endif
  2011. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransactionManager__cctor_m4E4759360B22227816CDA61B5E775400B5D490C4 (const RuntimeMethod* method)
  2012. {
  2013. static bool s_Il2CppMethodInitialized;
  2014. if (!s_Il2CppMethodInitialized)
  2015. {
  2016. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_il2cpp_TypeInfo_var);
  2017. s_Il2CppMethodInitialized = true;
  2018. }
  2019. {
  2020. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0;
  2021. memset((&L_0), 0, sizeof(L_0));
  2022. TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&L_0), 0, 1, 0, NULL);
  2023. ((TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_StaticFields*)il2cpp_codegen_static_fields_for(TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_il2cpp_TypeInfo_var))->___defaultTimeout = L_0;
  2024. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1;
  2025. memset((&L_1), 0, sizeof(L_1));
  2026. TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&L_1), 0, ((int32_t)10), 0, NULL);
  2027. ((TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_StaticFields*)il2cpp_codegen_static_fields_for(TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_il2cpp_TypeInfo_var))->___maxTimeout = L_1;
  2028. return;
  2029. }
  2030. }
  2031. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TransactionManager_get_DefaultTimeout_m986CEE04836E5DCF3328652175C50A276DD75E0F (const RuntimeMethod* method)
  2032. {
  2033. static bool s_Il2CppMethodInitialized;
  2034. if (!s_Il2CppMethodInitialized)
  2035. {
  2036. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_il2cpp_TypeInfo_var);
  2037. s_Il2CppMethodInitialized = true;
  2038. }
  2039. {
  2040. il2cpp_codegen_runtime_class_init_inline(TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_il2cpp_TypeInfo_var);
  2041. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ((TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_StaticFields*)il2cpp_codegen_static_fields_for(TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_il2cpp_TypeInfo_var))->___defaultTimeout;
  2042. return L_0;
  2043. }
  2044. }
  2045. #ifdef __clang__
  2046. #pragma clang diagnostic pop
  2047. #endif
  2048. #ifdef __clang__
  2049. #pragma clang diagnostic push
  2050. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2051. #pragma clang diagnostic ignored "-Wunused-variable"
  2052. #endif
  2053. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransactionOptions__ctor_mB6E01EA3E9A536D3DD7518541B0A19791D044910 (TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD* __this, int32_t ___0_level, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_timeout, const RuntimeMethod* method)
  2054. {
  2055. {
  2056. int32_t L_0 = ___0_level;
  2057. __this->___level = L_0;
  2058. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___1_timeout;
  2059. __this->___timeout = L_1;
  2060. return;
  2061. }
  2062. }
  2063. IL2CPP_EXTERN_C void TransactionOptions__ctor_mB6E01EA3E9A536D3DD7518541B0A19791D044910_AdjustorThunk (RuntimeObject* __this, int32_t ___0_level, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___1_timeout, const RuntimeMethod* method)
  2064. {
  2065. TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD* _thisAdjusted;
  2066. int32_t _offset = 1;
  2067. _thisAdjusted = reinterpret_cast<TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD*>(__this + _offset);
  2068. TransactionOptions__ctor_mB6E01EA3E9A536D3DD7518541B0A19791D044910(_thisAdjusted, ___0_level, ___1_timeout, method);
  2069. }
  2070. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransactionOptions_op_Equality_m5B9B64DE16F3F0C7BBDE6C6201B59679B90E6C97 (TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD ___0_x, TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD ___1_y, const RuntimeMethod* method)
  2071. {
  2072. static bool s_Il2CppMethodInitialized;
  2073. if (!s_Il2CppMethodInitialized)
  2074. {
  2075. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
  2076. s_Il2CppMethodInitialized = true;
  2077. }
  2078. {
  2079. TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD L_0 = ___0_x;
  2080. int32_t L_1 = L_0.___level;
  2081. TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD L_2 = ___1_y;
  2082. int32_t L_3 = L_2.___level;
  2083. if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
  2084. {
  2085. goto IL_0020;
  2086. }
  2087. }
  2088. {
  2089. TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD L_4 = ___0_x;
  2090. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5 = L_4.___timeout;
  2091. TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD L_6 = ___1_y;
  2092. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7 = L_6.___timeout;
  2093. il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
  2094. bool L_8;
  2095. L_8 = TimeSpan_op_Equality_m951689F806957B14F237DAFCEE4CB322799A723E(L_5, L_7, NULL);
  2096. return L_8;
  2097. }
  2098. IL_0020:
  2099. {
  2100. return (bool)0;
  2101. }
  2102. }
  2103. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransactionOptions_Equals_m6E5D4EFB290F14239D57B0C7D364109797600E48 (TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  2104. {
  2105. static bool s_Il2CppMethodInitialized;
  2106. if (!s_Il2CppMethodInitialized)
  2107. {
  2108. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD_il2cpp_TypeInfo_var);
  2109. s_Il2CppMethodInitialized = true;
  2110. }
  2111. {
  2112. RuntimeObject* L_0 = ___0_obj;
  2113. if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD_il2cpp_TypeInfo_var)))
  2114. {
  2115. goto IL_000a;
  2116. }
  2117. }
  2118. {
  2119. return (bool)0;
  2120. }
  2121. IL_000a:
  2122. {
  2123. TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD L_1 = (*(TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD*)__this);
  2124. RuntimeObject* L_2 = ___0_obj;
  2125. bool L_3;
  2126. L_3 = TransactionOptions_op_Equality_m5B9B64DE16F3F0C7BBDE6C6201B59679B90E6C97(L_1, ((*(TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD*)UnBox(L_2, TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD_il2cpp_TypeInfo_var))), NULL);
  2127. return L_3;
  2128. }
  2129. }
  2130. IL2CPP_EXTERN_C bool TransactionOptions_Equals_m6E5D4EFB290F14239D57B0C7D364109797600E48_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  2131. {
  2132. TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD* _thisAdjusted;
  2133. int32_t _offset = 1;
  2134. _thisAdjusted = reinterpret_cast<TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD*>(__this + _offset);
  2135. bool _returnValue;
  2136. _returnValue = TransactionOptions_Equals_m6E5D4EFB290F14239D57B0C7D364109797600E48(_thisAdjusted, ___0_obj, method);
  2137. return _returnValue;
  2138. }
  2139. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransactionOptions_GetHashCode_mD8274DC4F6F15118D764DB6D0043BB82AD162234 (TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD* __this, const RuntimeMethod* method)
  2140. {
  2141. static bool s_Il2CppMethodInitialized;
  2142. if (!s_Il2CppMethodInitialized)
  2143. {
  2144. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
  2145. s_Il2CppMethodInitialized = true;
  2146. }
  2147. {
  2148. int32_t L_0 = __this->___level;
  2149. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_1 = (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(&__this->___timeout);
  2150. il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
  2151. int32_t L_2;
  2152. L_2 = TimeSpan_GetHashCode_m2CBBAD27522E17FE6006390ED0E3874676CAA76D(L_1, NULL);
  2153. return ((int32_t)((int32_t)L_0^L_2));
  2154. }
  2155. }
  2156. IL2CPP_EXTERN_C int32_t TransactionOptions_GetHashCode_mD8274DC4F6F15118D764DB6D0043BB82AD162234_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  2157. {
  2158. TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD* _thisAdjusted;
  2159. int32_t _offset = 1;
  2160. _thisAdjusted = reinterpret_cast<TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD*>(__this + _offset);
  2161. int32_t _returnValue;
  2162. _returnValue = TransactionOptions_GetHashCode_mD8274DC4F6F15118D764DB6D0043BB82AD162234(_thisAdjusted, method);
  2163. return _returnValue;
  2164. }
  2165. #ifdef __clang__
  2166. #pragma clang diagnostic pop
  2167. #endif
  2168. #ifdef __clang__
  2169. #pragma clang diagnostic push
  2170. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2171. #pragma clang diagnostic ignored "-Wunused-variable"
  2172. #endif
  2173. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransactionScope_get_IsComplete_mA48470D9FFCC137101B3972C9B1D46ED5EC51C8C (TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4* __this, const RuntimeMethod* method)
  2174. {
  2175. {
  2176. bool L_0 = __this->___completed;
  2177. return L_0;
  2178. }
  2179. }
  2180. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransactionScope__cctor_m3EFA247165D4145B3459A1B3D476309A6D5DCB48 (const RuntimeMethod* method)
  2181. {
  2182. static bool s_Il2CppMethodInitialized;
  2183. if (!s_Il2CppMethodInitialized)
  2184. {
  2185. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_il2cpp_TypeInfo_var);
  2186. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4_il2cpp_TypeInfo_var);
  2187. s_Il2CppMethodInitialized = true;
  2188. }
  2189. {
  2190. il2cpp_codegen_runtime_class_init_inline(TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_il2cpp_TypeInfo_var);
  2191. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0;
  2192. L_0 = TransactionManager_get_DefaultTimeout_m986CEE04836E5DCF3328652175C50A276DD75E0F_inline(NULL);
  2193. TransactionOptions_tF977EA80CD543D25883B20A41B8EBAD0E39D21AD L_1;
  2194. memset((&L_1), 0, sizeof(L_1));
  2195. TransactionOptions__ctor_mB6E01EA3E9A536D3DD7518541B0A19791D044910((&L_1), 0, L_0, NULL);
  2196. ((TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4_StaticFields*)il2cpp_codegen_static_fields_for(TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4_il2cpp_TypeInfo_var))->___defaultOptions = L_1;
  2197. return;
  2198. }
  2199. }
  2200. #ifdef __clang__
  2201. #pragma clang diagnostic pop
  2202. #endif
  2203. #ifdef __clang__
  2204. #pragma clang diagnostic push
  2205. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2206. #pragma clang diagnostic ignored "-Wunused-variable"
  2207. #endif
  2208. #ifdef __clang__
  2209. #pragma clang diagnostic pop
  2210. #endif
  2211. #ifdef __clang__
  2212. #pragma clang diagnostic push
  2213. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2214. #pragma clang diagnostic ignored "-Wunused-variable"
  2215. #endif
  2216. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowStub_ThrowNotSupportedException_m53C3B333318540135E1FEA2D1ADAD8EC68844340 (const RuntimeMethod* method)
  2217. {
  2218. {
  2219. PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* L_0 = (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var)));
  2220. PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1(L_0, NULL);
  2221. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ThrowStub_ThrowNotSupportedException_m53C3B333318540135E1FEA2D1ADAD8EC68844340_RuntimeMethod_var)));
  2222. }
  2223. }
  2224. #ifdef __clang__
  2225. #pragma clang diagnostic pop
  2226. #endif
  2227. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Transaction_get_Pspe_m67F7FB318447F2C29E24FA197842752957C6DDB7_inline (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method)
  2228. {
  2229. {
  2230. RuntimeObject* L_0 = __this->___pspe;
  2231. return L_0;
  2232. }
  2233. }
  2234. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* Transaction_get_CurrentInternal_m195CAC9933D30007BD941BF68FA56CE0C7C7FBEE_inline (const RuntimeMethod* method)
  2235. {
  2236. static bool s_Il2CppMethodInitialized;
  2237. if (!s_Il2CppMethodInitialized)
  2238. {
  2239. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_il2cpp_TypeInfo_var);
  2240. s_Il2CppMethodInitialized = true;
  2241. }
  2242. {
  2243. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_0 = ((Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_il2cpp_TypeInfo_var))->___ambient;
  2244. return L_0;
  2245. }
  2246. }
  2247. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Transaction_set_CurrentInternal_mB1E7D608782C542652C5FAD9D72BA73CB6558565_inline (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* ___0_value, const RuntimeMethod* method)
  2248. {
  2249. static bool s_Il2CppMethodInitialized;
  2250. if (!s_Il2CppMethodInitialized)
  2251. {
  2252. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_il2cpp_TypeInfo_var);
  2253. s_Il2CppMethodInitialized = true;
  2254. }
  2255. {
  2256. Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* L_0 = ___0_value;
  2257. ((Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_il2cpp_TypeInfo_var))->___ambient = L_0;
  2258. Il2CppCodeGenWriteBarrier((void**)(&((Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD_il2cpp_TypeInfo_var))->___ambient), (void*)L_0);
  2259. return;
  2260. }
  2261. }
  2262. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransactionInformation_get_Status_mB45D34431DAC463611A59869926E98513B97414A_inline (TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* __this, const RuntimeMethod* method)
  2263. {
  2264. {
  2265. int32_t L_0 = __this->___status;
  2266. return L_0;
  2267. }
  2268. }
  2269. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TransactionInformation_set_Status_m6D0E87BE8EDD80DC7AFD5A3CEC8E8EA4B1626AFE_inline (TransactionInformation_tFB7D26BBE9CEB8F44CAC3930B739922628AD17EA* __this, int32_t ___0_value, const RuntimeMethod* method)
  2270. {
  2271. {
  2272. int32_t L_0 = ___0_value;
  2273. __this->___status = L_0;
  2274. return;
  2275. }
  2276. }
  2277. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TransactionCompletedEventHandler_Invoke_mBFD780E1344550FC207E7DC648CE87AD1BF5E08D_inline (TransactionCompletedEventHandler_tE63F4C59FFEDF5500FAD819D585CBCAE192CE3DB* __this, RuntimeObject* ___0_sender, TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82* ___1_e, const RuntimeMethod* method)
  2278. {
  2279. typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, TransactionEventArgs_t061FE4DA10D8A039736DB2C1A8ACB37D856FAD82*, const RuntimeMethod*);
  2280. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_sender, ___1_e, reinterpret_cast<RuntimeMethod*>(__this->___method));
  2281. }
  2282. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4* Transaction_get_Scope_mCB49E7F6BABD63238A74D8C3D08B7267B01CFB8E_inline (Transaction_tB36D4D179023FCFA37362B3BC0C4DC533D2EE1AD* __this, const RuntimeMethod* method)
  2283. {
  2284. {
  2285. TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4* L_0 = __this->___scope;
  2286. return L_0;
  2287. }
  2288. }
  2289. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TransactionScope_get_IsComplete_mA48470D9FFCC137101B3972C9B1D46ED5EC51C8C_inline (TransactionScope_tB6032DAC900A60B7BC491532717C3707414B9BC4* __this, const RuntimeMethod* method)
  2290. {
  2291. {
  2292. bool L_0 = __this->___completed;
  2293. return L_0;
  2294. }
  2295. }
  2296. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TransactionManager_get_DefaultTimeout_m986CEE04836E5DCF3328652175C50A276DD75E0F_inline (const RuntimeMethod* method)
  2297. {
  2298. static bool s_Il2CppMethodInitialized;
  2299. if (!s_Il2CppMethodInitialized)
  2300. {
  2301. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_il2cpp_TypeInfo_var);
  2302. s_Il2CppMethodInitialized = true;
  2303. }
  2304. {
  2305. il2cpp_codegen_runtime_class_init_inline(TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_il2cpp_TypeInfo_var);
  2306. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ((TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_StaticFields*)il2cpp_codegen_static_fields_for(TransactionManager_t66CE9AFC4ED0943EF1DAC0186B32D84DBF39EA98_il2cpp_TypeInfo_var))->___defaultTimeout;
  2307. return L_0;
  2308. }
  2309. }
  2310. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
  2311. {
  2312. {
  2313. int32_t L_0 = __this->____size;
  2314. return L_0;
  2315. }
  2316. }
  2317. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method)
  2318. {
  2319. {
  2320. RuntimeObject* L_0 = __this->____current;
  2321. return L_0;
  2322. }
  2323. }