System.Xml_Attr.cpp 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301
  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. #include <stdint.h>
  9. // System.Char[]
  10. struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
  11. // System.Type[]
  12. struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
  13. // System.Reflection.AssemblyCompanyAttribute
  14. struct AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4;
  15. // System.Reflection.AssemblyCopyrightAttribute
  16. struct AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC;
  17. // System.Reflection.AssemblyDefaultAliasAttribute
  18. struct AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA;
  19. // System.Reflection.AssemblyDelaySignAttribute
  20. struct AssemblyDelaySignAttribute_tB66445498441723DC06E545FAA1CF0F128A1FE38;
  21. // System.Reflection.AssemblyDescriptionAttribute
  22. struct AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3;
  23. // System.Reflection.AssemblyFileVersionAttribute
  24. struct AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F;
  25. // System.Reflection.AssemblyInformationalVersionAttribute
  26. struct AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0;
  27. // System.Reflection.AssemblyKeyFileAttribute
  28. struct AssemblyKeyFileAttribute_tEF26145AA8A5F35C218FE543113825F133CC6253;
  29. // System.Reflection.AssemblyProductAttribute
  30. struct AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA;
  31. // System.Reflection.AssemblyTitleAttribute
  32. struct AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7;
  33. // System.Runtime.CompilerServices.AsyncStateMachineAttribute
  34. struct AsyncStateMachineAttribute_tBDB4B958CFB5CD3BEE1427711FFC8C358C9BA6E6;
  35. // System.AttributeUsageAttribute
  36. struct AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C;
  37. // System.Reflection.Binder
  38. struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30;
  39. // System.CLSCompliantAttribute
  40. struct CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249;
  41. // System.Runtime.InteropServices.ComVisibleAttribute
  42. struct ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A;
  43. // System.Runtime.CompilerServices.CompilationRelaxationsAttribute
  44. struct CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF;
  45. // System.Runtime.CompilerServices.CompilerGeneratedAttribute
  46. struct CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C;
  47. // System.Diagnostics.DebuggableAttribute
  48. struct DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B;
  49. // System.Diagnostics.DebuggerDisplayAttribute
  50. struct DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F;
  51. // System.Diagnostics.DebuggerHiddenAttribute
  52. struct DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88;
  53. // System.Reflection.DefaultMemberAttribute
  54. struct DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5;
  55. // System.ComponentModel.DefaultValueAttribute
  56. struct DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6;
  57. // System.ComponentModel.EditorBrowsableAttribute
  58. struct EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614;
  59. // System.Runtime.CompilerServices.ExtensionAttribute
  60. struct ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC;
  61. // System.FlagsAttribute
  62. struct FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36;
  63. // System.Runtime.CompilerServices.InternalsVisibleToAttribute
  64. struct InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C;
  65. // System.Reflection.MemberFilter
  66. struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81;
  67. // System.Resources.NeutralResourcesLanguageAttribute
  68. struct NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2;
  69. // System.ObsoleteAttribute
  70. struct ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671;
  71. // System.Runtime.Serialization.OptionalFieldAttribute
  72. struct OptionalFieldAttribute_t5761990BBE6FDD98072FD82D9EC2B9CD96CEFB59;
  73. // System.ParamArrayAttribute
  74. struct ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F;
  75. // System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
  76. struct RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80;
  77. // System.Resources.SatelliteContractVersionAttribute
  78. struct SatelliteContractVersionAttribute_tA77BDC45FEEFE11823E95476FC8AE60B007906D2;
  79. // System.String
  80. struct String_t;
  81. // System.Type
  82. struct Type_t;
  83. // System.Void
  84. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
  85. // System.Xml.Serialization.XmlAttributeAttribute
  86. struct XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647;
  87. // System.Xml.Serialization.XmlElementAttribute
  88. struct XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94;
  89. // System.Xml.Serialization.XmlEnumAttribute
  90. struct XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E;
  91. // System.Xml.Serialization.XmlIgnoreAttribute
  92. struct XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6;
  93. IL2CPP_EXTERN_C RuntimeClass* XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_il2cpp_TypeInfo_var;
  94. IL2CPP_EXTERN_C const RuntimeType* U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_0_0_0_var;
  95. IL2CPP_EXTERN_C const RuntimeType* U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_0_0_0_var;
  96. IL2CPP_EXTERN_C const RuntimeType* XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_0_0_0_var;
  97. IL2CPP_EXTERN_C const RuntimeType* XmlSchemaChoice_t8FC6F8DB238E8800F350E4EF88CCECD64B5D3BF0_0_0_0_var;
  98. IL2CPP_EXTERN_C const RuntimeType* XmlSchemaElement_tB61A00A97A12A9B2620D005D0643B11EA1CA764A_0_0_0_var;
  99. IL2CPP_EXTERN_C const RuntimeType* XmlSchemaGroupRef_t959C68547997BA04BD811BE970E18AD9C42A68DA_0_0_0_var;
  100. IL2CPP_EXTERN_C const RuntimeType* XmlSchemaSequence_t6C94DB85E74779BE018C34D94204C037416E9C03_0_0_0_var;
  101. IL2CPP_EXTERN_C const RuntimeType* XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD_0_0_0_var;
  102. IL2CPP_EXTERN_C const RuntimeType* XmlSchemaSimpleTypeRestriction_tA312855944C42464DF7E0C6F02214331C853945C_0_0_0_var;
  103. IL2CPP_EXTERN_C const RuntimeType* XmlSchemaSimpleTypeUnion_t691F14B83D42A700B03058B598646CDA7DF545F5_0_0_0_var;
  104. IL2CPP_EXTERN_C const RuntimeType* XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C_0_0_0_var;
  105. IL2CPP_EXTERN_C_BEGIN
  106. IL2CPP_EXTERN_C_END
  107. #ifdef __clang__
  108. #pragma clang diagnostic push
  109. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  110. #pragma clang diagnostic ignored "-Wunused-variable"
  111. #endif
  112. // System.Object
  113. // System.Attribute
  114. struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject
  115. {
  116. public:
  117. public:
  118. };
  119. // System.Reflection.MemberInfo
  120. struct MemberInfo_t : public RuntimeObject
  121. {
  122. public:
  123. public:
  124. };
  125. // System.String
  126. struct String_t : public RuntimeObject
  127. {
  128. public:
  129. // System.Int32 System.String::m_stringLength
  130. int32_t ___m_stringLength_0;
  131. // System.Char System.String::m_firstChar
  132. Il2CppChar ___m_firstChar_1;
  133. public:
  134. inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
  135. inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
  136. inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
  137. inline void set_m_stringLength_0(int32_t value)
  138. {
  139. ___m_stringLength_0 = value;
  140. }
  141. inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
  142. inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
  143. inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
  144. inline void set_m_firstChar_1(Il2CppChar value)
  145. {
  146. ___m_firstChar_1 = value;
  147. }
  148. };
  149. struct String_t_StaticFields
  150. {
  151. public:
  152. // System.String System.String::Empty
  153. String_t* ___Empty_5;
  154. public:
  155. inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
  156. inline String_t* get_Empty_5() const { return ___Empty_5; }
  157. inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
  158. inline void set_Empty_5(String_t* value)
  159. {
  160. ___Empty_5 = value;
  161. Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
  162. }
  163. };
  164. // System.ValueType
  165. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
  166. {
  167. public:
  168. public:
  169. };
  170. // Native definition for P/Invoke marshalling of System.ValueType
  171. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
  172. {
  173. };
  174. // Native definition for COM marshalling of System.ValueType
  175. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
  176. {
  177. };
  178. // System.Reflection.AssemblyCompanyAttribute
  179. struct AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  180. {
  181. public:
  182. // System.String System.Reflection.AssemblyCompanyAttribute::m_company
  183. String_t* ___m_company_0;
  184. public:
  185. inline static int32_t get_offset_of_m_company_0() { return static_cast<int32_t>(offsetof(AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4, ___m_company_0)); }
  186. inline String_t* get_m_company_0() const { return ___m_company_0; }
  187. inline String_t** get_address_of_m_company_0() { return &___m_company_0; }
  188. inline void set_m_company_0(String_t* value)
  189. {
  190. ___m_company_0 = value;
  191. Il2CppCodeGenWriteBarrier((void**)(&___m_company_0), (void*)value);
  192. }
  193. };
  194. // System.Reflection.AssemblyCopyrightAttribute
  195. struct AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  196. {
  197. public:
  198. // System.String System.Reflection.AssemblyCopyrightAttribute::m_copyright
  199. String_t* ___m_copyright_0;
  200. public:
  201. inline static int32_t get_offset_of_m_copyright_0() { return static_cast<int32_t>(offsetof(AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC, ___m_copyright_0)); }
  202. inline String_t* get_m_copyright_0() const { return ___m_copyright_0; }
  203. inline String_t** get_address_of_m_copyright_0() { return &___m_copyright_0; }
  204. inline void set_m_copyright_0(String_t* value)
  205. {
  206. ___m_copyright_0 = value;
  207. Il2CppCodeGenWriteBarrier((void**)(&___m_copyright_0), (void*)value);
  208. }
  209. };
  210. // System.Reflection.AssemblyDefaultAliasAttribute
  211. struct AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  212. {
  213. public:
  214. // System.String System.Reflection.AssemblyDefaultAliasAttribute::m_defaultAlias
  215. String_t* ___m_defaultAlias_0;
  216. public:
  217. inline static int32_t get_offset_of_m_defaultAlias_0() { return static_cast<int32_t>(offsetof(AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA, ___m_defaultAlias_0)); }
  218. inline String_t* get_m_defaultAlias_0() const { return ___m_defaultAlias_0; }
  219. inline String_t** get_address_of_m_defaultAlias_0() { return &___m_defaultAlias_0; }
  220. inline void set_m_defaultAlias_0(String_t* value)
  221. {
  222. ___m_defaultAlias_0 = value;
  223. Il2CppCodeGenWriteBarrier((void**)(&___m_defaultAlias_0), (void*)value);
  224. }
  225. };
  226. // System.Reflection.AssemblyDelaySignAttribute
  227. struct AssemblyDelaySignAttribute_tB66445498441723DC06E545FAA1CF0F128A1FE38 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  228. {
  229. public:
  230. // System.Boolean System.Reflection.AssemblyDelaySignAttribute::m_delaySign
  231. bool ___m_delaySign_0;
  232. public:
  233. inline static int32_t get_offset_of_m_delaySign_0() { return static_cast<int32_t>(offsetof(AssemblyDelaySignAttribute_tB66445498441723DC06E545FAA1CF0F128A1FE38, ___m_delaySign_0)); }
  234. inline bool get_m_delaySign_0() const { return ___m_delaySign_0; }
  235. inline bool* get_address_of_m_delaySign_0() { return &___m_delaySign_0; }
  236. inline void set_m_delaySign_0(bool value)
  237. {
  238. ___m_delaySign_0 = value;
  239. }
  240. };
  241. // System.Reflection.AssemblyDescriptionAttribute
  242. struct AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  243. {
  244. public:
  245. // System.String System.Reflection.AssemblyDescriptionAttribute::m_description
  246. String_t* ___m_description_0;
  247. public:
  248. inline static int32_t get_offset_of_m_description_0() { return static_cast<int32_t>(offsetof(AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3, ___m_description_0)); }
  249. inline String_t* get_m_description_0() const { return ___m_description_0; }
  250. inline String_t** get_address_of_m_description_0() { return &___m_description_0; }
  251. inline void set_m_description_0(String_t* value)
  252. {
  253. ___m_description_0 = value;
  254. Il2CppCodeGenWriteBarrier((void**)(&___m_description_0), (void*)value);
  255. }
  256. };
  257. // System.Reflection.AssemblyFileVersionAttribute
  258. struct AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  259. {
  260. public:
  261. // System.String System.Reflection.AssemblyFileVersionAttribute::_version
  262. String_t* ____version_0;
  263. public:
  264. inline static int32_t get_offset_of__version_0() { return static_cast<int32_t>(offsetof(AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F, ____version_0)); }
  265. inline String_t* get__version_0() const { return ____version_0; }
  266. inline String_t** get_address_of__version_0() { return &____version_0; }
  267. inline void set__version_0(String_t* value)
  268. {
  269. ____version_0 = value;
  270. Il2CppCodeGenWriteBarrier((void**)(&____version_0), (void*)value);
  271. }
  272. };
  273. // System.Reflection.AssemblyInformationalVersionAttribute
  274. struct AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  275. {
  276. public:
  277. // System.String System.Reflection.AssemblyInformationalVersionAttribute::m_informationalVersion
  278. String_t* ___m_informationalVersion_0;
  279. public:
  280. inline static int32_t get_offset_of_m_informationalVersion_0() { return static_cast<int32_t>(offsetof(AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0, ___m_informationalVersion_0)); }
  281. inline String_t* get_m_informationalVersion_0() const { return ___m_informationalVersion_0; }
  282. inline String_t** get_address_of_m_informationalVersion_0() { return &___m_informationalVersion_0; }
  283. inline void set_m_informationalVersion_0(String_t* value)
  284. {
  285. ___m_informationalVersion_0 = value;
  286. Il2CppCodeGenWriteBarrier((void**)(&___m_informationalVersion_0), (void*)value);
  287. }
  288. };
  289. // System.Reflection.AssemblyKeyFileAttribute
  290. struct AssemblyKeyFileAttribute_tEF26145AA8A5F35C218FE543113825F133CC6253 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  291. {
  292. public:
  293. // System.String System.Reflection.AssemblyKeyFileAttribute::m_keyFile
  294. String_t* ___m_keyFile_0;
  295. public:
  296. inline static int32_t get_offset_of_m_keyFile_0() { return static_cast<int32_t>(offsetof(AssemblyKeyFileAttribute_tEF26145AA8A5F35C218FE543113825F133CC6253, ___m_keyFile_0)); }
  297. inline String_t* get_m_keyFile_0() const { return ___m_keyFile_0; }
  298. inline String_t** get_address_of_m_keyFile_0() { return &___m_keyFile_0; }
  299. inline void set_m_keyFile_0(String_t* value)
  300. {
  301. ___m_keyFile_0 = value;
  302. Il2CppCodeGenWriteBarrier((void**)(&___m_keyFile_0), (void*)value);
  303. }
  304. };
  305. // System.Reflection.AssemblyProductAttribute
  306. struct AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  307. {
  308. public:
  309. // System.String System.Reflection.AssemblyProductAttribute::m_product
  310. String_t* ___m_product_0;
  311. public:
  312. inline static int32_t get_offset_of_m_product_0() { return static_cast<int32_t>(offsetof(AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA, ___m_product_0)); }
  313. inline String_t* get_m_product_0() const { return ___m_product_0; }
  314. inline String_t** get_address_of_m_product_0() { return &___m_product_0; }
  315. inline void set_m_product_0(String_t* value)
  316. {
  317. ___m_product_0 = value;
  318. Il2CppCodeGenWriteBarrier((void**)(&___m_product_0), (void*)value);
  319. }
  320. };
  321. // System.Reflection.AssemblyTitleAttribute
  322. struct AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  323. {
  324. public:
  325. // System.String System.Reflection.AssemblyTitleAttribute::m_title
  326. String_t* ___m_title_0;
  327. public:
  328. inline static int32_t get_offset_of_m_title_0() { return static_cast<int32_t>(offsetof(AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7, ___m_title_0)); }
  329. inline String_t* get_m_title_0() const { return ___m_title_0; }
  330. inline String_t** get_address_of_m_title_0() { return &___m_title_0; }
  331. inline void set_m_title_0(String_t* value)
  332. {
  333. ___m_title_0 = value;
  334. Il2CppCodeGenWriteBarrier((void**)(&___m_title_0), (void*)value);
  335. }
  336. };
  337. // System.Boolean
  338. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
  339. {
  340. public:
  341. // System.Boolean System.Boolean::m_value
  342. bool ___m_value_0;
  343. public:
  344. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
  345. inline bool get_m_value_0() const { return ___m_value_0; }
  346. inline bool* get_address_of_m_value_0() { return &___m_value_0; }
  347. inline void set_m_value_0(bool value)
  348. {
  349. ___m_value_0 = value;
  350. }
  351. };
  352. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
  353. {
  354. public:
  355. // System.String System.Boolean::TrueString
  356. String_t* ___TrueString_5;
  357. // System.String System.Boolean::FalseString
  358. String_t* ___FalseString_6;
  359. public:
  360. inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
  361. inline String_t* get_TrueString_5() const { return ___TrueString_5; }
  362. inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
  363. inline void set_TrueString_5(String_t* value)
  364. {
  365. ___TrueString_5 = value;
  366. Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
  367. }
  368. inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
  369. inline String_t* get_FalseString_6() const { return ___FalseString_6; }
  370. inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
  371. inline void set_FalseString_6(String_t* value)
  372. {
  373. ___FalseString_6 = value;
  374. Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
  375. }
  376. };
  377. // System.CLSCompliantAttribute
  378. struct CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  379. {
  380. public:
  381. // System.Boolean System.CLSCompliantAttribute::m_compliant
  382. bool ___m_compliant_0;
  383. public:
  384. inline static int32_t get_offset_of_m_compliant_0() { return static_cast<int32_t>(offsetof(CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249, ___m_compliant_0)); }
  385. inline bool get_m_compliant_0() const { return ___m_compliant_0; }
  386. inline bool* get_address_of_m_compliant_0() { return &___m_compliant_0; }
  387. inline void set_m_compliant_0(bool value)
  388. {
  389. ___m_compliant_0 = value;
  390. }
  391. };
  392. // System.Runtime.InteropServices.ComVisibleAttribute
  393. struct ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  394. {
  395. public:
  396. // System.Boolean System.Runtime.InteropServices.ComVisibleAttribute::_val
  397. bool ____val_0;
  398. public:
  399. inline static int32_t get_offset_of__val_0() { return static_cast<int32_t>(offsetof(ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A, ____val_0)); }
  400. inline bool get__val_0() const { return ____val_0; }
  401. inline bool* get_address_of__val_0() { return &____val_0; }
  402. inline void set__val_0(bool value)
  403. {
  404. ____val_0 = value;
  405. }
  406. };
  407. // System.Runtime.CompilerServices.CompilationRelaxationsAttribute
  408. struct CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  409. {
  410. public:
  411. // System.Int32 System.Runtime.CompilerServices.CompilationRelaxationsAttribute::m_relaxations
  412. int32_t ___m_relaxations_0;
  413. public:
  414. inline static int32_t get_offset_of_m_relaxations_0() { return static_cast<int32_t>(offsetof(CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF, ___m_relaxations_0)); }
  415. inline int32_t get_m_relaxations_0() const { return ___m_relaxations_0; }
  416. inline int32_t* get_address_of_m_relaxations_0() { return &___m_relaxations_0; }
  417. inline void set_m_relaxations_0(int32_t value)
  418. {
  419. ___m_relaxations_0 = value;
  420. }
  421. };
  422. // System.Runtime.CompilerServices.CompilerGeneratedAttribute
  423. struct CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  424. {
  425. public:
  426. public:
  427. };
  428. // System.Diagnostics.DebuggerDisplayAttribute
  429. struct DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  430. {
  431. public:
  432. // System.String System.Diagnostics.DebuggerDisplayAttribute::name
  433. String_t* ___name_0;
  434. // System.String System.Diagnostics.DebuggerDisplayAttribute::value
  435. String_t* ___value_1;
  436. // System.String System.Diagnostics.DebuggerDisplayAttribute::type
  437. String_t* ___type_2;
  438. public:
  439. inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F, ___name_0)); }
  440. inline String_t* get_name_0() const { return ___name_0; }
  441. inline String_t** get_address_of_name_0() { return &___name_0; }
  442. inline void set_name_0(String_t* value)
  443. {
  444. ___name_0 = value;
  445. Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
  446. }
  447. inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F, ___value_1)); }
  448. inline String_t* get_value_1() const { return ___value_1; }
  449. inline String_t** get_address_of_value_1() { return &___value_1; }
  450. inline void set_value_1(String_t* value)
  451. {
  452. ___value_1 = value;
  453. Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
  454. }
  455. inline static int32_t get_offset_of_type_2() { return static_cast<int32_t>(offsetof(DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F, ___type_2)); }
  456. inline String_t* get_type_2() const { return ___type_2; }
  457. inline String_t** get_address_of_type_2() { return &___type_2; }
  458. inline void set_type_2(String_t* value)
  459. {
  460. ___type_2 = value;
  461. Il2CppCodeGenWriteBarrier((void**)(&___type_2), (void*)value);
  462. }
  463. };
  464. // System.Diagnostics.DebuggerHiddenAttribute
  465. struct DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  466. {
  467. public:
  468. public:
  469. };
  470. // System.Reflection.DefaultMemberAttribute
  471. struct DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  472. {
  473. public:
  474. // System.String System.Reflection.DefaultMemberAttribute::m_memberName
  475. String_t* ___m_memberName_0;
  476. public:
  477. inline static int32_t get_offset_of_m_memberName_0() { return static_cast<int32_t>(offsetof(DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5, ___m_memberName_0)); }
  478. inline String_t* get_m_memberName_0() const { return ___m_memberName_0; }
  479. inline String_t** get_address_of_m_memberName_0() { return &___m_memberName_0; }
  480. inline void set_m_memberName_0(String_t* value)
  481. {
  482. ___m_memberName_0 = value;
  483. Il2CppCodeGenWriteBarrier((void**)(&___m_memberName_0), (void*)value);
  484. }
  485. };
  486. // System.ComponentModel.DefaultValueAttribute
  487. struct DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  488. {
  489. public:
  490. // System.Object System.ComponentModel.DefaultValueAttribute::value
  491. RuntimeObject * ___value_0;
  492. public:
  493. inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6, ___value_0)); }
  494. inline RuntimeObject * get_value_0() const { return ___value_0; }
  495. inline RuntimeObject ** get_address_of_value_0() { return &___value_0; }
  496. inline void set_value_0(RuntimeObject * value)
  497. {
  498. ___value_0 = value;
  499. Il2CppCodeGenWriteBarrier((void**)(&___value_0), (void*)value);
  500. }
  501. };
  502. // System.Enum
  503. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
  504. {
  505. public:
  506. public:
  507. };
  508. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
  509. {
  510. public:
  511. // System.Char[] System.Enum::enumSeperatorCharArray
  512. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
  513. public:
  514. inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
  515. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
  516. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
  517. inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
  518. {
  519. ___enumSeperatorCharArray_0 = value;
  520. Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
  521. }
  522. };
  523. // Native definition for P/Invoke marshalling of System.Enum
  524. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
  525. {
  526. };
  527. // Native definition for COM marshalling of System.Enum
  528. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
  529. {
  530. };
  531. // System.Runtime.CompilerServices.ExtensionAttribute
  532. struct ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  533. {
  534. public:
  535. public:
  536. };
  537. // System.FlagsAttribute
  538. struct FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  539. {
  540. public:
  541. public:
  542. };
  543. // System.IntPtr
  544. struct IntPtr_t
  545. {
  546. public:
  547. // System.Void* System.IntPtr::m_value
  548. void* ___m_value_0;
  549. public:
  550. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
  551. inline void* get_m_value_0() const { return ___m_value_0; }
  552. inline void** get_address_of_m_value_0() { return &___m_value_0; }
  553. inline void set_m_value_0(void* value)
  554. {
  555. ___m_value_0 = value;
  556. }
  557. };
  558. struct IntPtr_t_StaticFields
  559. {
  560. public:
  561. // System.IntPtr System.IntPtr::Zero
  562. intptr_t ___Zero_1;
  563. public:
  564. inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
  565. inline intptr_t get_Zero_1() const { return ___Zero_1; }
  566. inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
  567. inline void set_Zero_1(intptr_t value)
  568. {
  569. ___Zero_1 = value;
  570. }
  571. };
  572. // System.Runtime.CompilerServices.InternalsVisibleToAttribute
  573. struct InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  574. {
  575. public:
  576. // System.String System.Runtime.CompilerServices.InternalsVisibleToAttribute::_assemblyName
  577. String_t* ____assemblyName_0;
  578. // System.Boolean System.Runtime.CompilerServices.InternalsVisibleToAttribute::_allInternalsVisible
  579. bool ____allInternalsVisible_1;
  580. public:
  581. inline static int32_t get_offset_of__assemblyName_0() { return static_cast<int32_t>(offsetof(InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C, ____assemblyName_0)); }
  582. inline String_t* get__assemblyName_0() const { return ____assemblyName_0; }
  583. inline String_t** get_address_of__assemblyName_0() { return &____assemblyName_0; }
  584. inline void set__assemblyName_0(String_t* value)
  585. {
  586. ____assemblyName_0 = value;
  587. Il2CppCodeGenWriteBarrier((void**)(&____assemblyName_0), (void*)value);
  588. }
  589. inline static int32_t get_offset_of__allInternalsVisible_1() { return static_cast<int32_t>(offsetof(InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C, ____allInternalsVisible_1)); }
  590. inline bool get__allInternalsVisible_1() const { return ____allInternalsVisible_1; }
  591. inline bool* get_address_of__allInternalsVisible_1() { return &____allInternalsVisible_1; }
  592. inline void set__allInternalsVisible_1(bool value)
  593. {
  594. ____allInternalsVisible_1 = value;
  595. }
  596. };
  597. // System.ObsoleteAttribute
  598. struct ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  599. {
  600. public:
  601. // System.String System.ObsoleteAttribute::_message
  602. String_t* ____message_0;
  603. // System.Boolean System.ObsoleteAttribute::_error
  604. bool ____error_1;
  605. public:
  606. inline static int32_t get_offset_of__message_0() { return static_cast<int32_t>(offsetof(ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671, ____message_0)); }
  607. inline String_t* get__message_0() const { return ____message_0; }
  608. inline String_t** get_address_of__message_0() { return &____message_0; }
  609. inline void set__message_0(String_t* value)
  610. {
  611. ____message_0 = value;
  612. Il2CppCodeGenWriteBarrier((void**)(&____message_0), (void*)value);
  613. }
  614. inline static int32_t get_offset_of__error_1() { return static_cast<int32_t>(offsetof(ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671, ____error_1)); }
  615. inline bool get__error_1() const { return ____error_1; }
  616. inline bool* get_address_of__error_1() { return &____error_1; }
  617. inline void set__error_1(bool value)
  618. {
  619. ____error_1 = value;
  620. }
  621. };
  622. // System.Runtime.Serialization.OptionalFieldAttribute
  623. struct OptionalFieldAttribute_t5761990BBE6FDD98072FD82D9EC2B9CD96CEFB59 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  624. {
  625. public:
  626. // System.Int32 System.Runtime.Serialization.OptionalFieldAttribute::versionAdded
  627. int32_t ___versionAdded_0;
  628. public:
  629. inline static int32_t get_offset_of_versionAdded_0() { return static_cast<int32_t>(offsetof(OptionalFieldAttribute_t5761990BBE6FDD98072FD82D9EC2B9CD96CEFB59, ___versionAdded_0)); }
  630. inline int32_t get_versionAdded_0() const { return ___versionAdded_0; }
  631. inline int32_t* get_address_of_versionAdded_0() { return &___versionAdded_0; }
  632. inline void set_versionAdded_0(int32_t value)
  633. {
  634. ___versionAdded_0 = value;
  635. }
  636. };
  637. // System.ParamArrayAttribute
  638. struct ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  639. {
  640. public:
  641. public:
  642. };
  643. // System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
  644. struct RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  645. {
  646. public:
  647. // System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::m_wrapNonExceptionThrows
  648. bool ___m_wrapNonExceptionThrows_0;
  649. public:
  650. inline static int32_t get_offset_of_m_wrapNonExceptionThrows_0() { return static_cast<int32_t>(offsetof(RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80, ___m_wrapNonExceptionThrows_0)); }
  651. inline bool get_m_wrapNonExceptionThrows_0() const { return ___m_wrapNonExceptionThrows_0; }
  652. inline bool* get_address_of_m_wrapNonExceptionThrows_0() { return &___m_wrapNonExceptionThrows_0; }
  653. inline void set_m_wrapNonExceptionThrows_0(bool value)
  654. {
  655. ___m_wrapNonExceptionThrows_0 = value;
  656. }
  657. };
  658. // System.Resources.SatelliteContractVersionAttribute
  659. struct SatelliteContractVersionAttribute_tA77BDC45FEEFE11823E95476FC8AE60B007906D2 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  660. {
  661. public:
  662. // System.String System.Resources.SatelliteContractVersionAttribute::_version
  663. String_t* ____version_0;
  664. public:
  665. inline static int32_t get_offset_of__version_0() { return static_cast<int32_t>(offsetof(SatelliteContractVersionAttribute_tA77BDC45FEEFE11823E95476FC8AE60B007906D2, ____version_0)); }
  666. inline String_t* get__version_0() const { return ____version_0; }
  667. inline String_t** get_address_of__version_0() { return &____version_0; }
  668. inline void set__version_0(String_t* value)
  669. {
  670. ____version_0 = value;
  671. Il2CppCodeGenWriteBarrier((void**)(&____version_0), (void*)value);
  672. }
  673. };
  674. // System.Runtime.CompilerServices.StateMachineAttribute
  675. struct StateMachineAttribute_tA6E77C77F821508E405473BA1C4C08A69FDA0AC3 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  676. {
  677. public:
  678. // System.Type System.Runtime.CompilerServices.StateMachineAttribute::<StateMachineType>k__BackingField
  679. Type_t * ___U3CStateMachineTypeU3Ek__BackingField_0;
  680. public:
  681. inline static int32_t get_offset_of_U3CStateMachineTypeU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(StateMachineAttribute_tA6E77C77F821508E405473BA1C4C08A69FDA0AC3, ___U3CStateMachineTypeU3Ek__BackingField_0)); }
  682. inline Type_t * get_U3CStateMachineTypeU3Ek__BackingField_0() const { return ___U3CStateMachineTypeU3Ek__BackingField_0; }
  683. inline Type_t ** get_address_of_U3CStateMachineTypeU3Ek__BackingField_0() { return &___U3CStateMachineTypeU3Ek__BackingField_0; }
  684. inline void set_U3CStateMachineTypeU3Ek__BackingField_0(Type_t * value)
  685. {
  686. ___U3CStateMachineTypeU3Ek__BackingField_0 = value;
  687. Il2CppCodeGenWriteBarrier((void**)(&___U3CStateMachineTypeU3Ek__BackingField_0), (void*)value);
  688. }
  689. };
  690. // System.Void
  691. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
  692. {
  693. public:
  694. union
  695. {
  696. struct
  697. {
  698. };
  699. uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
  700. };
  701. public:
  702. };
  703. // System.Xml.Serialization.XmlAttributeAttribute
  704. struct XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  705. {
  706. public:
  707. // System.String System.Xml.Serialization.XmlAttributeAttribute::attributeName
  708. String_t* ___attributeName_0;
  709. public:
  710. inline static int32_t get_offset_of_attributeName_0() { return static_cast<int32_t>(offsetof(XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647, ___attributeName_0)); }
  711. inline String_t* get_attributeName_0() const { return ___attributeName_0; }
  712. inline String_t** get_address_of_attributeName_0() { return &___attributeName_0; }
  713. inline void set_attributeName_0(String_t* value)
  714. {
  715. ___attributeName_0 = value;
  716. Il2CppCodeGenWriteBarrier((void**)(&___attributeName_0), (void*)value);
  717. }
  718. };
  719. // System.Xml.Serialization.XmlElementAttribute
  720. struct XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  721. {
  722. public:
  723. // System.String System.Xml.Serialization.XmlElementAttribute::elementName
  724. String_t* ___elementName_0;
  725. // System.Type System.Xml.Serialization.XmlElementAttribute::type
  726. Type_t * ___type_1;
  727. // System.Int32 System.Xml.Serialization.XmlElementAttribute::order
  728. int32_t ___order_2;
  729. public:
  730. inline static int32_t get_offset_of_elementName_0() { return static_cast<int32_t>(offsetof(XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94, ___elementName_0)); }
  731. inline String_t* get_elementName_0() const { return ___elementName_0; }
  732. inline String_t** get_address_of_elementName_0() { return &___elementName_0; }
  733. inline void set_elementName_0(String_t* value)
  734. {
  735. ___elementName_0 = value;
  736. Il2CppCodeGenWriteBarrier((void**)(&___elementName_0), (void*)value);
  737. }
  738. inline static int32_t get_offset_of_type_1() { return static_cast<int32_t>(offsetof(XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94, ___type_1)); }
  739. inline Type_t * get_type_1() const { return ___type_1; }
  740. inline Type_t ** get_address_of_type_1() { return &___type_1; }
  741. inline void set_type_1(Type_t * value)
  742. {
  743. ___type_1 = value;
  744. Il2CppCodeGenWriteBarrier((void**)(&___type_1), (void*)value);
  745. }
  746. inline static int32_t get_offset_of_order_2() { return static_cast<int32_t>(offsetof(XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94, ___order_2)); }
  747. inline int32_t get_order_2() const { return ___order_2; }
  748. inline int32_t* get_address_of_order_2() { return &___order_2; }
  749. inline void set_order_2(int32_t value)
  750. {
  751. ___order_2 = value;
  752. }
  753. };
  754. // System.Xml.Serialization.XmlEnumAttribute
  755. struct XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  756. {
  757. public:
  758. // System.String System.Xml.Serialization.XmlEnumAttribute::name
  759. String_t* ___name_0;
  760. public:
  761. inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E, ___name_0)); }
  762. inline String_t* get_name_0() const { return ___name_0; }
  763. inline String_t** get_address_of_name_0() { return &___name_0; }
  764. inline void set_name_0(String_t* value)
  765. {
  766. ___name_0 = value;
  767. Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
  768. }
  769. };
  770. // System.Xml.Serialization.XmlIgnoreAttribute
  771. struct XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  772. {
  773. public:
  774. public:
  775. };
  776. // System.Runtime.CompilerServices.AsyncStateMachineAttribute
  777. struct AsyncStateMachineAttribute_tBDB4B958CFB5CD3BEE1427711FFC8C358C9BA6E6 : public StateMachineAttribute_tA6E77C77F821508E405473BA1C4C08A69FDA0AC3
  778. {
  779. public:
  780. public:
  781. };
  782. // System.AttributeTargets
  783. struct AttributeTargets_t5F71273DFE1D0CA9B8109F02A023A7DBA9BFC923
  784. {
  785. public:
  786. // System.Int32 System.AttributeTargets::value__
  787. int32_t ___value___2;
  788. public:
  789. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AttributeTargets_t5F71273DFE1D0CA9B8109F02A023A7DBA9BFC923, ___value___2)); }
  790. inline int32_t get_value___2() const { return ___value___2; }
  791. inline int32_t* get_address_of_value___2() { return &___value___2; }
  792. inline void set_value___2(int32_t value)
  793. {
  794. ___value___2 = value;
  795. }
  796. };
  797. // System.Reflection.BindingFlags
  798. struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733
  799. {
  800. public:
  801. // System.Int32 System.Reflection.BindingFlags::value__
  802. int32_t ___value___2;
  803. public:
  804. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); }
  805. inline int32_t get_value___2() const { return ___value___2; }
  806. inline int32_t* get_address_of_value___2() { return &___value___2; }
  807. inline void set_value___2(int32_t value)
  808. {
  809. ___value___2 = value;
  810. }
  811. };
  812. // System.Runtime.CompilerServices.CompilationRelaxations
  813. struct CompilationRelaxations_t3F4D0C01134AC29212BCFE66E9A9F13A92F888AC
  814. {
  815. public:
  816. // System.Int32 System.Runtime.CompilerServices.CompilationRelaxations::value__
  817. int32_t ___value___2;
  818. public:
  819. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CompilationRelaxations_t3F4D0C01134AC29212BCFE66E9A9F13A92F888AC, ___value___2)); }
  820. inline int32_t get_value___2() const { return ___value___2; }
  821. inline int32_t* get_address_of_value___2() { return &___value___2; }
  822. inline void set_value___2(int32_t value)
  823. {
  824. ___value___2 = value;
  825. }
  826. };
  827. // System.ComponentModel.EditorBrowsableState
  828. struct EditorBrowsableState_t5212E3E4B6F8B3190040444A9D6FBCA975F02BA1
  829. {
  830. public:
  831. // System.Int32 System.ComponentModel.EditorBrowsableState::value__
  832. int32_t ___value___2;
  833. public:
  834. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EditorBrowsableState_t5212E3E4B6F8B3190040444A9D6FBCA975F02BA1, ___value___2)); }
  835. inline int32_t get_value___2() const { return ___value___2; }
  836. inline int32_t* get_address_of_value___2() { return &___value___2; }
  837. inline void set_value___2(int32_t value)
  838. {
  839. ___value___2 = value;
  840. }
  841. };
  842. // System.RuntimeTypeHandle
  843. struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9
  844. {
  845. public:
  846. // System.IntPtr System.RuntimeTypeHandle::value
  847. intptr_t ___value_0;
  848. public:
  849. inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); }
  850. inline intptr_t get_value_0() const { return ___value_0; }
  851. inline intptr_t* get_address_of_value_0() { return &___value_0; }
  852. inline void set_value_0(intptr_t value)
  853. {
  854. ___value_0 = value;
  855. }
  856. };
  857. // System.Resources.UltimateResourceFallbackLocation
  858. struct UltimateResourceFallbackLocation_tA4EBEA627CD0C386314EBB60D7A4225C435D0F0B
  859. {
  860. public:
  861. // System.Int32 System.Resources.UltimateResourceFallbackLocation::value__
  862. int32_t ___value___2;
  863. public:
  864. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UltimateResourceFallbackLocation_tA4EBEA627CD0C386314EBB60D7A4225C435D0F0B, ___value___2)); }
  865. inline int32_t get_value___2() const { return ___value___2; }
  866. inline int32_t* get_address_of_value___2() { return &___value___2; }
  867. inline void set_value___2(int32_t value)
  868. {
  869. ___value___2 = value;
  870. }
  871. };
  872. // System.Xml.Schema.XmlSchemaContentProcessing
  873. struct XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C
  874. {
  875. public:
  876. // System.Int32 System.Xml.Schema.XmlSchemaContentProcessing::value__
  877. int32_t ___value___2;
  878. public:
  879. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C, ___value___2)); }
  880. inline int32_t get_value___2() const { return ___value___2; }
  881. inline int32_t* get_address_of_value___2() { return &___value___2; }
  882. inline void set_value___2(int32_t value)
  883. {
  884. ___value___2 = value;
  885. }
  886. };
  887. // System.Diagnostics.DebuggableAttribute/DebuggingModes
  888. struct DebuggingModes_t279D5B9C012ABA935887CB73C5A63A1F46AF08A8
  889. {
  890. public:
  891. // System.Int32 System.Diagnostics.DebuggableAttribute/DebuggingModes::value__
  892. int32_t ___value___2;
  893. public:
  894. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DebuggingModes_t279D5B9C012ABA935887CB73C5A63A1F46AF08A8, ___value___2)); }
  895. inline int32_t get_value___2() const { return ___value___2; }
  896. inline int32_t* get_address_of_value___2() { return &___value___2; }
  897. inline void set_value___2(int32_t value)
  898. {
  899. ___value___2 = value;
  900. }
  901. };
  902. // System.AttributeUsageAttribute
  903. struct AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  904. {
  905. public:
  906. // System.AttributeTargets System.AttributeUsageAttribute::m_attributeTarget
  907. int32_t ___m_attributeTarget_0;
  908. // System.Boolean System.AttributeUsageAttribute::m_allowMultiple
  909. bool ___m_allowMultiple_1;
  910. // System.Boolean System.AttributeUsageAttribute::m_inherited
  911. bool ___m_inherited_2;
  912. public:
  913. inline static int32_t get_offset_of_m_attributeTarget_0() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C, ___m_attributeTarget_0)); }
  914. inline int32_t get_m_attributeTarget_0() const { return ___m_attributeTarget_0; }
  915. inline int32_t* get_address_of_m_attributeTarget_0() { return &___m_attributeTarget_0; }
  916. inline void set_m_attributeTarget_0(int32_t value)
  917. {
  918. ___m_attributeTarget_0 = value;
  919. }
  920. inline static int32_t get_offset_of_m_allowMultiple_1() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C, ___m_allowMultiple_1)); }
  921. inline bool get_m_allowMultiple_1() const { return ___m_allowMultiple_1; }
  922. inline bool* get_address_of_m_allowMultiple_1() { return &___m_allowMultiple_1; }
  923. inline void set_m_allowMultiple_1(bool value)
  924. {
  925. ___m_allowMultiple_1 = value;
  926. }
  927. inline static int32_t get_offset_of_m_inherited_2() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C, ___m_inherited_2)); }
  928. inline bool get_m_inherited_2() const { return ___m_inherited_2; }
  929. inline bool* get_address_of_m_inherited_2() { return &___m_inherited_2; }
  930. inline void set_m_inherited_2(bool value)
  931. {
  932. ___m_inherited_2 = value;
  933. }
  934. };
  935. struct AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C_StaticFields
  936. {
  937. public:
  938. // System.AttributeUsageAttribute System.AttributeUsageAttribute::Default
  939. AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * ___Default_3;
  940. public:
  941. inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C_StaticFields, ___Default_3)); }
  942. inline AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * get_Default_3() const { return ___Default_3; }
  943. inline AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C ** get_address_of_Default_3() { return &___Default_3; }
  944. inline void set_Default_3(AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * value)
  945. {
  946. ___Default_3 = value;
  947. Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value);
  948. }
  949. };
  950. // System.Diagnostics.DebuggableAttribute
  951. struct DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  952. {
  953. public:
  954. // System.Diagnostics.DebuggableAttribute/DebuggingModes System.Diagnostics.DebuggableAttribute::m_debuggingModes
  955. int32_t ___m_debuggingModes_0;
  956. public:
  957. inline static int32_t get_offset_of_m_debuggingModes_0() { return static_cast<int32_t>(offsetof(DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B, ___m_debuggingModes_0)); }
  958. inline int32_t get_m_debuggingModes_0() const { return ___m_debuggingModes_0; }
  959. inline int32_t* get_address_of_m_debuggingModes_0() { return &___m_debuggingModes_0; }
  960. inline void set_m_debuggingModes_0(int32_t value)
  961. {
  962. ___m_debuggingModes_0 = value;
  963. }
  964. };
  965. // System.ComponentModel.EditorBrowsableAttribute
  966. struct EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  967. {
  968. public:
  969. // System.ComponentModel.EditorBrowsableState System.ComponentModel.EditorBrowsableAttribute::browsableState
  970. int32_t ___browsableState_0;
  971. public:
  972. inline static int32_t get_offset_of_browsableState_0() { return static_cast<int32_t>(offsetof(EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614, ___browsableState_0)); }
  973. inline int32_t get_browsableState_0() const { return ___browsableState_0; }
  974. inline int32_t* get_address_of_browsableState_0() { return &___browsableState_0; }
  975. inline void set_browsableState_0(int32_t value)
  976. {
  977. ___browsableState_0 = value;
  978. }
  979. };
  980. // System.Resources.NeutralResourcesLanguageAttribute
  981. struct NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  982. {
  983. public:
  984. // System.String System.Resources.NeutralResourcesLanguageAttribute::_culture
  985. String_t* ____culture_0;
  986. // System.Resources.UltimateResourceFallbackLocation System.Resources.NeutralResourcesLanguageAttribute::_fallbackLoc
  987. int32_t ____fallbackLoc_1;
  988. public:
  989. inline static int32_t get_offset_of__culture_0() { return static_cast<int32_t>(offsetof(NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2, ____culture_0)); }
  990. inline String_t* get__culture_0() const { return ____culture_0; }
  991. inline String_t** get_address_of__culture_0() { return &____culture_0; }
  992. inline void set__culture_0(String_t* value)
  993. {
  994. ____culture_0 = value;
  995. Il2CppCodeGenWriteBarrier((void**)(&____culture_0), (void*)value);
  996. }
  997. inline static int32_t get_offset_of__fallbackLoc_1() { return static_cast<int32_t>(offsetof(NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2, ____fallbackLoc_1)); }
  998. inline int32_t get__fallbackLoc_1() const { return ____fallbackLoc_1; }
  999. inline int32_t* get_address_of__fallbackLoc_1() { return &____fallbackLoc_1; }
  1000. inline void set__fallbackLoc_1(int32_t value)
  1001. {
  1002. ____fallbackLoc_1 = value;
  1003. }
  1004. };
  1005. // System.Type
  1006. struct Type_t : public MemberInfo_t
  1007. {
  1008. public:
  1009. // System.RuntimeTypeHandle System.Type::_impl
  1010. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9;
  1011. public:
  1012. inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
  1013. inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; }
  1014. inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; }
  1015. inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value)
  1016. {
  1017. ____impl_9 = value;
  1018. }
  1019. };
  1020. struct Type_t_StaticFields
  1021. {
  1022. public:
  1023. // System.Reflection.MemberFilter System.Type::FilterAttribute
  1024. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0;
  1025. // System.Reflection.MemberFilter System.Type::FilterName
  1026. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1;
  1027. // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
  1028. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2;
  1029. // System.Object System.Type::Missing
  1030. RuntimeObject * ___Missing_3;
  1031. // System.Char System.Type::Delimiter
  1032. Il2CppChar ___Delimiter_4;
  1033. // System.Type[] System.Type::EmptyTypes
  1034. TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5;
  1035. // System.Reflection.Binder System.Type::defaultBinder
  1036. Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6;
  1037. public:
  1038. inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
  1039. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
  1040. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
  1041. inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  1042. {
  1043. ___FilterAttribute_0 = value;
  1044. Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
  1045. }
  1046. inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
  1047. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; }
  1048. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; }
  1049. inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  1050. {
  1051. ___FilterName_1 = value;
  1052. Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
  1053. }
  1054. inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
  1055. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
  1056. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
  1057. inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  1058. {
  1059. ___FilterNameIgnoreCase_2 = value;
  1060. Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
  1061. }
  1062. inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
  1063. inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
  1064. inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
  1065. inline void set_Missing_3(RuntimeObject * value)
  1066. {
  1067. ___Missing_3 = value;
  1068. Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
  1069. }
  1070. inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
  1071. inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
  1072. inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
  1073. inline void set_Delimiter_4(Il2CppChar value)
  1074. {
  1075. ___Delimiter_4 = value;
  1076. }
  1077. inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
  1078. inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
  1079. inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
  1080. inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
  1081. {
  1082. ___EmptyTypes_5 = value;
  1083. Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
  1084. }
  1085. inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
  1086. inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; }
  1087. inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
  1088. inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value)
  1089. {
  1090. ___defaultBinder_6 = value;
  1091. Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
  1092. }
  1093. };
  1094. #ifdef __clang__
  1095. #pragma clang diagnostic pop
  1096. #endif
  1097. // System.Void System.Runtime.CompilerServices.CompilationRelaxationsAttribute::.ctor(System.Runtime.CompilerServices.CompilationRelaxations)
  1098. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompilationRelaxationsAttribute__ctor_m9012F6B0B55EF7A86133889CB22D74728CAB90AC (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * __this, int32_t ___relaxations0, const RuntimeMethod* method);
  1099. // System.Void System.Diagnostics.DebuggableAttribute::.ctor(System.Diagnostics.DebuggableAttribute/DebuggingModes)
  1100. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggableAttribute__ctor_m7FF445C8435494A4847123A668D889E692E55550 (DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B * __this, int32_t ___modes0, const RuntimeMethod* method);
  1101. // System.Void System.Runtime.CompilerServices.InternalsVisibleToAttribute::.ctor(System.String)
  1102. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9 (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * __this, String_t* ___assemblyName0, const RuntimeMethod* method);
  1103. // System.Void System.Reflection.AssemblyTitleAttribute::.ctor(System.String)
  1104. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyTitleAttribute__ctor_mE239F206B3B369C48AE1F3B4211688778FE99E8D (AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7 * __this, String_t* ___title0, const RuntimeMethod* method);
  1105. // System.Void System.Reflection.AssemblyDescriptionAttribute::.ctor(System.String)
  1106. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyDescriptionAttribute__ctor_m3A0BD500FF352A67235FBA499FBA58EFF15B1F25 (AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3 * __this, String_t* ___description0, const RuntimeMethod* method);
  1107. // System.Void System.Reflection.AssemblyDefaultAliasAttribute::.ctor(System.String)
  1108. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyDefaultAliasAttribute__ctor_m0C9991C32ED63B598FA509F3AF74554A5C874EB0 (AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA * __this, String_t* ___defaultAlias0, const RuntimeMethod* method);
  1109. // System.Void System.Reflection.AssemblyCompanyAttribute::.ctor(System.String)
  1110. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyCompanyAttribute__ctor_m435C9FEC405646617645636E67860598A0C46FF0 (AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4 * __this, String_t* ___company0, const RuntimeMethod* method);
  1111. // System.Void System.Reflection.AssemblyProductAttribute::.ctor(System.String)
  1112. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyProductAttribute__ctor_m26DF1EBC1C86E7DA4786C66B44123899BE8DBCB8 (AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA * __this, String_t* ___product0, const RuntimeMethod* method);
  1113. // System.Void System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::.ctor()
  1114. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute__ctor_m551DDF1438CE97A984571949723F30F44CF7317C (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, const RuntimeMethod* method);
  1115. // System.Void System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::set_WrapNonExceptionThrows(System.Boolean)
  1116. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, bool ___value0, const RuntimeMethod* method);
  1117. // System.Void System.Reflection.AssemblyCopyrightAttribute::.ctor(System.String)
  1118. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyCopyrightAttribute__ctor_mB0B5F5C1A7A8B172289CC694E2711F07A37CE3F3 (AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC * __this, String_t* ___copyright0, const RuntimeMethod* method);
  1119. // System.Void System.Reflection.AssemblyInformationalVersionAttribute::.ctor(System.String)
  1120. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyInformationalVersionAttribute__ctor_m9BF349D8F980B0ABAB2A6312E422915285FA1678 (AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0 * __this, String_t* ___informationalVersion0, const RuntimeMethod* method);
  1121. // System.Void System.Resources.NeutralResourcesLanguageAttribute::.ctor(System.String)
  1122. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NeutralResourcesLanguageAttribute__ctor_mF2BB52FC7FE116CCA2AEDD08A2DA1DF7055B56AF (NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2 * __this, String_t* ___cultureName0, const RuntimeMethod* method);
  1123. // System.Void System.Runtime.InteropServices.ComVisibleAttribute::.ctor(System.Boolean)
  1124. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComVisibleAttribute__ctor_mBDE8E12A0233C07B98D6D5103511F4DD5B1FC172 (ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A * __this, bool ___visibility0, const RuntimeMethod* method);
  1125. // System.Void System.CLSCompliantAttribute::.ctor(System.Boolean)
  1126. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270 (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * __this, bool ___isCompliant0, const RuntimeMethod* method);
  1127. // System.Void System.Reflection.AssemblyDelaySignAttribute::.ctor(System.Boolean)
  1128. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyDelaySignAttribute__ctor_mD4A5A4EE506801F8BFE4E8F313FD421AE3003A7A (AssemblyDelaySignAttribute_tB66445498441723DC06E545FAA1CF0F128A1FE38 * __this, bool ___delaySign0, const RuntimeMethod* method);
  1129. // System.Void System.Reflection.AssemblyKeyFileAttribute::.ctor(System.String)
  1130. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyKeyFileAttribute__ctor_mCCE9180B365E9EB7111D5061069A5F73E1690CC3 (AssemblyKeyFileAttribute_tEF26145AA8A5F35C218FE543113825F133CC6253 * __this, String_t* ___keyFile0, const RuntimeMethod* method);
  1131. // System.Void System.Runtime.CompilerServices.InternalsVisibleToAttribute::set_AllInternalsVisible(System.Boolean)
  1132. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InternalsVisibleToAttribute_set_AllInternalsVisible_m8A2E202556185ADBB01D1AF437D1DF23BED94B2B_inline (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * __this, bool ___value0, const RuntimeMethod* method);
  1133. // System.Void System.Reflection.AssemblyFileVersionAttribute::.ctor(System.String)
  1134. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyFileVersionAttribute__ctor_mF855AEBC51CB72F4FF913499256741AE57B0F13D (AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F * __this, String_t* ___version0, const RuntimeMethod* method);
  1135. // System.Void System.Resources.SatelliteContractVersionAttribute::.ctor(System.String)
  1136. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SatelliteContractVersionAttribute__ctor_m561BB905628D77D6D09110E2C1427B313E8A3215 (SatelliteContractVersionAttribute_tA77BDC45FEEFE11823E95476FC8AE60B007906D2 * __this, String_t* ___version0, const RuntimeMethod* method);
  1137. // System.Void System.Runtime.CompilerServices.ExtensionAttribute::.ctor()
  1138. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * __this, const RuntimeMethod* method);
  1139. // System.Void System.ParamArrayAttribute::.ctor()
  1140. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParamArrayAttribute__ctor_mCC72AFF718185BA7B87FD8D9471F1274400C5719 (ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F * __this, const RuntimeMethod* method);
  1141. // System.Void System.Diagnostics.DebuggerDisplayAttribute::.ctor(System.String)
  1142. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988 (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * __this, String_t* ___value0, const RuntimeMethod* method);
  1143. // System.Void System.FlagsAttribute::.ctor()
  1144. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FlagsAttribute__ctor_mE8DCBA1BE0E6B0424FEF5E5F249733CF6A0E1229 (FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 * __this, const RuntimeMethod* method);
  1145. // System.Void System.ObsoleteAttribute::.ctor(System.String)
  1146. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868 (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * __this, String_t* ___message0, const RuntimeMethod* method);
  1147. // System.Void System.Reflection.DefaultMemberAttribute::.ctor(System.String)
  1148. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7 (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * __this, String_t* ___memberName0, const RuntimeMethod* method);
  1149. // System.Void System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor()
  1150. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35 (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * __this, const RuntimeMethod* method);
  1151. // System.Void System.ComponentModel.EditorBrowsableAttribute::.ctor(System.ComponentModel.EditorBrowsableState)
  1152. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4 (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * __this, int32_t ___state0, const RuntimeMethod* method);
  1153. // System.Void System.Runtime.CompilerServices.AsyncStateMachineAttribute::.ctor(System.Type)
  1154. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncStateMachineAttribute__ctor_m9530B59D9722DE383A1703C52EBC1ED1FEFB100B (AsyncStateMachineAttribute_tBDB4B958CFB5CD3BEE1427711FFC8C358C9BA6E6 * __this, Type_t * ___stateMachineType0, const RuntimeMethod* method);
  1155. // System.Void System.Diagnostics.DebuggerHiddenAttribute::.ctor()
  1156. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3 (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * __this, const RuntimeMethod* method);
  1157. // System.Void System.Runtime.Serialization.OptionalFieldAttribute::.ctor()
  1158. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OptionalFieldAttribute__ctor_mE089D904BE867C605D7CAA6530F89C21717598A1 (OptionalFieldAttribute_t5761990BBE6FDD98072FD82D9EC2B9CD96CEFB59 * __this, const RuntimeMethod* method);
  1159. // System.Void System.AttributeUsageAttribute::.ctor(System.AttributeTargets)
  1160. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute__ctor_m5114E18826A49A025D48DC71904C430BD590656D (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * __this, int32_t ___validOn0, const RuntimeMethod* method);
  1161. // System.Void System.AttributeUsageAttribute::set_AllowMultiple(System.Boolean)
  1162. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AttributeUsageAttribute_set_AllowMultiple_mF412CDAFFE16D056721EF81A1EC04ACE63612055_inline (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * __this, bool ___value0, const RuntimeMethod* method);
  1163. // System.Void System.ComponentModel.DefaultValueAttribute::.ctor(System.Object)
  1164. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultValueAttribute__ctor_mA4501ED4B6011A422D55EBE09A4AC3A1FAD83C13 (DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
  1165. // System.Void System.Xml.Serialization.XmlAttributeAttribute::.ctor(System.String)
  1166. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeAttribute__ctor_m3C9FC780C480AB65FAA249FC66806584C8D80749 (XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 * __this, String_t* ___attributeName0, const RuntimeMethod* method);
  1167. // System.Void System.Xml.Serialization.XmlIgnoreAttribute::.ctor()
  1168. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908 (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * __this, const RuntimeMethod* method);
  1169. // System.Void System.Xml.Serialization.XmlElementAttribute::.ctor(System.String,System.Type)
  1170. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * __this, String_t* ___elementName0, Type_t * ___type1, const RuntimeMethod* method);
  1171. // System.Void System.ComponentModel.DefaultValueAttribute::.ctor(System.Boolean)
  1172. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultValueAttribute__ctor_m78FFD0C313E546C33C761F79E544E6FA5ADCB4D0 (DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 * __this, bool ___value0, const RuntimeMethod* method);
  1173. // System.Void System.Xml.Serialization.XmlEnumAttribute::.ctor(System.String)
  1174. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2 (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * __this, String_t* ___name0, const RuntimeMethod* method);
  1175. static void System_Xml_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1176. {
  1177. {
  1178. CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * tmp = (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF *)cache->attributes[0];
  1179. CompilationRelaxationsAttribute__ctor_m9012F6B0B55EF7A86133889CB22D74728CAB90AC(tmp, 8LL, NULL);
  1180. }
  1181. {
  1182. DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B * tmp = (DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B *)cache->attributes[1];
  1183. DebuggableAttribute__ctor_m7FF445C8435494A4847123A668D889E692E55550(tmp, 2LL, NULL);
  1184. }
  1185. {
  1186. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[2];
  1187. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x53\x79\x73\x74\x65\x6D\x2E\x44\x61\x74\x61\x2E\x53\x71\x6C\x58\x6D\x6C\x2C\x20\x50\x75\x62\x6C\x69\x63\x4B\x65\x79\x3D\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x34\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30"), NULL);
  1188. }
  1189. {
  1190. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[3];
  1191. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x53\x79\x73\x74\x65\x6D\x2E\x58\x6D\x6C\x2E\x4C\x69\x6E\x71\x2C\x20\x50\x75\x62\x6C\x69\x63\x4B\x65\x79\x3D\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x34\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30"), NULL);
  1192. }
  1193. {
  1194. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[4];
  1195. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x53\x79\x73\x74\x65\x6D\x2E\x53\x65\x72\x76\x69\x63\x65\x4D\x6F\x64\x65\x6C\x2E\x46\x72\x69\x65\x6E\x64\x2C\x20\x50\x75\x62\x6C\x69\x63\x4B\x65\x79\x3D\x30\x30\x32\x34\x30\x30\x30\x30\x30\x34\x38\x30\x30\x30\x30\x30\x39\x34\x30\x30\x30\x30\x30\x30\x30\x36\x30\x32\x30\x30\x30\x30\x30\x30\x32\x34\x30\x30\x30\x30\x35\x32\x35\x33\x34\x31\x33\x31\x30\x30\x30\x34\x30\x30\x30\x30\x30\x31\x30\x30\x30\x31\x30\x30\x30\x37\x64\x31\x66\x61\x35\x37\x63\x34\x61\x65\x64\x39\x66\x30\x61\x33\x32\x65\x38\x34\x61\x61\x30\x66\x61\x65\x66\x64\x30\x64\x65\x39\x65\x38\x66\x64\x36\x61\x65\x63\x38\x66\x38\x37\x66\x62\x30\x33\x37\x36\x36\x63\x38\x33\x34\x63\x39\x39\x39\x32\x31\x65\x62\x32\x33\x62\x65\x37\x39\x61\x64\x39\x64\x35\x64\x63\x63\x31\x64\x64\x39\x61\x64\x32\x33\x36\x31\x33\x32\x31\x30\x32\x39\x30\x30\x62\x37\x32\x33\x63\x66\x39\x38\x30\x39\x35\x37\x66\x63\x34\x65\x31\x37\x37\x31\x30\x38\x66\x63\x36\x30\x37\x37\x37\x34\x66\x32\x39\x65\x38\x33\x32\x30\x65\x39\x32\x65\x61\x30\x35\x65\x63\x65\x34\x65\x38\x32\x31\x63\x30\x61\x35\x65\x66\x65\x38\x66\x31\x36\x34\x35\x63\x34\x63\x30\x63\x39\x33\x63\x31\x61\x62\x39\x39\x32\x38\x35\x64\x36\x32\x32\x63\x61\x61\x36\x35\x32\x63\x31\x64\x66\x61\x64\x36\x33\x64\x37\x34\x35\x64\x36\x66\x32\x64\x65\x35\x66\x31\x37\x65\x35\x65\x61\x66\x30\x66\x63\x34\x39\x36\x33\x64\x32\x36\x31\x63\x38\x61\x31\x32\x34\x33\x36\x35\x31\x38\x32\x30\x36\x64\x63\x30\x39\x33\x33\x34\x34\x64\x35\x61\x64\x32\x39\x33"), NULL);
  1196. }
  1197. {
  1198. AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7 * tmp = (AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7 *)cache->attributes[5];
  1199. AssemblyTitleAttribute__ctor_mE239F206B3B369C48AE1F3B4211688778FE99E8D(tmp, il2cpp_codegen_string_new_wrapper("\x53\x79\x73\x74\x65\x6D\x2E\x58\x6D\x6C\x2E\x64\x6C\x6C"), NULL);
  1200. }
  1201. {
  1202. AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3 * tmp = (AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3 *)cache->attributes[6];
  1203. AssemblyDescriptionAttribute__ctor_m3A0BD500FF352A67235FBA499FBA58EFF15B1F25(tmp, il2cpp_codegen_string_new_wrapper("\x53\x79\x73\x74\x65\x6D\x2E\x58\x6D\x6C\x2E\x64\x6C\x6C"), NULL);
  1204. }
  1205. {
  1206. AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA * tmp = (AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA *)cache->attributes[7];
  1207. AssemblyDefaultAliasAttribute__ctor_m0C9991C32ED63B598FA509F3AF74554A5C874EB0(tmp, il2cpp_codegen_string_new_wrapper("\x53\x79\x73\x74\x65\x6D\x2E\x58\x6D\x6C\x2E\x64\x6C\x6C"), NULL);
  1208. }
  1209. {
  1210. AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4 * tmp = (AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4 *)cache->attributes[8];
  1211. AssemblyCompanyAttribute__ctor_m435C9FEC405646617645636E67860598A0C46FF0(tmp, il2cpp_codegen_string_new_wrapper("\x4D\x6F\x6E\x6F\x20\x64\x65\x76\x65\x6C\x6F\x70\x6D\x65\x6E\x74\x20\x74\x65\x61\x6D"), NULL);
  1212. }
  1213. {
  1214. AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA * tmp = (AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA *)cache->attributes[9];
  1215. AssemblyProductAttribute__ctor_m26DF1EBC1C86E7DA4786C66B44123899BE8DBCB8(tmp, il2cpp_codegen_string_new_wrapper("\x4D\x6F\x6E\x6F\x20\x43\x6F\x6D\x6D\x6F\x6E\x20\x4C\x61\x6E\x67\x75\x61\x67\x65\x20\x49\x6E\x66\x72\x61\x73\x74\x72\x75\x63\x74\x75\x72\x65"), NULL);
  1216. }
  1217. {
  1218. RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * tmp = (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 *)cache->attributes[10];
  1219. RuntimeCompatibilityAttribute__ctor_m551DDF1438CE97A984571949723F30F44CF7317C(tmp, NULL);
  1220. RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline(tmp, true, NULL);
  1221. }
  1222. {
  1223. AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC * tmp = (AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC *)cache->attributes[11];
  1224. AssemblyCopyrightAttribute__ctor_mB0B5F5C1A7A8B172289CC694E2711F07A37CE3F3(tmp, il2cpp_codegen_string_new_wrapper("\x28\x63\x29\x20\x56\x61\x72\x69\x6F\x75\x73\x20\x4D\x6F\x6E\x6F\x20\x61\x75\x74\x68\x6F\x72\x73"), NULL);
  1225. }
  1226. {
  1227. AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0 * tmp = (AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0 *)cache->attributes[12];
  1228. AssemblyInformationalVersionAttribute__ctor_m9BF349D8F980B0ABAB2A6312E422915285FA1678(tmp, il2cpp_codegen_string_new_wrapper("\x34\x2E\x30\x2E\x33\x30\x33\x31\x39\x2E\x31\x37\x30\x32\x30"), NULL);
  1229. }
  1230. {
  1231. NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2 * tmp = (NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2 *)cache->attributes[13];
  1232. NeutralResourcesLanguageAttribute__ctor_mF2BB52FC7FE116CCA2AEDD08A2DA1DF7055B56AF(tmp, il2cpp_codegen_string_new_wrapper("\x65\x6E\x2D\x55\x53"), NULL);
  1233. }
  1234. {
  1235. ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A * tmp = (ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A *)cache->attributes[14];
  1236. ComVisibleAttribute__ctor_mBDE8E12A0233C07B98D6D5103511F4DD5B1FC172(tmp, false, NULL);
  1237. }
  1238. {
  1239. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[15];
  1240. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, true, NULL);
  1241. }
  1242. {
  1243. AssemblyDelaySignAttribute_tB66445498441723DC06E545FAA1CF0F128A1FE38 * tmp = (AssemblyDelaySignAttribute_tB66445498441723DC06E545FAA1CF0F128A1FE38 *)cache->attributes[16];
  1244. AssemblyDelaySignAttribute__ctor_mD4A5A4EE506801F8BFE4E8F313FD421AE3003A7A(tmp, true, NULL);
  1245. }
  1246. {
  1247. AssemblyKeyFileAttribute_tEF26145AA8A5F35C218FE543113825F133CC6253 * tmp = (AssemblyKeyFileAttribute_tEF26145AA8A5F35C218FE543113825F133CC6253 *)cache->attributes[17];
  1248. AssemblyKeyFileAttribute__ctor_mCCE9180B365E9EB7111D5061069A5F73E1690CC3(tmp, il2cpp_codegen_string_new_wrapper("\x2E\x2E\x2F\x73\x69\x6C\x76\x65\x72\x6C\x69\x67\x68\x74\x2E\x70\x75\x62"), NULL);
  1249. }
  1250. {
  1251. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[18];
  1252. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x53\x79\x73\x74\x65\x6D\x2E\x53\x65\x72\x76\x69\x63\x65\x4D\x6F\x64\x65\x6C\x2E\x57\x65\x62\x2C\x20\x50\x75\x62\x6C\x69\x63\x4B\x65\x79\x3D\x30\x30\x32\x34\x30\x30\x30\x30\x30\x34\x38\x30\x30\x30\x30\x30\x39\x34\x30\x30\x30\x30\x30\x30\x30\x36\x30\x32\x30\x30\x30\x30\x30\x30\x32\x34\x30\x30\x30\x30\x35\x32\x35\x33\x34\x31\x33\x31\x30\x30\x30\x34\x30\x30\x30\x30\x30\x31\x30\x30\x30\x31\x30\x30\x38\x44\x35\x36\x43\x37\x36\x46\x39\x45\x38\x36\x34\x39\x33\x38\x33\x30\x34\x39\x46\x33\x38\x33\x43\x34\x34\x42\x45\x30\x45\x43\x32\x30\x34\x31\x38\x31\x38\x32\x32\x41\x36\x43\x33\x31\x43\x46\x35\x45\x42\x37\x45\x46\x34\x38\x36\x39\x34\x34\x44\x30\x33\x32\x31\x38\x38\x45\x41\x31\x44\x33\x39\x32\x30\x37\x36\x33\x37\x31\x32\x43\x43\x42\x31\x32\x44\x37\x35\x46\x42\x37\x37\x45\x39\x38\x31\x31\x31\x34\x39\x45\x36\x31\x34\x38\x45\x35\x44\x33\x32\x46\x42\x41\x41\x42\x33\x37\x36\x31\x31\x43\x31\x38\x37\x38\x44\x44\x43\x31\x39\x45\x32\x30\x45\x46\x31\x33\x35\x44\x30\x43\x42\x32\x43\x46\x46\x32\x42\x46\x45\x43\x33\x44\x31\x31\x35\x38\x31\x30\x43\x33\x44\x39\x30\x36\x39\x36\x33\x38\x46\x45\x34\x42\x45\x32\x31\x35\x44\x42\x46\x37\x39\x35\x38\x36\x31\x39\x32\x30\x45\x35\x41\x42\x36\x46\x37\x44\x42\x32\x45\x32\x43\x45\x45\x46\x31\x33\x36\x41\x43\x32\x33\x44\x35\x44\x44\x32\x42\x46\x30\x33\x31\x37\x30\x30\x41\x45\x43\x32\x33\x32\x46\x36\x43\x36\x42\x31\x43\x37\x38\x35\x42\x34\x33\x30\x35\x43\x31\x32\x33\x42\x33\x37\x41\x42"), NULL);
  1253. }
  1254. {
  1255. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[19];
  1256. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x53\x79\x73\x74\x65\x6D\x2E\x58\x6D\x6C\x2E\x4C\x69\x6E\x71\x2C\x20\x50\x75\x62\x6C\x69\x63\x4B\x65\x79\x3D\x30\x30\x32\x34\x30\x30\x30\x30\x30\x34\x38\x30\x30\x30\x30\x30\x39\x34\x30\x30\x30\x30\x30\x30\x30\x36\x30\x32\x30\x30\x30\x30\x30\x30\x32\x34\x30\x30\x30\x30\x35\x32\x35\x33\x34\x31\x33\x31\x30\x30\x30\x34\x30\x30\x30\x30\x30\x31\x30\x30\x30\x31\x30\x30\x42\x35\x46\x43\x39\x30\x45\x37\x30\x32\x37\x46\x36\x37\x38\x37\x31\x45\x37\x37\x33\x41\x38\x46\x44\x45\x38\x39\x33\x38\x43\x38\x31\x44\x44\x34\x30\x32\x42\x41\x36\x35\x42\x39\x32\x30\x31\x44\x36\x30\x35\x39\x33\x45\x39\x36\x43\x34\x39\x32\x36\x35\x31\x45\x38\x38\x39\x43\x43\x31\x33\x46\x31\x34\x31\x35\x45\x42\x42\x35\x33\x46\x41\x43\x31\x31\x33\x31\x41\x45\x30\x42\x44\x33\x33\x33\x43\x35\x45\x45\x36\x30\x32\x31\x36\x37\x32\x44\x39\x37\x31\x38\x45\x41\x33\x31\x41\x38\x41\x45\x42\x44\x30\x44\x41\x30\x30\x37\x32\x46\x32\x35\x44\x38\x37\x44\x42\x41\x36\x46\x43\x39\x30\x46\x46\x44\x35\x39\x38\x45\x44\x34\x44\x41\x33\x35\x45\x34\x34\x43\x33\x39\x38\x43\x34\x35\x34\x33\x30\x37\x45\x38\x45\x33\x33\x42\x38\x34\x32\x36\x31\x34\x33\x44\x41\x45\x43\x39\x46\x35\x39\x36\x38\x33\x36\x46\x39\x37\x43\x38\x46\x37\x34\x37\x35\x30\x45\x35\x39\x37\x35\x43\x36\x34\x45\x32\x31\x38\x39\x46\x34\x35\x44\x45\x46\x34\x36\x42\x32\x41\x32\x42\x31\x32\x34\x37\x41\x44\x43\x33\x36\x35\x32\x42\x46\x35\x43\x33\x30\x38\x30\x35\x35\x44\x41\x39"), NULL);
  1257. InternalsVisibleToAttribute_set_AllInternalsVisible_m8A2E202556185ADBB01D1AF437D1DF23BED94B2B_inline(tmp, false, NULL);
  1258. }
  1259. {
  1260. AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F * tmp = (AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F *)cache->attributes[20];
  1261. AssemblyFileVersionAttribute__ctor_mF855AEBC51CB72F4FF913499256741AE57B0F13D(tmp, il2cpp_codegen_string_new_wrapper("\x34\x2E\x30\x2E\x33\x30\x33\x31\x39\x2E\x31\x37\x30\x32\x30"), NULL);
  1262. }
  1263. {
  1264. SatelliteContractVersionAttribute_tA77BDC45FEEFE11823E95476FC8AE60B007906D2 * tmp = (SatelliteContractVersionAttribute_tA77BDC45FEEFE11823E95476FC8AE60B007906D2 *)cache->attributes[21];
  1265. SatelliteContractVersionAttribute__ctor_m561BB905628D77D6D09110E2C1427B313E8A3215(tmp, il2cpp_codegen_string_new_wrapper("\x34\x2E\x30\x2E\x30\x2E\x30"), NULL);
  1266. }
  1267. {
  1268. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[22];
  1269. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1270. }
  1271. }
  1272. static void SR_t18DDAC0A0AC9B7F52E81CFEC14051580FFAAB957_CustomAttributesCacheGenerator_SR_GetString_m846F567D256240B005CADDBE65D4793920B6474E____args1(CustomAttributesCache* cache)
  1273. {
  1274. {
  1275. ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F * tmp = (ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F *)cache->attributes[0];
  1276. ParamArrayAttribute__ctor_mCC72AFF718185BA7B87FD8D9471F1274400C5719(tmp, NULL);
  1277. }
  1278. }
  1279. static void SR_t18DDAC0A0AC9B7F52E81CFEC14051580FFAAB957_CustomAttributesCacheGenerator_SR_GetString_m6B94153BBBDF13B55321A1E0290B6E82FC8AD248____args2(CustomAttributesCache* cache)
  1280. {
  1281. {
  1282. ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F * tmp = (ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F *)cache->attributes[0];
  1283. ParamArrayAttribute__ctor_mCC72AFF718185BA7B87FD8D9471F1274400C5719(tmp, NULL);
  1284. }
  1285. }
  1286. static void Query_tA8096C7914789E59DF6C340BE3380CF2511F6A06_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1287. {
  1288. {
  1289. DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[0];
  1290. DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988(tmp, il2cpp_codegen_string_new_wrapper("\x7B\x54\x6F\x53\x74\x72\x69\x6E\x67\x28\x29\x7D"), NULL);
  1291. }
  1292. }
  1293. static void XPathArrayIterator_t41CCD996703BA681E5D54A8504BA08455CE417DD_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1294. {
  1295. {
  1296. DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[0];
  1297. DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988(tmp, il2cpp_codegen_string_new_wrapper("\x50\x6F\x73\x69\x74\x69\x6F\x6E\x3D\x7B\x43\x75\x72\x72\x65\x6E\x74\x50\x6F\x73\x69\x74\x69\x6F\x6E\x7D\x2C\x20\x43\x75\x72\x72\x65\x6E\x74\x3D\x7B\x64\x65\x62\x75\x67\x67\x65\x72\x44\x69\x73\x70\x6C\x61\x79\x50\x72\x6F\x78\x79\x2C\x20\x6E\x71\x7D"), NULL);
  1298. }
  1299. }
  1300. static void AsyncHelper_t5BBA4E723AFA5229BD866D2ED5EFB1F2590C5EB2_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1301. {
  1302. {
  1303. ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
  1304. ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
  1305. }
  1306. }
  1307. static void NamespaceHandling_t7974F9A117390EC627D6C12EB7219594674ADC80_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1308. {
  1309. {
  1310. FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 * tmp = (FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 *)cache->attributes[0];
  1311. FlagsAttribute__ctor_mE8DCBA1BE0E6B0424FEF5E5F249733CF6A0E1229(tmp, NULL);
  1312. }
  1313. }
  1314. static void ValidationType_t588D32514C11D985F976526F7E3C81ABD1D27EBA_CustomAttributesCacheGenerator_Auto(CustomAttributesCache* cache)
  1315. {
  1316. {
  1317. ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
  1318. ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x56\x61\x6C\x69\x64\x61\x74\x69\x6F\x6E\x20\x74\x79\x70\x65\x20\x73\x68\x6F\x75\x6C\x64\x20\x62\x65\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x61\x73\x20\x44\x54\x44\x20\x6F\x72\x20\x53\x63\x68\x65\x6D\x61\x2E"), NULL);
  1319. }
  1320. }
  1321. static void ValidationType_t588D32514C11D985F976526F7E3C81ABD1D27EBA_CustomAttributesCacheGenerator_XDR(CustomAttributesCache* cache)
  1322. {
  1323. {
  1324. ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
  1325. ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x58\x44\x52\x20\x56\x61\x6C\x69\x64\x61\x74\x69\x6F\x6E\x20\x74\x68\x72\x6F\x75\x67\x68\x20\x58\x6D\x6C\x56\x61\x6C\x69\x64\x61\x74\x69\x6E\x67\x52\x65\x61\x64\x65\x72\x20\x69\x73\x20\x6F\x62\x73\x6F\x6C\x65\x74\x65\x64"), NULL);
  1326. }
  1327. }
  1328. static void XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1329. {
  1330. {
  1331. DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[0];
  1332. DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988(tmp, il2cpp_codegen_string_new_wrapper("\x7B\x64\x65\x62\x75\x67\x67\x65\x72\x44\x69\x73\x70\x6C\x61\x79\x50\x72\x6F\x78\x79\x7D"), NULL);
  1333. }
  1334. {
  1335. DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[1];
  1336. DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988(tmp, il2cpp_codegen_string_new_wrapper("\x7B\x64\x65\x62\x75\x67\x67\x65\x72\x44\x69\x73\x70\x6C\x61\x79\x50\x72\x6F\x78\x79\x7D"), NULL);
  1337. }
  1338. {
  1339. DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[2];
  1340. DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D"), NULL);
  1341. }
  1342. }
  1343. static void XmlReaderSettings_tD1257418720567D67A7C49A7498914FE937F1520_CustomAttributesCacheGenerator_U3CIsXmlResolverSetU3Ek__BackingField(CustomAttributesCache* cache)
  1344. {
  1345. {
  1346. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1347. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1348. }
  1349. }
  1350. static void XmlReaderSettings_tD1257418720567D67A7C49A7498914FE937F1520_CustomAttributesCacheGenerator_XmlReaderSettings_set_IsXmlResolverSet_m4374404167E732ADF4FF5D5699DA1A2763B4A048(CustomAttributesCache* cache)
  1351. {
  1352. {
  1353. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1354. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1355. }
  1356. }
  1357. static void XmlTextReader_t45FF43659BDA44EC96F8CEE164A3CA74548C39F5_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1358. {
  1359. {
  1360. EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[0];
  1361. EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
  1362. }
  1363. }
  1364. static void XmlAttributeCollection_tDC800F98FE32D4723967772453EB600D1C368AA3_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1365. {
  1366. {
  1367. DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[0];
  1368. DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D\x4F\x66"), NULL);
  1369. }
  1370. }
  1371. static void SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1372. {
  1373. {
  1374. DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[0];
  1375. DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D"), NULL);
  1376. }
  1377. }
  1378. static void XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1379. {
  1380. {
  1381. DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[0];
  1382. DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988(tmp, il2cpp_codegen_string_new_wrapper("\x7B\x64\x65\x62\x75\x67\x67\x65\x72\x44\x69\x73\x70\x6C\x61\x79\x50\x72\x6F\x78\x79\x7D"), NULL);
  1383. }
  1384. {
  1385. DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[1];
  1386. DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D"), NULL);
  1387. }
  1388. }
  1389. static void XmlNodeList_t1DBBA2CC948CC6631BC33AA7405E11C8105E6EE9_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1390. {
  1391. {
  1392. DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[0];
  1393. DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D\x4F\x66"), NULL);
  1394. }
  1395. }
  1396. static void XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_CustomAttributesCacheGenerator_XmlConvert_ToString_m4641C988539C8EB17C589761E674B9521EEA62E5(CustomAttributesCache* cache)
  1397. {
  1398. {
  1399. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1400. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1401. }
  1402. }
  1403. static void XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_CustomAttributesCacheGenerator_XmlConvert_ToString_m9823FE7E80D23F2111BD7D6861C59A79EF70E9CC(CustomAttributesCache* cache)
  1404. {
  1405. {
  1406. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1407. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1408. }
  1409. }
  1410. static void XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_CustomAttributesCacheGenerator_XmlConvert_ToString_mBF267D826A31C919FC0A510C8EABE5BDD690AFF8(CustomAttributesCache* cache)
  1411. {
  1412. {
  1413. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1414. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1415. }
  1416. }
  1417. static void XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_CustomAttributesCacheGenerator_XmlConvert_ToString_m886299CF6DD10FDD767223FAEA2740B3A2F48C40(CustomAttributesCache* cache)
  1418. {
  1419. {
  1420. CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
  1421. CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
  1422. }
  1423. }
  1424. static void XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D_CustomAttributesCacheGenerator_XmlDownloadManager_GetNonFileStreamAsync_m075FD73BF73B9C8E231E40AD4C956FE1F76709B1(CustomAttributesCache* cache)
  1425. {
  1426. static bool s_Il2CppMethodInitialized;
  1427. if (!s_Il2CppMethodInitialized)
  1428. {
  1429. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_0_0_0_var);
  1430. s_Il2CppMethodInitialized = true;
  1431. }
  1432. {
  1433. AsyncStateMachineAttribute_tBDB4B958CFB5CD3BEE1427711FFC8C358C9BA6E6 * tmp = (AsyncStateMachineAttribute_tBDB4B958CFB5CD3BEE1427711FFC8C358C9BA6E6 *)cache->attributes[0];
  1434. AsyncStateMachineAttribute__ctor_m9530B59D9722DE383A1703C52EBC1ED1FEFB100B(tmp, il2cpp_codegen_type_get_object(U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_0_0_0_var), NULL);
  1435. }
  1436. }
  1437. static void U3CU3Ec__DisplayClass4_0_t1CB18D171B35CF191BC6883D5C7E384F9F137C0B_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1438. {
  1439. {
  1440. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1441. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1442. }
  1443. }
  1444. static void U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1445. {
  1446. {
  1447. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1448. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1449. }
  1450. }
  1451. static void U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_CustomAttributesCacheGenerator_U3CGetNonFileStreamAsyncU3Ed__5_SetStateMachine_m6269B8FD1CE46B7955D5D2F90AB7D5F2BE407777(CustomAttributesCache* cache)
  1452. {
  1453. {
  1454. DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
  1455. DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
  1456. }
  1457. }
  1458. static void XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_CustomAttributesCacheGenerator_sourceUri(CustomAttributesCache* cache)
  1459. {
  1460. {
  1461. OptionalFieldAttribute_t5761990BBE6FDD98072FD82D9EC2B9CD96CEFB59 * tmp = (OptionalFieldAttribute_t5761990BBE6FDD98072FD82D9EC2B9CD96CEFB59 *)cache->attributes[0];
  1462. OptionalFieldAttribute__ctor_mE089D904BE867C605D7CAA6530F89C21717598A1(tmp, NULL);
  1463. }
  1464. }
  1465. static void XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1_CustomAttributesCacheGenerator_XmlUrlResolver_GetEntityAsync_m0D4B74C681DFBA67E92DF4AA341447F062CB256F(CustomAttributesCache* cache)
  1466. {
  1467. static bool s_Il2CppMethodInitialized;
  1468. if (!s_Il2CppMethodInitialized)
  1469. {
  1470. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_0_0_0_var);
  1471. s_Il2CppMethodInitialized = true;
  1472. }
  1473. {
  1474. AsyncStateMachineAttribute_tBDB4B958CFB5CD3BEE1427711FFC8C358C9BA6E6 * tmp = (AsyncStateMachineAttribute_tBDB4B958CFB5CD3BEE1427711FFC8C358C9BA6E6 *)cache->attributes[0];
  1475. AsyncStateMachineAttribute__ctor_m9530B59D9722DE383A1703C52EBC1ED1FEFB100B(tmp, il2cpp_codegen_type_get_object(U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_0_0_0_var), NULL);
  1476. }
  1477. }
  1478. static void U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1479. {
  1480. {
  1481. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1482. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1483. }
  1484. }
  1485. static void U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_CustomAttributesCacheGenerator_U3CGetEntityAsyncU3Ed__15_SetStateMachine_m9A31F8EDD492D50FFA4F9FCC8F0FBAD9DD1D3E93(CustomAttributesCache* cache)
  1486. {
  1487. {
  1488. DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
  1489. DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
  1490. }
  1491. }
  1492. static void Res_t8707C30091CC714404BA967631E1F74B8ACBB1E4_CustomAttributesCacheGenerator_Res_GetString_m1D06B81901B03CA849045926741403907612BB4B____args1(CustomAttributesCache* cache)
  1493. {
  1494. {
  1495. ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F * tmp = (ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F *)cache->attributes[0];
  1496. ParamArrayAttribute__ctor_mCC72AFF718185BA7B87FD8D9471F1274400C5719(tmp, NULL);
  1497. }
  1498. }
  1499. static void XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1500. {
  1501. {
  1502. DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[0];
  1503. DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988(tmp, il2cpp_codegen_string_new_wrapper("\x7B\x64\x65\x62\x75\x67\x67\x65\x72\x44\x69\x73\x70\x6C\x61\x79\x50\x72\x6F\x78\x79\x7D"), NULL);
  1504. }
  1505. }
  1506. static void XPathNodeIterator_t133D83D4FBC95646A6E85168B76EC873C7533FB8_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1507. {
  1508. {
  1509. DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[0];
  1510. DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988(tmp, il2cpp_codegen_string_new_wrapper("\x50\x6F\x73\x69\x74\x69\x6F\x6E\x3D\x7B\x43\x75\x72\x72\x65\x6E\x74\x50\x6F\x73\x69\x74\x69\x6F\x6E\x7D\x2C\x20\x43\x75\x72\x72\x65\x6E\x74\x3D\x7B\x64\x65\x62\x75\x67\x67\x65\x72\x44\x69\x73\x70\x6C\x61\x79\x50\x72\x6F\x78\x79\x7D"), NULL);
  1511. }
  1512. }
  1513. static void XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1514. {
  1515. {
  1516. AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * tmp = (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C *)cache->attributes[0];
  1517. AttributeUsageAttribute__ctor_m5114E18826A49A025D48DC71904C430BD590656D(tmp, 4LL, NULL);
  1518. AttributeUsageAttribute_set_AllowMultiple_mF412CDAFFE16D056721EF81A1EC04ACE63612055_inline(tmp, false, NULL);
  1519. }
  1520. }
  1521. static void XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_CustomAttributesCacheGenerator_U3CMethodU3Ek__BackingField(CustomAttributesCache* cache)
  1522. {
  1523. {
  1524. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1525. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1526. }
  1527. }
  1528. static void XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_CustomAttributesCacheGenerator_XmlTypeConvertorAttribute_set_Method_mC01F1A24104F47A6DA6F8CADDCE9CA57D8552283(CustomAttributesCache* cache)
  1529. {
  1530. {
  1531. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1532. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1533. }
  1534. }
  1535. static void XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1536. {
  1537. {
  1538. AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * tmp = (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C *)cache->attributes[0];
  1539. AttributeUsageAttribute__ctor_m5114E18826A49A025D48DC71904C430BD590656D(tmp, 10624LL, NULL);
  1540. }
  1541. }
  1542. static void XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1543. {
  1544. {
  1545. AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * tmp = (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C *)cache->attributes[0];
  1546. AttributeUsageAttribute__ctor_m5114E18826A49A025D48DC71904C430BD590656D(tmp, 10624LL, NULL);
  1547. AttributeUsageAttribute_set_AllowMultiple_mF412CDAFFE16D056721EF81A1EC04ACE63612055_inline(tmp, true, NULL);
  1548. }
  1549. }
  1550. static void XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1551. {
  1552. {
  1553. AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * tmp = (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C *)cache->attributes[0];
  1554. AttributeUsageAttribute__ctor_m5114E18826A49A025D48DC71904C430BD590656D(tmp, 256LL, NULL);
  1555. }
  1556. }
  1557. static void XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1558. {
  1559. {
  1560. AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * tmp = (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C *)cache->attributes[0];
  1561. AttributeUsageAttribute__ctor_m5114E18826A49A025D48DC71904C430BD590656D(tmp, 10624LL, NULL);
  1562. }
  1563. }
  1564. static void XmlSchemaProviderAttribute_t94BE15D9985EEC61A31C88069AE2723B209005DA_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1565. {
  1566. {
  1567. AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * tmp = (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C *)cache->attributes[0];
  1568. AttributeUsageAttribute__ctor_m5114E18826A49A025D48DC71904C430BD590656D(tmp, 1036LL, NULL);
  1569. }
  1570. }
  1571. static void BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1572. {
  1573. {
  1574. DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[0];
  1575. DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D"), NULL);
  1576. }
  1577. }
  1578. static void SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1579. {
  1580. {
  1581. DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[0];
  1582. DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D"), NULL);
  1583. }
  1584. }
  1585. static void Positions_t577D66E21F674149C5A3E68851CE88B94C37248F_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1586. {
  1587. {
  1588. DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[0];
  1589. DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D"), NULL);
  1590. }
  1591. }
  1592. static void RestrictionFlags_tE688E3FE50199CFC0DE7B02A59EA18DF59B8A025_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1593. {
  1594. {
  1595. FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 * tmp = (FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 *)cache->attributes[0];
  1596. FlagsAttribute__ctor_mE8DCBA1BE0E6B0424FEF5E5F249733CF6A0E1229(tmp, NULL);
  1597. }
  1598. }
  1599. static void XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_CustomAttributesCacheGenerator_XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C____ProcessContents_PropertyInfo(CustomAttributesCache* cache)
  1600. {
  1601. static bool s_Il2CppMethodInitialized;
  1602. if (!s_Il2CppMethodInitialized)
  1603. {
  1604. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_il2cpp_TypeInfo_var);
  1605. s_Il2CppMethodInitialized = true;
  1606. }
  1607. {
  1608. int32_t _tmp_0 = 0;
  1609. DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 * tmp = (DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 *)cache->attributes[0];
  1610. DefaultValueAttribute__ctor_mA4501ED4B6011A422D55EBE09A4AC3A1FAD83C13(tmp, Box(XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_il2cpp_TypeInfo_var, &_tmp_0), NULL);
  1611. }
  1612. {
  1613. XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 * tmp = (XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 *)cache->attributes[1];
  1614. XmlAttributeAttribute__ctor_m3C9FC780C480AB65FAA249FC66806584C8D80749(tmp, il2cpp_codegen_string_new_wrapper("\x70\x72\x6F\x63\x65\x73\x73\x43\x6F\x6E\x74\x65\x6E\x74\x73"), NULL);
  1615. }
  1616. }
  1617. static void XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_CustomAttributesCacheGenerator_XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C____NamespaceList_PropertyInfo(CustomAttributesCache* cache)
  1618. {
  1619. {
  1620. XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
  1621. XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
  1622. }
  1623. }
  1624. static void XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80_CustomAttributesCacheGenerator_XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80____ProcessContents_PropertyInfo(CustomAttributesCache* cache)
  1625. {
  1626. static bool s_Il2CppMethodInitialized;
  1627. if (!s_Il2CppMethodInitialized)
  1628. {
  1629. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_il2cpp_TypeInfo_var);
  1630. s_Il2CppMethodInitialized = true;
  1631. }
  1632. {
  1633. int32_t _tmp_0 = 0;
  1634. DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 * tmp = (DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 *)cache->attributes[0];
  1635. DefaultValueAttribute__ctor_mA4501ED4B6011A422D55EBE09A4AC3A1FAD83C13(tmp, Box(XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_il2cpp_TypeInfo_var, &_tmp_0), NULL);
  1636. }
  1637. {
  1638. XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 * tmp = (XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 *)cache->attributes[1];
  1639. XmlAttributeAttribute__ctor_m3C9FC780C480AB65FAA249FC66806584C8D80749(tmp, il2cpp_codegen_string_new_wrapper("\x70\x72\x6F\x63\x65\x73\x73\x43\x6F\x6E\x74\x65\x6E\x74\x73"), NULL);
  1640. }
  1641. }
  1642. static void XmlSchemaChoice_t8FC6F8DB238E8800F350E4EF88CCECD64B5D3BF0_CustomAttributesCacheGenerator_XmlSchemaChoice_t8FC6F8DB238E8800F350E4EF88CCECD64B5D3BF0____Items_PropertyInfo(CustomAttributesCache* cache)
  1643. {
  1644. static bool s_Il2CppMethodInitialized;
  1645. if (!s_Il2CppMethodInitialized)
  1646. {
  1647. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_0_0_0_var);
  1648. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaChoice_t8FC6F8DB238E8800F350E4EF88CCECD64B5D3BF0_0_0_0_var);
  1649. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaElement_tB61A00A97A12A9B2620D005D0643B11EA1CA764A_0_0_0_var);
  1650. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaGroupRef_t959C68547997BA04BD811BE970E18AD9C42A68DA_0_0_0_var);
  1651. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaSequence_t6C94DB85E74779BE018C34D94204C037416E9C03_0_0_0_var);
  1652. s_Il2CppMethodInitialized = true;
  1653. }
  1654. {
  1655. XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[0];
  1656. XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F(tmp, il2cpp_codegen_string_new_wrapper("\x63\x68\x6F\x69\x63\x65"), il2cpp_codegen_type_get_object(XmlSchemaChoice_t8FC6F8DB238E8800F350E4EF88CCECD64B5D3BF0_0_0_0_var), NULL);
  1657. }
  1658. {
  1659. XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[1];
  1660. XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F(tmp, il2cpp_codegen_string_new_wrapper("\x73\x65\x71\x75\x65\x6E\x63\x65"), il2cpp_codegen_type_get_object(XmlSchemaSequence_t6C94DB85E74779BE018C34D94204C037416E9C03_0_0_0_var), NULL);
  1661. }
  1662. {
  1663. XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[2];
  1664. XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F(tmp, il2cpp_codegen_string_new_wrapper("\x65\x6C\x65\x6D\x65\x6E\x74"), il2cpp_codegen_type_get_object(XmlSchemaElement_tB61A00A97A12A9B2620D005D0643B11EA1CA764A_0_0_0_var), NULL);
  1665. }
  1666. {
  1667. XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[3];
  1668. XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F(tmp, il2cpp_codegen_string_new_wrapper("\x67\x72\x6F\x75\x70"), il2cpp_codegen_type_get_object(XmlSchemaGroupRef_t959C68547997BA04BD811BE970E18AD9C42A68DA_0_0_0_var), NULL);
  1669. }
  1670. {
  1671. XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[4];
  1672. XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F(tmp, il2cpp_codegen_string_new_wrapper("\x61\x6E\x79"), il2cpp_codegen_type_get_object(XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_0_0_0_var), NULL);
  1673. }
  1674. }
  1675. static void XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062_CustomAttributesCacheGenerator_XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062____AnyType_PropertyInfo(CustomAttributesCache* cache)
  1676. {
  1677. {
  1678. XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
  1679. XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
  1680. }
  1681. }
  1682. static void XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062_CustomAttributesCacheGenerator_XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062____IsMixed_PropertyInfo(CustomAttributesCache* cache)
  1683. {
  1684. {
  1685. XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 * tmp = (XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 *)cache->attributes[0];
  1686. XmlAttributeAttribute__ctor_m3C9FC780C480AB65FAA249FC66806584C8D80749(tmp, il2cpp_codegen_string_new_wrapper("\x6D\x69\x78\x65\x64"), NULL);
  1687. }
  1688. {
  1689. DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 * tmp = (DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 *)cache->attributes[1];
  1690. DefaultValueAttribute__ctor_m78FFD0C313E546C33C761F79E544E6FA5ADCB4D0(tmp, false, NULL);
  1691. }
  1692. }
  1693. static void XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062_CustomAttributesCacheGenerator_XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062____ContentTypeParticle_PropertyInfo(CustomAttributesCache* cache)
  1694. {
  1695. {
  1696. XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
  1697. XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
  1698. }
  1699. }
  1700. static void XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_CustomAttributesCacheGenerator_None(CustomAttributesCache* cache)
  1701. {
  1702. {
  1703. XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
  1704. XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
  1705. }
  1706. }
  1707. static void XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_CustomAttributesCacheGenerator_Skip(CustomAttributesCache* cache)
  1708. {
  1709. {
  1710. XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
  1711. XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x73\x6B\x69\x70"), NULL);
  1712. }
  1713. }
  1714. static void XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_CustomAttributesCacheGenerator_Lax(CustomAttributesCache* cache)
  1715. {
  1716. {
  1717. XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
  1718. XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x6C\x61\x78"), NULL);
  1719. }
  1720. }
  1721. static void XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_CustomAttributesCacheGenerator_Strict(CustomAttributesCache* cache)
  1722. {
  1723. {
  1724. XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
  1725. XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x73\x74\x72\x69\x63\x74"), NULL);
  1726. }
  1727. }
  1728. static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1729. {
  1730. {
  1731. FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 * tmp = (FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 *)cache->attributes[0];
  1732. FlagsAttribute__ctor_mE8DCBA1BE0E6B0424FEF5E5F249733CF6A0E1229(tmp, NULL);
  1733. }
  1734. }
  1735. static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Empty(CustomAttributesCache* cache)
  1736. {
  1737. {
  1738. XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
  1739. XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper(""), NULL);
  1740. }
  1741. }
  1742. static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Substitution(CustomAttributesCache* cache)
  1743. {
  1744. {
  1745. XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
  1746. XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x73\x75\x62\x73\x74\x69\x74\x75\x74\x69\x6F\x6E"), NULL);
  1747. }
  1748. }
  1749. static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Extension(CustomAttributesCache* cache)
  1750. {
  1751. {
  1752. XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
  1753. XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x65\x78\x74\x65\x6E\x73\x69\x6F\x6E"), NULL);
  1754. }
  1755. }
  1756. static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Restriction(CustomAttributesCache* cache)
  1757. {
  1758. {
  1759. XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
  1760. XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x72\x65\x73\x74\x72\x69\x63\x74\x69\x6F\x6E"), NULL);
  1761. }
  1762. }
  1763. static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_List(CustomAttributesCache* cache)
  1764. {
  1765. {
  1766. XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
  1767. XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x6C\x69\x73\x74"), NULL);
  1768. }
  1769. }
  1770. static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Union(CustomAttributesCache* cache)
  1771. {
  1772. {
  1773. XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
  1774. XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x75\x6E\x69\x6F\x6E"), NULL);
  1775. }
  1776. }
  1777. static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_All(CustomAttributesCache* cache)
  1778. {
  1779. {
  1780. XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
  1781. XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x23\x61\x6C\x6C"), NULL);
  1782. }
  1783. }
  1784. static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_None(CustomAttributesCache* cache)
  1785. {
  1786. {
  1787. XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
  1788. XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
  1789. }
  1790. }
  1791. static void XmlSchemaGroupBase_tBB7F26134C0D82EA71D1773C84856397919DD5DA_CustomAttributesCacheGenerator_XmlSchemaGroupBase_tBB7F26134C0D82EA71D1773C84856397919DD5DA____Items_PropertyInfo(CustomAttributesCache* cache)
  1792. {
  1793. {
  1794. XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
  1795. XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
  1796. }
  1797. }
  1798. static void XmlSchemaObjectCollection_t2E22260F9979EB3890D8CB09473963FE616BF931_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1799. {
  1800. {
  1801. DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[0];
  1802. DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D"), NULL);
  1803. }
  1804. }
  1805. static void XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789_CustomAttributesCacheGenerator_XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789____MinOccurs_PropertyInfo(CustomAttributesCache* cache)
  1806. {
  1807. {
  1808. XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
  1809. XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
  1810. }
  1811. }
  1812. static void XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789_CustomAttributesCacheGenerator_XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789____MaxOccurs_PropertyInfo(CustomAttributesCache* cache)
  1813. {
  1814. {
  1815. XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
  1816. XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
  1817. }
  1818. }
  1819. static void Occurs_tE1D41715FC55ECA460AB8AE9C68E39DF0ED1747F_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1820. {
  1821. {
  1822. FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 * tmp = (FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 *)cache->attributes[0];
  1823. FlagsAttribute__ctor_mE8DCBA1BE0E6B0424FEF5E5F249733CF6A0E1229(tmp, NULL);
  1824. }
  1825. }
  1826. static void XmlSchemaSequence_t6C94DB85E74779BE018C34D94204C037416E9C03_CustomAttributesCacheGenerator_XmlSchemaSequence_t6C94DB85E74779BE018C34D94204C037416E9C03____Items_PropertyInfo(CustomAttributesCache* cache)
  1827. {
  1828. static bool s_Il2CppMethodInitialized;
  1829. if (!s_Il2CppMethodInitialized)
  1830. {
  1831. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_0_0_0_var);
  1832. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaChoice_t8FC6F8DB238E8800F350E4EF88CCECD64B5D3BF0_0_0_0_var);
  1833. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaElement_tB61A00A97A12A9B2620D005D0643B11EA1CA764A_0_0_0_var);
  1834. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaGroupRef_t959C68547997BA04BD811BE970E18AD9C42A68DA_0_0_0_var);
  1835. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaSequence_t6C94DB85E74779BE018C34D94204C037416E9C03_0_0_0_var);
  1836. s_Il2CppMethodInitialized = true;
  1837. }
  1838. {
  1839. XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[0];
  1840. XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F(tmp, il2cpp_codegen_string_new_wrapper("\x67\x72\x6F\x75\x70"), il2cpp_codegen_type_get_object(XmlSchemaGroupRef_t959C68547997BA04BD811BE970E18AD9C42A68DA_0_0_0_var), NULL);
  1841. }
  1842. {
  1843. XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[1];
  1844. XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F(tmp, il2cpp_codegen_string_new_wrapper("\x65\x6C\x65\x6D\x65\x6E\x74"), il2cpp_codegen_type_get_object(XmlSchemaElement_tB61A00A97A12A9B2620D005D0643B11EA1CA764A_0_0_0_var), NULL);
  1845. }
  1846. {
  1847. XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[2];
  1848. XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F(tmp, il2cpp_codegen_string_new_wrapper("\x61\x6E\x79"), il2cpp_codegen_type_get_object(XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_0_0_0_var), NULL);
  1849. }
  1850. {
  1851. XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[3];
  1852. XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F(tmp, il2cpp_codegen_string_new_wrapper("\x73\x65\x71\x75\x65\x6E\x63\x65"), il2cpp_codegen_type_get_object(XmlSchemaSequence_t6C94DB85E74779BE018C34D94204C037416E9C03_0_0_0_var), NULL);
  1853. }
  1854. {
  1855. XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[4];
  1856. XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F(tmp, il2cpp_codegen_string_new_wrapper("\x63\x68\x6F\x69\x63\x65"), il2cpp_codegen_type_get_object(XmlSchemaChoice_t8FC6F8DB238E8800F350E4EF88CCECD64B5D3BF0_0_0_0_var), NULL);
  1857. }
  1858. }
  1859. static void XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C_CustomAttributesCacheGenerator_XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C____Content_PropertyInfo(CustomAttributesCache* cache)
  1860. {
  1861. static bool s_Il2CppMethodInitialized;
  1862. if (!s_Il2CppMethodInitialized)
  1863. {
  1864. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD_0_0_0_var);
  1865. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaSimpleTypeRestriction_tA312855944C42464DF7E0C6F02214331C853945C_0_0_0_var);
  1866. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaSimpleTypeUnion_t691F14B83D42A700B03058B598646CDA7DF545F5_0_0_0_var);
  1867. s_Il2CppMethodInitialized = true;
  1868. }
  1869. {
  1870. XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[0];
  1871. XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F(tmp, il2cpp_codegen_string_new_wrapper("\x72\x65\x73\x74\x72\x69\x63\x74\x69\x6F\x6E"), il2cpp_codegen_type_get_object(XmlSchemaSimpleTypeRestriction_tA312855944C42464DF7E0C6F02214331C853945C_0_0_0_var), NULL);
  1872. }
  1873. {
  1874. XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[1];
  1875. XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F(tmp, il2cpp_codegen_string_new_wrapper("\x6C\x69\x73\x74"), il2cpp_codegen_type_get_object(XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD_0_0_0_var), NULL);
  1876. }
  1877. {
  1878. XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[2];
  1879. XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F(tmp, il2cpp_codegen_string_new_wrapper("\x75\x6E\x69\x6F\x6E"), il2cpp_codegen_type_get_object(XmlSchemaSimpleTypeUnion_t691F14B83D42A700B03058B598646CDA7DF545F5_0_0_0_var), NULL);
  1880. }
  1881. }
  1882. static void XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD_CustomAttributesCacheGenerator_XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD____ItemType_PropertyInfo(CustomAttributesCache* cache)
  1883. {
  1884. static bool s_Il2CppMethodInitialized;
  1885. if (!s_Il2CppMethodInitialized)
  1886. {
  1887. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C_0_0_0_var);
  1888. s_Il2CppMethodInitialized = true;
  1889. }
  1890. {
  1891. XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[0];
  1892. XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F(tmp, il2cpp_codegen_string_new_wrapper("\x73\x69\x6D\x70\x6C\x65\x54\x79\x70\x65"), il2cpp_codegen_type_get_object(XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C_0_0_0_var), NULL);
  1893. }
  1894. }
  1895. static void XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD_CustomAttributesCacheGenerator_XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD____BaseItemType_PropertyInfo(CustomAttributesCache* cache)
  1896. {
  1897. {
  1898. XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
  1899. XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
  1900. }
  1901. }
  1902. static void XmlSchemaSimpleTypeRestriction_tA312855944C42464DF7E0C6F02214331C853945C_CustomAttributesCacheGenerator_XmlSchemaSimpleTypeRestriction_tA312855944C42464DF7E0C6F02214331C853945C____BaseTypeName_PropertyInfo(CustomAttributesCache* cache)
  1903. {
  1904. {
  1905. XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 * tmp = (XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 *)cache->attributes[0];
  1906. XmlAttributeAttribute__ctor_m3C9FC780C480AB65FAA249FC66806584C8D80749(tmp, il2cpp_codegen_string_new_wrapper("\x62\x61\x73\x65"), NULL);
  1907. }
  1908. }
  1909. static void XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____QualifiedName_PropertyInfo(CustomAttributesCache* cache)
  1910. {
  1911. {
  1912. XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
  1913. XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
  1914. }
  1915. }
  1916. static void XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____BaseXmlSchemaType_PropertyInfo(CustomAttributesCache* cache)
  1917. {
  1918. {
  1919. XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
  1920. XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
  1921. }
  1922. }
  1923. static void XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____Datatype_PropertyInfo(CustomAttributesCache* cache)
  1924. {
  1925. {
  1926. XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
  1927. XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
  1928. }
  1929. }
  1930. static void XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____IsMixed_PropertyInfo(CustomAttributesCache* cache)
  1931. {
  1932. {
  1933. XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
  1934. XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
  1935. }
  1936. }
  1937. static void XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____TypeCode_PropertyInfo(CustomAttributesCache* cache)
  1938. {
  1939. {
  1940. XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
  1941. XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
  1942. }
  1943. }
  1944. static void XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____ValueConverter_PropertyInfo(CustomAttributesCache* cache)
  1945. {
  1946. {
  1947. XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
  1948. XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
  1949. }
  1950. }
  1951. static void XmlSchemaValidationFlags_tF0C150CF8BCED7131D6163452E106FBC5B7BBBA8_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1952. {
  1953. {
  1954. FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 * tmp = (FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 *)cache->attributes[0];
  1955. FlagsAttribute__ctor_mE8DCBA1BE0E6B0424FEF5E5F249733CF6A0E1229(tmp, NULL);
  1956. }
  1957. }
  1958. static void XsdDateTimeFlags_tA0CFF619A2C537BD8E65672DA641CF4B2405156C_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1959. {
  1960. {
  1961. FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 * tmp = (FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 *)cache->attributes[0];
  1962. FlagsAttribute__ctor_mE8DCBA1BE0E6B0424FEF5E5F249733CF6A0E1229(tmp, NULL);
  1963. }
  1964. }
  1965. static void XmlReaderSection_t7E5D39D2B2159A62B1B563E3777800AC6EF7C69E_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1966. {
  1967. {
  1968. EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[0];
  1969. EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
  1970. }
  1971. }
  1972. static void StringConcat_t313CCAA6C94520A80805790FEC5864DFD57DAD36_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1973. {
  1974. {
  1975. EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[0];
  1976. EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
  1977. }
  1978. }
  1979. static void U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1980. {
  1981. {
  1982. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1983. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1984. }
  1985. }
  1986. IL2CPP_EXTERN_C const CustomAttributesCacheGenerator g_System_Xml_AttributeGenerators[];
  1987. const CustomAttributesCacheGenerator g_System_Xml_AttributeGenerators[85] =
  1988. {
  1989. Query_tA8096C7914789E59DF6C340BE3380CF2511F6A06_CustomAttributesCacheGenerator,
  1990. XPathArrayIterator_t41CCD996703BA681E5D54A8504BA08455CE417DD_CustomAttributesCacheGenerator,
  1991. AsyncHelper_t5BBA4E723AFA5229BD866D2ED5EFB1F2590C5EB2_CustomAttributesCacheGenerator,
  1992. NamespaceHandling_t7974F9A117390EC627D6C12EB7219594674ADC80_CustomAttributesCacheGenerator,
  1993. XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138_CustomAttributesCacheGenerator,
  1994. XmlTextReader_t45FF43659BDA44EC96F8CEE164A3CA74548C39F5_CustomAttributesCacheGenerator,
  1995. XmlAttributeCollection_tDC800F98FE32D4723967772453EB600D1C368AA3_CustomAttributesCacheGenerator,
  1996. SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_CustomAttributesCacheGenerator,
  1997. XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1_CustomAttributesCacheGenerator,
  1998. XmlNodeList_t1DBBA2CC948CC6631BC33AA7405E11C8105E6EE9_CustomAttributesCacheGenerator,
  1999. U3CU3Ec__DisplayClass4_0_t1CB18D171B35CF191BC6883D5C7E384F9F137C0B_CustomAttributesCacheGenerator,
  2000. U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_CustomAttributesCacheGenerator,
  2001. U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_CustomAttributesCacheGenerator,
  2002. XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_CustomAttributesCacheGenerator,
  2003. XPathNodeIterator_t133D83D4FBC95646A6E85168B76EC873C7533FB8_CustomAttributesCacheGenerator,
  2004. XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_CustomAttributesCacheGenerator,
  2005. XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647_CustomAttributesCacheGenerator,
  2006. XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94_CustomAttributesCacheGenerator,
  2007. XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E_CustomAttributesCacheGenerator,
  2008. XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6_CustomAttributesCacheGenerator,
  2009. XmlSchemaProviderAttribute_t94BE15D9985EEC61A31C88069AE2723B209005DA_CustomAttributesCacheGenerator,
  2010. BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_CustomAttributesCacheGenerator,
  2011. SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF_CustomAttributesCacheGenerator,
  2012. Positions_t577D66E21F674149C5A3E68851CE88B94C37248F_CustomAttributesCacheGenerator,
  2013. RestrictionFlags_tE688E3FE50199CFC0DE7B02A59EA18DF59B8A025_CustomAttributesCacheGenerator,
  2014. XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator,
  2015. XmlSchemaObjectCollection_t2E22260F9979EB3890D8CB09473963FE616BF931_CustomAttributesCacheGenerator,
  2016. Occurs_tE1D41715FC55ECA460AB8AE9C68E39DF0ED1747F_CustomAttributesCacheGenerator,
  2017. XmlSchemaValidationFlags_tF0C150CF8BCED7131D6163452E106FBC5B7BBBA8_CustomAttributesCacheGenerator,
  2018. XsdDateTimeFlags_tA0CFF619A2C537BD8E65672DA641CF4B2405156C_CustomAttributesCacheGenerator,
  2019. XmlReaderSection_t7E5D39D2B2159A62B1B563E3777800AC6EF7C69E_CustomAttributesCacheGenerator,
  2020. StringConcat_t313CCAA6C94520A80805790FEC5864DFD57DAD36_CustomAttributesCacheGenerator,
  2021. U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_CustomAttributesCacheGenerator,
  2022. ValidationType_t588D32514C11D985F976526F7E3C81ABD1D27EBA_CustomAttributesCacheGenerator_Auto,
  2023. ValidationType_t588D32514C11D985F976526F7E3C81ABD1D27EBA_CustomAttributesCacheGenerator_XDR,
  2024. XmlReaderSettings_tD1257418720567D67A7C49A7498914FE937F1520_CustomAttributesCacheGenerator_U3CIsXmlResolverSetU3Ek__BackingField,
  2025. XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_CustomAttributesCacheGenerator_sourceUri,
  2026. XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_CustomAttributesCacheGenerator_U3CMethodU3Ek__BackingField,
  2027. XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_CustomAttributesCacheGenerator_None,
  2028. XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_CustomAttributesCacheGenerator_Skip,
  2029. XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_CustomAttributesCacheGenerator_Lax,
  2030. XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_CustomAttributesCacheGenerator_Strict,
  2031. XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Empty,
  2032. XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Substitution,
  2033. XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Extension,
  2034. XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Restriction,
  2035. XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_List,
  2036. XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Union,
  2037. XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_All,
  2038. XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_None,
  2039. XmlReaderSettings_tD1257418720567D67A7C49A7498914FE937F1520_CustomAttributesCacheGenerator_XmlReaderSettings_set_IsXmlResolverSet_m4374404167E732ADF4FF5D5699DA1A2763B4A048,
  2040. XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_CustomAttributesCacheGenerator_XmlConvert_ToString_m4641C988539C8EB17C589761E674B9521EEA62E5,
  2041. XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_CustomAttributesCacheGenerator_XmlConvert_ToString_m9823FE7E80D23F2111BD7D6861C59A79EF70E9CC,
  2042. XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_CustomAttributesCacheGenerator_XmlConvert_ToString_mBF267D826A31C919FC0A510C8EABE5BDD690AFF8,
  2043. XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_CustomAttributesCacheGenerator_XmlConvert_ToString_m886299CF6DD10FDD767223FAEA2740B3A2F48C40,
  2044. XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D_CustomAttributesCacheGenerator_XmlDownloadManager_GetNonFileStreamAsync_m075FD73BF73B9C8E231E40AD4C956FE1F76709B1,
  2045. U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_CustomAttributesCacheGenerator_U3CGetNonFileStreamAsyncU3Ed__5_SetStateMachine_m6269B8FD1CE46B7955D5D2F90AB7D5F2BE407777,
  2046. XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1_CustomAttributesCacheGenerator_XmlUrlResolver_GetEntityAsync_m0D4B74C681DFBA67E92DF4AA341447F062CB256F,
  2047. U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_CustomAttributesCacheGenerator_U3CGetEntityAsyncU3Ed__15_SetStateMachine_m9A31F8EDD492D50FFA4F9FCC8F0FBAD9DD1D3E93,
  2048. XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_CustomAttributesCacheGenerator_XmlTypeConvertorAttribute_set_Method_mC01F1A24104F47A6DA6F8CADDCE9CA57D8552283,
  2049. SR_t18DDAC0A0AC9B7F52E81CFEC14051580FFAAB957_CustomAttributesCacheGenerator_SR_GetString_m846F567D256240B005CADDBE65D4793920B6474E____args1,
  2050. SR_t18DDAC0A0AC9B7F52E81CFEC14051580FFAAB957_CustomAttributesCacheGenerator_SR_GetString_m6B94153BBBDF13B55321A1E0290B6E82FC8AD248____args2,
  2051. Res_t8707C30091CC714404BA967631E1F74B8ACBB1E4_CustomAttributesCacheGenerator_Res_GetString_m1D06B81901B03CA849045926741403907612BB4B____args1,
  2052. XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_CustomAttributesCacheGenerator_XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C____ProcessContents_PropertyInfo,
  2053. XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_CustomAttributesCacheGenerator_XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C____NamespaceList_PropertyInfo,
  2054. XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80_CustomAttributesCacheGenerator_XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80____ProcessContents_PropertyInfo,
  2055. XmlSchemaChoice_t8FC6F8DB238E8800F350E4EF88CCECD64B5D3BF0_CustomAttributesCacheGenerator_XmlSchemaChoice_t8FC6F8DB238E8800F350E4EF88CCECD64B5D3BF0____Items_PropertyInfo,
  2056. XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062_CustomAttributesCacheGenerator_XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062____AnyType_PropertyInfo,
  2057. XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062_CustomAttributesCacheGenerator_XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062____IsMixed_PropertyInfo,
  2058. XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062_CustomAttributesCacheGenerator_XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062____ContentTypeParticle_PropertyInfo,
  2059. XmlSchemaGroupBase_tBB7F26134C0D82EA71D1773C84856397919DD5DA_CustomAttributesCacheGenerator_XmlSchemaGroupBase_tBB7F26134C0D82EA71D1773C84856397919DD5DA____Items_PropertyInfo,
  2060. XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789_CustomAttributesCacheGenerator_XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789____MinOccurs_PropertyInfo,
  2061. XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789_CustomAttributesCacheGenerator_XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789____MaxOccurs_PropertyInfo,
  2062. XmlSchemaSequence_t6C94DB85E74779BE018C34D94204C037416E9C03_CustomAttributesCacheGenerator_XmlSchemaSequence_t6C94DB85E74779BE018C34D94204C037416E9C03____Items_PropertyInfo,
  2063. XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C_CustomAttributesCacheGenerator_XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C____Content_PropertyInfo,
  2064. XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD_CustomAttributesCacheGenerator_XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD____ItemType_PropertyInfo,
  2065. XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD_CustomAttributesCacheGenerator_XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD____BaseItemType_PropertyInfo,
  2066. XmlSchemaSimpleTypeRestriction_tA312855944C42464DF7E0C6F02214331C853945C_CustomAttributesCacheGenerator_XmlSchemaSimpleTypeRestriction_tA312855944C42464DF7E0C6F02214331C853945C____BaseTypeName_PropertyInfo,
  2067. XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____QualifiedName_PropertyInfo,
  2068. XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____BaseXmlSchemaType_PropertyInfo,
  2069. XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____Datatype_PropertyInfo,
  2070. XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____IsMixed_PropertyInfo,
  2071. XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____TypeCode_PropertyInfo,
  2072. XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____ValueConverter_PropertyInfo,
  2073. System_Xml_CustomAttributesCacheGenerator,
  2074. };
  2075. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, bool ___value0, const RuntimeMethod* method)
  2076. {
  2077. {
  2078. bool L_0 = ___value0;
  2079. __this->set_m_wrapNonExceptionThrows_0(L_0);
  2080. return;
  2081. }
  2082. }
  2083. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InternalsVisibleToAttribute_set_AllInternalsVisible_m8A2E202556185ADBB01D1AF437D1DF23BED94B2B_inline (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * __this, bool ___value0, const RuntimeMethod* method)
  2084. {
  2085. {
  2086. bool L_0 = ___value0;
  2087. __this->set__allInternalsVisible_1(L_0);
  2088. return;
  2089. }
  2090. }
  2091. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AttributeUsageAttribute_set_AllowMultiple_mF412CDAFFE16D056721EF81A1EC04ACE63612055_inline (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * __this, bool ___value0, const RuntimeMethod* method)
  2092. {
  2093. {
  2094. bool L_0 = ___value0;
  2095. __this->set_m_allowMultiple_1(L_0);
  2096. return;
  2097. }
  2098. }