| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301 |
- #include "pch-cpp.hpp"
- #ifndef _MSC_VER
- # include <alloca.h>
- #else
- # include <malloc.h>
- #endif
- #include <limits>
- #include <stdint.h>
- // System.Char[]
- struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
- // System.Type[]
- struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
- // System.Reflection.AssemblyCompanyAttribute
- struct AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4;
- // System.Reflection.AssemblyCopyrightAttribute
- struct AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC;
- // System.Reflection.AssemblyDefaultAliasAttribute
- struct AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA;
- // System.Reflection.AssemblyDelaySignAttribute
- struct AssemblyDelaySignAttribute_tB66445498441723DC06E545FAA1CF0F128A1FE38;
- // System.Reflection.AssemblyDescriptionAttribute
- struct AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3;
- // System.Reflection.AssemblyFileVersionAttribute
- struct AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F;
- // System.Reflection.AssemblyInformationalVersionAttribute
- struct AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0;
- // System.Reflection.AssemblyKeyFileAttribute
- struct AssemblyKeyFileAttribute_tEF26145AA8A5F35C218FE543113825F133CC6253;
- // System.Reflection.AssemblyProductAttribute
- struct AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA;
- // System.Reflection.AssemblyTitleAttribute
- struct AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7;
- // System.Runtime.CompilerServices.AsyncStateMachineAttribute
- struct AsyncStateMachineAttribute_tBDB4B958CFB5CD3BEE1427711FFC8C358C9BA6E6;
- // System.AttributeUsageAttribute
- struct AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C;
- // System.Reflection.Binder
- struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30;
- // System.CLSCompliantAttribute
- struct CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249;
- // System.Runtime.InteropServices.ComVisibleAttribute
- struct ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A;
- // System.Runtime.CompilerServices.CompilationRelaxationsAttribute
- struct CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF;
- // System.Runtime.CompilerServices.CompilerGeneratedAttribute
- struct CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C;
- // System.Diagnostics.DebuggableAttribute
- struct DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B;
- // System.Diagnostics.DebuggerDisplayAttribute
- struct DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F;
- // System.Diagnostics.DebuggerHiddenAttribute
- struct DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88;
- // System.Reflection.DefaultMemberAttribute
- struct DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5;
- // System.ComponentModel.DefaultValueAttribute
- struct DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6;
- // System.ComponentModel.EditorBrowsableAttribute
- struct EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614;
- // System.Runtime.CompilerServices.ExtensionAttribute
- struct ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC;
- // System.FlagsAttribute
- struct FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36;
- // System.Runtime.CompilerServices.InternalsVisibleToAttribute
- struct InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C;
- // System.Reflection.MemberFilter
- struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81;
- // System.Resources.NeutralResourcesLanguageAttribute
- struct NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2;
- // System.ObsoleteAttribute
- struct ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671;
- // System.Runtime.Serialization.OptionalFieldAttribute
- struct OptionalFieldAttribute_t5761990BBE6FDD98072FD82D9EC2B9CD96CEFB59;
- // System.ParamArrayAttribute
- struct ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F;
- // System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
- struct RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80;
- // System.Resources.SatelliteContractVersionAttribute
- struct SatelliteContractVersionAttribute_tA77BDC45FEEFE11823E95476FC8AE60B007906D2;
- // System.String
- struct String_t;
- // System.Type
- struct Type_t;
- // System.Void
- struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
- // System.Xml.Serialization.XmlAttributeAttribute
- struct XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647;
- // System.Xml.Serialization.XmlElementAttribute
- struct XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94;
- // System.Xml.Serialization.XmlEnumAttribute
- struct XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E;
- // System.Xml.Serialization.XmlIgnoreAttribute
- struct XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6;
- IL2CPP_EXTERN_C RuntimeClass* XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_il2cpp_TypeInfo_var;
- IL2CPP_EXTERN_C const RuntimeType* U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_0_0_0_var;
- IL2CPP_EXTERN_C const RuntimeType* U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_0_0_0_var;
- IL2CPP_EXTERN_C const RuntimeType* XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_0_0_0_var;
- IL2CPP_EXTERN_C const RuntimeType* XmlSchemaChoice_t8FC6F8DB238E8800F350E4EF88CCECD64B5D3BF0_0_0_0_var;
- IL2CPP_EXTERN_C const RuntimeType* XmlSchemaElement_tB61A00A97A12A9B2620D005D0643B11EA1CA764A_0_0_0_var;
- IL2CPP_EXTERN_C const RuntimeType* XmlSchemaGroupRef_t959C68547997BA04BD811BE970E18AD9C42A68DA_0_0_0_var;
- IL2CPP_EXTERN_C const RuntimeType* XmlSchemaSequence_t6C94DB85E74779BE018C34D94204C037416E9C03_0_0_0_var;
- IL2CPP_EXTERN_C const RuntimeType* XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD_0_0_0_var;
- IL2CPP_EXTERN_C const RuntimeType* XmlSchemaSimpleTypeRestriction_tA312855944C42464DF7E0C6F02214331C853945C_0_0_0_var;
- IL2CPP_EXTERN_C const RuntimeType* XmlSchemaSimpleTypeUnion_t691F14B83D42A700B03058B598646CDA7DF545F5_0_0_0_var;
- IL2CPP_EXTERN_C const RuntimeType* XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C_0_0_0_var;
- IL2CPP_EXTERN_C_BEGIN
- IL2CPP_EXTERN_C_END
- #ifdef __clang__
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Winvalid-offsetof"
- #pragma clang diagnostic ignored "-Wunused-variable"
- #endif
- // System.Object
- // System.Attribute
- struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject
- {
- public:
- public:
- };
- // System.Reflection.MemberInfo
- struct MemberInfo_t : public RuntimeObject
- {
- public:
- public:
- };
- // System.String
- struct String_t : public RuntimeObject
- {
- public:
- // System.Int32 System.String::m_stringLength
- int32_t ___m_stringLength_0;
- // System.Char System.String::m_firstChar
- Il2CppChar ___m_firstChar_1;
- public:
- inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
- inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
- inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
- inline void set_m_stringLength_0(int32_t value)
- {
- ___m_stringLength_0 = value;
- }
- inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
- inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
- inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
- inline void set_m_firstChar_1(Il2CppChar value)
- {
- ___m_firstChar_1 = value;
- }
- };
- struct String_t_StaticFields
- {
- public:
- // System.String System.String::Empty
- String_t* ___Empty_5;
- public:
- inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
- inline String_t* get_Empty_5() const { return ___Empty_5; }
- inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
- inline void set_Empty_5(String_t* value)
- {
- ___Empty_5 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
- }
- };
- // System.ValueType
- struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
- {
- public:
- public:
- };
- // Native definition for P/Invoke marshalling of System.ValueType
- struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
- {
- };
- // Native definition for COM marshalling of System.ValueType
- struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
- {
- };
- // System.Reflection.AssemblyCompanyAttribute
- struct AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Reflection.AssemblyCompanyAttribute::m_company
- String_t* ___m_company_0;
- public:
- inline static int32_t get_offset_of_m_company_0() { return static_cast<int32_t>(offsetof(AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4, ___m_company_0)); }
- inline String_t* get_m_company_0() const { return ___m_company_0; }
- inline String_t** get_address_of_m_company_0() { return &___m_company_0; }
- inline void set_m_company_0(String_t* value)
- {
- ___m_company_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___m_company_0), (void*)value);
- }
- };
- // System.Reflection.AssemblyCopyrightAttribute
- struct AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Reflection.AssemblyCopyrightAttribute::m_copyright
- String_t* ___m_copyright_0;
- public:
- inline static int32_t get_offset_of_m_copyright_0() { return static_cast<int32_t>(offsetof(AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC, ___m_copyright_0)); }
- inline String_t* get_m_copyright_0() const { return ___m_copyright_0; }
- inline String_t** get_address_of_m_copyright_0() { return &___m_copyright_0; }
- inline void set_m_copyright_0(String_t* value)
- {
- ___m_copyright_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___m_copyright_0), (void*)value);
- }
- };
- // System.Reflection.AssemblyDefaultAliasAttribute
- struct AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Reflection.AssemblyDefaultAliasAttribute::m_defaultAlias
- String_t* ___m_defaultAlias_0;
- public:
- inline static int32_t get_offset_of_m_defaultAlias_0() { return static_cast<int32_t>(offsetof(AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA, ___m_defaultAlias_0)); }
- inline String_t* get_m_defaultAlias_0() const { return ___m_defaultAlias_0; }
- inline String_t** get_address_of_m_defaultAlias_0() { return &___m_defaultAlias_0; }
- inline void set_m_defaultAlias_0(String_t* value)
- {
- ___m_defaultAlias_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___m_defaultAlias_0), (void*)value);
- }
- };
- // System.Reflection.AssemblyDelaySignAttribute
- struct AssemblyDelaySignAttribute_tB66445498441723DC06E545FAA1CF0F128A1FE38 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.Boolean System.Reflection.AssemblyDelaySignAttribute::m_delaySign
- bool ___m_delaySign_0;
- public:
- inline static int32_t get_offset_of_m_delaySign_0() { return static_cast<int32_t>(offsetof(AssemblyDelaySignAttribute_tB66445498441723DC06E545FAA1CF0F128A1FE38, ___m_delaySign_0)); }
- inline bool get_m_delaySign_0() const { return ___m_delaySign_0; }
- inline bool* get_address_of_m_delaySign_0() { return &___m_delaySign_0; }
- inline void set_m_delaySign_0(bool value)
- {
- ___m_delaySign_0 = value;
- }
- };
- // System.Reflection.AssemblyDescriptionAttribute
- struct AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Reflection.AssemblyDescriptionAttribute::m_description
- String_t* ___m_description_0;
- public:
- inline static int32_t get_offset_of_m_description_0() { return static_cast<int32_t>(offsetof(AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3, ___m_description_0)); }
- inline String_t* get_m_description_0() const { return ___m_description_0; }
- inline String_t** get_address_of_m_description_0() { return &___m_description_0; }
- inline void set_m_description_0(String_t* value)
- {
- ___m_description_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___m_description_0), (void*)value);
- }
- };
- // System.Reflection.AssemblyFileVersionAttribute
- struct AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Reflection.AssemblyFileVersionAttribute::_version
- String_t* ____version_0;
- public:
- inline static int32_t get_offset_of__version_0() { return static_cast<int32_t>(offsetof(AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F, ____version_0)); }
- inline String_t* get__version_0() const { return ____version_0; }
- inline String_t** get_address_of__version_0() { return &____version_0; }
- inline void set__version_0(String_t* value)
- {
- ____version_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&____version_0), (void*)value);
- }
- };
- // System.Reflection.AssemblyInformationalVersionAttribute
- struct AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Reflection.AssemblyInformationalVersionAttribute::m_informationalVersion
- String_t* ___m_informationalVersion_0;
- public:
- inline static int32_t get_offset_of_m_informationalVersion_0() { return static_cast<int32_t>(offsetof(AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0, ___m_informationalVersion_0)); }
- inline String_t* get_m_informationalVersion_0() const { return ___m_informationalVersion_0; }
- inline String_t** get_address_of_m_informationalVersion_0() { return &___m_informationalVersion_0; }
- inline void set_m_informationalVersion_0(String_t* value)
- {
- ___m_informationalVersion_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___m_informationalVersion_0), (void*)value);
- }
- };
- // System.Reflection.AssemblyKeyFileAttribute
- struct AssemblyKeyFileAttribute_tEF26145AA8A5F35C218FE543113825F133CC6253 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Reflection.AssemblyKeyFileAttribute::m_keyFile
- String_t* ___m_keyFile_0;
- public:
- inline static int32_t get_offset_of_m_keyFile_0() { return static_cast<int32_t>(offsetof(AssemblyKeyFileAttribute_tEF26145AA8A5F35C218FE543113825F133CC6253, ___m_keyFile_0)); }
- inline String_t* get_m_keyFile_0() const { return ___m_keyFile_0; }
- inline String_t** get_address_of_m_keyFile_0() { return &___m_keyFile_0; }
- inline void set_m_keyFile_0(String_t* value)
- {
- ___m_keyFile_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___m_keyFile_0), (void*)value);
- }
- };
- // System.Reflection.AssemblyProductAttribute
- struct AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Reflection.AssemblyProductAttribute::m_product
- String_t* ___m_product_0;
- public:
- inline static int32_t get_offset_of_m_product_0() { return static_cast<int32_t>(offsetof(AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA, ___m_product_0)); }
- inline String_t* get_m_product_0() const { return ___m_product_0; }
- inline String_t** get_address_of_m_product_0() { return &___m_product_0; }
- inline void set_m_product_0(String_t* value)
- {
- ___m_product_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___m_product_0), (void*)value);
- }
- };
- // System.Reflection.AssemblyTitleAttribute
- struct AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Reflection.AssemblyTitleAttribute::m_title
- String_t* ___m_title_0;
- public:
- inline static int32_t get_offset_of_m_title_0() { return static_cast<int32_t>(offsetof(AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7, ___m_title_0)); }
- inline String_t* get_m_title_0() const { return ___m_title_0; }
- inline String_t** get_address_of_m_title_0() { return &___m_title_0; }
- inline void set_m_title_0(String_t* value)
- {
- ___m_title_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___m_title_0), (void*)value);
- }
- };
- // System.Boolean
- struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
- {
- public:
- // System.Boolean System.Boolean::m_value
- bool ___m_value_0;
- public:
- inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
- inline bool get_m_value_0() const { return ___m_value_0; }
- inline bool* get_address_of_m_value_0() { return &___m_value_0; }
- inline void set_m_value_0(bool value)
- {
- ___m_value_0 = value;
- }
- };
- struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
- {
- public:
- // System.String System.Boolean::TrueString
- String_t* ___TrueString_5;
- // System.String System.Boolean::FalseString
- String_t* ___FalseString_6;
- public:
- inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
- inline String_t* get_TrueString_5() const { return ___TrueString_5; }
- inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
- inline void set_TrueString_5(String_t* value)
- {
- ___TrueString_5 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
- }
- inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
- inline String_t* get_FalseString_6() const { return ___FalseString_6; }
- inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
- inline void set_FalseString_6(String_t* value)
- {
- ___FalseString_6 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
- }
- };
- // System.CLSCompliantAttribute
- struct CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.Boolean System.CLSCompliantAttribute::m_compliant
- bool ___m_compliant_0;
- public:
- inline static int32_t get_offset_of_m_compliant_0() { return static_cast<int32_t>(offsetof(CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249, ___m_compliant_0)); }
- inline bool get_m_compliant_0() const { return ___m_compliant_0; }
- inline bool* get_address_of_m_compliant_0() { return &___m_compliant_0; }
- inline void set_m_compliant_0(bool value)
- {
- ___m_compliant_0 = value;
- }
- };
- // System.Runtime.InteropServices.ComVisibleAttribute
- struct ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.Boolean System.Runtime.InteropServices.ComVisibleAttribute::_val
- bool ____val_0;
- public:
- inline static int32_t get_offset_of__val_0() { return static_cast<int32_t>(offsetof(ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A, ____val_0)); }
- inline bool get__val_0() const { return ____val_0; }
- inline bool* get_address_of__val_0() { return &____val_0; }
- inline void set__val_0(bool value)
- {
- ____val_0 = value;
- }
- };
- // System.Runtime.CompilerServices.CompilationRelaxationsAttribute
- struct CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.Int32 System.Runtime.CompilerServices.CompilationRelaxationsAttribute::m_relaxations
- int32_t ___m_relaxations_0;
- public:
- inline static int32_t get_offset_of_m_relaxations_0() { return static_cast<int32_t>(offsetof(CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF, ___m_relaxations_0)); }
- inline int32_t get_m_relaxations_0() const { return ___m_relaxations_0; }
- inline int32_t* get_address_of_m_relaxations_0() { return &___m_relaxations_0; }
- inline void set_m_relaxations_0(int32_t value)
- {
- ___m_relaxations_0 = value;
- }
- };
- // System.Runtime.CompilerServices.CompilerGeneratedAttribute
- struct CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- public:
- };
- // System.Diagnostics.DebuggerDisplayAttribute
- struct DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Diagnostics.DebuggerDisplayAttribute::name
- String_t* ___name_0;
- // System.String System.Diagnostics.DebuggerDisplayAttribute::value
- String_t* ___value_1;
- // System.String System.Diagnostics.DebuggerDisplayAttribute::type
- String_t* ___type_2;
- public:
- inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F, ___name_0)); }
- inline String_t* get_name_0() const { return ___name_0; }
- inline String_t** get_address_of_name_0() { return &___name_0; }
- inline void set_name_0(String_t* value)
- {
- ___name_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
- }
- inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F, ___value_1)); }
- inline String_t* get_value_1() const { return ___value_1; }
- inline String_t** get_address_of_value_1() { return &___value_1; }
- inline void set_value_1(String_t* value)
- {
- ___value_1 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
- }
- inline static int32_t get_offset_of_type_2() { return static_cast<int32_t>(offsetof(DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F, ___type_2)); }
- inline String_t* get_type_2() const { return ___type_2; }
- inline String_t** get_address_of_type_2() { return &___type_2; }
- inline void set_type_2(String_t* value)
- {
- ___type_2 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___type_2), (void*)value);
- }
- };
- // System.Diagnostics.DebuggerHiddenAttribute
- struct DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- public:
- };
- // System.Reflection.DefaultMemberAttribute
- struct DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Reflection.DefaultMemberAttribute::m_memberName
- String_t* ___m_memberName_0;
- public:
- inline static int32_t get_offset_of_m_memberName_0() { return static_cast<int32_t>(offsetof(DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5, ___m_memberName_0)); }
- inline String_t* get_m_memberName_0() const { return ___m_memberName_0; }
- inline String_t** get_address_of_m_memberName_0() { return &___m_memberName_0; }
- inline void set_m_memberName_0(String_t* value)
- {
- ___m_memberName_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___m_memberName_0), (void*)value);
- }
- };
- // System.ComponentModel.DefaultValueAttribute
- struct DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.Object System.ComponentModel.DefaultValueAttribute::value
- RuntimeObject * ___value_0;
- public:
- inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6, ___value_0)); }
- inline RuntimeObject * get_value_0() const { return ___value_0; }
- inline RuntimeObject ** get_address_of_value_0() { return &___value_0; }
- inline void set_value_0(RuntimeObject * value)
- {
- ___value_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___value_0), (void*)value);
- }
- };
- // System.Enum
- struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
- {
- public:
- public:
- };
- struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
- {
- public:
- // System.Char[] System.Enum::enumSeperatorCharArray
- CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
- public:
- inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
- inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
- inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
- inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
- {
- ___enumSeperatorCharArray_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
- }
- };
- // Native definition for P/Invoke marshalling of System.Enum
- struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
- {
- };
- // Native definition for COM marshalling of System.Enum
- struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
- {
- };
- // System.Runtime.CompilerServices.ExtensionAttribute
- struct ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- public:
- };
- // System.FlagsAttribute
- struct FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- public:
- };
- // System.IntPtr
- struct IntPtr_t
- {
- public:
- // System.Void* System.IntPtr::m_value
- void* ___m_value_0;
- public:
- inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
- inline void* get_m_value_0() const { return ___m_value_0; }
- inline void** get_address_of_m_value_0() { return &___m_value_0; }
- inline void set_m_value_0(void* value)
- {
- ___m_value_0 = value;
- }
- };
- struct IntPtr_t_StaticFields
- {
- public:
- // System.IntPtr System.IntPtr::Zero
- intptr_t ___Zero_1;
- public:
- inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
- inline intptr_t get_Zero_1() const { return ___Zero_1; }
- inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
- inline void set_Zero_1(intptr_t value)
- {
- ___Zero_1 = value;
- }
- };
- // System.Runtime.CompilerServices.InternalsVisibleToAttribute
- struct InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Runtime.CompilerServices.InternalsVisibleToAttribute::_assemblyName
- String_t* ____assemblyName_0;
- // System.Boolean System.Runtime.CompilerServices.InternalsVisibleToAttribute::_allInternalsVisible
- bool ____allInternalsVisible_1;
- public:
- inline static int32_t get_offset_of__assemblyName_0() { return static_cast<int32_t>(offsetof(InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C, ____assemblyName_0)); }
- inline String_t* get__assemblyName_0() const { return ____assemblyName_0; }
- inline String_t** get_address_of__assemblyName_0() { return &____assemblyName_0; }
- inline void set__assemblyName_0(String_t* value)
- {
- ____assemblyName_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&____assemblyName_0), (void*)value);
- }
- inline static int32_t get_offset_of__allInternalsVisible_1() { return static_cast<int32_t>(offsetof(InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C, ____allInternalsVisible_1)); }
- inline bool get__allInternalsVisible_1() const { return ____allInternalsVisible_1; }
- inline bool* get_address_of__allInternalsVisible_1() { return &____allInternalsVisible_1; }
- inline void set__allInternalsVisible_1(bool value)
- {
- ____allInternalsVisible_1 = value;
- }
- };
- // System.ObsoleteAttribute
- struct ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.ObsoleteAttribute::_message
- String_t* ____message_0;
- // System.Boolean System.ObsoleteAttribute::_error
- bool ____error_1;
- public:
- inline static int32_t get_offset_of__message_0() { return static_cast<int32_t>(offsetof(ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671, ____message_0)); }
- inline String_t* get__message_0() const { return ____message_0; }
- inline String_t** get_address_of__message_0() { return &____message_0; }
- inline void set__message_0(String_t* value)
- {
- ____message_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&____message_0), (void*)value);
- }
- inline static int32_t get_offset_of__error_1() { return static_cast<int32_t>(offsetof(ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671, ____error_1)); }
- inline bool get__error_1() const { return ____error_1; }
- inline bool* get_address_of__error_1() { return &____error_1; }
- inline void set__error_1(bool value)
- {
- ____error_1 = value;
- }
- };
- // System.Runtime.Serialization.OptionalFieldAttribute
- struct OptionalFieldAttribute_t5761990BBE6FDD98072FD82D9EC2B9CD96CEFB59 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.Int32 System.Runtime.Serialization.OptionalFieldAttribute::versionAdded
- int32_t ___versionAdded_0;
- public:
- inline static int32_t get_offset_of_versionAdded_0() { return static_cast<int32_t>(offsetof(OptionalFieldAttribute_t5761990BBE6FDD98072FD82D9EC2B9CD96CEFB59, ___versionAdded_0)); }
- inline int32_t get_versionAdded_0() const { return ___versionAdded_0; }
- inline int32_t* get_address_of_versionAdded_0() { return &___versionAdded_0; }
- inline void set_versionAdded_0(int32_t value)
- {
- ___versionAdded_0 = value;
- }
- };
- // System.ParamArrayAttribute
- struct ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- public:
- };
- // System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
- struct RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::m_wrapNonExceptionThrows
- bool ___m_wrapNonExceptionThrows_0;
- public:
- inline static int32_t get_offset_of_m_wrapNonExceptionThrows_0() { return static_cast<int32_t>(offsetof(RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80, ___m_wrapNonExceptionThrows_0)); }
- inline bool get_m_wrapNonExceptionThrows_0() const { return ___m_wrapNonExceptionThrows_0; }
- inline bool* get_address_of_m_wrapNonExceptionThrows_0() { return &___m_wrapNonExceptionThrows_0; }
- inline void set_m_wrapNonExceptionThrows_0(bool value)
- {
- ___m_wrapNonExceptionThrows_0 = value;
- }
- };
- // System.Resources.SatelliteContractVersionAttribute
- struct SatelliteContractVersionAttribute_tA77BDC45FEEFE11823E95476FC8AE60B007906D2 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Resources.SatelliteContractVersionAttribute::_version
- String_t* ____version_0;
- public:
- inline static int32_t get_offset_of__version_0() { return static_cast<int32_t>(offsetof(SatelliteContractVersionAttribute_tA77BDC45FEEFE11823E95476FC8AE60B007906D2, ____version_0)); }
- inline String_t* get__version_0() const { return ____version_0; }
- inline String_t** get_address_of__version_0() { return &____version_0; }
- inline void set__version_0(String_t* value)
- {
- ____version_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&____version_0), (void*)value);
- }
- };
- // System.Runtime.CompilerServices.StateMachineAttribute
- struct StateMachineAttribute_tA6E77C77F821508E405473BA1C4C08A69FDA0AC3 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.Type System.Runtime.CompilerServices.StateMachineAttribute::<StateMachineType>k__BackingField
- Type_t * ___U3CStateMachineTypeU3Ek__BackingField_0;
- public:
- inline static int32_t get_offset_of_U3CStateMachineTypeU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(StateMachineAttribute_tA6E77C77F821508E405473BA1C4C08A69FDA0AC3, ___U3CStateMachineTypeU3Ek__BackingField_0)); }
- inline Type_t * get_U3CStateMachineTypeU3Ek__BackingField_0() const { return ___U3CStateMachineTypeU3Ek__BackingField_0; }
- inline Type_t ** get_address_of_U3CStateMachineTypeU3Ek__BackingField_0() { return &___U3CStateMachineTypeU3Ek__BackingField_0; }
- inline void set_U3CStateMachineTypeU3Ek__BackingField_0(Type_t * value)
- {
- ___U3CStateMachineTypeU3Ek__BackingField_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___U3CStateMachineTypeU3Ek__BackingField_0), (void*)value);
- }
- };
- // System.Void
- struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
- {
- public:
- union
- {
- struct
- {
- };
- uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
- };
- public:
- };
- // System.Xml.Serialization.XmlAttributeAttribute
- struct XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Xml.Serialization.XmlAttributeAttribute::attributeName
- String_t* ___attributeName_0;
- public:
- inline static int32_t get_offset_of_attributeName_0() { return static_cast<int32_t>(offsetof(XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647, ___attributeName_0)); }
- inline String_t* get_attributeName_0() const { return ___attributeName_0; }
- inline String_t** get_address_of_attributeName_0() { return &___attributeName_0; }
- inline void set_attributeName_0(String_t* value)
- {
- ___attributeName_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___attributeName_0), (void*)value);
- }
- };
- // System.Xml.Serialization.XmlElementAttribute
- struct XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Xml.Serialization.XmlElementAttribute::elementName
- String_t* ___elementName_0;
- // System.Type System.Xml.Serialization.XmlElementAttribute::type
- Type_t * ___type_1;
- // System.Int32 System.Xml.Serialization.XmlElementAttribute::order
- int32_t ___order_2;
- public:
- inline static int32_t get_offset_of_elementName_0() { return static_cast<int32_t>(offsetof(XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94, ___elementName_0)); }
- inline String_t* get_elementName_0() const { return ___elementName_0; }
- inline String_t** get_address_of_elementName_0() { return &___elementName_0; }
- inline void set_elementName_0(String_t* value)
- {
- ___elementName_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___elementName_0), (void*)value);
- }
- inline static int32_t get_offset_of_type_1() { return static_cast<int32_t>(offsetof(XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94, ___type_1)); }
- inline Type_t * get_type_1() const { return ___type_1; }
- inline Type_t ** get_address_of_type_1() { return &___type_1; }
- inline void set_type_1(Type_t * value)
- {
- ___type_1 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___type_1), (void*)value);
- }
- inline static int32_t get_offset_of_order_2() { return static_cast<int32_t>(offsetof(XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94, ___order_2)); }
- inline int32_t get_order_2() const { return ___order_2; }
- inline int32_t* get_address_of_order_2() { return &___order_2; }
- inline void set_order_2(int32_t value)
- {
- ___order_2 = value;
- }
- };
- // System.Xml.Serialization.XmlEnumAttribute
- struct XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Xml.Serialization.XmlEnumAttribute::name
- String_t* ___name_0;
- public:
- inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E, ___name_0)); }
- inline String_t* get_name_0() const { return ___name_0; }
- inline String_t** get_address_of_name_0() { return &___name_0; }
- inline void set_name_0(String_t* value)
- {
- ___name_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value);
- }
- };
- // System.Xml.Serialization.XmlIgnoreAttribute
- struct XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- public:
- };
- // System.Runtime.CompilerServices.AsyncStateMachineAttribute
- struct AsyncStateMachineAttribute_tBDB4B958CFB5CD3BEE1427711FFC8C358C9BA6E6 : public StateMachineAttribute_tA6E77C77F821508E405473BA1C4C08A69FDA0AC3
- {
- public:
- public:
- };
- // System.AttributeTargets
- struct AttributeTargets_t5F71273DFE1D0CA9B8109F02A023A7DBA9BFC923
- {
- public:
- // System.Int32 System.AttributeTargets::value__
- int32_t ___value___2;
- public:
- inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AttributeTargets_t5F71273DFE1D0CA9B8109F02A023A7DBA9BFC923, ___value___2)); }
- inline int32_t get_value___2() const { return ___value___2; }
- inline int32_t* get_address_of_value___2() { return &___value___2; }
- inline void set_value___2(int32_t value)
- {
- ___value___2 = value;
- }
- };
- // System.Reflection.BindingFlags
- struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733
- {
- public:
- // System.Int32 System.Reflection.BindingFlags::value__
- int32_t ___value___2;
- public:
- inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); }
- inline int32_t get_value___2() const { return ___value___2; }
- inline int32_t* get_address_of_value___2() { return &___value___2; }
- inline void set_value___2(int32_t value)
- {
- ___value___2 = value;
- }
- };
- // System.Runtime.CompilerServices.CompilationRelaxations
- struct CompilationRelaxations_t3F4D0C01134AC29212BCFE66E9A9F13A92F888AC
- {
- public:
- // System.Int32 System.Runtime.CompilerServices.CompilationRelaxations::value__
- int32_t ___value___2;
- public:
- inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CompilationRelaxations_t3F4D0C01134AC29212BCFE66E9A9F13A92F888AC, ___value___2)); }
- inline int32_t get_value___2() const { return ___value___2; }
- inline int32_t* get_address_of_value___2() { return &___value___2; }
- inline void set_value___2(int32_t value)
- {
- ___value___2 = value;
- }
- };
- // System.ComponentModel.EditorBrowsableState
- struct EditorBrowsableState_t5212E3E4B6F8B3190040444A9D6FBCA975F02BA1
- {
- public:
- // System.Int32 System.ComponentModel.EditorBrowsableState::value__
- int32_t ___value___2;
- public:
- inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EditorBrowsableState_t5212E3E4B6F8B3190040444A9D6FBCA975F02BA1, ___value___2)); }
- inline int32_t get_value___2() const { return ___value___2; }
- inline int32_t* get_address_of_value___2() { return &___value___2; }
- inline void set_value___2(int32_t value)
- {
- ___value___2 = value;
- }
- };
- // System.RuntimeTypeHandle
- struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9
- {
- public:
- // System.IntPtr System.RuntimeTypeHandle::value
- intptr_t ___value_0;
- public:
- inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); }
- inline intptr_t get_value_0() const { return ___value_0; }
- inline intptr_t* get_address_of_value_0() { return &___value_0; }
- inline void set_value_0(intptr_t value)
- {
- ___value_0 = value;
- }
- };
- // System.Resources.UltimateResourceFallbackLocation
- struct UltimateResourceFallbackLocation_tA4EBEA627CD0C386314EBB60D7A4225C435D0F0B
- {
- public:
- // System.Int32 System.Resources.UltimateResourceFallbackLocation::value__
- int32_t ___value___2;
- public:
- inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UltimateResourceFallbackLocation_tA4EBEA627CD0C386314EBB60D7A4225C435D0F0B, ___value___2)); }
- inline int32_t get_value___2() const { return ___value___2; }
- inline int32_t* get_address_of_value___2() { return &___value___2; }
- inline void set_value___2(int32_t value)
- {
- ___value___2 = value;
- }
- };
- // System.Xml.Schema.XmlSchemaContentProcessing
- struct XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C
- {
- public:
- // System.Int32 System.Xml.Schema.XmlSchemaContentProcessing::value__
- int32_t ___value___2;
- public:
- inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C, ___value___2)); }
- inline int32_t get_value___2() const { return ___value___2; }
- inline int32_t* get_address_of_value___2() { return &___value___2; }
- inline void set_value___2(int32_t value)
- {
- ___value___2 = value;
- }
- };
- // System.Diagnostics.DebuggableAttribute/DebuggingModes
- struct DebuggingModes_t279D5B9C012ABA935887CB73C5A63A1F46AF08A8
- {
- public:
- // System.Int32 System.Diagnostics.DebuggableAttribute/DebuggingModes::value__
- int32_t ___value___2;
- public:
- inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DebuggingModes_t279D5B9C012ABA935887CB73C5A63A1F46AF08A8, ___value___2)); }
- inline int32_t get_value___2() const { return ___value___2; }
- inline int32_t* get_address_of_value___2() { return &___value___2; }
- inline void set_value___2(int32_t value)
- {
- ___value___2 = value;
- }
- };
- // System.AttributeUsageAttribute
- struct AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.AttributeTargets System.AttributeUsageAttribute::m_attributeTarget
- int32_t ___m_attributeTarget_0;
- // System.Boolean System.AttributeUsageAttribute::m_allowMultiple
- bool ___m_allowMultiple_1;
- // System.Boolean System.AttributeUsageAttribute::m_inherited
- bool ___m_inherited_2;
- public:
- inline static int32_t get_offset_of_m_attributeTarget_0() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C, ___m_attributeTarget_0)); }
- inline int32_t get_m_attributeTarget_0() const { return ___m_attributeTarget_0; }
- inline int32_t* get_address_of_m_attributeTarget_0() { return &___m_attributeTarget_0; }
- inline void set_m_attributeTarget_0(int32_t value)
- {
- ___m_attributeTarget_0 = value;
- }
- inline static int32_t get_offset_of_m_allowMultiple_1() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C, ___m_allowMultiple_1)); }
- inline bool get_m_allowMultiple_1() const { return ___m_allowMultiple_1; }
- inline bool* get_address_of_m_allowMultiple_1() { return &___m_allowMultiple_1; }
- inline void set_m_allowMultiple_1(bool value)
- {
- ___m_allowMultiple_1 = value;
- }
- inline static int32_t get_offset_of_m_inherited_2() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C, ___m_inherited_2)); }
- inline bool get_m_inherited_2() const { return ___m_inherited_2; }
- inline bool* get_address_of_m_inherited_2() { return &___m_inherited_2; }
- inline void set_m_inherited_2(bool value)
- {
- ___m_inherited_2 = value;
- }
- };
- struct AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C_StaticFields
- {
- public:
- // System.AttributeUsageAttribute System.AttributeUsageAttribute::Default
- AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * ___Default_3;
- public:
- inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C_StaticFields, ___Default_3)); }
- inline AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * get_Default_3() const { return ___Default_3; }
- inline AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C ** get_address_of_Default_3() { return &___Default_3; }
- inline void set_Default_3(AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * value)
- {
- ___Default_3 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value);
- }
- };
- // System.Diagnostics.DebuggableAttribute
- struct DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.Diagnostics.DebuggableAttribute/DebuggingModes System.Diagnostics.DebuggableAttribute::m_debuggingModes
- int32_t ___m_debuggingModes_0;
- public:
- inline static int32_t get_offset_of_m_debuggingModes_0() { return static_cast<int32_t>(offsetof(DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B, ___m_debuggingModes_0)); }
- inline int32_t get_m_debuggingModes_0() const { return ___m_debuggingModes_0; }
- inline int32_t* get_address_of_m_debuggingModes_0() { return &___m_debuggingModes_0; }
- inline void set_m_debuggingModes_0(int32_t value)
- {
- ___m_debuggingModes_0 = value;
- }
- };
- // System.ComponentModel.EditorBrowsableAttribute
- struct EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.ComponentModel.EditorBrowsableState System.ComponentModel.EditorBrowsableAttribute::browsableState
- int32_t ___browsableState_0;
- public:
- inline static int32_t get_offset_of_browsableState_0() { return static_cast<int32_t>(offsetof(EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614, ___browsableState_0)); }
- inline int32_t get_browsableState_0() const { return ___browsableState_0; }
- inline int32_t* get_address_of_browsableState_0() { return &___browsableState_0; }
- inline void set_browsableState_0(int32_t value)
- {
- ___browsableState_0 = value;
- }
- };
- // System.Resources.NeutralResourcesLanguageAttribute
- struct NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
- {
- public:
- // System.String System.Resources.NeutralResourcesLanguageAttribute::_culture
- String_t* ____culture_0;
- // System.Resources.UltimateResourceFallbackLocation System.Resources.NeutralResourcesLanguageAttribute::_fallbackLoc
- int32_t ____fallbackLoc_1;
- public:
- inline static int32_t get_offset_of__culture_0() { return static_cast<int32_t>(offsetof(NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2, ____culture_0)); }
- inline String_t* get__culture_0() const { return ____culture_0; }
- inline String_t** get_address_of__culture_0() { return &____culture_0; }
- inline void set__culture_0(String_t* value)
- {
- ____culture_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&____culture_0), (void*)value);
- }
- inline static int32_t get_offset_of__fallbackLoc_1() { return static_cast<int32_t>(offsetof(NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2, ____fallbackLoc_1)); }
- inline int32_t get__fallbackLoc_1() const { return ____fallbackLoc_1; }
- inline int32_t* get_address_of__fallbackLoc_1() { return &____fallbackLoc_1; }
- inline void set__fallbackLoc_1(int32_t value)
- {
- ____fallbackLoc_1 = value;
- }
- };
- // System.Type
- struct Type_t : public MemberInfo_t
- {
- public:
- // System.RuntimeTypeHandle System.Type::_impl
- RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9;
- public:
- inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
- inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; }
- inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; }
- inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value)
- {
- ____impl_9 = value;
- }
- };
- struct Type_t_StaticFields
- {
- public:
- // System.Reflection.MemberFilter System.Type::FilterAttribute
- MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0;
- // System.Reflection.MemberFilter System.Type::FilterName
- MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1;
- // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
- MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2;
- // System.Object System.Type::Missing
- RuntimeObject * ___Missing_3;
- // System.Char System.Type::Delimiter
- Il2CppChar ___Delimiter_4;
- // System.Type[] System.Type::EmptyTypes
- TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5;
- // System.Reflection.Binder System.Type::defaultBinder
- Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6;
- public:
- inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
- inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
- inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
- inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
- {
- ___FilterAttribute_0 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
- }
- inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
- inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; }
- inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; }
- inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
- {
- ___FilterName_1 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
- }
- inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
- inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
- inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
- inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
- {
- ___FilterNameIgnoreCase_2 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
- }
- inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
- inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
- inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
- inline void set_Missing_3(RuntimeObject * value)
- {
- ___Missing_3 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
- }
- inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
- inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
- inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
- inline void set_Delimiter_4(Il2CppChar value)
- {
- ___Delimiter_4 = value;
- }
- inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
- inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
- inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
- inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
- {
- ___EmptyTypes_5 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
- }
- inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
- inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; }
- inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
- inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value)
- {
- ___defaultBinder_6 = value;
- Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
- }
- };
- #ifdef __clang__
- #pragma clang diagnostic pop
- #endif
- // System.Void System.Runtime.CompilerServices.CompilationRelaxationsAttribute::.ctor(System.Runtime.CompilerServices.CompilationRelaxations)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompilationRelaxationsAttribute__ctor_m9012F6B0B55EF7A86133889CB22D74728CAB90AC (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * __this, int32_t ___relaxations0, const RuntimeMethod* method);
- // System.Void System.Diagnostics.DebuggableAttribute::.ctor(System.Diagnostics.DebuggableAttribute/DebuggingModes)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggableAttribute__ctor_m7FF445C8435494A4847123A668D889E692E55550 (DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B * __this, int32_t ___modes0, const RuntimeMethod* method);
- // System.Void System.Runtime.CompilerServices.InternalsVisibleToAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9 (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * __this, String_t* ___assemblyName0, const RuntimeMethod* method);
- // System.Void System.Reflection.AssemblyTitleAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyTitleAttribute__ctor_mE239F206B3B369C48AE1F3B4211688778FE99E8D (AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7 * __this, String_t* ___title0, const RuntimeMethod* method);
- // System.Void System.Reflection.AssemblyDescriptionAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyDescriptionAttribute__ctor_m3A0BD500FF352A67235FBA499FBA58EFF15B1F25 (AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3 * __this, String_t* ___description0, const RuntimeMethod* method);
- // System.Void System.Reflection.AssemblyDefaultAliasAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyDefaultAliasAttribute__ctor_m0C9991C32ED63B598FA509F3AF74554A5C874EB0 (AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA * __this, String_t* ___defaultAlias0, const RuntimeMethod* method);
- // System.Void System.Reflection.AssemblyCompanyAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyCompanyAttribute__ctor_m435C9FEC405646617645636E67860598A0C46FF0 (AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4 * __this, String_t* ___company0, const RuntimeMethod* method);
- // System.Void System.Reflection.AssemblyProductAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyProductAttribute__ctor_m26DF1EBC1C86E7DA4786C66B44123899BE8DBCB8 (AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA * __this, String_t* ___product0, const RuntimeMethod* method);
- // System.Void System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::.ctor()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute__ctor_m551DDF1438CE97A984571949723F30F44CF7317C (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, const RuntimeMethod* method);
- // System.Void System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::set_WrapNonExceptionThrows(System.Boolean)
- IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, bool ___value0, const RuntimeMethod* method);
- // System.Void System.Reflection.AssemblyCopyrightAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyCopyrightAttribute__ctor_mB0B5F5C1A7A8B172289CC694E2711F07A37CE3F3 (AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC * __this, String_t* ___copyright0, const RuntimeMethod* method);
- // System.Void System.Reflection.AssemblyInformationalVersionAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyInformationalVersionAttribute__ctor_m9BF349D8F980B0ABAB2A6312E422915285FA1678 (AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0 * __this, String_t* ___informationalVersion0, const RuntimeMethod* method);
- // System.Void System.Resources.NeutralResourcesLanguageAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NeutralResourcesLanguageAttribute__ctor_mF2BB52FC7FE116CCA2AEDD08A2DA1DF7055B56AF (NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2 * __this, String_t* ___cultureName0, const RuntimeMethod* method);
- // System.Void System.Runtime.InteropServices.ComVisibleAttribute::.ctor(System.Boolean)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComVisibleAttribute__ctor_mBDE8E12A0233C07B98D6D5103511F4DD5B1FC172 (ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A * __this, bool ___visibility0, const RuntimeMethod* method);
- // System.Void System.CLSCompliantAttribute::.ctor(System.Boolean)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270 (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * __this, bool ___isCompliant0, const RuntimeMethod* method);
- // System.Void System.Reflection.AssemblyDelaySignAttribute::.ctor(System.Boolean)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyDelaySignAttribute__ctor_mD4A5A4EE506801F8BFE4E8F313FD421AE3003A7A (AssemblyDelaySignAttribute_tB66445498441723DC06E545FAA1CF0F128A1FE38 * __this, bool ___delaySign0, const RuntimeMethod* method);
- // System.Void System.Reflection.AssemblyKeyFileAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyKeyFileAttribute__ctor_mCCE9180B365E9EB7111D5061069A5F73E1690CC3 (AssemblyKeyFileAttribute_tEF26145AA8A5F35C218FE543113825F133CC6253 * __this, String_t* ___keyFile0, const RuntimeMethod* method);
- // System.Void System.Runtime.CompilerServices.InternalsVisibleToAttribute::set_AllInternalsVisible(System.Boolean)
- IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InternalsVisibleToAttribute_set_AllInternalsVisible_m8A2E202556185ADBB01D1AF437D1DF23BED94B2B_inline (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * __this, bool ___value0, const RuntimeMethod* method);
- // System.Void System.Reflection.AssemblyFileVersionAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyFileVersionAttribute__ctor_mF855AEBC51CB72F4FF913499256741AE57B0F13D (AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F * __this, String_t* ___version0, const RuntimeMethod* method);
- // System.Void System.Resources.SatelliteContractVersionAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SatelliteContractVersionAttribute__ctor_m561BB905628D77D6D09110E2C1427B313E8A3215 (SatelliteContractVersionAttribute_tA77BDC45FEEFE11823E95476FC8AE60B007906D2 * __this, String_t* ___version0, const RuntimeMethod* method);
- // System.Void System.Runtime.CompilerServices.ExtensionAttribute::.ctor()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * __this, const RuntimeMethod* method);
- // System.Void System.ParamArrayAttribute::.ctor()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParamArrayAttribute__ctor_mCC72AFF718185BA7B87FD8D9471F1274400C5719 (ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F * __this, const RuntimeMethod* method);
- // System.Void System.Diagnostics.DebuggerDisplayAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988 (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * __this, String_t* ___value0, const RuntimeMethod* method);
- // System.Void System.FlagsAttribute::.ctor()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FlagsAttribute__ctor_mE8DCBA1BE0E6B0424FEF5E5F249733CF6A0E1229 (FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 * __this, const RuntimeMethod* method);
- // System.Void System.ObsoleteAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868 (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * __this, String_t* ___message0, const RuntimeMethod* method);
- // System.Void System.Reflection.DefaultMemberAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7 (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * __this, String_t* ___memberName0, const RuntimeMethod* method);
- // System.Void System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35 (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * __this, const RuntimeMethod* method);
- // System.Void System.ComponentModel.EditorBrowsableAttribute::.ctor(System.ComponentModel.EditorBrowsableState)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4 (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * __this, int32_t ___state0, const RuntimeMethod* method);
- // System.Void System.Runtime.CompilerServices.AsyncStateMachineAttribute::.ctor(System.Type)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncStateMachineAttribute__ctor_m9530B59D9722DE383A1703C52EBC1ED1FEFB100B (AsyncStateMachineAttribute_tBDB4B958CFB5CD3BEE1427711FFC8C358C9BA6E6 * __this, Type_t * ___stateMachineType0, const RuntimeMethod* method);
- // System.Void System.Diagnostics.DebuggerHiddenAttribute::.ctor()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3 (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * __this, const RuntimeMethod* method);
- // System.Void System.Runtime.Serialization.OptionalFieldAttribute::.ctor()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OptionalFieldAttribute__ctor_mE089D904BE867C605D7CAA6530F89C21717598A1 (OptionalFieldAttribute_t5761990BBE6FDD98072FD82D9EC2B9CD96CEFB59 * __this, const RuntimeMethod* method);
- // System.Void System.AttributeUsageAttribute::.ctor(System.AttributeTargets)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute__ctor_m5114E18826A49A025D48DC71904C430BD590656D (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * __this, int32_t ___validOn0, const RuntimeMethod* method);
- // System.Void System.AttributeUsageAttribute::set_AllowMultiple(System.Boolean)
- IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AttributeUsageAttribute_set_AllowMultiple_mF412CDAFFE16D056721EF81A1EC04ACE63612055_inline (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * __this, bool ___value0, const RuntimeMethod* method);
- // System.Void System.ComponentModel.DefaultValueAttribute::.ctor(System.Object)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultValueAttribute__ctor_mA4501ED4B6011A422D55EBE09A4AC3A1FAD83C13 (DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
- // System.Void System.Xml.Serialization.XmlAttributeAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeAttribute__ctor_m3C9FC780C480AB65FAA249FC66806584C8D80749 (XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 * __this, String_t* ___attributeName0, const RuntimeMethod* method);
- // System.Void System.Xml.Serialization.XmlIgnoreAttribute::.ctor()
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908 (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * __this, const RuntimeMethod* method);
- // System.Void System.Xml.Serialization.XmlElementAttribute::.ctor(System.String,System.Type)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * __this, String_t* ___elementName0, Type_t * ___type1, const RuntimeMethod* method);
- // System.Void System.ComponentModel.DefaultValueAttribute::.ctor(System.Boolean)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultValueAttribute__ctor_m78FFD0C313E546C33C761F79E544E6FA5ADCB4D0 (DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 * __this, bool ___value0, const RuntimeMethod* method);
- // System.Void System.Xml.Serialization.XmlEnumAttribute::.ctor(System.String)
- IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2 (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * __this, String_t* ___name0, const RuntimeMethod* method);
- static void System_Xml_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * tmp = (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF *)cache->attributes[0];
- CompilationRelaxationsAttribute__ctor_m9012F6B0B55EF7A86133889CB22D74728CAB90AC(tmp, 8LL, NULL);
- }
- {
- DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B * tmp = (DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B *)cache->attributes[1];
- DebuggableAttribute__ctor_m7FF445C8435494A4847123A668D889E692E55550(tmp, 2LL, NULL);
- }
- {
- InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[2];
- 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);
- }
- {
- InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[3];
- 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);
- }
- {
- InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[4];
- 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);
- }
- {
- AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7 * tmp = (AssemblyTitleAttribute_tABB894D0792C7F307694CC796C8AE5D6A20382E7 *)cache->attributes[5];
- AssemblyTitleAttribute__ctor_mE239F206B3B369C48AE1F3B4211688778FE99E8D(tmp, il2cpp_codegen_string_new_wrapper("\x53\x79\x73\x74\x65\x6D\x2E\x58\x6D\x6C\x2E\x64\x6C\x6C"), NULL);
- }
- {
- AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3 * tmp = (AssemblyDescriptionAttribute_tF4460CCB289F6E2F71841792BBC7E6907DF612B3 *)cache->attributes[6];
- AssemblyDescriptionAttribute__ctor_m3A0BD500FF352A67235FBA499FBA58EFF15B1F25(tmp, il2cpp_codegen_string_new_wrapper("\x53\x79\x73\x74\x65\x6D\x2E\x58\x6D\x6C\x2E\x64\x6C\x6C"), NULL);
- }
- {
- AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA * tmp = (AssemblyDefaultAliasAttribute_tBED24B7B2D875CB2BD712ABC4099024C2505B7AA *)cache->attributes[7];
- AssemblyDefaultAliasAttribute__ctor_m0C9991C32ED63B598FA509F3AF74554A5C874EB0(tmp, il2cpp_codegen_string_new_wrapper("\x53\x79\x73\x74\x65\x6D\x2E\x58\x6D\x6C\x2E\x64\x6C\x6C"), NULL);
- }
- {
- AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4 * tmp = (AssemblyCompanyAttribute_t642AAB097D7DEAAB623BEBE4664327E9B01D1DE4 *)cache->attributes[8];
- 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);
- }
- {
- AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA * tmp = (AssemblyProductAttribute_t6BB0E0F76C752E14A4C26B4D1E230019068601CA *)cache->attributes[9];
- 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);
- }
- {
- RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * tmp = (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 *)cache->attributes[10];
- RuntimeCompatibilityAttribute__ctor_m551DDF1438CE97A984571949723F30F44CF7317C(tmp, NULL);
- RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline(tmp, true, NULL);
- }
- {
- AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC * tmp = (AssemblyCopyrightAttribute_tA6A09319EF50B48D962810032000DEE7B12904EC *)cache->attributes[11];
- 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);
- }
- {
- AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0 * tmp = (AssemblyInformationalVersionAttribute_t962229DBE84C4A66FB0B542E9AEBC510F55950D0 *)cache->attributes[12];
- 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);
- }
- {
- NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2 * tmp = (NeutralResourcesLanguageAttribute_t14C9436446C8E9EB3C2244D386AF1C84ADC80FB2 *)cache->attributes[13];
- NeutralResourcesLanguageAttribute__ctor_mF2BB52FC7FE116CCA2AEDD08A2DA1DF7055B56AF(tmp, il2cpp_codegen_string_new_wrapper("\x65\x6E\x2D\x55\x53"), NULL);
- }
- {
- ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A * tmp = (ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A *)cache->attributes[14];
- ComVisibleAttribute__ctor_mBDE8E12A0233C07B98D6D5103511F4DD5B1FC172(tmp, false, NULL);
- }
- {
- CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[15];
- CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, true, NULL);
- }
- {
- AssemblyDelaySignAttribute_tB66445498441723DC06E545FAA1CF0F128A1FE38 * tmp = (AssemblyDelaySignAttribute_tB66445498441723DC06E545FAA1CF0F128A1FE38 *)cache->attributes[16];
- AssemblyDelaySignAttribute__ctor_mD4A5A4EE506801F8BFE4E8F313FD421AE3003A7A(tmp, true, NULL);
- }
- {
- AssemblyKeyFileAttribute_tEF26145AA8A5F35C218FE543113825F133CC6253 * tmp = (AssemblyKeyFileAttribute_tEF26145AA8A5F35C218FE543113825F133CC6253 *)cache->attributes[17];
- 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);
- }
- {
- InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[18];
- 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);
- }
- {
- InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[19];
- 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);
- InternalsVisibleToAttribute_set_AllInternalsVisible_m8A2E202556185ADBB01D1AF437D1DF23BED94B2B_inline(tmp, false, NULL);
- }
- {
- AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F * tmp = (AssemblyFileVersionAttribute_tCC1036D0566155DC5688D9230EF3C07D82A1896F *)cache->attributes[20];
- 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);
- }
- {
- SatelliteContractVersionAttribute_tA77BDC45FEEFE11823E95476FC8AE60B007906D2 * tmp = (SatelliteContractVersionAttribute_tA77BDC45FEEFE11823E95476FC8AE60B007906D2 *)cache->attributes[21];
- SatelliteContractVersionAttribute__ctor_m561BB905628D77D6D09110E2C1427B313E8A3215(tmp, il2cpp_codegen_string_new_wrapper("\x34\x2E\x30\x2E\x30\x2E\x30"), NULL);
- }
- {
- ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[22];
- ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
- }
- }
- static void SR_t18DDAC0A0AC9B7F52E81CFEC14051580FFAAB957_CustomAttributesCacheGenerator_SR_GetString_m846F567D256240B005CADDBE65D4793920B6474E____args1(CustomAttributesCache* cache)
- {
- {
- ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F * tmp = (ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F *)cache->attributes[0];
- ParamArrayAttribute__ctor_mCC72AFF718185BA7B87FD8D9471F1274400C5719(tmp, NULL);
- }
- }
- static void SR_t18DDAC0A0AC9B7F52E81CFEC14051580FFAAB957_CustomAttributesCacheGenerator_SR_GetString_m6B94153BBBDF13B55321A1E0290B6E82FC8AD248____args2(CustomAttributesCache* cache)
- {
- {
- ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F * tmp = (ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F *)cache->attributes[0];
- ParamArrayAttribute__ctor_mCC72AFF718185BA7B87FD8D9471F1274400C5719(tmp, NULL);
- }
- }
- static void Query_tA8096C7914789E59DF6C340BE3380CF2511F6A06_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[0];
- DebuggerDisplayAttribute__ctor_m870C3A98DA4C9FA7FD4411169AF30C55A90B9988(tmp, il2cpp_codegen_string_new_wrapper("\x7B\x54\x6F\x53\x74\x72\x69\x6E\x67\x28\x29\x7D"), NULL);
- }
- }
- static void XPathArrayIterator_t41CCD996703BA681E5D54A8504BA08455CE417DD_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[0];
- 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);
- }
- }
- static void AsyncHelper_t5BBA4E723AFA5229BD866D2ED5EFB1F2590C5EB2_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
- ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
- }
- }
- static void NamespaceHandling_t7974F9A117390EC627D6C12EB7219594674ADC80_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 * tmp = (FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 *)cache->attributes[0];
- FlagsAttribute__ctor_mE8DCBA1BE0E6B0424FEF5E5F249733CF6A0E1229(tmp, NULL);
- }
- }
- static void ValidationType_t588D32514C11D985F976526F7E3C81ABD1D27EBA_CustomAttributesCacheGenerator_Auto(CustomAttributesCache* cache)
- {
- {
- ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
- 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);
- }
- }
- static void ValidationType_t588D32514C11D985F976526F7E3C81ABD1D27EBA_CustomAttributesCacheGenerator_XDR(CustomAttributesCache* cache)
- {
- {
- ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
- 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);
- }
- }
- static void XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[0];
- 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);
- }
- {
- DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[1];
- 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);
- }
- {
- DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[2];
- DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D"), NULL);
- }
- }
- static void XmlReaderSettings_tD1257418720567D67A7C49A7498914FE937F1520_CustomAttributesCacheGenerator_U3CIsXmlResolverSetU3Ek__BackingField(CustomAttributesCache* cache)
- {
- {
- CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
- CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
- }
- }
- static void XmlReaderSettings_tD1257418720567D67A7C49A7498914FE937F1520_CustomAttributesCacheGenerator_XmlReaderSettings_set_IsXmlResolverSet_m4374404167E732ADF4FF5D5699DA1A2763B4A048(CustomAttributesCache* cache)
- {
- {
- CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
- CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
- }
- }
- static void XmlTextReader_t45FF43659BDA44EC96F8CEE164A3CA74548C39F5_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[0];
- EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
- }
- }
- static void XmlAttributeCollection_tDC800F98FE32D4723967772453EB600D1C368AA3_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[0];
- DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D\x4F\x66"), NULL);
- }
- }
- static void SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[0];
- DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D"), NULL);
- }
- }
- static void XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[0];
- 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);
- }
- {
- DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[1];
- DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D"), NULL);
- }
- }
- static void XmlNodeList_t1DBBA2CC948CC6631BC33AA7405E11C8105E6EE9_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[0];
- DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D\x4F\x66"), NULL);
- }
- }
- static void XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_CustomAttributesCacheGenerator_XmlConvert_ToString_m4641C988539C8EB17C589761E674B9521EEA62E5(CustomAttributesCache* cache)
- {
- {
- CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
- CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
- }
- }
- static void XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_CustomAttributesCacheGenerator_XmlConvert_ToString_m9823FE7E80D23F2111BD7D6861C59A79EF70E9CC(CustomAttributesCache* cache)
- {
- {
- CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
- CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
- }
- }
- static void XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_CustomAttributesCacheGenerator_XmlConvert_ToString_mBF267D826A31C919FC0A510C8EABE5BDD690AFF8(CustomAttributesCache* cache)
- {
- {
- CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
- CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
- }
- }
- static void XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_CustomAttributesCacheGenerator_XmlConvert_ToString_m886299CF6DD10FDD767223FAEA2740B3A2F48C40(CustomAttributesCache* cache)
- {
- {
- CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * tmp = (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 *)cache->attributes[0];
- CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270(tmp, false, NULL);
- }
- }
- static void XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D_CustomAttributesCacheGenerator_XmlDownloadManager_GetNonFileStreamAsync_m075FD73BF73B9C8E231E40AD4C956FE1F76709B1(CustomAttributesCache* cache)
- {
- static bool s_Il2CppMethodInitialized;
- if (!s_Il2CppMethodInitialized)
- {
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_0_0_0_var);
- s_Il2CppMethodInitialized = true;
- }
- {
- AsyncStateMachineAttribute_tBDB4B958CFB5CD3BEE1427711FFC8C358C9BA6E6 * tmp = (AsyncStateMachineAttribute_tBDB4B958CFB5CD3BEE1427711FFC8C358C9BA6E6 *)cache->attributes[0];
- AsyncStateMachineAttribute__ctor_m9530B59D9722DE383A1703C52EBC1ED1FEFB100B(tmp, il2cpp_codegen_type_get_object(U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_0_0_0_var), NULL);
- }
- }
- static void U3CU3Ec__DisplayClass4_0_t1CB18D171B35CF191BC6883D5C7E384F9F137C0B_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
- CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
- }
- }
- static void U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
- CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
- }
- }
- static void U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_CustomAttributesCacheGenerator_U3CGetNonFileStreamAsyncU3Ed__5_SetStateMachine_m6269B8FD1CE46B7955D5D2F90AB7D5F2BE407777(CustomAttributesCache* cache)
- {
- {
- DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
- DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
- }
- }
- static void XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_CustomAttributesCacheGenerator_sourceUri(CustomAttributesCache* cache)
- {
- {
- OptionalFieldAttribute_t5761990BBE6FDD98072FD82D9EC2B9CD96CEFB59 * tmp = (OptionalFieldAttribute_t5761990BBE6FDD98072FD82D9EC2B9CD96CEFB59 *)cache->attributes[0];
- OptionalFieldAttribute__ctor_mE089D904BE867C605D7CAA6530F89C21717598A1(tmp, NULL);
- }
- }
- static void XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1_CustomAttributesCacheGenerator_XmlUrlResolver_GetEntityAsync_m0D4B74C681DFBA67E92DF4AA341447F062CB256F(CustomAttributesCache* cache)
- {
- static bool s_Il2CppMethodInitialized;
- if (!s_Il2CppMethodInitialized)
- {
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_0_0_0_var);
- s_Il2CppMethodInitialized = true;
- }
- {
- AsyncStateMachineAttribute_tBDB4B958CFB5CD3BEE1427711FFC8C358C9BA6E6 * tmp = (AsyncStateMachineAttribute_tBDB4B958CFB5CD3BEE1427711FFC8C358C9BA6E6 *)cache->attributes[0];
- AsyncStateMachineAttribute__ctor_m9530B59D9722DE383A1703C52EBC1ED1FEFB100B(tmp, il2cpp_codegen_type_get_object(U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_0_0_0_var), NULL);
- }
- }
- static void U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
- CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
- }
- }
- static void U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_CustomAttributesCacheGenerator_U3CGetEntityAsyncU3Ed__15_SetStateMachine_m9A31F8EDD492D50FFA4F9FCC8F0FBAD9DD1D3E93(CustomAttributesCache* cache)
- {
- {
- DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
- DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
- }
- }
- static void Res_t8707C30091CC714404BA967631E1F74B8ACBB1E4_CustomAttributesCacheGenerator_Res_GetString_m1D06B81901B03CA849045926741403907612BB4B____args1(CustomAttributesCache* cache)
- {
- {
- ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F * tmp = (ParamArrayAttribute_t9DCEB4CDDB8EDDB1124171D4C51FA6069EEA5C5F *)cache->attributes[0];
- ParamArrayAttribute__ctor_mCC72AFF718185BA7B87FD8D9471F1274400C5719(tmp, NULL);
- }
- }
- static void XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[0];
- 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);
- }
- }
- static void XPathNodeIterator_t133D83D4FBC95646A6E85168B76EC873C7533FB8_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F * tmp = (DebuggerDisplayAttribute_tA5070C1A6CAB579DAC66A469530D946F6F42727F *)cache->attributes[0];
- 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);
- }
- }
- static void XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * tmp = (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C *)cache->attributes[0];
- AttributeUsageAttribute__ctor_m5114E18826A49A025D48DC71904C430BD590656D(tmp, 4LL, NULL);
- AttributeUsageAttribute_set_AllowMultiple_mF412CDAFFE16D056721EF81A1EC04ACE63612055_inline(tmp, false, NULL);
- }
- }
- static void XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_CustomAttributesCacheGenerator_U3CMethodU3Ek__BackingField(CustomAttributesCache* cache)
- {
- {
- CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
- CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
- }
- }
- static void XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_CustomAttributesCacheGenerator_XmlTypeConvertorAttribute_set_Method_mC01F1A24104F47A6DA6F8CADDCE9CA57D8552283(CustomAttributesCache* cache)
- {
- {
- CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
- CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
- }
- }
- static void XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * tmp = (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C *)cache->attributes[0];
- AttributeUsageAttribute__ctor_m5114E18826A49A025D48DC71904C430BD590656D(tmp, 10624LL, NULL);
- }
- }
- static void XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * tmp = (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C *)cache->attributes[0];
- AttributeUsageAttribute__ctor_m5114E18826A49A025D48DC71904C430BD590656D(tmp, 10624LL, NULL);
- AttributeUsageAttribute_set_AllowMultiple_mF412CDAFFE16D056721EF81A1EC04ACE63612055_inline(tmp, true, NULL);
- }
- }
- static void XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * tmp = (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C *)cache->attributes[0];
- AttributeUsageAttribute__ctor_m5114E18826A49A025D48DC71904C430BD590656D(tmp, 256LL, NULL);
- }
- }
- static void XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * tmp = (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C *)cache->attributes[0];
- AttributeUsageAttribute__ctor_m5114E18826A49A025D48DC71904C430BD590656D(tmp, 10624LL, NULL);
- }
- }
- static void XmlSchemaProviderAttribute_t94BE15D9985EEC61A31C88069AE2723B209005DA_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * tmp = (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C *)cache->attributes[0];
- AttributeUsageAttribute__ctor_m5114E18826A49A025D48DC71904C430BD590656D(tmp, 1036LL, NULL);
- }
- }
- static void BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[0];
- DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D"), NULL);
- }
- }
- static void SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[0];
- DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D"), NULL);
- }
- }
- static void Positions_t577D66E21F674149C5A3E68851CE88B94C37248F_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[0];
- DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D"), NULL);
- }
- }
- static void RestrictionFlags_tE688E3FE50199CFC0DE7B02A59EA18DF59B8A025_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 * tmp = (FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 *)cache->attributes[0];
- FlagsAttribute__ctor_mE8DCBA1BE0E6B0424FEF5E5F249733CF6A0E1229(tmp, NULL);
- }
- }
- static void XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_CustomAttributesCacheGenerator_XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C____ProcessContents_PropertyInfo(CustomAttributesCache* cache)
- {
- static bool s_Il2CppMethodInitialized;
- if (!s_Il2CppMethodInitialized)
- {
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_il2cpp_TypeInfo_var);
- s_Il2CppMethodInitialized = true;
- }
- {
- int32_t _tmp_0 = 0;
- DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 * tmp = (DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 *)cache->attributes[0];
- DefaultValueAttribute__ctor_mA4501ED4B6011A422D55EBE09A4AC3A1FAD83C13(tmp, Box(XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_il2cpp_TypeInfo_var, &_tmp_0), NULL);
- }
- {
- XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 * tmp = (XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 *)cache->attributes[1];
- 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);
- }
- }
- static void XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_CustomAttributesCacheGenerator_XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C____NamespaceList_PropertyInfo(CustomAttributesCache* cache)
- {
- {
- XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
- XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
- }
- }
- static void XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80_CustomAttributesCacheGenerator_XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80____ProcessContents_PropertyInfo(CustomAttributesCache* cache)
- {
- static bool s_Il2CppMethodInitialized;
- if (!s_Il2CppMethodInitialized)
- {
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_il2cpp_TypeInfo_var);
- s_Il2CppMethodInitialized = true;
- }
- {
- int32_t _tmp_0 = 0;
- DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 * tmp = (DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 *)cache->attributes[0];
- DefaultValueAttribute__ctor_mA4501ED4B6011A422D55EBE09A4AC3A1FAD83C13(tmp, Box(XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_il2cpp_TypeInfo_var, &_tmp_0), NULL);
- }
- {
- XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 * tmp = (XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 *)cache->attributes[1];
- 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);
- }
- }
- static void XmlSchemaChoice_t8FC6F8DB238E8800F350E4EF88CCECD64B5D3BF0_CustomAttributesCacheGenerator_XmlSchemaChoice_t8FC6F8DB238E8800F350E4EF88CCECD64B5D3BF0____Items_PropertyInfo(CustomAttributesCache* cache)
- {
- static bool s_Il2CppMethodInitialized;
- if (!s_Il2CppMethodInitialized)
- {
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_0_0_0_var);
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaChoice_t8FC6F8DB238E8800F350E4EF88CCECD64B5D3BF0_0_0_0_var);
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaElement_tB61A00A97A12A9B2620D005D0643B11EA1CA764A_0_0_0_var);
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaGroupRef_t959C68547997BA04BD811BE970E18AD9C42A68DA_0_0_0_var);
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaSequence_t6C94DB85E74779BE018C34D94204C037416E9C03_0_0_0_var);
- s_Il2CppMethodInitialized = true;
- }
- {
- XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[0];
- 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);
- }
- {
- XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[1];
- 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);
- }
- {
- XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[2];
- 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);
- }
- {
- XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[3];
- 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);
- }
- {
- XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[4];
- XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F(tmp, il2cpp_codegen_string_new_wrapper("\x61\x6E\x79"), il2cpp_codegen_type_get_object(XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_0_0_0_var), NULL);
- }
- }
- static void XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062_CustomAttributesCacheGenerator_XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062____AnyType_PropertyInfo(CustomAttributesCache* cache)
- {
- {
- XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
- XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
- }
- }
- static void XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062_CustomAttributesCacheGenerator_XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062____IsMixed_PropertyInfo(CustomAttributesCache* cache)
- {
- {
- XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 * tmp = (XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 *)cache->attributes[0];
- XmlAttributeAttribute__ctor_m3C9FC780C480AB65FAA249FC66806584C8D80749(tmp, il2cpp_codegen_string_new_wrapper("\x6D\x69\x78\x65\x64"), NULL);
- }
- {
- DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 * tmp = (DefaultValueAttribute_tE77EAC79E16838DAE97DB0981C95B0E320DD8EC6 *)cache->attributes[1];
- DefaultValueAttribute__ctor_m78FFD0C313E546C33C761F79E544E6FA5ADCB4D0(tmp, false, NULL);
- }
- }
- static void XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062_CustomAttributesCacheGenerator_XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062____ContentTypeParticle_PropertyInfo(CustomAttributesCache* cache)
- {
- {
- XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
- XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
- }
- }
- static void XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_CustomAttributesCacheGenerator_None(CustomAttributesCache* cache)
- {
- {
- XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
- XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
- }
- }
- static void XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_CustomAttributesCacheGenerator_Skip(CustomAttributesCache* cache)
- {
- {
- XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
- XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x73\x6B\x69\x70"), NULL);
- }
- }
- static void XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_CustomAttributesCacheGenerator_Lax(CustomAttributesCache* cache)
- {
- {
- XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
- XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x6C\x61\x78"), NULL);
- }
- }
- static void XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_CustomAttributesCacheGenerator_Strict(CustomAttributesCache* cache)
- {
- {
- XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
- XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x73\x74\x72\x69\x63\x74"), NULL);
- }
- }
- static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 * tmp = (FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 *)cache->attributes[0];
- FlagsAttribute__ctor_mE8DCBA1BE0E6B0424FEF5E5F249733CF6A0E1229(tmp, NULL);
- }
- }
- static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Empty(CustomAttributesCache* cache)
- {
- {
- XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
- XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper(""), NULL);
- }
- }
- static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Substitution(CustomAttributesCache* cache)
- {
- {
- XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
- XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x73\x75\x62\x73\x74\x69\x74\x75\x74\x69\x6F\x6E"), NULL);
- }
- }
- static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Extension(CustomAttributesCache* cache)
- {
- {
- XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
- XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x65\x78\x74\x65\x6E\x73\x69\x6F\x6E"), NULL);
- }
- }
- static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Restriction(CustomAttributesCache* cache)
- {
- {
- XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
- XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x72\x65\x73\x74\x72\x69\x63\x74\x69\x6F\x6E"), NULL);
- }
- }
- static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_List(CustomAttributesCache* cache)
- {
- {
- XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
- XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x6C\x69\x73\x74"), NULL);
- }
- }
- static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Union(CustomAttributesCache* cache)
- {
- {
- XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
- XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x75\x6E\x69\x6F\x6E"), NULL);
- }
- }
- static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_All(CustomAttributesCache* cache)
- {
- {
- XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * tmp = (XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E *)cache->attributes[0];
- XmlEnumAttribute__ctor_mF7FBA354F3ED12CB8B64B19A1A798C5F290916D2(tmp, il2cpp_codegen_string_new_wrapper("\x23\x61\x6C\x6C"), NULL);
- }
- }
- static void XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_None(CustomAttributesCache* cache)
- {
- {
- XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
- XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
- }
- }
- static void XmlSchemaGroupBase_tBB7F26134C0D82EA71D1773C84856397919DD5DA_CustomAttributesCacheGenerator_XmlSchemaGroupBase_tBB7F26134C0D82EA71D1773C84856397919DD5DA____Items_PropertyInfo(CustomAttributesCache* cache)
- {
- {
- XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
- XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
- }
- }
- static void XmlSchemaObjectCollection_t2E22260F9979EB3890D8CB09473963FE616BF931_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 * tmp = (DefaultMemberAttribute_t8C9B3330DEA69EE364962477FF14FD2CFE30D4B5 *)cache->attributes[0];
- DefaultMemberAttribute__ctor_mA025B6F5B3A9292696E01108027840C8DFF7F4D7(tmp, il2cpp_codegen_string_new_wrapper("\x49\x74\x65\x6D"), NULL);
- }
- }
- static void XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789_CustomAttributesCacheGenerator_XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789____MinOccurs_PropertyInfo(CustomAttributesCache* cache)
- {
- {
- XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
- XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
- }
- }
- static void XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789_CustomAttributesCacheGenerator_XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789____MaxOccurs_PropertyInfo(CustomAttributesCache* cache)
- {
- {
- XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
- XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
- }
- }
- static void Occurs_tE1D41715FC55ECA460AB8AE9C68E39DF0ED1747F_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 * tmp = (FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 *)cache->attributes[0];
- FlagsAttribute__ctor_mE8DCBA1BE0E6B0424FEF5E5F249733CF6A0E1229(tmp, NULL);
- }
- }
- static void XmlSchemaSequence_t6C94DB85E74779BE018C34D94204C037416E9C03_CustomAttributesCacheGenerator_XmlSchemaSequence_t6C94DB85E74779BE018C34D94204C037416E9C03____Items_PropertyInfo(CustomAttributesCache* cache)
- {
- static bool s_Il2CppMethodInitialized;
- if (!s_Il2CppMethodInitialized)
- {
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_0_0_0_var);
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaChoice_t8FC6F8DB238E8800F350E4EF88CCECD64B5D3BF0_0_0_0_var);
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaElement_tB61A00A97A12A9B2620D005D0643B11EA1CA764A_0_0_0_var);
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaGroupRef_t959C68547997BA04BD811BE970E18AD9C42A68DA_0_0_0_var);
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaSequence_t6C94DB85E74779BE018C34D94204C037416E9C03_0_0_0_var);
- s_Il2CppMethodInitialized = true;
- }
- {
- XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[0];
- 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);
- }
- {
- XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[1];
- 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);
- }
- {
- XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[2];
- XmlElementAttribute__ctor_m012F146BFD5AC0449C0270DB7C5699EA3C60BB1F(tmp, il2cpp_codegen_string_new_wrapper("\x61\x6E\x79"), il2cpp_codegen_type_get_object(XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_0_0_0_var), NULL);
- }
- {
- XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[3];
- 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);
- }
- {
- XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[4];
- 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);
- }
- }
- static void XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C_CustomAttributesCacheGenerator_XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C____Content_PropertyInfo(CustomAttributesCache* cache)
- {
- static bool s_Il2CppMethodInitialized;
- if (!s_Il2CppMethodInitialized)
- {
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD_0_0_0_var);
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaSimpleTypeRestriction_tA312855944C42464DF7E0C6F02214331C853945C_0_0_0_var);
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaSimpleTypeUnion_t691F14B83D42A700B03058B598646CDA7DF545F5_0_0_0_var);
- s_Il2CppMethodInitialized = true;
- }
- {
- XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[0];
- 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);
- }
- {
- XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[1];
- 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);
- }
- {
- XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[2];
- 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);
- }
- }
- static void XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD_CustomAttributesCacheGenerator_XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD____ItemType_PropertyInfo(CustomAttributesCache* cache)
- {
- static bool s_Il2CppMethodInitialized;
- if (!s_Il2CppMethodInitialized)
- {
- il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C_0_0_0_var);
- s_Il2CppMethodInitialized = true;
- }
- {
- XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 * tmp = (XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94 *)cache->attributes[0];
- 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);
- }
- }
- static void XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD_CustomAttributesCacheGenerator_XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD____BaseItemType_PropertyInfo(CustomAttributesCache* cache)
- {
- {
- XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
- XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
- }
- }
- static void XmlSchemaSimpleTypeRestriction_tA312855944C42464DF7E0C6F02214331C853945C_CustomAttributesCacheGenerator_XmlSchemaSimpleTypeRestriction_tA312855944C42464DF7E0C6F02214331C853945C____BaseTypeName_PropertyInfo(CustomAttributesCache* cache)
- {
- {
- XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 * tmp = (XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 *)cache->attributes[0];
- XmlAttributeAttribute__ctor_m3C9FC780C480AB65FAA249FC66806584C8D80749(tmp, il2cpp_codegen_string_new_wrapper("\x62\x61\x73\x65"), NULL);
- }
- }
- static void XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____QualifiedName_PropertyInfo(CustomAttributesCache* cache)
- {
- {
- XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
- XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
- }
- }
- static void XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____BaseXmlSchemaType_PropertyInfo(CustomAttributesCache* cache)
- {
- {
- XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
- XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
- }
- }
- static void XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____Datatype_PropertyInfo(CustomAttributesCache* cache)
- {
- {
- XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
- XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
- }
- }
- static void XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____IsMixed_PropertyInfo(CustomAttributesCache* cache)
- {
- {
- XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
- XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
- }
- }
- static void XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____TypeCode_PropertyInfo(CustomAttributesCache* cache)
- {
- {
- XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
- XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
- }
- }
- static void XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____ValueConverter_PropertyInfo(CustomAttributesCache* cache)
- {
- {
- XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 * tmp = (XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6 *)cache->attributes[0];
- XmlIgnoreAttribute__ctor_m7AEADBFECEDFB68758E77C889675A03D4BDA5908(tmp, NULL);
- }
- }
- static void XmlSchemaValidationFlags_tF0C150CF8BCED7131D6163452E106FBC5B7BBBA8_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 * tmp = (FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 *)cache->attributes[0];
- FlagsAttribute__ctor_mE8DCBA1BE0E6B0424FEF5E5F249733CF6A0E1229(tmp, NULL);
- }
- }
- static void XsdDateTimeFlags_tA0CFF619A2C537BD8E65672DA641CF4B2405156C_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 * tmp = (FlagsAttribute_t511C558FACEF1CC64702A8FAB67CAF3CBA65DF36 *)cache->attributes[0];
- FlagsAttribute__ctor_mE8DCBA1BE0E6B0424FEF5E5F249733CF6A0E1229(tmp, NULL);
- }
- }
- static void XmlReaderSection_t7E5D39D2B2159A62B1B563E3777800AC6EF7C69E_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[0];
- EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
- }
- }
- static void StringConcat_t313CCAA6C94520A80805790FEC5864DFD57DAD36_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 * tmp = (EditorBrowsableAttribute_tE201891FE727EB3FB75B488A2BF6D4DF3CB80614 *)cache->attributes[0];
- EditorBrowsableAttribute__ctor_mC77290C5157BDA154F1D03BD1551223B07A851D4(tmp, 1LL, NULL);
- }
- }
- static void U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
- {
- {
- CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
- CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
- }
- }
- IL2CPP_EXTERN_C const CustomAttributesCacheGenerator g_System_Xml_AttributeGenerators[];
- const CustomAttributesCacheGenerator g_System_Xml_AttributeGenerators[85] =
- {
- Query_tA8096C7914789E59DF6C340BE3380CF2511F6A06_CustomAttributesCacheGenerator,
- XPathArrayIterator_t41CCD996703BA681E5D54A8504BA08455CE417DD_CustomAttributesCacheGenerator,
- AsyncHelper_t5BBA4E723AFA5229BD866D2ED5EFB1F2590C5EB2_CustomAttributesCacheGenerator,
- NamespaceHandling_t7974F9A117390EC627D6C12EB7219594674ADC80_CustomAttributesCacheGenerator,
- XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138_CustomAttributesCacheGenerator,
- XmlTextReader_t45FF43659BDA44EC96F8CEE164A3CA74548C39F5_CustomAttributesCacheGenerator,
- XmlAttributeCollection_tDC800F98FE32D4723967772453EB600D1C368AA3_CustomAttributesCacheGenerator,
- SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_CustomAttributesCacheGenerator,
- XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1_CustomAttributesCacheGenerator,
- XmlNodeList_t1DBBA2CC948CC6631BC33AA7405E11C8105E6EE9_CustomAttributesCacheGenerator,
- U3CU3Ec__DisplayClass4_0_t1CB18D171B35CF191BC6883D5C7E384F9F137C0B_CustomAttributesCacheGenerator,
- U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_CustomAttributesCacheGenerator,
- U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_CustomAttributesCacheGenerator,
- XPathNavigator_tBA592A54ACCBFC4D6E5A292A72E63435F86A6CA9_CustomAttributesCacheGenerator,
- XPathNodeIterator_t133D83D4FBC95646A6E85168B76EC873C7533FB8_CustomAttributesCacheGenerator,
- XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_CustomAttributesCacheGenerator,
- XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647_CustomAttributesCacheGenerator,
- XmlElementAttribute_t1D20EF830E8F66F43BBDCEB96611CD9233154A94_CustomAttributesCacheGenerator,
- XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E_CustomAttributesCacheGenerator,
- XmlIgnoreAttribute_t478DB7B508B6987B3CC531BABD12177E5CD7DDF6_CustomAttributesCacheGenerator,
- XmlSchemaProviderAttribute_t94BE15D9985EEC61A31C88069AE2723B209005DA_CustomAttributesCacheGenerator,
- BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438_CustomAttributesCacheGenerator,
- SymbolsDictionary_tC502F0D6AE462F83D106895089A819B184ADFBDF_CustomAttributesCacheGenerator,
- Positions_t577D66E21F674149C5A3E68851CE88B94C37248F_CustomAttributesCacheGenerator,
- RestrictionFlags_tE688E3FE50199CFC0DE7B02A59EA18DF59B8A025_CustomAttributesCacheGenerator,
- XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator,
- XmlSchemaObjectCollection_t2E22260F9979EB3890D8CB09473963FE616BF931_CustomAttributesCacheGenerator,
- Occurs_tE1D41715FC55ECA460AB8AE9C68E39DF0ED1747F_CustomAttributesCacheGenerator,
- XmlSchemaValidationFlags_tF0C150CF8BCED7131D6163452E106FBC5B7BBBA8_CustomAttributesCacheGenerator,
- XsdDateTimeFlags_tA0CFF619A2C537BD8E65672DA641CF4B2405156C_CustomAttributesCacheGenerator,
- XmlReaderSection_t7E5D39D2B2159A62B1B563E3777800AC6EF7C69E_CustomAttributesCacheGenerator,
- StringConcat_t313CCAA6C94520A80805790FEC5864DFD57DAD36_CustomAttributesCacheGenerator,
- U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_CustomAttributesCacheGenerator,
- ValidationType_t588D32514C11D985F976526F7E3C81ABD1D27EBA_CustomAttributesCacheGenerator_Auto,
- ValidationType_t588D32514C11D985F976526F7E3C81ABD1D27EBA_CustomAttributesCacheGenerator_XDR,
- XmlReaderSettings_tD1257418720567D67A7C49A7498914FE937F1520_CustomAttributesCacheGenerator_U3CIsXmlResolverSetU3Ek__BackingField,
- XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_CustomAttributesCacheGenerator_sourceUri,
- XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_CustomAttributesCacheGenerator_U3CMethodU3Ek__BackingField,
- XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_CustomAttributesCacheGenerator_None,
- XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_CustomAttributesCacheGenerator_Skip,
- XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_CustomAttributesCacheGenerator_Lax,
- XmlSchemaContentProcessing_t28E999866F49ED1037761C5FD7E866076606757C_CustomAttributesCacheGenerator_Strict,
- XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Empty,
- XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Substitution,
- XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Extension,
- XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Restriction,
- XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_List,
- XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_Union,
- XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_All,
- XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E_CustomAttributesCacheGenerator_None,
- XmlReaderSettings_tD1257418720567D67A7C49A7498914FE937F1520_CustomAttributesCacheGenerator_XmlReaderSettings_set_IsXmlResolverSet_m4374404167E732ADF4FF5D5699DA1A2763B4A048,
- XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_CustomAttributesCacheGenerator_XmlConvert_ToString_m4641C988539C8EB17C589761E674B9521EEA62E5,
- XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_CustomAttributesCacheGenerator_XmlConvert_ToString_m9823FE7E80D23F2111BD7D6861C59A79EF70E9CC,
- XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_CustomAttributesCacheGenerator_XmlConvert_ToString_mBF267D826A31C919FC0A510C8EABE5BDD690AFF8,
- XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_CustomAttributesCacheGenerator_XmlConvert_ToString_m886299CF6DD10FDD767223FAEA2740B3A2F48C40,
- XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D_CustomAttributesCacheGenerator_XmlDownloadManager_GetNonFileStreamAsync_m075FD73BF73B9C8E231E40AD4C956FE1F76709B1,
- U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_CustomAttributesCacheGenerator_U3CGetNonFileStreamAsyncU3Ed__5_SetStateMachine_m6269B8FD1CE46B7955D5D2F90AB7D5F2BE407777,
- XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1_CustomAttributesCacheGenerator_XmlUrlResolver_GetEntityAsync_m0D4B74C681DFBA67E92DF4AA341447F062CB256F,
- U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_CustomAttributesCacheGenerator_U3CGetEntityAsyncU3Ed__15_SetStateMachine_m9A31F8EDD492D50FFA4F9FCC8F0FBAD9DD1D3E93,
- XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E_CustomAttributesCacheGenerator_XmlTypeConvertorAttribute_set_Method_mC01F1A24104F47A6DA6F8CADDCE9CA57D8552283,
- SR_t18DDAC0A0AC9B7F52E81CFEC14051580FFAAB957_CustomAttributesCacheGenerator_SR_GetString_m846F567D256240B005CADDBE65D4793920B6474E____args1,
- SR_t18DDAC0A0AC9B7F52E81CFEC14051580FFAAB957_CustomAttributesCacheGenerator_SR_GetString_m6B94153BBBDF13B55321A1E0290B6E82FC8AD248____args2,
- Res_t8707C30091CC714404BA967631E1F74B8ACBB1E4_CustomAttributesCacheGenerator_Res_GetString_m1D06B81901B03CA849045926741403907612BB4B____args1,
- XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_CustomAttributesCacheGenerator_XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C____ProcessContents_PropertyInfo,
- XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C_CustomAttributesCacheGenerator_XmlSchemaAny_t30CEED9ED80E3CB00EA10233A22CA552F49D7A1C____NamespaceList_PropertyInfo,
- XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80_CustomAttributesCacheGenerator_XmlSchemaAnyAttribute_tD2ED36B036CE620025BC00B0618D7B746A3A4A80____ProcessContents_PropertyInfo,
- XmlSchemaChoice_t8FC6F8DB238E8800F350E4EF88CCECD64B5D3BF0_CustomAttributesCacheGenerator_XmlSchemaChoice_t8FC6F8DB238E8800F350E4EF88CCECD64B5D3BF0____Items_PropertyInfo,
- XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062_CustomAttributesCacheGenerator_XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062____AnyType_PropertyInfo,
- XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062_CustomAttributesCacheGenerator_XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062____IsMixed_PropertyInfo,
- XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062_CustomAttributesCacheGenerator_XmlSchemaComplexType_tE6F9E57AB3C89D88DAB166F1F0A3EC2276C2F062____ContentTypeParticle_PropertyInfo,
- XmlSchemaGroupBase_tBB7F26134C0D82EA71D1773C84856397919DD5DA_CustomAttributesCacheGenerator_XmlSchemaGroupBase_tBB7F26134C0D82EA71D1773C84856397919DD5DA____Items_PropertyInfo,
- XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789_CustomAttributesCacheGenerator_XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789____MinOccurs_PropertyInfo,
- XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789_CustomAttributesCacheGenerator_XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789____MaxOccurs_PropertyInfo,
- XmlSchemaSequence_t6C94DB85E74779BE018C34D94204C037416E9C03_CustomAttributesCacheGenerator_XmlSchemaSequence_t6C94DB85E74779BE018C34D94204C037416E9C03____Items_PropertyInfo,
- XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C_CustomAttributesCacheGenerator_XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C____Content_PropertyInfo,
- XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD_CustomAttributesCacheGenerator_XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD____ItemType_PropertyInfo,
- XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD_CustomAttributesCacheGenerator_XmlSchemaSimpleTypeList_t780D9B725F8CA7CBC555BD6BDDB5E3E02E67DCAD____BaseItemType_PropertyInfo,
- XmlSchemaSimpleTypeRestriction_tA312855944C42464DF7E0C6F02214331C853945C_CustomAttributesCacheGenerator_XmlSchemaSimpleTypeRestriction_tA312855944C42464DF7E0C6F02214331C853945C____BaseTypeName_PropertyInfo,
- XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____QualifiedName_PropertyInfo,
- XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____BaseXmlSchemaType_PropertyInfo,
- XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____Datatype_PropertyInfo,
- XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____IsMixed_PropertyInfo,
- XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____TypeCode_PropertyInfo,
- XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA_CustomAttributesCacheGenerator_XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA____ValueConverter_PropertyInfo,
- System_Xml_CustomAttributesCacheGenerator,
- };
- IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, bool ___value0, const RuntimeMethod* method)
- {
- {
- bool L_0 = ___value0;
- __this->set_m_wrapNonExceptionThrows_0(L_0);
- return;
- }
- }
- IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InternalsVisibleToAttribute_set_AllInternalsVisible_m8A2E202556185ADBB01D1AF437D1DF23BED94B2B_inline (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * __this, bool ___value0, const RuntimeMethod* method)
- {
- {
- bool L_0 = ___value0;
- __this->set__allInternalsVisible_1(L_0);
- return;
- }
- }
- IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AttributeUsageAttribute_set_AllowMultiple_mF412CDAFFE16D056721EF81A1EC04ACE63612055_inline (AttributeUsageAttribute_tBB0BAAA82036E6FCDD80A688BBD039F6FFD8EA1C * __this, bool ___value0, const RuntimeMethod* method)
- {
- {
- bool L_0 = ___value0;
- __this->set_m_allowMultiple_1(L_0);
- return;
- }
- }
|