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

System.Transactions.cpp 121KB

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