#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #include #include template struct VirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; struct VirtActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template struct VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct VirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct VirtActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct VirtFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct VirtActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct VirtActionInvoker7 { typedef void (*Action)(void*, T1, T2, T3, T4, T5, T6, T7, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, invokeData.method); } }; template struct GenericVirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct GenericVirtFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct GenericVirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct GenericVirtActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct InterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct InterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct InterfaceFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct InterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct InterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct GenericInterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct GenericInterfaceFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct GenericInterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct GenericInterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; // System.Action`1 struct Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC; // System.Comparison`1 struct Comparison_1_t44AF266C7D621EBE70F2BF21FFA6B7C2C260453A; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t7E4F75E23B8A710084DDD8B7D9D901F39C24B184; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162; // System.Func`1 struct Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B; // System.Func`2,System.Threading.Tasks.Task`1> struct Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD; // System.Func`2,System.Threading.Tasks.Task`1> struct Func_2_tAED7D799F8DF45785D811BDBACC7E9480C0B901B; // System.Func`2,System.Threading.Tasks.Task`1> struct Func_2_t2C94CFD55C2E528DE57128CD2A37F45F9E914E5C; // System.Func`2 struct Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED; // System.Func`2 struct Func_2_tAC7EF348160054EFB6A83AC44C3A19A395DA47E2; // System.Func`2 struct Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C; // System.Func`2 struct Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436; // System.Func`2 struct Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82; // System.Func`2 struct Func_2_t1536C4C0AD9482796F7C72574A4B3DE8607E4E20; // System.Func`3 struct Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020; // System.Func`3 struct Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27; // System.Collections.Generic.IComparer`1 struct IComparer_1_t20C0141C3FEEDAA44BFE8521FEEDDF47289CB40B; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t1A386BEF1855064FD5CC71F340A68881A52B4932; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_tE6A65C5E45E33FD7D9849FD0914DE3AD32B68050; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t61F8738ED346768CC112B2E27863BF9F73C76D90; // System.Collections.Generic.List`1> struct List_1_t960AA958F641EF26613957B203B645E693F9430D; // System.Predicate`1 struct Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB; // System.Predicate`1 struct Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD; // System.Collections.ObjectModel.ReadOnlyCollection`1 struct ReadOnlyCollection_1_t52C38CE86D68A2D1C8C94E240170756F47476FB0; // System.Threading.Tasks.TaskFactory`1 struct TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55; // System.Threading.Tasks.TaskFactory`1 struct TaskFactory_1_t4F381CB16ECB0701C89F772EAF8F5DCD3A8E5F8B; // System.Threading.Tasks.TaskFactory`1 struct TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406; // System.Threading.Tasks.Task`1> struct Task_1_tDC99D8BCBDBB4A01765BBF5823E5764CEC20D642; // System.Threading.Tasks.Task`1 struct Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725; // System.Threading.Tasks.Task`1 struct Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17; // System.Threading.Tasks.Task`1 struct Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602; // System.Threading.Tasks.Task`1 struct Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t17EEB7B2EDD3CB5222C660D7E739F803986BF025; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tABFC31237D6642B5D4C1DBA234CA37EE851EB0AE; // System.Boolean[] struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // System.Xml.Schema.DatatypeImplementation[] struct DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; // System.UInt32[] struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF; // System.Xml.Schema.XmlSchemaSimpleType[] struct XmlSchemaSimpleTypeU5BU5D_t862CBDAFFEF794FFBD20DDF16B3DC2803B848F21; // System.Xml.Schema.XmlTypeCode[] struct XmlTypeCodeU5BU5D_t4B53622F8096A3BE4E235382465B2E0FF7B85D6B; // System.Xml.Serialization.XmlTypeMapMemberAttribute[] struct XmlTypeMapMemberAttributeU5BU5D_tBD565E2F6F54CCD19C901BAFB18161AF4E540D35; // System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap[] struct SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA; // System.Collections.Hashtable/bucket[] struct bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190; // System.TimeZoneInfo/AdjustmentRule[] struct AdjustmentRuleU5BU5D_t13A903FE644194C2CAF6698B6890B32A226FD19F; // System.Xml.XmlNamespaceManager/NamespaceDeclaration[] struct NamespaceDeclarationU5BU5D_t4D11B362C1D22E79294A2F9CB4710B02ED6D03F5; // System.Xml.XmlTextReaderImpl/NodeData[] struct NodeDataU5BU5D_tF52E3FD243752A83F37BFD931C7C13C513A1CAB0; // System.Xml.XmlTextReaderImpl/ParsingState[] struct ParsingStateU5BU5D_t76C574A7045A0E6E9113EF2F2E2B1A863D91376D; // System.Xml.XmlTextWriter/Namespace[] struct NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6; // System.Xml.XmlTextWriter/State[] struct StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A; // System.Xml.XmlTextWriter/TagInfo[] struct TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637; // System.Action struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8; // System.Collections.ArrayList struct ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA; // System.Xml.Base64Encoder struct Base64Encoder_tF36936300CC9B84076C8F16EE4AF8074ACA40CE9; // System.Net.BindIPEndPoint struct BindIPEndPoint_t05F17E8ACBB2C324EF8EA367FB2899690F2E0D32; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30; // System.Xml.Schema.BitSet struct BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438; // System.Globalization.Calendar struct Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A; // System.Threading.CancellationTokenSource struct CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3; // System.Xml.Serialization.ClassMap struct ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB; // System.Globalization.CodePageDataItem struct CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E; // System.Globalization.CompareInfo struct CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9; // System.Threading.ContextCallback struct ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B; // System.Net.CookieContainer struct CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2; // System.Globalization.CultureData struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529; // System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98; // System.Xml.Schema.DatatypeImplementation struct DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90; // System.Text.Decoder struct Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370; // System.Text.DecoderFallback struct DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D; // System.Text.DecoderFallbackBuffer struct DecoderFallbackBuffer_t236B3D4172A9BAD1C2150ED78958227F8F20C94B; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288; // System.Xml.DomNameTable struct DomNameTable_tE88EEF20D313A83C002E18FFF7688CC74A2D1CAB; // System.Xml.EmptyEnumerator struct EmptyEnumerator_t138901A02D453E19CDE87DFD96981F8A98928E13; // System.Text.Encoder struct Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A; // System.Text.EncoderFallback struct EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4; // System.Text.Encoding struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827; // System.Exception struct Exception_t; // System.Xml.Schema.FacetsChecker struct FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8; // System.Reflection.FieldInfo struct FieldInfo_t; // System.IO.FileStream struct FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26; // System.FormatException struct FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759; // System.Collections.Hashtable struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC; // System.Net.HttpContinueDelegate struct HttpContinueDelegate_t84ADA70221E0AC5A340AD9D012F81C1683FC240F; // System.Net.HttpWebRequest struct HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A; // System.Net.HttpWebResponse struct HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB; // System.IAsyncResult struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370; // System.Runtime.CompilerServices.IAsyncStateMachine struct IAsyncStateMachine_tAE063F84A60E1058FCA4E3EA9F555D3462641F7D; // System.Collections.ICollection struct ICollection_tC1E1DED86C0A66845675392606B302452210D5DA; // System.Net.ICredentials struct ICredentials_t7F4F7C8E1E36461DC5388554FF404E2203D30C48; // System.Collections.IDictionary struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A; // System.Xml.IDtdDefaultAttributeInfo struct IDtdDefaultAttributeInfo_t8DAB8271F3930199379DF41791AE869365320C92; // System.Xml.IDtdEntityInfo struct IDtdEntityInfo_t6CD9881A9EC86BF67CCFD10F64F69D18316D6AFC; // System.Xml.IDtdInfo struct IDtdInfo_tE42B4037BF3433A4F16173CE199CFF87E32A07C6; // System.Collections.IEnumerator struct IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105; // System.Collections.IEqualityComparer struct IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68; // System.IFormatProvider struct IFormatProvider_tF2AECC4B14F41D36718920D67F930CED940412DF; // System.Net.IPHostEntry struct IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA; // System.Xml.IValidationEventHandling struct IValidationEventHandling_t574D5D59A6C1707DB494A9F8AFB6A3DB3F0B64D1; // System.Net.IWebProxy struct IWebProxy_t27B6C29F0B62B717A9778AD251E31C21A91C32B3; // System.Xml.IXmlNamespaceResolver struct IXmlNamespaceResolver_tE715F6572D858174C1BDCF0076B3C6415B226CD0; // System.Xml.Schema.IXmlSchemaInfo struct IXmlSchemaInfo_tC697CEDEA24AC6EF87E998BF72B96EDBD84DB229; // System.Xml.IncrementalReadDecoder struct IncrementalReadDecoder_t89737691013C036E9386839AE30A43C9721B3984; // System.InvalidCastException struct InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB; // System.Xml.Serialization.ListMap struct ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948; // System.Reflection.MemberFilter struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81; // System.Reflection.MemberInfo struct MemberInfo_t; // System.Reflection.MethodBase struct MethodBase_t; // System.Reflection.MethodInfo struct MethodInfo_t; // Mono.Security.Interface.MonoTlsProvider struct MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7; // Mono.Security.Interface.MonoTlsSettings struct MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D; // System.Runtime.Serialization.ObjectIDGenerator struct ObjectIDGenerator_t267F4EB12AC82678B0783ABA92CD54A1503E1259; // System.Xml.Serialization.ObjectMap struct ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C; // System.Xml.OpenedHost struct OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D; // System.OverflowException struct OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9; // System.Collections.Queue struct Queue_t66723C58C7422102C36F8570BE048BD0CC489E52; // Microsoft.Win32.RegistryKey struct RegistryKey_t1EF11DB6AC49AC065AF744487033109254215268; // System.Net.Cache.RequestCacheBinding struct RequestCacheBinding_tE74959972BA5BEBD27642CC91FD5E4A0A6BFA447; // System.Net.Cache.RequestCachePolicy struct RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED; // System.Net.Cache.RequestCacheProtocol struct RequestCacheProtocol_tD3294F615CA528D71DE764785CCE49EBBAD3E2A7; // System.Xml.Schema.RestrictionFacets struct RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA; // Microsoft.Win32.SafeHandles.SafeFileHandle struct SafeFileHandle_tC77A9860A03C31DC46AD2C08EC10EACDC3B7A662; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // System.Xml.Schema.SchemaElementDecl struct SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B; // System.Xml.Schema.SchemaInfo struct SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5; // System.Xml.SecureStringHasher struct SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385; // System.Xml.Schema.SequenceNode struct SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD; // System.Net.ServerCertValidationCallback struct ServerCertValidationCallback_t885D5EF5D7240832CCAD6FA7D59D4ED2DEAAB1FA; // System.Net.ServicePoint struct ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0; // System.Net.ServicePointScheduler struct ServicePointScheduler_t06FFEEFEFBD2B726733E6E27E2529742FA4DB1A7; // System.Threading.Tasks.StackGuard struct StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D; // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB; // System.IO.StreamWriter struct StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6; // System.String struct String_t; // System.Text.StringBuilder struct StringBuilder_t; // System.Xml.Schema.SyntaxTreeNode struct SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389; // System.Threading.Tasks.Task struct Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60; // System.Threading.Tasks.TaskFactory struct TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B; // System.Threading.Tasks.TaskScheduler struct TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D; // System.Globalization.TextInfo struct TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C; // System.IO.TextReader struct TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F; // System.IO.TextWriter struct TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643; // System.TimeZoneInfo struct TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074; // System.Type struct Type_t; // System.Xml.Serialization.TypeData struct TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2; // System.Uri struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612; // System.UriParser struct UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A; // System.Version struct Version_tBDAEDED25425A1D09910468B8BD1759115646E3C; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; // System.Net.WebCompletionSource struct WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E; // System.Net.WebHeaderCollection struct WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4; // System.Net.WebOperation struct WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00; // System.Net.WebRequest struct WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E; // System.Net.WebRequestStream struct WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887; // System.Net.WebResponse struct WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0; // System.Security.Cryptography.X509Certificates.X509CertificateCollection struct X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B; // System.Xml.Serialization.XmlAnyAttributeAttribute struct XmlAnyAttributeAttribute_t425ACE58EEBC7D08A1B23CD06B03CA75B8D5B094; // System.Xml.Serialization.XmlAnyElementAttributes struct XmlAnyElementAttributes_t0764A8C936570CDDE90E5664A4DF5EC3F10DA79E; // System.Xml.Serialization.XmlArrayAttribute struct XmlArrayAttribute_t8016E5E39EDDEC98A198E56BBAA467772E8AE472; // System.Xml.Serialization.XmlArrayItemAttributes struct XmlArrayItemAttributes_t31129BD0EFD28EFBF3076C3CF12300AED71A31CB; // System.Xml.Schema.XmlAtomicValue struct XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C; // System.Xml.XmlAttribute struct XmlAttribute_t3F58A4BDFB486D0E610E4003E54A89BCCB65AB6D; // System.Xml.Serialization.XmlAttributeAttribute struct XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647; // System.Xml.Serialization.XmlAttributes struct XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46; // System.Xml.Schema.XmlBaseConverter struct XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55; // System.Xml.XmlCachedStream struct XmlCachedStream_t16365C843A7DEB2CD28A1C6550229581A2913D83; // System.Xml.XmlCharacterData struct XmlCharacterData_tDE362DEBB89559C552E40DB1346331A259C9205B; // System.Xml.Serialization.XmlChoiceIdentifierAttribute struct XmlChoiceIdentifierAttribute_t631E9D90F1B31767C61EEDF899EC5233B57BB067; // System.Xml.XmlDocument struct XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F; // System.Xml.XmlDownloadManager struct XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D; // System.Xml.Serialization.XmlElementAttributes struct XmlElementAttributes_t58E8742350D62E45ABDA29BF94357D8152490402; // System.Xml.Serialization.XmlEnumAttribute struct XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E; // System.Xml.XmlException struct XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918; // System.Xml.XmlImplementation struct XmlImplementation_tE66EA5FEAE495F36B03F697C51E4815D4B5D1D59; // System.Xml.XmlLinkedNode struct XmlLinkedNode_tAF992FE43A99E1889622121C0D712C80586580F0; // System.Xml.Schema.XmlListConverter struct XmlListConverter_t58F692567B1B34BF5171B647F1BE66EC017D4F4D; // System.Xml.Serialization.XmlMapping struct XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9; // System.Xml.XmlName struct XmlName_t641FE51F9AE9A7BF9B333D2FB61E2867328F5A63; // System.Xml.XmlNameTable struct XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280; // System.Xml.XmlNamedNodeMap struct XmlNamedNodeMap_t7554E5F015FED975E1E8B075F57EBA65773CF771; // System.Xml.XmlNamespaceManager struct XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465; // System.Xml.XmlNode struct XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1; // System.Xml.XmlNodeChangedEventHandler struct XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9; // System.Xml.XmlParserContext struct XmlParserContext_tD8B22CA52F41246D7FB94A21A2A5ED605DD4CD28; // System.Xml.XmlQualifiedName struct XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905; // System.Xml.XmlReader struct XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138; // System.Xml.Serialization.XmlReflectionMember struct XmlReflectionMember_t2DB532740F4159245F707469F68AEA9BFBDA55CD; // System.Xml.XmlRegisteredNonCachedStream struct XmlRegisteredNonCachedStream_t34366F50733A8D122E74F0C51EAD411FF827BCC1; // System.Xml.XmlResolver struct XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A; // System.Xml.Serialization.XmlRootAttribute struct XmlRootAttribute_t509A188575B2B9912E6DBF82CBB9A17715BECB96; // System.Xml.Schema.XmlSchemaDatatype struct XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38; // System.Xml.Schema.XmlSchemaParticle struct XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789; // System.Xml.Schema.XmlSchemaPatternFacet struct XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193; // System.Xml.Schema.XmlSchemaSet struct XmlSchemaSet_t7CE09F2ECFA8C5EB28DF4724C87EC50B539699E0; // System.Xml.Schema.XmlSchemaSimpleType struct XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C; // System.Xml.Schema.XmlSchemaSimpleTypeContent struct XmlSchemaSimpleTypeContent_t38B7E1118EA6B9348F35D47139C9BE910724DB65; // System.Xml.Schema.XmlSchemaType struct XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA; // System.Xml.Serialization.XmlSerializationCollectionFixupCallback struct XmlSerializationCollectionFixupCallback_t88A34696BDDF37FD897F180858064DF7EF750B1A; // System.Xml.Serialization.XmlSerializationFixupCallback struct XmlSerializationFixupCallback_t20E0CC9B652B1BC41D75F4793FD87671D166E549; // System.Xml.Serialization.XmlSerializationReadCallback struct XmlSerializationReadCallback_tC7FC61DC6AF3C45A91D27D7642EE41A61E6D3F9D; // System.Xml.Serialization.XmlSerializationReaderInterpreter struct XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26; // System.Xml.Serialization.XmlSerializationWriteCallback struct XmlSerializationWriteCallback_t913A191AF2181BDB556C809CE9A95D1B5EBF8454; // System.Xml.Serialization.XmlSerializationWriter struct XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F; // System.Xml.Serialization.XmlSerializationWriterInterpreter struct XmlSerializationWriterInterpreter_t5421FAFC8BE8D6DA736DF8A6DC1ADA79770CDB54; // System.Xml.Serialization.XmlSerializer struct XmlSerializer_t2960FF2C2C062704541774440D09CA3DAFFCB01B; // System.Xml.Serialization.XmlSerializerImplementation struct XmlSerializerImplementation_t7498815CE092A9B67BE127DCA62F27ABECA6B230; // System.Xml.Serialization.XmlTextAttribute struct XmlTextAttribute_t913812A9EC84D070AA3006B1773A6ABC303A5C4E; // System.Xml.XmlTextEncoder struct XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E; // System.Xml.XmlTextReaderImpl struct XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4; // System.Xml.XmlTextWriter struct XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2; // System.Xml.XmlTextWriterBase64Encoder struct XmlTextWriterBase64Encoder_t6C566B592DFF5C0E5108670EB19BA06D35F0213B; // System.Xml.Serialization.XmlTypeAttribute struct XmlTypeAttribute_t8CF0FDD3A7F093717D676F94868FE9ABFB689800; // System.Xml.Serialization.XmlTypeConvertorAttribute struct XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E; // System.Xml.Serialization.XmlTypeMapElementInfo struct XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A; // System.Xml.Serialization.XmlTypeMapElementInfoList struct XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A; // System.Xml.Serialization.XmlTypeMapMember struct XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC; // System.Xml.Serialization.XmlTypeMapMemberAnyAttribute struct XmlTypeMapMemberAnyAttribute_tE046B6F71F0626D9CF844E80D385126DD952CDEE; // System.Xml.Serialization.XmlTypeMapMemberAnyElement struct XmlTypeMapMemberAnyElement_t8A2AB4A984DDACBEE5837B4ECCCE30B431B832D0; // System.Xml.Serialization.XmlTypeMapMemberAttribute struct XmlTypeMapMemberAttribute_t492CF61ABC22EAEB88A63F604D2C40F65C7AFB1E; // System.Xml.Serialization.XmlTypeMapMemberElement struct XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747; // System.Xml.Serialization.XmlTypeMapMemberExpandable struct XmlTypeMapMemberExpandable_t4AB3E2327627775BEDBA72B187C19F446C6DF2E7; // System.Xml.Serialization.XmlTypeMapMemberFlatList struct XmlTypeMapMemberFlatList_t5FF2F887FFCAEF62B495A4A8EF43F62C8BDEEA73; // System.Xml.Serialization.XmlTypeMapMemberList struct XmlTypeMapMemberList_t7EB7E9134FBE0B056939C2876C2C3ECFEFC28C82; // System.Xml.Serialization.XmlTypeMapMemberNamespaces struct XmlTypeMapMemberNamespaces_tAF134E0E65D2095D56C6BDDE1E5A651A7594A38D; // System.Xml.Serialization.XmlTypeMapping struct XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581; // System.Xml.XmlUnspecifiedAttribute struct XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641; // System.Xml.Schema.XmlUntypedConverter struct XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF; // System.Xml.XmlUrlResolver struct XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1; // System.Xml.Schema.XmlValueConverter struct XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763; // System.Xml.XmlWhitespace struct XmlWhitespace_t7BB2E46A48255FAEF7A758CA9EE2191A4891D56C; // System.Xml.XmlWriter struct XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D; // System.Xml.Schema.XsdSimpleValue struct XsdSimpleValue_t3A8F1EE8DEDEB6CC4EB489C911104E114501DAAB; // System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap struct SchemaDatatypeMap_t89F5A171396C2FF9555DBB013CDCF009EA8F202E; // System.Xml.DtdParser/ParseElementOnlyContent_LocalFrame struct ParseElementOnlyContent_LocalFrame_t7039F5048E02E9CBFFC9AE73C56E4163B3B3638D; // System.Xml.DtdParser/UndeclaredNotation struct UndeclaredNotation_t1F530E59945B9747A96785CCFAB78E09D826008B; // System.Xml.Schema.DtdValidator/NamespaceManager struct NamespaceManager_t090926196C62C096BAD453E54CDED79D8E71720B; // System.Xml.Serialization.EnumMap/EnumMapMember struct EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78; // System.Xml.NameTable/Entry struct Entry_tE04CA3878430F262AD43F80C045C96A425BCE239; // System.Xml.SecureStringHasher/HashCodeOfStringDelegate struct HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974; // System.Threading.Tasks.Task/ContingentProperties struct ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0; // System.Net.TimerThread/Queue struct Queue_tBA613BE3643BDEB5F58ACBD9BD6499402CA178BB; // System.Uri/UriInfo struct UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45; // System.Net.WebRequest/DesignerWebRequestCreate struct DesignerWebRequestCreate_tC9CEDD13174469ABB2A24A158F14669B05BA262A; // System.Xml.Schema.XmlAtomicValue/NamespacePrefixForQName struct NamespacePrefixForQName_t38692CB52444997F00035FBB30BCEC358855A1B2; // System.Xml.XmlDownloadManager/<>c__DisplayClass4_0 struct U3CU3Ec__DisplayClass4_0_t1CB18D171B35CF191BC6883D5C7E384F9F137C0B; // System.Xml.XmlQualifiedName/HashCodeOfStringDelegate struct HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E; // System.Xml.Serialization.XmlReflectionImporter/<>c struct U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE; // System.Xml.Schema.XmlSchemaParticle/EmptyParticle struct EmptyParticle_t56BD41298CE124A8F2F4F4426105E1663120F7BF; // System.Xml.Serialization.XmlSerializationReader/CollectionFixup struct CollectionFixup_t89B63EF27FF0C97725BA984F06E6C18D67FC482E; // System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup struct CollectionItemFixup_t70D993957A8584ED873E7BD74DC98ECE1101DB2D; // System.Xml.Serialization.XmlSerializationReader/Fixup struct Fixup_tC29AF2849DF70A12E99CE1ECE316CB1687D4FC5B; // System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo struct WriteCallbackInfo_tF12675262DE88D8583DAD677E61DA8D1E81E4C0D; // System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo struct FixupCallbackInfo_tB2AF64AEEA68C8D0EA425052B40E969983CB92D3; // System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo struct ReaderCallbackInfo_t6D18AED803E1FB284AB8B388FD470CB3BEDD3DB4; // System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo struct WriteCallbackInfo_t3F32E130FEEAC3992BCB0CCC059369D4A09B9EEF; // System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo struct CallbackInfo_t142D92C1F8EA1C07621FB4A5E1383F836187E53A; // System.Xml.Serialization.XmlSerializer/SerializerData struct SerializerData_tE81861A5E031D40D9732A8CF036A091D10F3478D; // System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer struct DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC; // System.Xml.XmlTextReaderImpl/DtdParserProxy struct DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557; // System.Xml.XmlTextReaderImpl/LaterInitParam struct LaterInitParam_t6670C77CB75356E7E47BBE3177DB78D355B0EFBF; // System.Xml.XmlTextReaderImpl/NoNamespaceManager struct NoNamespaceManager_t9CD68D8449B828A860ED290316BEAF94CCB165E2; // System.Xml.XmlTextReaderImpl/NodeData struct NodeData_tD504C5A621E7DD546954D87282438662327280EA; // System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate struct OnDefaultAttributeUseDelegate_t3E995824DB2F605D21E74880C851C4C6BB9A1E88; // System.Xml.XmlTextReaderImpl/XmlContext struct XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D; // System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator struct SingleObjectEnumerator_t00B492D3B841924569E3EB466D5675163D6EF62E; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Bits_t74232172D88399D44E277C1367618DE2B73FF95E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DurationType_t2686B055AE0909D5E46CA3ED100ADB6919FB95B1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FieldInfo_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_tAC7EF348160054EFB6A83AC44C3A19A395DA47E2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdAttributeInfo_t5B62F2A60E372238F7530B20A85A60723B7AACE9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdDefaultAttributeInfo_t8DAB8271F3930199379DF41791AE869365320C92_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Il2CppComObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NodeData_tD504C5A621E7DD546954D87282438662327280EA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PropertyInfo_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SingleObjectEnumerator_t00B492D3B841924569E3EB466D5675163D6EF62E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlCachedStream_t16365C843A7DEB2CD28A1C6550229581A2913D83_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlRegisteredNonCachedStream_t34366F50733A8D122E74F0C51EAD411FF827BCC1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeCodeU5BU5D_t4B53622F8096A3BE4E235382465B2E0FF7B85D6B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XsdDateTimeFlags_tA0CFF619A2C537BD8E65672DA641CF4B2405156C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____6A0D50D692745A6663128CD315B71079584F3E59_1_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____7A32E1A19C182315E4263A65A72066492550D8CD_2_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____9E31F24F64765FCAA589F589324D17C9FCF6A06D_3_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____B368804F0C6DAB083B253A6B106D0783D5C32E90_4_FieldInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral06F74C6DAF114664BF1BD452596A0DBDCCED259A; IL2CPP_EXTERN_C String_t* _stringLiteral0A068BB3E9EA2EA72CF05B963841C49DBA8EEFF5; IL2CPP_EXTERN_C String_t* _stringLiteral0EE5C75C762D2925310D5C8C6DE4A72136C79CC4; IL2CPP_EXTERN_C String_t* _stringLiteral0FD08B3C99047786420F2D9A7AC37D5DC351C9C8; IL2CPP_EXTERN_C String_t* _stringLiteral111B078632ED414E9392C91DEE241B11C9EE8544; IL2CPP_EXTERN_C String_t* _stringLiteral11AC5E2BD66016383281878F99D761B6B9AB5F11; IL2CPP_EXTERN_C String_t* _stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6; IL2CPP_EXTERN_C String_t* _stringLiteral18088F3052A13DFCCA929557EFBEC73F51E56A7D; IL2CPP_EXTERN_C String_t* _stringLiteral18FF4EE509547E9F427ED4CBAD56460397F93F60; IL2CPP_EXTERN_C String_t* _stringLiteral193D7E74E7B91DC8A81DF6A1542CDA8A06B2D2C1; IL2CPP_EXTERN_C String_t* _stringLiteral197DB4D12C3F8F844439AC8086D04A7E9906FD24; IL2CPP_EXTERN_C String_t* _stringLiteral198AA065BF0F912BD6F5F93869BD5C361671F98B; IL2CPP_EXTERN_C String_t* _stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29; IL2CPP_EXTERN_C String_t* _stringLiteral1E1DB32AFA986C58B9ACC9C146BF83E67C0DCE66; IL2CPP_EXTERN_C String_t* _stringLiteral1F164EE4DE39AD90666ACDB4EA0CAABA7853CFCF; IL2CPP_EXTERN_C String_t* _stringLiteral2198F1C92174A1B44CB01773603D23F6671D3329; IL2CPP_EXTERN_C String_t* _stringLiteral2343901946DDD83EFBB8B93C33F01CBD394063B2; IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745; IL2CPP_EXTERN_C String_t* _stringLiteral23A6BF321FC205420788A7F2E1A1334F6C712C89; IL2CPP_EXTERN_C String_t* _stringLiteral23E65142459FB1BF5009AD8736318547A5DFE850; IL2CPP_EXTERN_C String_t* _stringLiteral299A91A94BC12579A25B9F1508F87ACC3282548C; IL2CPP_EXTERN_C String_t* _stringLiteral2A5DB3F00E0A45A734A36392B86940BEE1159FC8; IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1; IL2CPP_EXTERN_C String_t* _stringLiteral32189949CB1CA4A6EBB1A643EBE2DB69713D5407; IL2CPP_EXTERN_C String_t* _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917; IL2CPP_EXTERN_C String_t* _stringLiteral356F18017512A760F46C8C6E41C462F76716509F; IL2CPP_EXTERN_C String_t* _stringLiteral36C331EB963AAABADAA628EA959A95F64ED7976C; IL2CPP_EXTERN_C String_t* _stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0; IL2CPP_EXTERN_C String_t* _stringLiteral3D9E33C04AB4A0A0E8E88B74BB9D5F9003E15C78; IL2CPP_EXTERN_C String_t* _stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F; IL2CPP_EXTERN_C String_t* _stringLiteral41477B187466178A05A136C12F806B3EDCAB6349; IL2CPP_EXTERN_C String_t* _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE; IL2CPP_EXTERN_C String_t* _stringLiteral45B9464D208C0A900770E5F7A95E5FE067CD4CCC; IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8; IL2CPP_EXTERN_C String_t* _stringLiteral4B4906CA939816C30A7D9C9A911CF6A9F506CCE3; IL2CPP_EXTERN_C String_t* _stringLiteral4F463628A5B55C40369849BC669644FDA7E2FD4E; IL2CPP_EXTERN_C String_t* _stringLiteral5296173AB8D4E282E989F7B0B7B7C9A3ACF26E18; IL2CPP_EXTERN_C String_t* _stringLiteral56EF1F2751B48DAA3EC7F762F420920B8E40757A; IL2CPP_EXTERN_C String_t* _stringLiteral56F31E8137B998C532779DA5D2ACDD6E3B715C1E; IL2CPP_EXTERN_C String_t* _stringLiteral57E00753C198BBF933B5B117333FD89AF5A3E48B; IL2CPP_EXTERN_C String_t* _stringLiteral58F2B4A0A3F5D63532995796ECF46099320B370D; IL2CPP_EXTERN_C String_t* _stringLiteral5C7DA3CBD254CB3BB9FCC98E58CF1A56E605861E; IL2CPP_EXTERN_C String_t* _stringLiteral5E5E0B42C7CA8BCA40E77FC8AC4FC4B3C6D556A0; IL2CPP_EXTERN_C String_t* _stringLiteral5F79376E49FC345D1F74769B7D1E538AE10FAE5C; IL2CPP_EXTERN_C String_t* _stringLiteral651F3DD8CA1557E5BD9B2873C319D3BC64D3128C; IL2CPP_EXTERN_C String_t* _stringLiteral67171AD8B6817F7CF25B89C98234BCDA36D476FC; IL2CPP_EXTERN_C String_t* _stringLiteral68D5513A81FE3BA8EC49159C52E6505DA8BEA242; IL2CPP_EXTERN_C String_t* _stringLiteral6912992FC50D2764B34BA8408AECF2DF5DB8080F; IL2CPP_EXTERN_C String_t* _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA; IL2CPP_EXTERN_C String_t* _stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB; IL2CPP_EXTERN_C String_t* _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044; IL2CPP_EXTERN_C String_t* _stringLiteral7A846A225A3909AB39CFF23BE13DACF54C540FEC; IL2CPP_EXTERN_C String_t* _stringLiteral7BBD8C0287448D34297B233D6604618390BA9C38; IL2CPP_EXTERN_C String_t* _stringLiteral7BE89227A0BBC17012796DD27BB68B0D5FB2D35E; IL2CPP_EXTERN_C String_t* _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49; IL2CPP_EXTERN_C String_t* _stringLiteral7CCE57C5D7E1EEE86D308C81EAB8B71D0964327F; IL2CPP_EXTERN_C String_t* _stringLiteral801E316126435DC3E90554FCF745B368C9D874FC; IL2CPP_EXTERN_C String_t* _stringLiteral80320AA84C189C1C7B90FE923851A42C57CE615C; IL2CPP_EXTERN_C String_t* _stringLiteral8243A16D425F93AF62CAAB2BFAE01A2D6246A5FE; IL2CPP_EXTERN_C String_t* _stringLiteral8243BA18D267E0E612210F4920079D9700A5DEEF; IL2CPP_EXTERN_C String_t* _stringLiteral872479F10B4968F255B608A3698CA1A7EE09888B; IL2CPP_EXTERN_C String_t* _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D; IL2CPP_EXTERN_C String_t* _stringLiteral878AE10D03D16A069554617545B8533ED09E594F; IL2CPP_EXTERN_C String_t* _stringLiteral87C858E345116CE7C4123AF185CDD74EFDD94384; IL2CPP_EXTERN_C String_t* _stringLiteral8D04002FC7142DC7148763C90BB38AEEC554A158; IL2CPP_EXTERN_C String_t* _stringLiteral9104E82394351D786F4B739689D0B28ACF18A43D; IL2CPP_EXTERN_C String_t* _stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48; IL2CPP_EXTERN_C String_t* _stringLiteral92094BBD8DE1A81022C0FCA98F179197BA588E99; IL2CPP_EXTERN_C String_t* _stringLiteral952F621460E9250177F13FF0BEAD9E00E2B86302; IL2CPP_EXTERN_C String_t* _stringLiteral9932973D4B6AA1AA193C06D8D34B58B677685003; IL2CPP_EXTERN_C String_t* _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3; IL2CPP_EXTERN_C String_t* _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03; IL2CPP_EXTERN_C String_t* _stringLiteralA0BA8D0495A770319CD6FF4DCD0C01BCCC30A901; IL2CPP_EXTERN_C String_t* _stringLiteralA3E0185CFEE766D02511A6B411F83832EC44A795; IL2CPP_EXTERN_C String_t* _stringLiteralA6A4D769FFC4529F0963FE55F3BE08E56AB8438E; IL2CPP_EXTERN_C String_t* _stringLiteralAC2806EA40D9F7601BBB6DA354C649B46D2D8877; IL2CPP_EXTERN_C String_t* _stringLiteralAC9E93CEA17C181E0B0046090BD8FBFE6027E465; IL2CPP_EXTERN_C String_t* _stringLiteralAE3A78C82F0ADEB13A1EA569DE4A0A436C7CED3D; IL2CPP_EXTERN_C String_t* _stringLiteralB0AADDDCB10777660C04FFF62EE090971E9CB5CA; IL2CPP_EXTERN_C String_t* _stringLiteralB55DD8F11DBEB2311310B75BD326FABA8DD6E4B9; IL2CPP_EXTERN_C String_t* _stringLiteralB63A1A23B65582B8791AA4E655E90AA5647D7298; IL2CPP_EXTERN_C String_t* _stringLiteralB6F0795DD4F409C92875D0327F58FDEA357047F1; IL2CPP_EXTERN_C String_t* _stringLiteralB76F93064E827FE764713C55F705D2E388DF17D7; IL2CPP_EXTERN_C String_t* _stringLiteralB92045191B4D9A7E7E55F5BE6BF1823D09F9CA9F; IL2CPP_EXTERN_C String_t* _stringLiteralBBC1106D65ACC9B0DB541F4FAF5DBAF5B7F7BA1F; IL2CPP_EXTERN_C String_t* _stringLiteralBD1D701FC46063485DFFAB6888F3C74B6DC48DD8; IL2CPP_EXTERN_C String_t* _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158; IL2CPP_EXTERN_C String_t* _stringLiteralC3FBA6155AE85E3CB81F8437A6F1C503BB7D09B7; IL2CPP_EXTERN_C String_t* _stringLiteralC4E721B999A0498B0D3E99AFADED5BDAD3296EC8; IL2CPP_EXTERN_C String_t* _stringLiteralC4FEF05AC2AE7B117256FA840859B8790DEFE62B; IL2CPP_EXTERN_C String_t* _stringLiteralC7C776080FBFB5F15E2EAAE9A4C65AE2C17FE00B; IL2CPP_EXTERN_C String_t* _stringLiteralCAF956214D83EED9D9B576DA1D727BD145303948; IL2CPP_EXTERN_C String_t* _stringLiteralCCD15A133CD38F3DFFFA94FA4D720EAC91F25B79; IL2CPP_EXTERN_C String_t* _stringLiteralCD347E1307036F9337DFB643A0DA73051573F178; IL2CPP_EXTERN_C String_t* _stringLiteralCE63895ACF2B7A447477491E6E010B297DD75B0D; IL2CPP_EXTERN_C String_t* _stringLiteralCE9BB7116C03E5DA9D01F8D4803A0FFE9ADA5307; IL2CPP_EXTERN_C String_t* _stringLiteralCEB92A42478C96055FB865CE097903AF4512BD10; IL2CPP_EXTERN_C String_t* _stringLiteralD20945EB99E4CFCA27A66866A791F9AE0B7E4EBB; IL2CPP_EXTERN_C String_t* _stringLiteralD29CA80AA23F62C996542BD3373B35F12EBC874B; IL2CPP_EXTERN_C String_t* _stringLiteralD2B699E6F0658A4364F9D1A0F5A4EB7C94F6F656; IL2CPP_EXTERN_C String_t* _stringLiteralD3A16BBDB1662D7361031D5B9686BD4A9DD7F9D6; IL2CPP_EXTERN_C String_t* _stringLiteralD67729AC2AE2B39DBBC387BDA1A36503B0C922C1; IL2CPP_EXTERN_C String_t* _stringLiteralD6B20E18FAA3BB0018B8BA0CFA581E711100C554; IL2CPP_EXTERN_C String_t* _stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7; IL2CPP_EXTERN_C String_t* _stringLiteralD80F08699EED587529ABC38BC3513F5D6C7016A7; IL2CPP_EXTERN_C String_t* _stringLiteralD83041E889BDAEB8F029AF50549D1347BD7FC949; IL2CPP_EXTERN_C String_t* _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1; IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; IL2CPP_EXTERN_C String_t* _stringLiteralDB6A30F5C46ACC70D2AD58ABFB2A19A8F675C314; IL2CPP_EXTERN_C String_t* _stringLiteralDF1296B24672A38692CC663E858166C834F0ABD9; IL2CPP_EXTERN_C String_t* _stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2; IL2CPP_EXTERN_C String_t* _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC; IL2CPP_EXTERN_C String_t* _stringLiteralE1C34BAD815D8104249A053C9455FA539CDF5036; IL2CPP_EXTERN_C String_t* _stringLiteralE1E0D4973E26B80B96256B01F0199BB2484B27E0; IL2CPP_EXTERN_C String_t* _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF; IL2CPP_EXTERN_C String_t* _stringLiteralE33B655BD7CA37454FF89A8C0BDA6B8196C65A77; IL2CPP_EXTERN_C String_t* _stringLiteralE358F823C39A638A3134E442FF53D303271291F3; IL2CPP_EXTERN_C String_t* _stringLiteralEA398BF072FD34DE9A70413411E9B2DE140B1383; IL2CPP_EXTERN_C String_t* _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331; IL2CPP_EXTERN_C String_t* _stringLiteralF2EE2B9C299895393EAD54EEC93812CB500B915F; IL2CPP_EXTERN_C String_t* _stringLiteralF41760006700B346FE970834ED6436CD21A1330F; IL2CPP_EXTERN_C String_t* _stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667; IL2CPP_EXTERN_C String_t* _stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2_TisU3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_mB8CEDA29E42C6466FBD723FD3A77ADF8EA0D0AF7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC_TisU3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_m3B21BB85DA84F2172127634BA0CCA9EF4FFE865F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Create_mE593F9E703EBA7EF294FAC0F5C20F69AF4D08C26_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetException_m29521EB618E38AF72FF0C4094070C1489F4129B3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetException_m69431078822E6A677A8F7CEC526C9D6DE1247251_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_m3E4AB12877D4FE377F26708CF6899C49360007FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_mD3A30E77DF6510CE14800E799D4A0EFA09BAFEFD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetStateMachine_m736C84D61B4AB2FCD150BD3945C6874471A9224D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetStateMachine_mFF03AB561D1FC60E613247F020EFD7D420A1BECF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_mC3D06AB96938D18EA8788B4122A214E34FCE9679_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_get_Task_m61DEC300353320E428E17DA0D59D61974F4415BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaitable_1_GetAwaiter_m4F1ED70E3551027C342566D331FE99EB40F7C076_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaitable_1_GetAwaiter_m9966FFF0D41B23D5CA024C291811DF5A6F80D3B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_GetResult_mAD154326007808FFD2047A47BD8C312B91A05FCD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_GetResult_mD225F9BD6B8ABB67A9113177FA6014A0A749353D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_get_IsCompleted_mB157381B77839BF4D4F6781E9984D087C5D1E9BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_get_IsCompleted_mB7A99A944FAEF631A2EC109FADBF428D6A12FC0F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m105F8AD7F5E827D6F95768BD6C922EB155E5A7EF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m8E06A6DF244254BF419D7EC23A9A6809E19A544D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mAC2C8559F9E6A16FAD5BA5017E6A0A1EF3429867_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mBC85AF861FB031847847F0B30707EC7AC252D572_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DtdDefaultAttributeInfoToNodeDataComparer_Compare_mEA6EA939DBD81A2A517B365BE21158E0086F77D0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_mA163EA96264A8D2042CC9BF314E218CC271B444F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_3__ctor_m71A92851122BC354AAFF28F73273C76A963701B6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SingleObjectEnumerator_get_Current_m76C9830F6FA5F3D4B444A13856E438EBDA9E0EDD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlNodeList_Insert_m746B9DDFD7B78894075135B2902335F4E6B4465B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlNodeList_RemoveAt_mA3D7ACC3756E6109DBA4F77F83E2AF9A639A0FCE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlNodeList_get_Item_mB9359FC058C97EE9AD78BB1131A921616814A90E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskFactory_1_FromAsync_m196FA20CD6C49C10C77C43F3DE597A6CFB928740_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_ConfigureAwait_m4A6D2565EE9545645B9418B3B2CC34B6A3D260A8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_ConfigureAwait_m958847894F96659D65916785756B6FB2FA80D851_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_Factory_m283742BB5C1426112B31A7531F634300838AC04B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CGetEntityAsyncU3Ed__15_MoveNext_m6F75ADBC40411959ECD71C921F282AB4102D208E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_HandleSpecialAttribute_m743156B9137FC8E43B2E697605AAE9C225A2166E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_InternalWriteEndElement_mF39D8CB533A512D50269E722957BA39D259B7D9C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_LookupPrefix_m178125CC8E9138CF209A446517E3AB4B0C010FFF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_PushNamespace_mFAE3B22D92E1EE3EB61C94917C3E9A955D9CD5C2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_StartDocument_mA79CE2624637971D48599CD491BE1BC587D6D364_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_ValidateName_mBE854955EEA2F287F37611C7E4FE14E0C10A988B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_VerifyPrefixXml_m7729FF5CEA9F697C2B498B672D02C4C895A287FB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteCData_m37E19ED393221530E3701BFE8B13D51F359F370C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteComment_mFCA7CCC50523A809A8F29BA7ACBA9DBABEE44D14_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteDocType_m296AC97F2191BCF0BB2B1422C6BB849A6FD7B81C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteEndAttribute_m0852B03145FD7F894154397EFA5EF618F38D13A4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteEntityRef_m3235DD54C0086C3F1946BF274862058CF8B9E71E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteProcessingInstruction_mEE2AB27CC649C61BEC7FB44E47F7ED1163DC0777_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteStartAttribute_mB1EE3993D9434186A16E51753700650831D3C5E1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteStartElement_mE943510001C0B54690AC902611BFF5A10CA412F0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteString_m470D8E31F7858181E7BB8FD6C629D0207446725E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTextWriter_WriteWhitespace_mBFACDC2BD41CC80B5396BC0742AEDE04C1D53603_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTypeMapElementInfo_set_IsTextElement_m7BB3A8B86D0FD4C9622BF60850DFD94E689B039C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTypeMapElementInfo_set_IsUnnamedAnyElement_mD4F5E05C761B584F531A0C8DF8DDD95ED3C9FCE0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ChangeListType_m8A335168D10AE570DB4F6BF8C83D3EFCF0FAD4D8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ChangeType_m1B093CA85C5AF6C02C742E3F7D0344DED498A4E1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ChangeType_m849DED15CDC8993D37CE9F1B52876CD557375DF6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ChangeType_m985FFCB97915C4E1853202249949D8CDBD9C0EB0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ChangeType_mBF59D67978F6CDFDC60244E8017E585079D7D05E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ChangeType_mDDC95960433608433E4F04CF2C9B62BACEF34367_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ChangeType_mEE86A5027ED3FE8C15200BAD81AF574DFB261162_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ChangeType_mF3D4C9048A30BB6B7E2C9BE7013C7FEC353D7CB1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ChangeType_mFDDBB1D5311642999916B9485E39B40A710F4C55_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToBoolean_m568DD23AEBD55CF9143F829CD69E5202DFC951AC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToBoolean_mED2C117433B952DDEDAE174B94A5C387B41E5BB0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToDateTimeOffset_mD3FAD6C7A411227350EE9ED637D15297E973C4B3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToDateTimeOffset_mF60632A2F2030E075DA65E74E673FA44A7ACF9B0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToDateTime_m7C71BCF3DA46E2B68D1E8C49C76BC0D0C53BB8E3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToDateTime_mBBBD2C1BD1BA2FA4548FEEDF1869858F7A6213E3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToDecimal_mA7A74AF7A71194A51DDBCA788631FA41A76725AE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToDecimal_mC1FC1582F9E5EE0F8B55965A09433D8C7E2503B6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToDouble_m2971FE205C7A5B8568AABF05A15B1FBE72116A75_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToDouble_mD833FA5C23BF71B77838A7B27F93BB719D6BD9B1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToInt32_mB257232D69D4F5EA8A50DB8FCC3AB263729FA1C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToInt32_mEC79B30EA1E9A4CA041C7E1DDD4AA64C45AF70DD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToInt64_m5A44AF5B054EDB6E0F82B71F89D3034B33E300EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToInt64_mF42BA9C206E244DA4A6306EB2F0EB7706DD31594_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToSingle_m4C18877EDADE25AF72581DCE8E4B4E521B36B79B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToSingle_mE3B43231D098FEBCC9632871499E30EA93D3FA02_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUntypedConverter_ToString_mC695B29E983FC78D95F0BC8AB8B4AC1879DE043D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlUrlResolver_GetEntity_m5E6E95BD40DAEC1B6537B67E2B51EBFD398C5FAA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlWhitespace__ctor_m3A108BEE96CE7575F27A1DED29804E41C8B847D0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlWhitespace_set_Value_m7EEB5BDDEDF4F6D447436D348030D303EA990CEF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XsdDateTime__ctor_mB09134F0278390F7BEDE6F47A6BE015C64140C52_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XsdDuration_ToTimeSpan_m8E384990FA1D2AF1323B326E5987018872A6322F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XsdDuration__ctor_m8E776FD3A70A21A2EFC6ACADF87056EA2430895C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XsdDuration__ctor_mAF5DC027A1A37B5D9379CC9E200C733FB643F075_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* RuntimeObject_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_0_0_0_var; struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_com; struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_pinvoke; struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com; struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; struct MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E; struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; struct ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B; struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; struct XmlTypeCodeU5BU5D_t4B53622F8096A3BE4E235382465B2E0FF7B85D6B; struct NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6; struct StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A; struct TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637; 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.Collections.Generic.Dictionary`2 struct Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tABFC31237D6642B5D4C1DBA234CA37EE851EB0AE* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t61F8738ED346768CC112B2E27863BF9F73C76D90 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t17EEB7B2EDD3CB5222C660D7E739F803986BF025 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___entries_1)); } inline EntryU5BU5D_tABFC31237D6642B5D4C1DBA234CA37EE851EB0AE* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tABFC31237D6642B5D4C1DBA234CA37EE851EB0AE** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tABFC31237D6642B5D4C1DBA234CA37EE851EB0AE* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___keys_7)); } inline KeyCollection_t61F8738ED346768CC112B2E27863BF9F73C76D90 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t61F8738ED346768CC112B2E27863BF9F73C76D90 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t61F8738ED346768CC112B2E27863BF9F73C76D90 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___values_8)); } inline ValueCollection_t17EEB7B2EDD3CB5222C660D7E739F803986BF025 * get_values_8() const { return ___values_8; } inline ValueCollection_t17EEB7B2EDD3CB5222C660D7E739F803986BF025 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t17EEB7B2EDD3CB5222C660D7E739F803986BF025 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; struct Il2CppArrayBounds; // System.Array // System.Collections.ArrayList struct ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 : public RuntimeObject { public: // System.Object[] System.Collections.ArrayList::_items ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____items_0; // System.Int32 System.Collections.ArrayList::_size int32_t ____size_1; // System.Int32 System.Collections.ArrayList::_version int32_t ____version_2; // System.Object System.Collections.ArrayList::_syncRoot RuntimeObject * ____syncRoot_3; public: inline static int32_t get_offset_of__items_0() { return static_cast(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575, ____items_0)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_0() const { return ____items_0; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_0() { return &____items_0; } inline void set__items_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____items_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value); } inline static int32_t get_offset_of__size_1() { return static_cast(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575, ____size_1)); } inline int32_t get__size_1() const { return ____size_1; } inline int32_t* get_address_of__size_1() { return &____size_1; } inline void set__size_1(int32_t value) { ____size_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__syncRoot_3() { return static_cast(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575, ____syncRoot_3)); } inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; } inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; } inline void set__syncRoot_3(RuntimeObject * value) { ____syncRoot_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value); } }; // System.Attribute struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject { public: public: }; // System.Xml.Base64Encoder struct Base64Encoder_tF36936300CC9B84076C8F16EE4AF8074ACA40CE9 : public RuntimeObject { public: // System.Byte[] System.Xml.Base64Encoder::leftOverBytes ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___leftOverBytes_0; // System.Int32 System.Xml.Base64Encoder::leftOverBytesCount int32_t ___leftOverBytesCount_1; // System.Char[] System.Xml.Base64Encoder::charsLine CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___charsLine_2; public: inline static int32_t get_offset_of_leftOverBytes_0() { return static_cast(offsetof(Base64Encoder_tF36936300CC9B84076C8F16EE4AF8074ACA40CE9, ___leftOverBytes_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_leftOverBytes_0() const { return ___leftOverBytes_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_leftOverBytes_0() { return &___leftOverBytes_0; } inline void set_leftOverBytes_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___leftOverBytes_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___leftOverBytes_0), (void*)value); } inline static int32_t get_offset_of_leftOverBytesCount_1() { return static_cast(offsetof(Base64Encoder_tF36936300CC9B84076C8F16EE4AF8074ACA40CE9, ___leftOverBytesCount_1)); } inline int32_t get_leftOverBytesCount_1() const { return ___leftOverBytesCount_1; } inline int32_t* get_address_of_leftOverBytesCount_1() { return &___leftOverBytesCount_1; } inline void set_leftOverBytesCount_1(int32_t value) { ___leftOverBytesCount_1 = value; } inline static int32_t get_offset_of_charsLine_2() { return static_cast(offsetof(Base64Encoder_tF36936300CC9B84076C8F16EE4AF8074ACA40CE9, ___charsLine_2)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_charsLine_2() const { return ___charsLine_2; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_charsLine_2() { return &___charsLine_2; } inline void set_charsLine_2(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___charsLine_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___charsLine_2), (void*)value); } }; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 : public RuntimeObject { public: public: }; // System.Xml.Schema.BitSet struct BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 : public RuntimeObject { public: // System.Int32 System.Xml.Schema.BitSet::count int32_t ___count_0; // System.UInt32[] System.Xml.Schema.BitSet::bits UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___bits_1; public: inline static int32_t get_offset_of_count_0() { return static_cast(offsetof(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438, ___count_0)); } inline int32_t get_count_0() const { return ___count_0; } inline int32_t* get_address_of_count_0() { return &___count_0; } inline void set_count_0(int32_t value) { ___count_0 = value; } inline static int32_t get_offset_of_bits_1() { return static_cast(offsetof(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438, ___bits_1)); } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_bits_1() const { return ___bits_1; } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_bits_1() { return &___bits_1; } inline void set_bits_1(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value) { ___bits_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___bits_1), (void*)value); } }; // System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 : public RuntimeObject { public: // System.Boolean System.Globalization.CultureInfo::m_isReadOnly bool ___m_isReadOnly_3; // System.Int32 System.Globalization.CultureInfo::cultureID int32_t ___cultureID_4; // System.Int32 System.Globalization.CultureInfo::parent_lcid int32_t ___parent_lcid_5; // System.Int32 System.Globalization.CultureInfo::datetime_index int32_t ___datetime_index_6; // System.Int32 System.Globalization.CultureInfo::number_index int32_t ___number_index_7; // System.Int32 System.Globalization.CultureInfo::default_calendar_type int32_t ___default_calendar_type_8; // System.Boolean System.Globalization.CultureInfo::m_useUserOverride bool ___m_useUserOverride_9; // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11; // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12; // System.String System.Globalization.CultureInfo::m_name String_t* ___m_name_13; // System.String System.Globalization.CultureInfo::englishname String_t* ___englishname_14; // System.String System.Globalization.CultureInfo::nativename String_t* ___nativename_15; // System.String System.Globalization.CultureInfo::iso3lang String_t* ___iso3lang_16; // System.String System.Globalization.CultureInfo::iso2lang String_t* ___iso2lang_17; // System.String System.Globalization.CultureInfo::win3lang String_t* ___win3lang_18; // System.String System.Globalization.CultureInfo::territory String_t* ___territory_19; // System.String[] System.Globalization.CultureInfo::native_calendar_names StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___native_calendar_names_20; // System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21; // System.Void* System.Globalization.CultureInfo::textinfo_data void* ___textinfo_data_22; // System.Int32 System.Globalization.CultureInfo::m_dataItem int32_t ___m_dataItem_23; // System.Globalization.Calendar System.Globalization.CultureInfo::calendar Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24; // System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___parent_culture_25; // System.Boolean System.Globalization.CultureInfo::constructed bool ___constructed_26; // System.Byte[] System.Globalization.CultureInfo::cached_serialized_form ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___cached_serialized_form_27; // System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * ___m_cultureData_28; // System.Boolean System.Globalization.CultureInfo::m_isInherited bool ___m_isInherited_29; public: inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_isReadOnly_3)); } inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; } inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; } inline void set_m_isReadOnly_3(bool value) { ___m_isReadOnly_3 = value; } inline static int32_t get_offset_of_cultureID_4() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___cultureID_4)); } inline int32_t get_cultureID_4() const { return ___cultureID_4; } inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; } inline void set_cultureID_4(int32_t value) { ___cultureID_4 = value; } inline static int32_t get_offset_of_parent_lcid_5() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___parent_lcid_5)); } inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; } inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; } inline void set_parent_lcid_5(int32_t value) { ___parent_lcid_5 = value; } inline static int32_t get_offset_of_datetime_index_6() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___datetime_index_6)); } inline int32_t get_datetime_index_6() const { return ___datetime_index_6; } inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; } inline void set_datetime_index_6(int32_t value) { ___datetime_index_6 = value; } inline static int32_t get_offset_of_number_index_7() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___number_index_7)); } inline int32_t get_number_index_7() const { return ___number_index_7; } inline int32_t* get_address_of_number_index_7() { return &___number_index_7; } inline void set_number_index_7(int32_t value) { ___number_index_7 = value; } inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___default_calendar_type_8)); } inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; } inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; } inline void set_default_calendar_type_8(int32_t value) { ___default_calendar_type_8 = value; } inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_useUserOverride_9)); } inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; } inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; } inline void set_m_useUserOverride_9(bool value) { ___m_useUserOverride_9 = value; } inline static int32_t get_offset_of_numInfo_10() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___numInfo_10)); } inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * get_numInfo_10() const { return ___numInfo_10; } inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D ** get_address_of_numInfo_10() { return &___numInfo_10; } inline void set_numInfo_10(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * value) { ___numInfo_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value); } inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___dateTimeInfo_11)); } inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; } inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; } inline void set_dateTimeInfo_11(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * value) { ___dateTimeInfo_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value); } inline static int32_t get_offset_of_textInfo_12() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___textInfo_12)); } inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * get_textInfo_12() const { return ___textInfo_12; } inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C ** get_address_of_textInfo_12() { return &___textInfo_12; } inline void set_textInfo_12(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * value) { ___textInfo_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value); } inline static int32_t get_offset_of_m_name_13() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_name_13)); } inline String_t* get_m_name_13() const { return ___m_name_13; } inline String_t** get_address_of_m_name_13() { return &___m_name_13; } inline void set_m_name_13(String_t* value) { ___m_name_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value); } inline static int32_t get_offset_of_englishname_14() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___englishname_14)); } inline String_t* get_englishname_14() const { return ___englishname_14; } inline String_t** get_address_of_englishname_14() { return &___englishname_14; } inline void set_englishname_14(String_t* value) { ___englishname_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value); } inline static int32_t get_offset_of_nativename_15() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___nativename_15)); } inline String_t* get_nativename_15() const { return ___nativename_15; } inline String_t** get_address_of_nativename_15() { return &___nativename_15; } inline void set_nativename_15(String_t* value) { ___nativename_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value); } inline static int32_t get_offset_of_iso3lang_16() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___iso3lang_16)); } inline String_t* get_iso3lang_16() const { return ___iso3lang_16; } inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; } inline void set_iso3lang_16(String_t* value) { ___iso3lang_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value); } inline static int32_t get_offset_of_iso2lang_17() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___iso2lang_17)); } inline String_t* get_iso2lang_17() const { return ___iso2lang_17; } inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; } inline void set_iso2lang_17(String_t* value) { ___iso2lang_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value); } inline static int32_t get_offset_of_win3lang_18() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___win3lang_18)); } inline String_t* get_win3lang_18() const { return ___win3lang_18; } inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; } inline void set_win3lang_18(String_t* value) { ___win3lang_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value); } inline static int32_t get_offset_of_territory_19() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___territory_19)); } inline String_t* get_territory_19() const { return ___territory_19; } inline String_t** get_address_of_territory_19() { return &___territory_19; } inline void set_territory_19(String_t* value) { ___territory_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value); } inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___native_calendar_names_20)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_native_calendar_names_20() const { return ___native_calendar_names_20; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; } inline void set_native_calendar_names_20(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___native_calendar_names_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value); } inline static int32_t get_offset_of_compareInfo_21() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___compareInfo_21)); } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * get_compareInfo_21() const { return ___compareInfo_21; } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 ** get_address_of_compareInfo_21() { return &___compareInfo_21; } inline void set_compareInfo_21(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * value) { ___compareInfo_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value); } inline static int32_t get_offset_of_textinfo_data_22() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___textinfo_data_22)); } inline void* get_textinfo_data_22() const { return ___textinfo_data_22; } inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; } inline void set_textinfo_data_22(void* value) { ___textinfo_data_22 = value; } inline static int32_t get_offset_of_m_dataItem_23() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_dataItem_23)); } inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; } inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; } inline void set_m_dataItem_23(int32_t value) { ___m_dataItem_23 = value; } inline static int32_t get_offset_of_calendar_24() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___calendar_24)); } inline Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * get_calendar_24() const { return ___calendar_24; } inline Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A ** get_address_of_calendar_24() { return &___calendar_24; } inline void set_calendar_24(Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * value) { ___calendar_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value); } inline static int32_t get_offset_of_parent_culture_25() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___parent_culture_25)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_parent_culture_25() const { return ___parent_culture_25; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_parent_culture_25() { return &___parent_culture_25; } inline void set_parent_culture_25(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___parent_culture_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value); } inline static int32_t get_offset_of_constructed_26() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___constructed_26)); } inline bool get_constructed_26() const { return ___constructed_26; } inline bool* get_address_of_constructed_26() { return &___constructed_26; } inline void set_constructed_26(bool value) { ___constructed_26 = value; } inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___cached_serialized_form_27)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; } inline void set_cached_serialized_form_27(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___cached_serialized_form_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value); } inline static int32_t get_offset_of_m_cultureData_28() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_cultureData_28)); } inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * get_m_cultureData_28() const { return ___m_cultureData_28; } inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; } inline void set_m_cultureData_28(CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * value) { ___m_cultureData_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value); } inline static int32_t get_offset_of_m_isInherited_29() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_isInherited_29)); } inline bool get_m_isInherited_29() const { return ___m_isInherited_29; } inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; } inline void set_m_isInherited_29(bool value) { ___m_isInherited_29 = value; } }; // Native definition for P/Invoke marshalling of System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10; DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11; TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12; char* ___m_name_13; char* ___englishname_14; char* ___nativename_15; char* ___iso3lang_16; char* ___iso2lang_17; char* ___win3lang_18; char* ___territory_19; char** ___native_calendar_names_20; CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_pinvoke* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // Native definition for COM marshalling of System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10; DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11; TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12; Il2CppChar* ___m_name_13; Il2CppChar* ___englishname_14; Il2CppChar* ___nativename_15; Il2CppChar* ___iso3lang_16; Il2CppChar* ___iso2lang_17; Il2CppChar* ___win3lang_18; Il2CppChar* ___territory_19; Il2CppChar** ___native_calendar_names_20; CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_com* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // System.DBNull struct DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 : public RuntimeObject { public: public: }; // System.Text.Decoder struct Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 : public RuntimeObject { public: // System.Text.DecoderFallback System.Text.Decoder::m_fallback DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * ___m_fallback_0; // System.Text.DecoderFallbackBuffer System.Text.Decoder::m_fallbackBuffer DecoderFallbackBuffer_t236B3D4172A9BAD1C2150ED78958227F8F20C94B * ___m_fallbackBuffer_1; public: inline static int32_t get_offset_of_m_fallback_0() { return static_cast(offsetof(Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370, ___m_fallback_0)); } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * get_m_fallback_0() const { return ___m_fallback_0; } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D ** get_address_of_m_fallback_0() { return &___m_fallback_0; } inline void set_m_fallback_0(DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * value) { ___m_fallback_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_fallback_0), (void*)value); } inline static int32_t get_offset_of_m_fallbackBuffer_1() { return static_cast(offsetof(Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370, ___m_fallbackBuffer_1)); } inline DecoderFallbackBuffer_t236B3D4172A9BAD1C2150ED78958227F8F20C94B * get_m_fallbackBuffer_1() const { return ___m_fallbackBuffer_1; } inline DecoderFallbackBuffer_t236B3D4172A9BAD1C2150ED78958227F8F20C94B ** get_address_of_m_fallbackBuffer_1() { return &___m_fallbackBuffer_1; } inline void set_m_fallbackBuffer_1(DecoderFallbackBuffer_t236B3D4172A9BAD1C2150ED78958227F8F20C94B * value) { ___m_fallbackBuffer_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_fallbackBuffer_1), (void*)value); } }; // System.Xml.EmptyEnumerator struct EmptyEnumerator_t138901A02D453E19CDE87DFD96981F8A98928E13 : public RuntimeObject { public: public: }; // System.Text.Encoding struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 : public RuntimeObject { public: // System.Int32 System.Text.Encoding::m_codePage int32_t ___m_codePage_9; // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * ___dataItem_10; // System.Boolean System.Text.Encoding::m_deserializedFromEverett bool ___m_deserializedFromEverett_11; // System.Boolean System.Text.Encoding::m_isReadOnly bool ___m_isReadOnly_12; // System.Text.EncoderFallback System.Text.Encoding::encoderFallback EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * ___encoderFallback_13; // System.Text.DecoderFallback System.Text.Encoding::decoderFallback DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * ___decoderFallback_14; public: inline static int32_t get_offset_of_m_codePage_9() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_codePage_9)); } inline int32_t get_m_codePage_9() const { return ___m_codePage_9; } inline int32_t* get_address_of_m_codePage_9() { return &___m_codePage_9; } inline void set_m_codePage_9(int32_t value) { ___m_codePage_9 = value; } inline static int32_t get_offset_of_dataItem_10() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___dataItem_10)); } inline CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * get_dataItem_10() const { return ___dataItem_10; } inline CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E ** get_address_of_dataItem_10() { return &___dataItem_10; } inline void set_dataItem_10(CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * value) { ___dataItem_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataItem_10), (void*)value); } inline static int32_t get_offset_of_m_deserializedFromEverett_11() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_deserializedFromEverett_11)); } inline bool get_m_deserializedFromEverett_11() const { return ___m_deserializedFromEverett_11; } inline bool* get_address_of_m_deserializedFromEverett_11() { return &___m_deserializedFromEverett_11; } inline void set_m_deserializedFromEverett_11(bool value) { ___m_deserializedFromEverett_11 = value; } inline static int32_t get_offset_of_m_isReadOnly_12() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_isReadOnly_12)); } inline bool get_m_isReadOnly_12() const { return ___m_isReadOnly_12; } inline bool* get_address_of_m_isReadOnly_12() { return &___m_isReadOnly_12; } inline void set_m_isReadOnly_12(bool value) { ___m_isReadOnly_12 = value; } inline static int32_t get_offset_of_encoderFallback_13() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___encoderFallback_13)); } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * get_encoderFallback_13() const { return ___encoderFallback_13; } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 ** get_address_of_encoderFallback_13() { return &___encoderFallback_13; } inline void set_encoderFallback_13(EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * value) { ___encoderFallback_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoderFallback_13), (void*)value); } inline static int32_t get_offset_of_decoderFallback_14() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___decoderFallback_14)); } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * get_decoderFallback_14() const { return ___decoderFallback_14; } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D ** get_address_of_decoderFallback_14() { return &___decoderFallback_14; } inline void set_decoderFallback_14(DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * value) { ___decoderFallback_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_14), (void*)value); } }; // System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 : public RuntimeObject { public: // System.Object System.MarshalByRefObject::_identity RuntimeObject * ____identity_0; public: inline static int32_t get_offset_of__identity_0() { return static_cast(offsetof(MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8, ____identity_0)); } inline RuntimeObject * get__identity_0() const { return ____identity_0; } inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; } inline void set__identity_0(RuntimeObject * value) { ____identity_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_pinvoke { Il2CppIUnknown* ____identity_0; }; // Native definition for COM marshalling of System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_com { Il2CppIUnknown* ____identity_0; }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // System.Xml.Serialization.ObjectMap struct ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C : public RuntimeObject { public: public: }; // System.Xml.OpenedHost struct OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D : public RuntimeObject { public: // System.Int32 System.Xml.OpenedHost::nonCachedConnectionsCount int32_t ___nonCachedConnectionsCount_0; public: inline static int32_t get_offset_of_nonCachedConnectionsCount_0() { return static_cast(offsetof(OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D, ___nonCachedConnectionsCount_0)); } inline int32_t get_nonCachedConnectionsCount_0() const { return ___nonCachedConnectionsCount_0; } inline int32_t* get_address_of_nonCachedConnectionsCount_0() { return &___nonCachedConnectionsCount_0; } inline void set_nonCachedConnectionsCount_0(int32_t value) { ___nonCachedConnectionsCount_0 = value; } }; // System.Xml.SecureStringHasher struct SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A : public RuntimeObject { public: // System.Int32 System.Xml.SecureStringHasher::hashCodeRandomizer int32_t ___hashCodeRandomizer_1; public: inline static int32_t get_offset_of_hashCodeRandomizer_1() { return static_cast(offsetof(SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A, ___hashCodeRandomizer_1)); } inline int32_t get_hashCodeRandomizer_1() const { return ___hashCodeRandomizer_1; } inline int32_t* get_address_of_hashCodeRandomizer_1() { return &___hashCodeRandomizer_1; } inline void set_hashCodeRandomizer_1(int32_t value) { ___hashCodeRandomizer_1 = value; } }; // 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(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(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; } }; // System.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { public: // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___m_ChunkChars_0; // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious StringBuilder_t * ___m_ChunkPrevious_1; // System.Int32 System.Text.StringBuilder::m_ChunkLength int32_t ___m_ChunkLength_2; // System.Int32 System.Text.StringBuilder::m_ChunkOffset int32_t ___m_ChunkOffset_3; // System.Int32 System.Text.StringBuilder::m_MaxCapacity int32_t ___m_MaxCapacity_4; public: inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkChars_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; } inline void set_m_ChunkChars_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___m_ChunkChars_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value); } inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); } inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; } inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; } inline void set_m_ChunkPrevious_1(StringBuilder_t * value) { ___m_ChunkPrevious_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value); } inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkLength_2)); } inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; } inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; } inline void set_m_ChunkLength_2(int32_t value) { ___m_ChunkLength_2 = value; } inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); } inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; } inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; } inline void set_m_ChunkOffset_3(int32_t value) { ___m_ChunkOffset_3 = value; } inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); } inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; } inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; } inline void set_m_MaxCapacity_4(int32_t value) { ___m_MaxCapacity_4 = value; } }; // System.Xml.Schema.SyntaxTreeNode struct SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 : public RuntimeObject { public: public: }; // 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.Xml.XPath.XPathItem struct XPathItem_t053B6F865E42EB40BFD03AE958B99844501E5701 : public RuntimeObject { public: public: }; // System.Xml.Serialization.XmlAttributes struct XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46 : public RuntimeObject { public: // System.Xml.Serialization.XmlAnyAttributeAttribute System.Xml.Serialization.XmlAttributes::xmlAnyAttribute XmlAnyAttributeAttribute_t425ACE58EEBC7D08A1B23CD06B03CA75B8D5B094 * ___xmlAnyAttribute_0; // System.Xml.Serialization.XmlAnyElementAttributes System.Xml.Serialization.XmlAttributes::xmlAnyElements XmlAnyElementAttributes_t0764A8C936570CDDE90E5664A4DF5EC3F10DA79E * ___xmlAnyElements_1; // System.Xml.Serialization.XmlArrayAttribute System.Xml.Serialization.XmlAttributes::xmlArray XmlArrayAttribute_t8016E5E39EDDEC98A198E56BBAA467772E8AE472 * ___xmlArray_2; // System.Xml.Serialization.XmlArrayItemAttributes System.Xml.Serialization.XmlAttributes::xmlArrayItems XmlArrayItemAttributes_t31129BD0EFD28EFBF3076C3CF12300AED71A31CB * ___xmlArrayItems_3; // System.Xml.Serialization.XmlAttributeAttribute System.Xml.Serialization.XmlAttributes::xmlAttribute XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 * ___xmlAttribute_4; // System.Xml.Serialization.XmlChoiceIdentifierAttribute System.Xml.Serialization.XmlAttributes::xmlChoiceIdentifier XmlChoiceIdentifierAttribute_t631E9D90F1B31767C61EEDF899EC5233B57BB067 * ___xmlChoiceIdentifier_5; // System.Object System.Xml.Serialization.XmlAttributes::xmlDefaultValue RuntimeObject * ___xmlDefaultValue_6; // System.Xml.Serialization.XmlElementAttributes System.Xml.Serialization.XmlAttributes::xmlElements XmlElementAttributes_t58E8742350D62E45ABDA29BF94357D8152490402 * ___xmlElements_7; // System.Xml.Serialization.XmlEnumAttribute System.Xml.Serialization.XmlAttributes::xmlEnum XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * ___xmlEnum_8; // System.Boolean System.Xml.Serialization.XmlAttributes::xmlIgnore bool ___xmlIgnore_9; // System.Boolean System.Xml.Serialization.XmlAttributes::xmlns bool ___xmlns_10; // System.Xml.Serialization.XmlRootAttribute System.Xml.Serialization.XmlAttributes::xmlRoot XmlRootAttribute_t509A188575B2B9912E6DBF82CBB9A17715BECB96 * ___xmlRoot_11; // System.Xml.Serialization.XmlTextAttribute System.Xml.Serialization.XmlAttributes::xmlText XmlTextAttribute_t913812A9EC84D070AA3006B1773A6ABC303A5C4E * ___xmlText_12; // System.Xml.Serialization.XmlTypeAttribute System.Xml.Serialization.XmlAttributes::xmlType XmlTypeAttribute_t8CF0FDD3A7F093717D676F94868FE9ABFB689800 * ___xmlType_13; public: inline static int32_t get_offset_of_xmlAnyAttribute_0() { return static_cast(offsetof(XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46, ___xmlAnyAttribute_0)); } inline XmlAnyAttributeAttribute_t425ACE58EEBC7D08A1B23CD06B03CA75B8D5B094 * get_xmlAnyAttribute_0() const { return ___xmlAnyAttribute_0; } inline XmlAnyAttributeAttribute_t425ACE58EEBC7D08A1B23CD06B03CA75B8D5B094 ** get_address_of_xmlAnyAttribute_0() { return &___xmlAnyAttribute_0; } inline void set_xmlAnyAttribute_0(XmlAnyAttributeAttribute_t425ACE58EEBC7D08A1B23CD06B03CA75B8D5B094 * value) { ___xmlAnyAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlAnyAttribute_0), (void*)value); } inline static int32_t get_offset_of_xmlAnyElements_1() { return static_cast(offsetof(XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46, ___xmlAnyElements_1)); } inline XmlAnyElementAttributes_t0764A8C936570CDDE90E5664A4DF5EC3F10DA79E * get_xmlAnyElements_1() const { return ___xmlAnyElements_1; } inline XmlAnyElementAttributes_t0764A8C936570CDDE90E5664A4DF5EC3F10DA79E ** get_address_of_xmlAnyElements_1() { return &___xmlAnyElements_1; } inline void set_xmlAnyElements_1(XmlAnyElementAttributes_t0764A8C936570CDDE90E5664A4DF5EC3F10DA79E * value) { ___xmlAnyElements_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlAnyElements_1), (void*)value); } inline static int32_t get_offset_of_xmlArray_2() { return static_cast(offsetof(XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46, ___xmlArray_2)); } inline XmlArrayAttribute_t8016E5E39EDDEC98A198E56BBAA467772E8AE472 * get_xmlArray_2() const { return ___xmlArray_2; } inline XmlArrayAttribute_t8016E5E39EDDEC98A198E56BBAA467772E8AE472 ** get_address_of_xmlArray_2() { return &___xmlArray_2; } inline void set_xmlArray_2(XmlArrayAttribute_t8016E5E39EDDEC98A198E56BBAA467772E8AE472 * value) { ___xmlArray_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlArray_2), (void*)value); } inline static int32_t get_offset_of_xmlArrayItems_3() { return static_cast(offsetof(XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46, ___xmlArrayItems_3)); } inline XmlArrayItemAttributes_t31129BD0EFD28EFBF3076C3CF12300AED71A31CB * get_xmlArrayItems_3() const { return ___xmlArrayItems_3; } inline XmlArrayItemAttributes_t31129BD0EFD28EFBF3076C3CF12300AED71A31CB ** get_address_of_xmlArrayItems_3() { return &___xmlArrayItems_3; } inline void set_xmlArrayItems_3(XmlArrayItemAttributes_t31129BD0EFD28EFBF3076C3CF12300AED71A31CB * value) { ___xmlArrayItems_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlArrayItems_3), (void*)value); } inline static int32_t get_offset_of_xmlAttribute_4() { return static_cast(offsetof(XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46, ___xmlAttribute_4)); } inline XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 * get_xmlAttribute_4() const { return ___xmlAttribute_4; } inline XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 ** get_address_of_xmlAttribute_4() { return &___xmlAttribute_4; } inline void set_xmlAttribute_4(XmlAttributeAttribute_t96949A5112ABB51E8AEB77CE3A43AF5EB44F5647 * value) { ___xmlAttribute_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlAttribute_4), (void*)value); } inline static int32_t get_offset_of_xmlChoiceIdentifier_5() { return static_cast(offsetof(XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46, ___xmlChoiceIdentifier_5)); } inline XmlChoiceIdentifierAttribute_t631E9D90F1B31767C61EEDF899EC5233B57BB067 * get_xmlChoiceIdentifier_5() const { return ___xmlChoiceIdentifier_5; } inline XmlChoiceIdentifierAttribute_t631E9D90F1B31767C61EEDF899EC5233B57BB067 ** get_address_of_xmlChoiceIdentifier_5() { return &___xmlChoiceIdentifier_5; } inline void set_xmlChoiceIdentifier_5(XmlChoiceIdentifierAttribute_t631E9D90F1B31767C61EEDF899EC5233B57BB067 * value) { ___xmlChoiceIdentifier_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlChoiceIdentifier_5), (void*)value); } inline static int32_t get_offset_of_xmlDefaultValue_6() { return static_cast(offsetof(XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46, ___xmlDefaultValue_6)); } inline RuntimeObject * get_xmlDefaultValue_6() const { return ___xmlDefaultValue_6; } inline RuntimeObject ** get_address_of_xmlDefaultValue_6() { return &___xmlDefaultValue_6; } inline void set_xmlDefaultValue_6(RuntimeObject * value) { ___xmlDefaultValue_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlDefaultValue_6), (void*)value); } inline static int32_t get_offset_of_xmlElements_7() { return static_cast(offsetof(XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46, ___xmlElements_7)); } inline XmlElementAttributes_t58E8742350D62E45ABDA29BF94357D8152490402 * get_xmlElements_7() const { return ___xmlElements_7; } inline XmlElementAttributes_t58E8742350D62E45ABDA29BF94357D8152490402 ** get_address_of_xmlElements_7() { return &___xmlElements_7; } inline void set_xmlElements_7(XmlElementAttributes_t58E8742350D62E45ABDA29BF94357D8152490402 * value) { ___xmlElements_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlElements_7), (void*)value); } inline static int32_t get_offset_of_xmlEnum_8() { return static_cast(offsetof(XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46, ___xmlEnum_8)); } inline XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * get_xmlEnum_8() const { return ___xmlEnum_8; } inline XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E ** get_address_of_xmlEnum_8() { return &___xmlEnum_8; } inline void set_xmlEnum_8(XmlEnumAttribute_tB7AB030D43502B1DEE005D647CC82265AFFE4D6E * value) { ___xmlEnum_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlEnum_8), (void*)value); } inline static int32_t get_offset_of_xmlIgnore_9() { return static_cast(offsetof(XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46, ___xmlIgnore_9)); } inline bool get_xmlIgnore_9() const { return ___xmlIgnore_9; } inline bool* get_address_of_xmlIgnore_9() { return &___xmlIgnore_9; } inline void set_xmlIgnore_9(bool value) { ___xmlIgnore_9 = value; } inline static int32_t get_offset_of_xmlns_10() { return static_cast(offsetof(XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46, ___xmlns_10)); } inline bool get_xmlns_10() const { return ___xmlns_10; } inline bool* get_address_of_xmlns_10() { return &___xmlns_10; } inline void set_xmlns_10(bool value) { ___xmlns_10 = value; } inline static int32_t get_offset_of_xmlRoot_11() { return static_cast(offsetof(XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46, ___xmlRoot_11)); } inline XmlRootAttribute_t509A188575B2B9912E6DBF82CBB9A17715BECB96 * get_xmlRoot_11() const { return ___xmlRoot_11; } inline XmlRootAttribute_t509A188575B2B9912E6DBF82CBB9A17715BECB96 ** get_address_of_xmlRoot_11() { return &___xmlRoot_11; } inline void set_xmlRoot_11(XmlRootAttribute_t509A188575B2B9912E6DBF82CBB9A17715BECB96 * value) { ___xmlRoot_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlRoot_11), (void*)value); } inline static int32_t get_offset_of_xmlText_12() { return static_cast(offsetof(XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46, ___xmlText_12)); } inline XmlTextAttribute_t913812A9EC84D070AA3006B1773A6ABC303A5C4E * get_xmlText_12() const { return ___xmlText_12; } inline XmlTextAttribute_t913812A9EC84D070AA3006B1773A6ABC303A5C4E ** get_address_of_xmlText_12() { return &___xmlText_12; } inline void set_xmlText_12(XmlTextAttribute_t913812A9EC84D070AA3006B1773A6ABC303A5C4E * value) { ___xmlText_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlText_12), (void*)value); } inline static int32_t get_offset_of_xmlType_13() { return static_cast(offsetof(XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46, ___xmlType_13)); } inline XmlTypeAttribute_t8CF0FDD3A7F093717D676F94868FE9ABFB689800 * get_xmlType_13() const { return ___xmlType_13; } inline XmlTypeAttribute_t8CF0FDD3A7F093717D676F94868FE9ABFB689800 ** get_address_of_xmlType_13() { return &___xmlType_13; } inline void set_xmlType_13(XmlTypeAttribute_t8CF0FDD3A7F093717D676F94868FE9ABFB689800 * value) { ___xmlType_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlType_13), (void*)value); } }; // System.Xml.XmlDownloadManager struct XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D : public RuntimeObject { public: // System.Collections.Hashtable System.Xml.XmlDownloadManager::connections Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___connections_0; public: inline static int32_t get_offset_of_connections_0() { return static_cast(offsetof(XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D, ___connections_0)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_connections_0() const { return ___connections_0; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_connections_0() { return &___connections_0; } inline void set_connections_0(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___connections_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___connections_0), (void*)value); } }; // System.Xml.XmlNameTable struct XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 : public RuntimeObject { public: public: }; // System.Xml.XmlNamespaceManager struct XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465 : public RuntimeObject { public: // System.Xml.XmlNamespaceManager/NamespaceDeclaration[] System.Xml.XmlNamespaceManager::nsdecls NamespaceDeclarationU5BU5D_t4D11B362C1D22E79294A2F9CB4710B02ED6D03F5* ___nsdecls_0; // System.Int32 System.Xml.XmlNamespaceManager::lastDecl int32_t ___lastDecl_1; // System.Xml.XmlNameTable System.Xml.XmlNamespaceManager::nameTable XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * ___nameTable_2; // System.Int32 System.Xml.XmlNamespaceManager::scopeId int32_t ___scopeId_3; // System.Collections.Generic.Dictionary`2 System.Xml.XmlNamespaceManager::hashTable Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * ___hashTable_4; // System.Boolean System.Xml.XmlNamespaceManager::useHashtable bool ___useHashtable_5; // System.String System.Xml.XmlNamespaceManager::xml String_t* ___xml_6; // System.String System.Xml.XmlNamespaceManager::xmlNs String_t* ___xmlNs_7; public: inline static int32_t get_offset_of_nsdecls_0() { return static_cast(offsetof(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465, ___nsdecls_0)); } inline NamespaceDeclarationU5BU5D_t4D11B362C1D22E79294A2F9CB4710B02ED6D03F5* get_nsdecls_0() const { return ___nsdecls_0; } inline NamespaceDeclarationU5BU5D_t4D11B362C1D22E79294A2F9CB4710B02ED6D03F5** get_address_of_nsdecls_0() { return &___nsdecls_0; } inline void set_nsdecls_0(NamespaceDeclarationU5BU5D_t4D11B362C1D22E79294A2F9CB4710B02ED6D03F5* value) { ___nsdecls_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___nsdecls_0), (void*)value); } inline static int32_t get_offset_of_lastDecl_1() { return static_cast(offsetof(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465, ___lastDecl_1)); } inline int32_t get_lastDecl_1() const { return ___lastDecl_1; } inline int32_t* get_address_of_lastDecl_1() { return &___lastDecl_1; } inline void set_lastDecl_1(int32_t value) { ___lastDecl_1 = value; } inline static int32_t get_offset_of_nameTable_2() { return static_cast(offsetof(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465, ___nameTable_2)); } inline XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * get_nameTable_2() const { return ___nameTable_2; } inline XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 ** get_address_of_nameTable_2() { return &___nameTable_2; } inline void set_nameTable_2(XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * value) { ___nameTable_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___nameTable_2), (void*)value); } inline static int32_t get_offset_of_scopeId_3() { return static_cast(offsetof(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465, ___scopeId_3)); } inline int32_t get_scopeId_3() const { return ___scopeId_3; } inline int32_t* get_address_of_scopeId_3() { return &___scopeId_3; } inline void set_scopeId_3(int32_t value) { ___scopeId_3 = value; } inline static int32_t get_offset_of_hashTable_4() { return static_cast(offsetof(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465, ___hashTable_4)); } inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * get_hashTable_4() const { return ___hashTable_4; } inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 ** get_address_of_hashTable_4() { return &___hashTable_4; } inline void set_hashTable_4(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * value) { ___hashTable_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___hashTable_4), (void*)value); } inline static int32_t get_offset_of_useHashtable_5() { return static_cast(offsetof(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465, ___useHashtable_5)); } inline bool get_useHashtable_5() const { return ___useHashtable_5; } inline bool* get_address_of_useHashtable_5() { return &___useHashtable_5; } inline void set_useHashtable_5(bool value) { ___useHashtable_5 = value; } inline static int32_t get_offset_of_xml_6() { return static_cast(offsetof(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465, ___xml_6)); } inline String_t* get_xml_6() const { return ___xml_6; } inline String_t** get_address_of_xml_6() { return &___xml_6; } inline void set_xml_6(String_t* value) { ___xml_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___xml_6), (void*)value); } inline static int32_t get_offset_of_xmlNs_7() { return static_cast(offsetof(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465, ___xmlNs_7)); } inline String_t* get_xmlNs_7() const { return ___xmlNs_7; } inline String_t** get_address_of_xmlNs_7() { return &___xmlNs_7; } inline void set_xmlNs_7(String_t* value) { ___xmlNs_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlNs_7), (void*)value); } }; // System.Xml.XmlNode struct XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 : public RuntimeObject { public: // System.Xml.XmlNode System.Xml.XmlNode::parentNode XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * ___parentNode_0; public: inline static int32_t get_offset_of_parentNode_0() { return static_cast(offsetof(XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1, ___parentNode_0)); } inline XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * get_parentNode_0() const { return ___parentNode_0; } inline XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 ** get_address_of_parentNode_0() { return &___parentNode_0; } inline void set_parentNode_0(XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * value) { ___parentNode_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___parentNode_0), (void*)value); } }; // System.Xml.XmlQualifiedName struct XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 : public RuntimeObject { public: // System.String System.Xml.XmlQualifiedName::name String_t* ___name_1; // System.String System.Xml.XmlQualifiedName::ns String_t* ___ns_2; // System.Int32 System.Xml.XmlQualifiedName::hash int32_t ___hash_3; public: inline static int32_t get_offset_of_name_1() { return static_cast(offsetof(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905, ___name_1)); } inline String_t* get_name_1() const { return ___name_1; } inline String_t** get_address_of_name_1() { return &___name_1; } inline void set_name_1(String_t* value) { ___name_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_1), (void*)value); } inline static int32_t get_offset_of_ns_2() { return static_cast(offsetof(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905, ___ns_2)); } inline String_t* get_ns_2() const { return ___ns_2; } inline String_t** get_address_of_ns_2() { return &___ns_2; } inline void set_ns_2(String_t* value) { ___ns_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___ns_2), (void*)value); } inline static int32_t get_offset_of_hash_3() { return static_cast(offsetof(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905, ___hash_3)); } inline int32_t get_hash_3() const { return ___hash_3; } inline int32_t* get_address_of_hash_3() { return &___hash_3; } inline void set_hash_3(int32_t value) { ___hash_3 = value; } }; // System.Xml.XmlReader struct XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138 : public RuntimeObject { public: public: }; // System.Xml.Serialization.XmlReflectionMember struct XmlReflectionMember_t2DB532740F4159245F707469F68AEA9BFBDA55CD : public RuntimeObject { public: // System.Boolean System.Xml.Serialization.XmlReflectionMember::isReturnValue bool ___isReturnValue_0; // System.String System.Xml.Serialization.XmlReflectionMember::memberName String_t* ___memberName_1; // System.Type System.Xml.Serialization.XmlReflectionMember::memberType Type_t * ___memberType_2; // System.Xml.Serialization.XmlAttributes System.Xml.Serialization.XmlReflectionMember::xmlAttributes XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46 * ___xmlAttributes_3; // System.Type System.Xml.Serialization.XmlReflectionMember::declaringType Type_t * ___declaringType_4; public: inline static int32_t get_offset_of_isReturnValue_0() { return static_cast(offsetof(XmlReflectionMember_t2DB532740F4159245F707469F68AEA9BFBDA55CD, ___isReturnValue_0)); } inline bool get_isReturnValue_0() const { return ___isReturnValue_0; } inline bool* get_address_of_isReturnValue_0() { return &___isReturnValue_0; } inline void set_isReturnValue_0(bool value) { ___isReturnValue_0 = value; } inline static int32_t get_offset_of_memberName_1() { return static_cast(offsetof(XmlReflectionMember_t2DB532740F4159245F707469F68AEA9BFBDA55CD, ___memberName_1)); } inline String_t* get_memberName_1() const { return ___memberName_1; } inline String_t** get_address_of_memberName_1() { return &___memberName_1; } inline void set_memberName_1(String_t* value) { ___memberName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___memberName_1), (void*)value); } inline static int32_t get_offset_of_memberType_2() { return static_cast(offsetof(XmlReflectionMember_t2DB532740F4159245F707469F68AEA9BFBDA55CD, ___memberType_2)); } inline Type_t * get_memberType_2() const { return ___memberType_2; } inline Type_t ** get_address_of_memberType_2() { return &___memberType_2; } inline void set_memberType_2(Type_t * value) { ___memberType_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___memberType_2), (void*)value); } inline static int32_t get_offset_of_xmlAttributes_3() { return static_cast(offsetof(XmlReflectionMember_t2DB532740F4159245F707469F68AEA9BFBDA55CD, ___xmlAttributes_3)); } inline XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46 * get_xmlAttributes_3() const { return ___xmlAttributes_3; } inline XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46 ** get_address_of_xmlAttributes_3() { return &___xmlAttributes_3; } inline void set_xmlAttributes_3(XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46 * value) { ___xmlAttributes_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlAttributes_3), (void*)value); } inline static int32_t get_offset_of_declaringType_4() { return static_cast(offsetof(XmlReflectionMember_t2DB532740F4159245F707469F68AEA9BFBDA55CD, ___declaringType_4)); } inline Type_t * get_declaringType_4() const { return ___declaringType_4; } inline Type_t ** get_address_of_declaringType_4() { return &___declaringType_4; } inline void set_declaringType_4(Type_t * value) { ___declaringType_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___declaringType_4), (void*)value); } }; // System.Xml.XmlResolver struct XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A : public RuntimeObject { public: public: }; // System.Xml.Schema.XmlSchemaDatatype struct XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 : public RuntimeObject { public: public: }; // System.Xml.Schema.XmlSchemaObject struct XmlSchemaObject_tD14BD548E370305745B6E1CAAF2572F1DBC7F3D3 : public RuntimeObject { public: public: }; // System.Xml.Serialization.XmlSerializationGeneratedCode struct XmlSerializationGeneratedCode_t434CFD8D2AF9FEC58DB65E02599C37182563C638 : public RuntimeObject { public: public: }; // System.Xml.Serialization.XmlSerializerImplementation struct XmlSerializerImplementation_t7498815CE092A9B67BE127DCA62F27ABECA6B230 : public RuntimeObject { public: public: }; // System.Xml.Serialization.XmlTypeMapMember struct XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC : public RuntimeObject { public: // System.String System.Xml.Serialization.XmlTypeMapMember::_name String_t* ____name_0; // System.Int32 System.Xml.Serialization.XmlTypeMapMember::_index int32_t ____index_1; // System.Int32 System.Xml.Serialization.XmlTypeMapMember::_globalIndex int32_t ____globalIndex_2; // System.Int32 System.Xml.Serialization.XmlTypeMapMember::_specifiedGlobalIndex int32_t ____specifiedGlobalIndex_3; // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapMember::_typeData TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * ____typeData_4; // System.Reflection.MemberInfo System.Xml.Serialization.XmlTypeMapMember::_member MemberInfo_t * ____member_5; // System.Reflection.MemberInfo System.Xml.Serialization.XmlTypeMapMember::_specifiedMember MemberInfo_t * ____specifiedMember_6; // System.Reflection.MethodInfo System.Xml.Serialization.XmlTypeMapMember::_shouldSerialize MethodInfo_t * ____shouldSerialize_7; // System.Object System.Xml.Serialization.XmlTypeMapMember::_defaultValue RuntimeObject * ____defaultValue_8; // System.Int32 System.Xml.Serialization.XmlTypeMapMember::_flags int32_t ____flags_9; public: inline static int32_t get_offset_of__name_0() { return static_cast(offsetof(XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC, ____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__index_1() { return static_cast(offsetof(XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC, ____index_1)); } inline int32_t get__index_1() const { return ____index_1; } inline int32_t* get_address_of__index_1() { return &____index_1; } inline void set__index_1(int32_t value) { ____index_1 = value; } inline static int32_t get_offset_of__globalIndex_2() { return static_cast(offsetof(XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC, ____globalIndex_2)); } inline int32_t get__globalIndex_2() const { return ____globalIndex_2; } inline int32_t* get_address_of__globalIndex_2() { return &____globalIndex_2; } inline void set__globalIndex_2(int32_t value) { ____globalIndex_2 = value; } inline static int32_t get_offset_of__specifiedGlobalIndex_3() { return static_cast(offsetof(XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC, ____specifiedGlobalIndex_3)); } inline int32_t get__specifiedGlobalIndex_3() const { return ____specifiedGlobalIndex_3; } inline int32_t* get_address_of__specifiedGlobalIndex_3() { return &____specifiedGlobalIndex_3; } inline void set__specifiedGlobalIndex_3(int32_t value) { ____specifiedGlobalIndex_3 = value; } inline static int32_t get_offset_of__typeData_4() { return static_cast(offsetof(XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC, ____typeData_4)); } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * get__typeData_4() const { return ____typeData_4; } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 ** get_address_of__typeData_4() { return &____typeData_4; } inline void set__typeData_4(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * value) { ____typeData_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____typeData_4), (void*)value); } inline static int32_t get_offset_of__member_5() { return static_cast(offsetof(XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC, ____member_5)); } inline MemberInfo_t * get__member_5() const { return ____member_5; } inline MemberInfo_t ** get_address_of__member_5() { return &____member_5; } inline void set__member_5(MemberInfo_t * value) { ____member_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____member_5), (void*)value); } inline static int32_t get_offset_of__specifiedMember_6() { return static_cast(offsetof(XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC, ____specifiedMember_6)); } inline MemberInfo_t * get__specifiedMember_6() const { return ____specifiedMember_6; } inline MemberInfo_t ** get_address_of__specifiedMember_6() { return &____specifiedMember_6; } inline void set__specifiedMember_6(MemberInfo_t * value) { ____specifiedMember_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____specifiedMember_6), (void*)value); } inline static int32_t get_offset_of__shouldSerialize_7() { return static_cast(offsetof(XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC, ____shouldSerialize_7)); } inline MethodInfo_t * get__shouldSerialize_7() const { return ____shouldSerialize_7; } inline MethodInfo_t ** get_address_of__shouldSerialize_7() { return &____shouldSerialize_7; } inline void set__shouldSerialize_7(MethodInfo_t * value) { ____shouldSerialize_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____shouldSerialize_7), (void*)value); } inline static int32_t get_offset_of__defaultValue_8() { return static_cast(offsetof(XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC, ____defaultValue_8)); } inline RuntimeObject * get__defaultValue_8() const { return ____defaultValue_8; } inline RuntimeObject ** get_address_of__defaultValue_8() { return &____defaultValue_8; } inline void set__defaultValue_8(RuntimeObject * value) { ____defaultValue_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____defaultValue_8), (void*)value); } inline static int32_t get_offset_of__flags_9() { return static_cast(offsetof(XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC, ____flags_9)); } inline int32_t get__flags_9() const { return ____flags_9; } inline int32_t* get_address_of__flags_9() { return &____flags_9; } inline void set__flags_9(int32_t value) { ____flags_9 = value; } }; // System.Xml.Schema.XmlValueConverter struct XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 : public RuntimeObject { public: public: }; // System.Xml.XmlWriter struct XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D : public RuntimeObject { public: public: }; // System.Xml.Schema.XsdSimpleValue struct XsdSimpleValue_t3A8F1EE8DEDEB6CC4EB489C911104E114501DAAB : public RuntimeObject { public: // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XsdSimpleValue::xmlType XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * ___xmlType_0; // System.Object System.Xml.Schema.XsdSimpleValue::typedValue RuntimeObject * ___typedValue_1; public: inline static int32_t get_offset_of_xmlType_0() { return static_cast(offsetof(XsdSimpleValue_t3A8F1EE8DEDEB6CC4EB489C911104E114501DAAB, ___xmlType_0)); } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * get_xmlType_0() const { return ___xmlType_0; } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C ** get_address_of_xmlType_0() { return &___xmlType_0; } inline void set_xmlType_0(XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * value) { ___xmlType_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlType_0), (void*)value); } inline static int32_t get_offset_of_typedValue_1() { return static_cast(offsetof(XsdSimpleValue_t3A8F1EE8DEDEB6CC4EB489C911104E114501DAAB, ___typedValue_1)); } inline RuntimeObject * get_typedValue_1() const { return ___typedValue_1; } inline RuntimeObject ** get_address_of_typedValue_1() { return &___typedValue_1; } inline void set_typedValue_1(RuntimeObject * value) { ___typedValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___typedValue_1), (void*)value); } }; // System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap struct SchemaDatatypeMap_t89F5A171396C2FF9555DBB013CDCF009EA8F202E : public RuntimeObject { public: // System.String System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap::name String_t* ___name_0; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap::type DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___type_1; // System.Int32 System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap::parentIndex int32_t ___parentIndex_2; public: inline static int32_t get_offset_of_name_0() { return static_cast(offsetof(SchemaDatatypeMap_t89F5A171396C2FF9555DBB013CDCF009EA8F202E, ___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_type_1() { return static_cast(offsetof(SchemaDatatypeMap_t89F5A171396C2FF9555DBB013CDCF009EA8F202E, ___type_1)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_type_1() const { return ___type_1; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_type_1() { return &___type_1; } inline void set_type_1(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___type_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_1), (void*)value); } inline static int32_t get_offset_of_parentIndex_2() { return static_cast(offsetof(SchemaDatatypeMap_t89F5A171396C2FF9555DBB013CDCF009EA8F202E, ___parentIndex_2)); } inline int32_t get_parentIndex_2() const { return ___parentIndex_2; } inline int32_t* get_address_of_parentIndex_2() { return &___parentIndex_2; } inline void set_parentIndex_2(int32_t value) { ___parentIndex_2 = value; } }; // System.Xml.DtdParser/UndeclaredNotation struct UndeclaredNotation_t1F530E59945B9747A96785CCFAB78E09D826008B : public RuntimeObject { public: // System.String System.Xml.DtdParser/UndeclaredNotation::name String_t* ___name_0; // System.Int32 System.Xml.DtdParser/UndeclaredNotation::lineNo int32_t ___lineNo_1; // System.Int32 System.Xml.DtdParser/UndeclaredNotation::linePos int32_t ___linePos_2; // System.Xml.DtdParser/UndeclaredNotation System.Xml.DtdParser/UndeclaredNotation::next UndeclaredNotation_t1F530E59945B9747A96785CCFAB78E09D826008B * ___next_3; public: inline static int32_t get_offset_of_name_0() { return static_cast(offsetof(UndeclaredNotation_t1F530E59945B9747A96785CCFAB78E09D826008B, ___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_lineNo_1() { return static_cast(offsetof(UndeclaredNotation_t1F530E59945B9747A96785CCFAB78E09D826008B, ___lineNo_1)); } inline int32_t get_lineNo_1() const { return ___lineNo_1; } inline int32_t* get_address_of_lineNo_1() { return &___lineNo_1; } inline void set_lineNo_1(int32_t value) { ___lineNo_1 = value; } inline static int32_t get_offset_of_linePos_2() { return static_cast(offsetof(UndeclaredNotation_t1F530E59945B9747A96785CCFAB78E09D826008B, ___linePos_2)); } inline int32_t get_linePos_2() const { return ___linePos_2; } inline int32_t* get_address_of_linePos_2() { return &___linePos_2; } inline void set_linePos_2(int32_t value) { ___linePos_2 = value; } inline static int32_t get_offset_of_next_3() { return static_cast(offsetof(UndeclaredNotation_t1F530E59945B9747A96785CCFAB78E09D826008B, ___next_3)); } inline UndeclaredNotation_t1F530E59945B9747A96785CCFAB78E09D826008B * get_next_3() const { return ___next_3; } inline UndeclaredNotation_t1F530E59945B9747A96785CCFAB78E09D826008B ** get_address_of_next_3() { return &___next_3; } inline void set_next_3(UndeclaredNotation_t1F530E59945B9747A96785CCFAB78E09D826008B * value) { ___next_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___next_3), (void*)value); } }; // System.Xml.Serialization.EnumMap/EnumMapMember struct EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 : public RuntimeObject { public: // System.String System.Xml.Serialization.EnumMap/EnumMapMember::_xmlName String_t* ____xmlName_0; // System.String System.Xml.Serialization.EnumMap/EnumMapMember::_enumName String_t* ____enumName_1; // System.Int64 System.Xml.Serialization.EnumMap/EnumMapMember::_value int64_t ____value_2; public: inline static int32_t get_offset_of__xmlName_0() { return static_cast(offsetof(EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78, ____xmlName_0)); } inline String_t* get__xmlName_0() const { return ____xmlName_0; } inline String_t** get_address_of__xmlName_0() { return &____xmlName_0; } inline void set__xmlName_0(String_t* value) { ____xmlName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____xmlName_0), (void*)value); } inline static int32_t get_offset_of__enumName_1() { return static_cast(offsetof(EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78, ____enumName_1)); } inline String_t* get__enumName_1() const { return ____enumName_1; } inline String_t** get_address_of__enumName_1() { return &____enumName_1; } inline void set__enumName_1(String_t* value) { ____enumName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____enumName_1), (void*)value); } inline static int32_t get_offset_of__value_2() { return static_cast(offsetof(EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78, ____value_2)); } inline int64_t get__value_2() const { return ____value_2; } inline int64_t* get_address_of__value_2() { return &____value_2; } inline void set__value_2(int64_t value) { ____value_2 = value; } }; // System.Xml.NameTable/Entry struct Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 : public RuntimeObject { public: // System.String System.Xml.NameTable/Entry::str String_t* ___str_0; // System.Int32 System.Xml.NameTable/Entry::hashCode int32_t ___hashCode_1; // System.Xml.NameTable/Entry System.Xml.NameTable/Entry::next Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * ___next_2; public: inline static int32_t get_offset_of_str_0() { return static_cast(offsetof(Entry_tE04CA3878430F262AD43F80C045C96A425BCE239, ___str_0)); } inline String_t* get_str_0() const { return ___str_0; } inline String_t** get_address_of_str_0() { return &___str_0; } inline void set_str_0(String_t* value) { ___str_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___str_0), (void*)value); } inline static int32_t get_offset_of_hashCode_1() { return static_cast(offsetof(Entry_tE04CA3878430F262AD43F80C045C96A425BCE239, ___hashCode_1)); } inline int32_t get_hashCode_1() const { return ___hashCode_1; } inline int32_t* get_address_of_hashCode_1() { return &___hashCode_1; } inline void set_hashCode_1(int32_t value) { ___hashCode_1 = value; } inline static int32_t get_offset_of_next_2() { return static_cast(offsetof(Entry_tE04CA3878430F262AD43F80C045C96A425BCE239, ___next_2)); } inline Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * get_next_2() const { return ___next_2; } inline Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 ** get_address_of_next_2() { return &___next_2; } inline void set_next_2(Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * value) { ___next_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___next_2), (void*)value); } }; // System.Xml.Schema.XmlAtomicValue/NamespacePrefixForQName struct NamespacePrefixForQName_t38692CB52444997F00035FBB30BCEC358855A1B2 : public RuntimeObject { public: // System.String System.Xml.Schema.XmlAtomicValue/NamespacePrefixForQName::prefix String_t* ___prefix_0; // System.String System.Xml.Schema.XmlAtomicValue/NamespacePrefixForQName::ns String_t* ___ns_1; public: inline static int32_t get_offset_of_prefix_0() { return static_cast(offsetof(NamespacePrefixForQName_t38692CB52444997F00035FBB30BCEC358855A1B2, ___prefix_0)); } inline String_t* get_prefix_0() const { return ___prefix_0; } inline String_t** get_address_of_prefix_0() { return &___prefix_0; } inline void set_prefix_0(String_t* value) { ___prefix_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___prefix_0), (void*)value); } inline static int32_t get_offset_of_ns_1() { return static_cast(offsetof(NamespacePrefixForQName_t38692CB52444997F00035FBB30BCEC358855A1B2, ___ns_1)); } inline String_t* get_ns_1() const { return ___ns_1; } inline String_t** get_address_of_ns_1() { return &___ns_1; } inline void set_ns_1(String_t* value) { ___ns_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ns_1), (void*)value); } }; // System.Xml.XmlDownloadManager/<>c__DisplayClass4_0 struct U3CU3Ec__DisplayClass4_0_t1CB18D171B35CF191BC6883D5C7E384F9F137C0B : public RuntimeObject { public: // System.Uri System.Xml.XmlDownloadManager/<>c__DisplayClass4_0::uri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri_0; public: inline static int32_t get_offset_of_uri_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass4_0_t1CB18D171B35CF191BC6883D5C7E384F9F137C0B, ___uri_0)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_uri_0() const { return ___uri_0; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_uri_0() { return &___uri_0; } inline void set_uri_0(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___uri_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___uri_0), (void*)value); } }; // System.Xml.Serialization.XmlReflectionImporter/<>c struct U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE : public RuntimeObject { public: public: }; // System.Xml.Serialization.XmlSerializationReader/CollectionFixup struct CollectionFixup_t89B63EF27FF0C97725BA984F06E6C18D67FC482E : public RuntimeObject { public: // System.Xml.Serialization.XmlSerializationCollectionFixupCallback System.Xml.Serialization.XmlSerializationReader/CollectionFixup::callback XmlSerializationCollectionFixupCallback_t88A34696BDDF37FD897F180858064DF7EF750B1A * ___callback_0; // System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::collection RuntimeObject * ___collection_1; // System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::collectionItems RuntimeObject * ___collectionItems_2; // System.String System.Xml.Serialization.XmlSerializationReader/CollectionFixup::id String_t* ___id_3; public: inline static int32_t get_offset_of_callback_0() { return static_cast(offsetof(CollectionFixup_t89B63EF27FF0C97725BA984F06E6C18D67FC482E, ___callback_0)); } inline XmlSerializationCollectionFixupCallback_t88A34696BDDF37FD897F180858064DF7EF750B1A * get_callback_0() const { return ___callback_0; } inline XmlSerializationCollectionFixupCallback_t88A34696BDDF37FD897F180858064DF7EF750B1A ** get_address_of_callback_0() { return &___callback_0; } inline void set_callback_0(XmlSerializationCollectionFixupCallback_t88A34696BDDF37FD897F180858064DF7EF750B1A * value) { ___callback_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___callback_0), (void*)value); } inline static int32_t get_offset_of_collection_1() { return static_cast(offsetof(CollectionFixup_t89B63EF27FF0C97725BA984F06E6C18D67FC482E, ___collection_1)); } inline RuntimeObject * get_collection_1() const { return ___collection_1; } inline RuntimeObject ** get_address_of_collection_1() { return &___collection_1; } inline void set_collection_1(RuntimeObject * value) { ___collection_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___collection_1), (void*)value); } inline static int32_t get_offset_of_collectionItems_2() { return static_cast(offsetof(CollectionFixup_t89B63EF27FF0C97725BA984F06E6C18D67FC482E, ___collectionItems_2)); } inline RuntimeObject * get_collectionItems_2() const { return ___collectionItems_2; } inline RuntimeObject ** get_address_of_collectionItems_2() { return &___collectionItems_2; } inline void set_collectionItems_2(RuntimeObject * value) { ___collectionItems_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___collectionItems_2), (void*)value); } inline static int32_t get_offset_of_id_3() { return static_cast(offsetof(CollectionFixup_t89B63EF27FF0C97725BA984F06E6C18D67FC482E, ___id_3)); } inline String_t* get_id_3() const { return ___id_3; } inline String_t** get_address_of_id_3() { return &___id_3; } inline void set_id_3(String_t* value) { ___id_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_3), (void*)value); } }; // System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup struct CollectionItemFixup_t70D993957A8584ED873E7BD74DC98ECE1101DB2D : public RuntimeObject { public: // System.Array System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::list RuntimeArray * ___list_0; // System.Int32 System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::index int32_t ___index_1; // System.String System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::id String_t* ___id_2; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(CollectionItemFixup_t70D993957A8584ED873E7BD74DC98ECE1101DB2D, ___list_0)); } inline RuntimeArray * get_list_0() const { return ___list_0; } inline RuntimeArray ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(RuntimeArray * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(CollectionItemFixup_t70D993957A8584ED873E7BD74DC98ECE1101DB2D, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_id_2() { return static_cast(offsetof(CollectionItemFixup_t70D993957A8584ED873E7BD74DC98ECE1101DB2D, ___id_2)); } inline String_t* get_id_2() const { return ___id_2; } inline String_t** get_address_of_id_2() { return &___id_2; } inline void set_id_2(String_t* value) { ___id_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_2), (void*)value); } }; // System.Xml.Serialization.XmlSerializationReader/Fixup struct Fixup_tC29AF2849DF70A12E99CE1ECE316CB1687D4FC5B : public RuntimeObject { public: // System.Object System.Xml.Serialization.XmlSerializationReader/Fixup::source RuntimeObject * ___source_0; // System.String[] System.Xml.Serialization.XmlSerializationReader/Fixup::ids StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___ids_1; // System.Xml.Serialization.XmlSerializationFixupCallback System.Xml.Serialization.XmlSerializationReader/Fixup::callback XmlSerializationFixupCallback_t20E0CC9B652B1BC41D75F4793FD87671D166E549 * ___callback_2; public: inline static int32_t get_offset_of_source_0() { return static_cast(offsetof(Fixup_tC29AF2849DF70A12E99CE1ECE316CB1687D4FC5B, ___source_0)); } inline RuntimeObject * get_source_0() const { return ___source_0; } inline RuntimeObject ** get_address_of_source_0() { return &___source_0; } inline void set_source_0(RuntimeObject * value) { ___source_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___source_0), (void*)value); } inline static int32_t get_offset_of_ids_1() { return static_cast(offsetof(Fixup_tC29AF2849DF70A12E99CE1ECE316CB1687D4FC5B, ___ids_1)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_ids_1() const { return ___ids_1; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_ids_1() { return &___ids_1; } inline void set_ids_1(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___ids_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ids_1), (void*)value); } inline static int32_t get_offset_of_callback_2() { return static_cast(offsetof(Fixup_tC29AF2849DF70A12E99CE1ECE316CB1687D4FC5B, ___callback_2)); } inline XmlSerializationFixupCallback_t20E0CC9B652B1BC41D75F4793FD87671D166E549 * get_callback_2() const { return ___callback_2; } inline XmlSerializationFixupCallback_t20E0CC9B652B1BC41D75F4793FD87671D166E549 ** get_address_of_callback_2() { return &___callback_2; } inline void set_callback_2(XmlSerializationFixupCallback_t20E0CC9B652B1BC41D75F4793FD87671D166E549 * value) { ___callback_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___callback_2), (void*)value); } }; // System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo struct WriteCallbackInfo_tF12675262DE88D8583DAD677E61DA8D1E81E4C0D : public RuntimeObject { public: // System.Type System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo::Type Type_t * ___Type_0; // System.String System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo::TypeName String_t* ___TypeName_1; // System.String System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo::TypeNs String_t* ___TypeNs_2; // System.Xml.Serialization.XmlSerializationReadCallback System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo::Callback XmlSerializationReadCallback_tC7FC61DC6AF3C45A91D27D7642EE41A61E6D3F9D * ___Callback_3; public: inline static int32_t get_offset_of_Type_0() { return static_cast(offsetof(WriteCallbackInfo_tF12675262DE88D8583DAD677E61DA8D1E81E4C0D, ___Type_0)); } inline Type_t * get_Type_0() const { return ___Type_0; } inline Type_t ** get_address_of_Type_0() { return &___Type_0; } inline void set_Type_0(Type_t * value) { ___Type_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Type_0), (void*)value); } inline static int32_t get_offset_of_TypeName_1() { return static_cast(offsetof(WriteCallbackInfo_tF12675262DE88D8583DAD677E61DA8D1E81E4C0D, ___TypeName_1)); } inline String_t* get_TypeName_1() const { return ___TypeName_1; } inline String_t** get_address_of_TypeName_1() { return &___TypeName_1; } inline void set_TypeName_1(String_t* value) { ___TypeName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___TypeName_1), (void*)value); } inline static int32_t get_offset_of_TypeNs_2() { return static_cast(offsetof(WriteCallbackInfo_tF12675262DE88D8583DAD677E61DA8D1E81E4C0D, ___TypeNs_2)); } inline String_t* get_TypeNs_2() const { return ___TypeNs_2; } inline String_t** get_address_of_TypeNs_2() { return &___TypeNs_2; } inline void set_TypeNs_2(String_t* value) { ___TypeNs_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___TypeNs_2), (void*)value); } inline static int32_t get_offset_of_Callback_3() { return static_cast(offsetof(WriteCallbackInfo_tF12675262DE88D8583DAD677E61DA8D1E81E4C0D, ___Callback_3)); } inline XmlSerializationReadCallback_tC7FC61DC6AF3C45A91D27D7642EE41A61E6D3F9D * get_Callback_3() const { return ___Callback_3; } inline XmlSerializationReadCallback_tC7FC61DC6AF3C45A91D27D7642EE41A61E6D3F9D ** get_address_of_Callback_3() { return &___Callback_3; } inline void set_Callback_3(XmlSerializationReadCallback_tC7FC61DC6AF3C45A91D27D7642EE41A61E6D3F9D * value) { ___Callback_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Callback_3), (void*)value); } }; // System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo struct FixupCallbackInfo_tB2AF64AEEA68C8D0EA425052B40E969983CB92D3 : public RuntimeObject { public: // System.Xml.Serialization.XmlSerializationReaderInterpreter System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::_sri XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26 * ____sri_0; // System.Xml.Serialization.ClassMap System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::_map ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB * ____map_1; // System.Boolean System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::_isValueList bool ____isValueList_2; public: inline static int32_t get_offset_of__sri_0() { return static_cast(offsetof(FixupCallbackInfo_tB2AF64AEEA68C8D0EA425052B40E969983CB92D3, ____sri_0)); } inline XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26 * get__sri_0() const { return ____sri_0; } inline XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26 ** get_address_of__sri_0() { return &____sri_0; } inline void set__sri_0(XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26 * value) { ____sri_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____sri_0), (void*)value); } inline static int32_t get_offset_of__map_1() { return static_cast(offsetof(FixupCallbackInfo_tB2AF64AEEA68C8D0EA425052B40E969983CB92D3, ____map_1)); } inline ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB * get__map_1() const { return ____map_1; } inline ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB ** get_address_of__map_1() { return &____map_1; } inline void set__map_1(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB * value) { ____map_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____map_1), (void*)value); } inline static int32_t get_offset_of__isValueList_2() { return static_cast(offsetof(FixupCallbackInfo_tB2AF64AEEA68C8D0EA425052B40E969983CB92D3, ____isValueList_2)); } inline bool get__isValueList_2() const { return ____isValueList_2; } inline bool* get_address_of__isValueList_2() { return &____isValueList_2; } inline void set__isValueList_2(bool value) { ____isValueList_2 = value; } }; // System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo struct ReaderCallbackInfo_t6D18AED803E1FB284AB8B388FD470CB3BEDD3DB4 : public RuntimeObject { public: // System.Xml.Serialization.XmlSerializationReaderInterpreter System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo::_sri XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26 * ____sri_0; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo::_typeMap XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * ____typeMap_1; public: inline static int32_t get_offset_of__sri_0() { return static_cast(offsetof(ReaderCallbackInfo_t6D18AED803E1FB284AB8B388FD470CB3BEDD3DB4, ____sri_0)); } inline XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26 * get__sri_0() const { return ____sri_0; } inline XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26 ** get_address_of__sri_0() { return &____sri_0; } inline void set__sri_0(XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26 * value) { ____sri_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____sri_0), (void*)value); } inline static int32_t get_offset_of__typeMap_1() { return static_cast(offsetof(ReaderCallbackInfo_t6D18AED803E1FB284AB8B388FD470CB3BEDD3DB4, ____typeMap_1)); } inline XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * get__typeMap_1() const { return ____typeMap_1; } inline XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 ** get_address_of__typeMap_1() { return &____typeMap_1; } inline void set__typeMap_1(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * value) { ____typeMap_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____typeMap_1), (void*)value); } }; // System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo struct WriteCallbackInfo_t3F32E130FEEAC3992BCB0CCC059369D4A09B9EEF : public RuntimeObject { public: // System.Type System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::Type Type_t * ___Type_0; // System.String System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::TypeName String_t* ___TypeName_1; // System.String System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::TypeNs String_t* ___TypeNs_2; // System.Xml.Serialization.XmlSerializationWriteCallback System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::Callback XmlSerializationWriteCallback_t913A191AF2181BDB556C809CE9A95D1B5EBF8454 * ___Callback_3; public: inline static int32_t get_offset_of_Type_0() { return static_cast(offsetof(WriteCallbackInfo_t3F32E130FEEAC3992BCB0CCC059369D4A09B9EEF, ___Type_0)); } inline Type_t * get_Type_0() const { return ___Type_0; } inline Type_t ** get_address_of_Type_0() { return &___Type_0; } inline void set_Type_0(Type_t * value) { ___Type_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Type_0), (void*)value); } inline static int32_t get_offset_of_TypeName_1() { return static_cast(offsetof(WriteCallbackInfo_t3F32E130FEEAC3992BCB0CCC059369D4A09B9EEF, ___TypeName_1)); } inline String_t* get_TypeName_1() const { return ___TypeName_1; } inline String_t** get_address_of_TypeName_1() { return &___TypeName_1; } inline void set_TypeName_1(String_t* value) { ___TypeName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___TypeName_1), (void*)value); } inline static int32_t get_offset_of_TypeNs_2() { return static_cast(offsetof(WriteCallbackInfo_t3F32E130FEEAC3992BCB0CCC059369D4A09B9EEF, ___TypeNs_2)); } inline String_t* get_TypeNs_2() const { return ___TypeNs_2; } inline String_t** get_address_of_TypeNs_2() { return &___TypeNs_2; } inline void set_TypeNs_2(String_t* value) { ___TypeNs_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___TypeNs_2), (void*)value); } inline static int32_t get_offset_of_Callback_3() { return static_cast(offsetof(WriteCallbackInfo_t3F32E130FEEAC3992BCB0CCC059369D4A09B9EEF, ___Callback_3)); } inline XmlSerializationWriteCallback_t913A191AF2181BDB556C809CE9A95D1B5EBF8454 * get_Callback_3() const { return ___Callback_3; } inline XmlSerializationWriteCallback_t913A191AF2181BDB556C809CE9A95D1B5EBF8454 ** get_address_of_Callback_3() { return &___Callback_3; } inline void set_Callback_3(XmlSerializationWriteCallback_t913A191AF2181BDB556C809CE9A95D1B5EBF8454 * value) { ___Callback_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Callback_3), (void*)value); } }; // System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo struct CallbackInfo_t142D92C1F8EA1C07621FB4A5E1383F836187E53A : public RuntimeObject { public: // System.Xml.Serialization.XmlSerializationWriterInterpreter System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo::_swi XmlSerializationWriterInterpreter_t5421FAFC8BE8D6DA736DF8A6DC1ADA79770CDB54 * ____swi_0; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo::_typeMap XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * ____typeMap_1; public: inline static int32_t get_offset_of__swi_0() { return static_cast(offsetof(CallbackInfo_t142D92C1F8EA1C07621FB4A5E1383F836187E53A, ____swi_0)); } inline XmlSerializationWriterInterpreter_t5421FAFC8BE8D6DA736DF8A6DC1ADA79770CDB54 * get__swi_0() const { return ____swi_0; } inline XmlSerializationWriterInterpreter_t5421FAFC8BE8D6DA736DF8A6DC1ADA79770CDB54 ** get_address_of__swi_0() { return &____swi_0; } inline void set__swi_0(XmlSerializationWriterInterpreter_t5421FAFC8BE8D6DA736DF8A6DC1ADA79770CDB54 * value) { ____swi_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____swi_0), (void*)value); } inline static int32_t get_offset_of__typeMap_1() { return static_cast(offsetof(CallbackInfo_t142D92C1F8EA1C07621FB4A5E1383F836187E53A, ____typeMap_1)); } inline XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * get__typeMap_1() const { return ____typeMap_1; } inline XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 ** get_address_of__typeMap_1() { return &____typeMap_1; } inline void set__typeMap_1(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * value) { ____typeMap_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____typeMap_1), (void*)value); } }; // System.Xml.Serialization.XmlSerializer/SerializerData struct SerializerData_tE81861A5E031D40D9732A8CF036A091D10F3478D : public RuntimeObject { public: // System.Reflection.MethodInfo System.Xml.Serialization.XmlSerializer/SerializerData::ReaderMethod MethodInfo_t * ___ReaderMethod_0; // System.Type System.Xml.Serialization.XmlSerializer/SerializerData::WriterType Type_t * ___WriterType_1; // System.Reflection.MethodInfo System.Xml.Serialization.XmlSerializer/SerializerData::WriterMethod MethodInfo_t * ___WriterMethod_2; // System.Xml.Serialization.XmlSerializerImplementation System.Xml.Serialization.XmlSerializer/SerializerData::Implementation XmlSerializerImplementation_t7498815CE092A9B67BE127DCA62F27ABECA6B230 * ___Implementation_3; public: inline static int32_t get_offset_of_ReaderMethod_0() { return static_cast(offsetof(SerializerData_tE81861A5E031D40D9732A8CF036A091D10F3478D, ___ReaderMethod_0)); } inline MethodInfo_t * get_ReaderMethod_0() const { return ___ReaderMethod_0; } inline MethodInfo_t ** get_address_of_ReaderMethod_0() { return &___ReaderMethod_0; } inline void set_ReaderMethod_0(MethodInfo_t * value) { ___ReaderMethod_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ReaderMethod_0), (void*)value); } inline static int32_t get_offset_of_WriterType_1() { return static_cast(offsetof(SerializerData_tE81861A5E031D40D9732A8CF036A091D10F3478D, ___WriterType_1)); } inline Type_t * get_WriterType_1() const { return ___WriterType_1; } inline Type_t ** get_address_of_WriterType_1() { return &___WriterType_1; } inline void set_WriterType_1(Type_t * value) { ___WriterType_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___WriterType_1), (void*)value); } inline static int32_t get_offset_of_WriterMethod_2() { return static_cast(offsetof(SerializerData_tE81861A5E031D40D9732A8CF036A091D10F3478D, ___WriterMethod_2)); } inline MethodInfo_t * get_WriterMethod_2() const { return ___WriterMethod_2; } inline MethodInfo_t ** get_address_of_WriterMethod_2() { return &___WriterMethod_2; } inline void set_WriterMethod_2(MethodInfo_t * value) { ___WriterMethod_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___WriterMethod_2), (void*)value); } inline static int32_t get_offset_of_Implementation_3() { return static_cast(offsetof(SerializerData_tE81861A5E031D40D9732A8CF036A091D10F3478D, ___Implementation_3)); } inline XmlSerializerImplementation_t7498815CE092A9B67BE127DCA62F27ABECA6B230 * get_Implementation_3() const { return ___Implementation_3; } inline XmlSerializerImplementation_t7498815CE092A9B67BE127DCA62F27ABECA6B230 ** get_address_of_Implementation_3() { return &___Implementation_3; } inline void set_Implementation_3(XmlSerializerImplementation_t7498815CE092A9B67BE127DCA62F27ABECA6B230 * value) { ___Implementation_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Implementation_3), (void*)value); } }; // System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer struct DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC : public RuntimeObject { public: public: }; // System.Xml.XmlTextReaderImpl/DtdParserProxy struct DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 : public RuntimeObject { public: // System.Xml.XmlTextReaderImpl System.Xml.XmlTextReaderImpl/DtdParserProxy::reader XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * ___reader_0; public: inline static int32_t get_offset_of_reader_0() { return static_cast(offsetof(DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557, ___reader_0)); } inline XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * get_reader_0() const { return ___reader_0; } inline XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 ** get_address_of_reader_0() { return &___reader_0; } inline void set_reader_0(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * value) { ___reader_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___reader_0), (void*)value); } }; // System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator struct SingleObjectEnumerator_t00B492D3B841924569E3EB466D5675163D6EF62E : public RuntimeObject { public: // System.Object System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator::loneValue RuntimeObject * ___loneValue_0; // System.Int32 System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator::position int32_t ___position_1; public: inline static int32_t get_offset_of_loneValue_0() { return static_cast(offsetof(SingleObjectEnumerator_t00B492D3B841924569E3EB466D5675163D6EF62E, ___loneValue_0)); } inline RuntimeObject * get_loneValue_0() const { return ___loneValue_0; } inline RuntimeObject ** get_address_of_loneValue_0() { return &___loneValue_0; } inline void set_loneValue_0(RuntimeObject * value) { ___loneValue_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___loneValue_0), (void*)value); } inline static int32_t get_offset_of_position_1() { return static_cast(offsetof(SingleObjectEnumerator_t00B492D3B841924569E3EB466D5675163D6EF62E, ___position_1)); } inline int32_t get_position_1() const { return ___position_1; } inline int32_t* get_address_of_position_1() { return &___position_1; } inline void set_position_1(int32_t value) { ___position_1 = value; } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter struct ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED { public: // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; public: inline static int32_t get_offset_of_m_task_0() { return static_cast(offsetof(ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED, ___m_task_0)); } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast(offsetof(ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED, ___m_continueOnCapturedContext_1)); } inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; } inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; } inline void set_m_continueOnCapturedContext_1(bool value) { ___m_continueOnCapturedContext_1 = value; } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter struct ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC { public: // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 * ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; public: inline static int32_t get_offset_of_m_task_0() { return static_cast(offsetof(ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC, ___m_task_0)); } inline Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 * get_m_task_0() const { return ___m_task_0; } inline Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast(offsetof(ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC, ___m_continueOnCapturedContext_1)); } inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; } inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; } inline void set_m_continueOnCapturedContext_1(bool value) { ___m_continueOnCapturedContext_1 = value; } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter struct ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 { public: // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765 * ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; public: inline static int32_t get_offset_of_m_task_0() { return static_cast(offsetof(ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2, ___m_task_0)); } inline Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765 * get_m_task_0() const { return ___m_task_0; } inline Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast(offsetof(ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2, ___m_continueOnCapturedContext_1)); } inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; } inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; } inline void set_m_continueOnCapturedContext_1(bool value) { ___m_continueOnCapturedContext_1 = value; } }; // System.Nullable`1 struct Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 { public: // T System.Nullable`1::value bool ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3, ___value_0)); } inline bool get_value_0() const { return ___value_0; } inline bool* get_address_of_value_0() { return &___value_0; } inline void set_value_0(bool value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast(offsetof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Runtime.CompilerServices.AsyncMethodBuilderCore struct AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 { public: // System.Runtime.CompilerServices.IAsyncStateMachine System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_stateMachine RuntimeObject* ___m_stateMachine_0; // System.Action System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_defaultContextAction Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___m_defaultContextAction_1; public: inline static int32_t get_offset_of_m_stateMachine_0() { return static_cast(offsetof(AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34, ___m_stateMachine_0)); } inline RuntimeObject* get_m_stateMachine_0() const { return ___m_stateMachine_0; } inline RuntimeObject** get_address_of_m_stateMachine_0() { return &___m_stateMachine_0; } inline void set_m_stateMachine_0(RuntimeObject* value) { ___m_stateMachine_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_stateMachine_0), (void*)value); } inline static int32_t get_offset_of_m_defaultContextAction_1() { return static_cast(offsetof(AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34, ___m_defaultContextAction_1)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_m_defaultContextAction_1() const { return ___m_defaultContextAction_1; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_m_defaultContextAction_1() { return &___m_defaultContextAction_1; } inline void set_m_defaultContextAction_1(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___m_defaultContextAction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_defaultContextAction_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore struct AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34_marshaled_pinvoke { RuntimeObject* ___m_stateMachine_0; Il2CppMethodPointer ___m_defaultContextAction_1; }; // Native definition for COM marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore struct AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34_marshaled_com { RuntimeObject* ___m_stateMachine_0; Il2CppMethodPointer ___m_defaultContextAction_1; }; // 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(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; } }; // System.Byte struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; // System.Threading.CancellationToken struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD { public: // System.Threading.CancellationTokenSource System.Threading.CancellationToken::m_source CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___m_source_0; public: inline static int32_t get_offset_of_m_source_0() { return static_cast(offsetof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD, ___m_source_0)); } inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * get_m_source_0() const { return ___m_source_0; } inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 ** get_address_of_m_source_0() { return &___m_source_0; } inline void set_m_source_0(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * value) { ___m_source_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Threading.CancellationToken struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshaled_pinvoke { CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___m_source_0; }; // Native definition for COM marshalling of System.Threading.CancellationToken struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshaled_com { CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___m_source_0; }; // System.Char struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; // System.DateTime struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 { public: // System.UInt64 System.DateTime::dateData uint64_t ___dateData_44; public: inline static int32_t get_offset_of_dateData_44() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405, ___dateData_44)); } inline uint64_t get_dateData_44() const { return ___dateData_44; } inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; } inline void set_dateData_44(uint64_t value) { ___dateData_44 = value; } }; // System.Decimal struct Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 { public: // System.Int32 System.Decimal::flags int32_t ___flags_14; // System.Int32 System.Decimal::hi int32_t ___hi_15; // System.Int32 System.Decimal::lo int32_t ___lo_16; // System.Int32 System.Decimal::mid int32_t ___mid_17; public: inline static int32_t get_offset_of_flags_14() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___flags_14)); } inline int32_t get_flags_14() const { return ___flags_14; } inline int32_t* get_address_of_flags_14() { return &___flags_14; } inline void set_flags_14(int32_t value) { ___flags_14 = value; } inline static int32_t get_offset_of_hi_15() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___hi_15)); } inline int32_t get_hi_15() const { return ___hi_15; } inline int32_t* get_address_of_hi_15() { return &___hi_15; } inline void set_hi_15(int32_t value) { ___hi_15 = value; } inline static int32_t get_offset_of_lo_16() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___lo_16)); } inline int32_t get_lo_16() const { return ___lo_16; } inline int32_t* get_address_of_lo_16() { return &___lo_16; } inline void set_lo_16(int32_t value) { ___lo_16 = value; } inline static int32_t get_offset_of_mid_17() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___mid_17)); } inline int32_t get_mid_17() const { return ___mid_17; } inline int32_t* get_address_of_mid_17() { return &___mid_17; } inline void set_mid_17(int32_t value) { ___mid_17 = value; } }; // System.Double struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 { public: public: }; // 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.Reflection.FieldInfo struct FieldInfo_t : public MemberInfo_t { public: public: }; // System.Int16 struct Int16_tD0F031114106263BB459DA1F099FF9F42691295A { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int16_tD0F031114106263BB459DA1F099FF9F42691295A, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = value; } }; // System.Int32 struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // 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(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; } }; // System.Xml.Schema.InteriorNode struct InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 : public SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 { public: // System.Xml.Schema.SyntaxTreeNode System.Xml.Schema.InteriorNode::leftChild SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * ___leftChild_0; // System.Xml.Schema.SyntaxTreeNode System.Xml.Schema.InteriorNode::rightChild SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * ___rightChild_1; public: inline static int32_t get_offset_of_leftChild_0() { return static_cast(offsetof(InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541, ___leftChild_0)); } inline SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * get_leftChild_0() const { return ___leftChild_0; } inline SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 ** get_address_of_leftChild_0() { return &___leftChild_0; } inline void set_leftChild_0(SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * value) { ___leftChild_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___leftChild_0), (void*)value); } inline static int32_t get_offset_of_rightChild_1() { return static_cast(offsetof(InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541, ___rightChild_1)); } inline SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * get_rightChild_1() const { return ___rightChild_1; } inline SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 ** get_address_of_rightChild_1() { return &___rightChild_1; } inline void set_rightChild_1(SyntaxTreeNode_t7CB071C63DCC38C485CE3510BEFA87282BB7A389 * value) { ___rightChild_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___rightChild_1), (void*)value); } }; // System.Xml.LineInfo struct LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE { public: // System.Int32 System.Xml.LineInfo::lineNo int32_t ___lineNo_0; // System.Int32 System.Xml.LineInfo::linePos int32_t ___linePos_1; public: inline static int32_t get_offset_of_lineNo_0() { return static_cast(offsetof(LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE, ___lineNo_0)); } inline int32_t get_lineNo_0() const { return ___lineNo_0; } inline int32_t* get_address_of_lineNo_0() { return &___lineNo_0; } inline void set_lineNo_0(int32_t value) { ___lineNo_0 = value; } inline static int32_t get_offset_of_linePos_1() { return static_cast(offsetof(LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE, ___linePos_1)); } inline int32_t get_linePos_1() const { return ___linePos_1; } inline int32_t* get_address_of_linePos_1() { return &___linePos_1; } inline void set_linePos_1(int32_t value) { ___linePos_1 = value; } }; // System.Xml.Serialization.ListMap struct ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 : public ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C { public: // System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.ListMap::_itemInfo XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * ____itemInfo_0; // System.String System.Xml.Serialization.ListMap::_choiceMember String_t* ____choiceMember_1; public: inline static int32_t get_offset_of__itemInfo_0() { return static_cast(offsetof(ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948, ____itemInfo_0)); } inline XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * get__itemInfo_0() const { return ____itemInfo_0; } inline XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A ** get_address_of__itemInfo_0() { return &____itemInfo_0; } inline void set__itemInfo_0(XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * value) { ____itemInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____itemInfo_0), (void*)value); } inline static int32_t get_offset_of__choiceMember_1() { return static_cast(offsetof(ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948, ____choiceMember_1)); } inline String_t* get__choiceMember_1() const { return ____choiceMember_1; } inline String_t** get_address_of__choiceMember_1() { return &____choiceMember_1; } inline void set__choiceMember_1(String_t* value) { ____choiceMember_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____choiceMember_1), (void*)value); } }; // System.Reflection.MethodBase struct MethodBase_t : public MemberInfo_t { public: public: }; // System.Reflection.ParameterModifier struct ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA { public: // System.Boolean[] System.Reflection.ParameterModifier::_byRef BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ____byRef_0; public: inline static int32_t get_offset_of__byRef_0() { return static_cast(offsetof(ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA, ____byRef_0)); } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* get__byRef_0() const { return ____byRef_0; } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C** get_address_of__byRef_0() { return &____byRef_0; } inline void set__byRef_0(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* value) { ____byRef_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____byRef_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier struct ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA_marshaled_pinvoke { int32_t* ____byRef_0; }; // Native definition for COM marshalling of System.Reflection.ParameterModifier struct ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA_marshaled_com { int32_t* ____byRef_0; }; // System.Reflection.PropertyInfo struct PropertyInfo_t : public MemberInfo_t { public: public: }; // System.SByte struct SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B { public: // System.SByte System.SByte::m_value int8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B, ___m_value_0)); } inline int8_t get_m_value_0() const { return ___m_value_0; } inline int8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int8_t value) { ___m_value_0 = value; } }; // System.Single struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: // System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * ____activeReadWriteTask_3; // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * ____asyncActiveSemaphore_4; public: inline static int32_t get_offset_of__activeReadWriteTask_3() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____activeReadWriteTask_3)); } inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * get__activeReadWriteTask_3() const { return ____activeReadWriteTask_3; } inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 ** get_address_of__activeReadWriteTask_3() { return &____activeReadWriteTask_3; } inline void set__activeReadWriteTask_3(ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * value) { ____activeReadWriteTask_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____activeReadWriteTask_3), (void*)value); } inline static int32_t get_offset_of__asyncActiveSemaphore_4() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____asyncActiveSemaphore_4)); } inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * get__asyncActiveSemaphore_4() const { return ____asyncActiveSemaphore_4; } inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 ** get_address_of__asyncActiveSemaphore_4() { return &____asyncActiveSemaphore_4; } inline void set__asyncActiveSemaphore_4(SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * value) { ____asyncActiveSemaphore_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_4), (void*)value); } }; // System.IO.TextReader struct TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: public: }; // System.IO.TextWriter struct TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: // System.Char[] System.IO.TextWriter::CoreNewLine CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___CoreNewLine_9; // System.IFormatProvider System.IO.TextWriter::InternalFormatProvider RuntimeObject* ___InternalFormatProvider_10; public: inline static int32_t get_offset_of_CoreNewLine_9() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643, ___CoreNewLine_9)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_CoreNewLine_9() const { return ___CoreNewLine_9; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_CoreNewLine_9() { return &___CoreNewLine_9; } inline void set_CoreNewLine_9(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___CoreNewLine_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___CoreNewLine_9), (void*)value); } inline static int32_t get_offset_of_InternalFormatProvider_10() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643, ___InternalFormatProvider_10)); } inline RuntimeObject* get_InternalFormatProvider_10() const { return ___InternalFormatProvider_10; } inline RuntimeObject** get_address_of_InternalFormatProvider_10() { return &___InternalFormatProvider_10; } inline void set_InternalFormatProvider_10(RuntimeObject* value) { ___InternalFormatProvider_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___InternalFormatProvider_10), (void*)value); } }; // System.UInt16 struct UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD, ___m_value_0)); } inline uint16_t get_m_value_0() const { return ___m_value_0; } inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint16_t value) { ___m_value_0 = value; } }; // System.UInt32 struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15 { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // System.UInt64 struct UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281 { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5 { public: union { struct { }; uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1]; }; public: }; // System.Net.WebResponse struct WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: public: }; // System.Xml.XmlAttribute struct XmlAttribute_t3F58A4BDFB486D0E610E4003E54A89BCCB65AB6D : public XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 { public: // System.Xml.XmlName System.Xml.XmlAttribute::name XmlName_t641FE51F9AE9A7BF9B333D2FB61E2867328F5A63 * ___name_1; // System.Xml.XmlLinkedNode System.Xml.XmlAttribute::lastChild XmlLinkedNode_tAF992FE43A99E1889622121C0D712C80586580F0 * ___lastChild_2; public: inline static int32_t get_offset_of_name_1() { return static_cast(offsetof(XmlAttribute_t3F58A4BDFB486D0E610E4003E54A89BCCB65AB6D, ___name_1)); } inline XmlName_t641FE51F9AE9A7BF9B333D2FB61E2867328F5A63 * get_name_1() const { return ___name_1; } inline XmlName_t641FE51F9AE9A7BF9B333D2FB61E2867328F5A63 ** get_address_of_name_1() { return &___name_1; } inline void set_name_1(XmlName_t641FE51F9AE9A7BF9B333D2FB61E2867328F5A63 * value) { ___name_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_1), (void*)value); } inline static int32_t get_offset_of_lastChild_2() { return static_cast(offsetof(XmlAttribute_t3F58A4BDFB486D0E610E4003E54A89BCCB65AB6D, ___lastChild_2)); } inline XmlLinkedNode_tAF992FE43A99E1889622121C0D712C80586580F0 * get_lastChild_2() const { return ___lastChild_2; } inline XmlLinkedNode_tAF992FE43A99E1889622121C0D712C80586580F0 ** get_address_of_lastChild_2() { return &___lastChild_2; } inline void set_lastChild_2(XmlLinkedNode_tAF992FE43A99E1889622121C0D712C80586580F0 * value) { ___lastChild_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastChild_2), (void*)value); } }; // System.Xml.XmlCharType struct XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA { public: // System.Byte[] System.Xml.XmlCharType::charProperties ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___charProperties_2; public: inline static int32_t get_offset_of_charProperties_2() { return static_cast(offsetof(XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA, ___charProperties_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_charProperties_2() const { return ___charProperties_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_charProperties_2() { return &___charProperties_2; } inline void set_charProperties_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___charProperties_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___charProperties_2), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Xml.XmlCharType struct XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA_marshaled_pinvoke { Il2CppSafeArray/*NONE*/* ___charProperties_2; }; // Native definition for COM marshalling of System.Xml.XmlCharType struct XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA_marshaled_com { Il2CppSafeArray/*NONE*/* ___charProperties_2; }; // System.Xml.XmlDocument struct XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F : public XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 { public: // System.Xml.XmlImplementation System.Xml.XmlDocument::implementation XmlImplementation_tE66EA5FEAE495F36B03F697C51E4815D4B5D1D59 * ___implementation_1; // System.Xml.DomNameTable System.Xml.XmlDocument::domNameTable DomNameTable_tE88EEF20D313A83C002E18FFF7688CC74A2D1CAB * ___domNameTable_2; // System.Xml.XmlLinkedNode System.Xml.XmlDocument::lastChild XmlLinkedNode_tAF992FE43A99E1889622121C0D712C80586580F0 * ___lastChild_3; // System.Xml.XmlNamedNodeMap System.Xml.XmlDocument::entities XmlNamedNodeMap_t7554E5F015FED975E1E8B075F57EBA65773CF771 * ___entities_4; // System.Collections.Hashtable System.Xml.XmlDocument::htElementIdMap Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___htElementIdMap_5; // System.Collections.Hashtable System.Xml.XmlDocument::htElementIDAttrDecl Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___htElementIDAttrDecl_6; // System.Xml.Schema.SchemaInfo System.Xml.XmlDocument::schemaInfo SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * ___schemaInfo_7; // System.Xml.Schema.XmlSchemaSet System.Xml.XmlDocument::schemas XmlSchemaSet_t7CE09F2ECFA8C5EB28DF4724C87EC50B539699E0 * ___schemas_8; // System.Boolean System.Xml.XmlDocument::reportValidity bool ___reportValidity_9; // System.Boolean System.Xml.XmlDocument::actualLoadingStatus bool ___actualLoadingStatus_10; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeInsertingDelegate XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * ___onNodeInsertingDelegate_11; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeInsertedDelegate XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * ___onNodeInsertedDelegate_12; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeRemovingDelegate XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * ___onNodeRemovingDelegate_13; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeRemovedDelegate XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * ___onNodeRemovedDelegate_14; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeChangingDelegate XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * ___onNodeChangingDelegate_15; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeChangedDelegate XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * ___onNodeChangedDelegate_16; // System.Boolean System.Xml.XmlDocument::fEntRefNodesPresent bool ___fEntRefNodesPresent_17; // System.Boolean System.Xml.XmlDocument::fCDataNodesPresent bool ___fCDataNodesPresent_18; // System.Boolean System.Xml.XmlDocument::preserveWhitespace bool ___preserveWhitespace_19; // System.Boolean System.Xml.XmlDocument::isLoading bool ___isLoading_20; // System.String System.Xml.XmlDocument::strDocumentName String_t* ___strDocumentName_21; // System.String System.Xml.XmlDocument::strDocumentFragmentName String_t* ___strDocumentFragmentName_22; // System.String System.Xml.XmlDocument::strCommentName String_t* ___strCommentName_23; // System.String System.Xml.XmlDocument::strTextName String_t* ___strTextName_24; // System.String System.Xml.XmlDocument::strCDataSectionName String_t* ___strCDataSectionName_25; // System.String System.Xml.XmlDocument::strEntityName String_t* ___strEntityName_26; // System.String System.Xml.XmlDocument::strID String_t* ___strID_27; // System.String System.Xml.XmlDocument::strXmlns String_t* ___strXmlns_28; // System.String System.Xml.XmlDocument::strXml String_t* ___strXml_29; // System.String System.Xml.XmlDocument::strSpace String_t* ___strSpace_30; // System.String System.Xml.XmlDocument::strLang String_t* ___strLang_31; // System.String System.Xml.XmlDocument::strEmpty String_t* ___strEmpty_32; // System.String System.Xml.XmlDocument::strNonSignificantWhitespaceName String_t* ___strNonSignificantWhitespaceName_33; // System.String System.Xml.XmlDocument::strSignificantWhitespaceName String_t* ___strSignificantWhitespaceName_34; // System.String System.Xml.XmlDocument::strReservedXmlns String_t* ___strReservedXmlns_35; // System.String System.Xml.XmlDocument::strReservedXml String_t* ___strReservedXml_36; // System.String System.Xml.XmlDocument::baseURI String_t* ___baseURI_37; // System.Xml.XmlResolver System.Xml.XmlDocument::resolver XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A * ___resolver_38; // System.Boolean System.Xml.XmlDocument::bSetResolver bool ___bSetResolver_39; // System.Object System.Xml.XmlDocument::objLock RuntimeObject * ___objLock_40; public: inline static int32_t get_offset_of_implementation_1() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___implementation_1)); } inline XmlImplementation_tE66EA5FEAE495F36B03F697C51E4815D4B5D1D59 * get_implementation_1() const { return ___implementation_1; } inline XmlImplementation_tE66EA5FEAE495F36B03F697C51E4815D4B5D1D59 ** get_address_of_implementation_1() { return &___implementation_1; } inline void set_implementation_1(XmlImplementation_tE66EA5FEAE495F36B03F697C51E4815D4B5D1D59 * value) { ___implementation_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___implementation_1), (void*)value); } inline static int32_t get_offset_of_domNameTable_2() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___domNameTable_2)); } inline DomNameTable_tE88EEF20D313A83C002E18FFF7688CC74A2D1CAB * get_domNameTable_2() const { return ___domNameTable_2; } inline DomNameTable_tE88EEF20D313A83C002E18FFF7688CC74A2D1CAB ** get_address_of_domNameTable_2() { return &___domNameTable_2; } inline void set_domNameTable_2(DomNameTable_tE88EEF20D313A83C002E18FFF7688CC74A2D1CAB * value) { ___domNameTable_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___domNameTable_2), (void*)value); } inline static int32_t get_offset_of_lastChild_3() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___lastChild_3)); } inline XmlLinkedNode_tAF992FE43A99E1889622121C0D712C80586580F0 * get_lastChild_3() const { return ___lastChild_3; } inline XmlLinkedNode_tAF992FE43A99E1889622121C0D712C80586580F0 ** get_address_of_lastChild_3() { return &___lastChild_3; } inline void set_lastChild_3(XmlLinkedNode_tAF992FE43A99E1889622121C0D712C80586580F0 * value) { ___lastChild_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastChild_3), (void*)value); } inline static int32_t get_offset_of_entities_4() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___entities_4)); } inline XmlNamedNodeMap_t7554E5F015FED975E1E8B075F57EBA65773CF771 * get_entities_4() const { return ___entities_4; } inline XmlNamedNodeMap_t7554E5F015FED975E1E8B075F57EBA65773CF771 ** get_address_of_entities_4() { return &___entities_4; } inline void set_entities_4(XmlNamedNodeMap_t7554E5F015FED975E1E8B075F57EBA65773CF771 * value) { ___entities_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___entities_4), (void*)value); } inline static int32_t get_offset_of_htElementIdMap_5() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___htElementIdMap_5)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_htElementIdMap_5() const { return ___htElementIdMap_5; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_htElementIdMap_5() { return &___htElementIdMap_5; } inline void set_htElementIdMap_5(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___htElementIdMap_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___htElementIdMap_5), (void*)value); } inline static int32_t get_offset_of_htElementIDAttrDecl_6() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___htElementIDAttrDecl_6)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_htElementIDAttrDecl_6() const { return ___htElementIDAttrDecl_6; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_htElementIDAttrDecl_6() { return &___htElementIDAttrDecl_6; } inline void set_htElementIDAttrDecl_6(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___htElementIDAttrDecl_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___htElementIDAttrDecl_6), (void*)value); } inline static int32_t get_offset_of_schemaInfo_7() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___schemaInfo_7)); } inline SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * get_schemaInfo_7() const { return ___schemaInfo_7; } inline SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 ** get_address_of_schemaInfo_7() { return &___schemaInfo_7; } inline void set_schemaInfo_7(SchemaInfo_tDED785F47546ED3F5EEC6EA77577917420BF3BF5 * value) { ___schemaInfo_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___schemaInfo_7), (void*)value); } inline static int32_t get_offset_of_schemas_8() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___schemas_8)); } inline XmlSchemaSet_t7CE09F2ECFA8C5EB28DF4724C87EC50B539699E0 * get_schemas_8() const { return ___schemas_8; } inline XmlSchemaSet_t7CE09F2ECFA8C5EB28DF4724C87EC50B539699E0 ** get_address_of_schemas_8() { return &___schemas_8; } inline void set_schemas_8(XmlSchemaSet_t7CE09F2ECFA8C5EB28DF4724C87EC50B539699E0 * value) { ___schemas_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___schemas_8), (void*)value); } inline static int32_t get_offset_of_reportValidity_9() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___reportValidity_9)); } inline bool get_reportValidity_9() const { return ___reportValidity_9; } inline bool* get_address_of_reportValidity_9() { return &___reportValidity_9; } inline void set_reportValidity_9(bool value) { ___reportValidity_9 = value; } inline static int32_t get_offset_of_actualLoadingStatus_10() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___actualLoadingStatus_10)); } inline bool get_actualLoadingStatus_10() const { return ___actualLoadingStatus_10; } inline bool* get_address_of_actualLoadingStatus_10() { return &___actualLoadingStatus_10; } inline void set_actualLoadingStatus_10(bool value) { ___actualLoadingStatus_10 = value; } inline static int32_t get_offset_of_onNodeInsertingDelegate_11() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___onNodeInsertingDelegate_11)); } inline XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * get_onNodeInsertingDelegate_11() const { return ___onNodeInsertingDelegate_11; } inline XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 ** get_address_of_onNodeInsertingDelegate_11() { return &___onNodeInsertingDelegate_11; } inline void set_onNodeInsertingDelegate_11(XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * value) { ___onNodeInsertingDelegate_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___onNodeInsertingDelegate_11), (void*)value); } inline static int32_t get_offset_of_onNodeInsertedDelegate_12() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___onNodeInsertedDelegate_12)); } inline XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * get_onNodeInsertedDelegate_12() const { return ___onNodeInsertedDelegate_12; } inline XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 ** get_address_of_onNodeInsertedDelegate_12() { return &___onNodeInsertedDelegate_12; } inline void set_onNodeInsertedDelegate_12(XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * value) { ___onNodeInsertedDelegate_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___onNodeInsertedDelegate_12), (void*)value); } inline static int32_t get_offset_of_onNodeRemovingDelegate_13() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___onNodeRemovingDelegate_13)); } inline XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * get_onNodeRemovingDelegate_13() const { return ___onNodeRemovingDelegate_13; } inline XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 ** get_address_of_onNodeRemovingDelegate_13() { return &___onNodeRemovingDelegate_13; } inline void set_onNodeRemovingDelegate_13(XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * value) { ___onNodeRemovingDelegate_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___onNodeRemovingDelegate_13), (void*)value); } inline static int32_t get_offset_of_onNodeRemovedDelegate_14() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___onNodeRemovedDelegate_14)); } inline XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * get_onNodeRemovedDelegate_14() const { return ___onNodeRemovedDelegate_14; } inline XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 ** get_address_of_onNodeRemovedDelegate_14() { return &___onNodeRemovedDelegate_14; } inline void set_onNodeRemovedDelegate_14(XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * value) { ___onNodeRemovedDelegate_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___onNodeRemovedDelegate_14), (void*)value); } inline static int32_t get_offset_of_onNodeChangingDelegate_15() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___onNodeChangingDelegate_15)); } inline XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * get_onNodeChangingDelegate_15() const { return ___onNodeChangingDelegate_15; } inline XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 ** get_address_of_onNodeChangingDelegate_15() { return &___onNodeChangingDelegate_15; } inline void set_onNodeChangingDelegate_15(XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * value) { ___onNodeChangingDelegate_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___onNodeChangingDelegate_15), (void*)value); } inline static int32_t get_offset_of_onNodeChangedDelegate_16() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___onNodeChangedDelegate_16)); } inline XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * get_onNodeChangedDelegate_16() const { return ___onNodeChangedDelegate_16; } inline XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 ** get_address_of_onNodeChangedDelegate_16() { return &___onNodeChangedDelegate_16; } inline void set_onNodeChangedDelegate_16(XmlNodeChangedEventHandler_tA0D165ACE065C3934721B68C6762B79372D7ECE9 * value) { ___onNodeChangedDelegate_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___onNodeChangedDelegate_16), (void*)value); } inline static int32_t get_offset_of_fEntRefNodesPresent_17() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___fEntRefNodesPresent_17)); } inline bool get_fEntRefNodesPresent_17() const { return ___fEntRefNodesPresent_17; } inline bool* get_address_of_fEntRefNodesPresent_17() { return &___fEntRefNodesPresent_17; } inline void set_fEntRefNodesPresent_17(bool value) { ___fEntRefNodesPresent_17 = value; } inline static int32_t get_offset_of_fCDataNodesPresent_18() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___fCDataNodesPresent_18)); } inline bool get_fCDataNodesPresent_18() const { return ___fCDataNodesPresent_18; } inline bool* get_address_of_fCDataNodesPresent_18() { return &___fCDataNodesPresent_18; } inline void set_fCDataNodesPresent_18(bool value) { ___fCDataNodesPresent_18 = value; } inline static int32_t get_offset_of_preserveWhitespace_19() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___preserveWhitespace_19)); } inline bool get_preserveWhitespace_19() const { return ___preserveWhitespace_19; } inline bool* get_address_of_preserveWhitespace_19() { return &___preserveWhitespace_19; } inline void set_preserveWhitespace_19(bool value) { ___preserveWhitespace_19 = value; } inline static int32_t get_offset_of_isLoading_20() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___isLoading_20)); } inline bool get_isLoading_20() const { return ___isLoading_20; } inline bool* get_address_of_isLoading_20() { return &___isLoading_20; } inline void set_isLoading_20(bool value) { ___isLoading_20 = value; } inline static int32_t get_offset_of_strDocumentName_21() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___strDocumentName_21)); } inline String_t* get_strDocumentName_21() const { return ___strDocumentName_21; } inline String_t** get_address_of_strDocumentName_21() { return &___strDocumentName_21; } inline void set_strDocumentName_21(String_t* value) { ___strDocumentName_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___strDocumentName_21), (void*)value); } inline static int32_t get_offset_of_strDocumentFragmentName_22() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___strDocumentFragmentName_22)); } inline String_t* get_strDocumentFragmentName_22() const { return ___strDocumentFragmentName_22; } inline String_t** get_address_of_strDocumentFragmentName_22() { return &___strDocumentFragmentName_22; } inline void set_strDocumentFragmentName_22(String_t* value) { ___strDocumentFragmentName_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___strDocumentFragmentName_22), (void*)value); } inline static int32_t get_offset_of_strCommentName_23() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___strCommentName_23)); } inline String_t* get_strCommentName_23() const { return ___strCommentName_23; } inline String_t** get_address_of_strCommentName_23() { return &___strCommentName_23; } inline void set_strCommentName_23(String_t* value) { ___strCommentName_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___strCommentName_23), (void*)value); } inline static int32_t get_offset_of_strTextName_24() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___strTextName_24)); } inline String_t* get_strTextName_24() const { return ___strTextName_24; } inline String_t** get_address_of_strTextName_24() { return &___strTextName_24; } inline void set_strTextName_24(String_t* value) { ___strTextName_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___strTextName_24), (void*)value); } inline static int32_t get_offset_of_strCDataSectionName_25() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___strCDataSectionName_25)); } inline String_t* get_strCDataSectionName_25() const { return ___strCDataSectionName_25; } inline String_t** get_address_of_strCDataSectionName_25() { return &___strCDataSectionName_25; } inline void set_strCDataSectionName_25(String_t* value) { ___strCDataSectionName_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___strCDataSectionName_25), (void*)value); } inline static int32_t get_offset_of_strEntityName_26() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___strEntityName_26)); } inline String_t* get_strEntityName_26() const { return ___strEntityName_26; } inline String_t** get_address_of_strEntityName_26() { return &___strEntityName_26; } inline void set_strEntityName_26(String_t* value) { ___strEntityName_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___strEntityName_26), (void*)value); } inline static int32_t get_offset_of_strID_27() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___strID_27)); } inline String_t* get_strID_27() const { return ___strID_27; } inline String_t** get_address_of_strID_27() { return &___strID_27; } inline void set_strID_27(String_t* value) { ___strID_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___strID_27), (void*)value); } inline static int32_t get_offset_of_strXmlns_28() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___strXmlns_28)); } inline String_t* get_strXmlns_28() const { return ___strXmlns_28; } inline String_t** get_address_of_strXmlns_28() { return &___strXmlns_28; } inline void set_strXmlns_28(String_t* value) { ___strXmlns_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___strXmlns_28), (void*)value); } inline static int32_t get_offset_of_strXml_29() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___strXml_29)); } inline String_t* get_strXml_29() const { return ___strXml_29; } inline String_t** get_address_of_strXml_29() { return &___strXml_29; } inline void set_strXml_29(String_t* value) { ___strXml_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___strXml_29), (void*)value); } inline static int32_t get_offset_of_strSpace_30() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___strSpace_30)); } inline String_t* get_strSpace_30() const { return ___strSpace_30; } inline String_t** get_address_of_strSpace_30() { return &___strSpace_30; } inline void set_strSpace_30(String_t* value) { ___strSpace_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___strSpace_30), (void*)value); } inline static int32_t get_offset_of_strLang_31() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___strLang_31)); } inline String_t* get_strLang_31() const { return ___strLang_31; } inline String_t** get_address_of_strLang_31() { return &___strLang_31; } inline void set_strLang_31(String_t* value) { ___strLang_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___strLang_31), (void*)value); } inline static int32_t get_offset_of_strEmpty_32() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___strEmpty_32)); } inline String_t* get_strEmpty_32() const { return ___strEmpty_32; } inline String_t** get_address_of_strEmpty_32() { return &___strEmpty_32; } inline void set_strEmpty_32(String_t* value) { ___strEmpty_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___strEmpty_32), (void*)value); } inline static int32_t get_offset_of_strNonSignificantWhitespaceName_33() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___strNonSignificantWhitespaceName_33)); } inline String_t* get_strNonSignificantWhitespaceName_33() const { return ___strNonSignificantWhitespaceName_33; } inline String_t** get_address_of_strNonSignificantWhitespaceName_33() { return &___strNonSignificantWhitespaceName_33; } inline void set_strNonSignificantWhitespaceName_33(String_t* value) { ___strNonSignificantWhitespaceName_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___strNonSignificantWhitespaceName_33), (void*)value); } inline static int32_t get_offset_of_strSignificantWhitespaceName_34() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___strSignificantWhitespaceName_34)); } inline String_t* get_strSignificantWhitespaceName_34() const { return ___strSignificantWhitespaceName_34; } inline String_t** get_address_of_strSignificantWhitespaceName_34() { return &___strSignificantWhitespaceName_34; } inline void set_strSignificantWhitespaceName_34(String_t* value) { ___strSignificantWhitespaceName_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___strSignificantWhitespaceName_34), (void*)value); } inline static int32_t get_offset_of_strReservedXmlns_35() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___strReservedXmlns_35)); } inline String_t* get_strReservedXmlns_35() const { return ___strReservedXmlns_35; } inline String_t** get_address_of_strReservedXmlns_35() { return &___strReservedXmlns_35; } inline void set_strReservedXmlns_35(String_t* value) { ___strReservedXmlns_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___strReservedXmlns_35), (void*)value); } inline static int32_t get_offset_of_strReservedXml_36() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___strReservedXml_36)); } inline String_t* get_strReservedXml_36() const { return ___strReservedXml_36; } inline String_t** get_address_of_strReservedXml_36() { return &___strReservedXml_36; } inline void set_strReservedXml_36(String_t* value) { ___strReservedXml_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___strReservedXml_36), (void*)value); } inline static int32_t get_offset_of_baseURI_37() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___baseURI_37)); } inline String_t* get_baseURI_37() const { return ___baseURI_37; } inline String_t** get_address_of_baseURI_37() { return &___baseURI_37; } inline void set_baseURI_37(String_t* value) { ___baseURI_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___baseURI_37), (void*)value); } inline static int32_t get_offset_of_resolver_38() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___resolver_38)); } inline XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A * get_resolver_38() const { return ___resolver_38; } inline XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A ** get_address_of_resolver_38() { return &___resolver_38; } inline void set_resolver_38(XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A * value) { ___resolver_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___resolver_38), (void*)value); } inline static int32_t get_offset_of_bSetResolver_39() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___bSetResolver_39)); } inline bool get_bSetResolver_39() const { return ___bSetResolver_39; } inline bool* get_address_of_bSetResolver_39() { return &___bSetResolver_39; } inline void set_bSetResolver_39(bool value) { ___bSetResolver_39 = value; } inline static int32_t get_offset_of_objLock_40() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F, ___objLock_40)); } inline RuntimeObject * get_objLock_40() const { return ___objLock_40; } inline RuntimeObject ** get_address_of_objLock_40() { return &___objLock_40; } inline void set_objLock_40(RuntimeObject * value) { ___objLock_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___objLock_40), (void*)value); } }; // System.Xml.XmlLinkedNode struct XmlLinkedNode_tAF992FE43A99E1889622121C0D712C80586580F0 : public XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 { public: // System.Xml.XmlLinkedNode System.Xml.XmlLinkedNode::next XmlLinkedNode_tAF992FE43A99E1889622121C0D712C80586580F0 * ___next_1; public: inline static int32_t get_offset_of_next_1() { return static_cast(offsetof(XmlLinkedNode_tAF992FE43A99E1889622121C0D712C80586580F0, ___next_1)); } inline XmlLinkedNode_tAF992FE43A99E1889622121C0D712C80586580F0 * get_next_1() const { return ___next_1; } inline XmlLinkedNode_tAF992FE43A99E1889622121C0D712C80586580F0 ** get_address_of_next_1() { return &___next_1; } inline void set_next_1(XmlLinkedNode_tAF992FE43A99E1889622121C0D712C80586580F0 * value) { ___next_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___next_1), (void*)value); } }; // System.Xml.Schema.XmlSchemaAnnotated struct XmlSchemaAnnotated_t68F13E739330186883290FF723E752BD26F2E3A7 : public XmlSchemaObject_tD14BD548E370305745B6E1CAAF2572F1DBC7F3D3 { public: public: }; // System.Xml.Serialization.XmlSerializationReader struct XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD : public XmlSerializationGeneratedCode_t434CFD8D2AF9FEC58DB65E02599C37182563C638 { public: // System.Xml.XmlDocument System.Xml.Serialization.XmlSerializationReader::document XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * ___document_0; // System.Xml.XmlReader System.Xml.Serialization.XmlSerializationReader::reader XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138 * ___reader_1; // System.Collections.ArrayList System.Xml.Serialization.XmlSerializationReader::fixups ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___fixups_2; // System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::collFixups Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___collFixups_3; // System.Collections.ArrayList System.Xml.Serialization.XmlSerializationReader::collItemFixups ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___collItemFixups_4; // System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::typesCallbacks Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___typesCallbacks_5; // System.Collections.ArrayList System.Xml.Serialization.XmlSerializationReader::noIDTargets ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___noIDTargets_6; // System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::targets Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___targets_7; // System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::delayedListFixups Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___delayedListFixups_8; // System.Xml.Serialization.XmlSerializer System.Xml.Serialization.XmlSerializationReader::eventSource XmlSerializer_t2960FF2C2C062704541774440D09CA3DAFFCB01B * ___eventSource_9; // System.Int32 System.Xml.Serialization.XmlSerializationReader::delayedFixupId int32_t ___delayedFixupId_10; // System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::referencedObjects Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___referencedObjects_11; // System.Int32 System.Xml.Serialization.XmlSerializationReader::readCount int32_t ___readCount_12; // System.Int32 System.Xml.Serialization.XmlSerializationReader::whileIterationCount int32_t ___whileIterationCount_13; // System.String System.Xml.Serialization.XmlSerializationReader::w3SchemaNS String_t* ___w3SchemaNS_14; // System.String System.Xml.Serialization.XmlSerializationReader::w3InstanceNS String_t* ___w3InstanceNS_15; // System.String System.Xml.Serialization.XmlSerializationReader::w3InstanceNS2000 String_t* ___w3InstanceNS2000_16; // System.String System.Xml.Serialization.XmlSerializationReader::w3InstanceNS1999 String_t* ___w3InstanceNS1999_17; // System.String System.Xml.Serialization.XmlSerializationReader::soapNS String_t* ___soapNS_18; // System.String System.Xml.Serialization.XmlSerializationReader::wsdlNS String_t* ___wsdlNS_19; // System.String System.Xml.Serialization.XmlSerializationReader::nullX String_t* ___nullX_20; // System.String System.Xml.Serialization.XmlSerializationReader::nil String_t* ___nil_21; // System.String System.Xml.Serialization.XmlSerializationReader::typeX String_t* ___typeX_22; // System.String System.Xml.Serialization.XmlSerializationReader::arrayType String_t* ___arrayType_23; // System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::arrayQName XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___arrayQName_24; public: inline static int32_t get_offset_of_document_0() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___document_0)); } inline XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * get_document_0() const { return ___document_0; } inline XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F ** get_address_of_document_0() { return &___document_0; } inline void set_document_0(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * value) { ___document_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___document_0), (void*)value); } inline static int32_t get_offset_of_reader_1() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___reader_1)); } inline XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138 * get_reader_1() const { return ___reader_1; } inline XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138 ** get_address_of_reader_1() { return &___reader_1; } inline void set_reader_1(XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138 * value) { ___reader_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___reader_1), (void*)value); } inline static int32_t get_offset_of_fixups_2() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___fixups_2)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_fixups_2() const { return ___fixups_2; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_fixups_2() { return &___fixups_2; } inline void set_fixups_2(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ___fixups_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___fixups_2), (void*)value); } inline static int32_t get_offset_of_collFixups_3() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___collFixups_3)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_collFixups_3() const { return ___collFixups_3; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_collFixups_3() { return &___collFixups_3; } inline void set_collFixups_3(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___collFixups_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___collFixups_3), (void*)value); } inline static int32_t get_offset_of_collItemFixups_4() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___collItemFixups_4)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_collItemFixups_4() const { return ___collItemFixups_4; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_collItemFixups_4() { return &___collItemFixups_4; } inline void set_collItemFixups_4(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ___collItemFixups_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___collItemFixups_4), (void*)value); } inline static int32_t get_offset_of_typesCallbacks_5() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___typesCallbacks_5)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_typesCallbacks_5() const { return ___typesCallbacks_5; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_typesCallbacks_5() { return &___typesCallbacks_5; } inline void set_typesCallbacks_5(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___typesCallbacks_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___typesCallbacks_5), (void*)value); } inline static int32_t get_offset_of_noIDTargets_6() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___noIDTargets_6)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_noIDTargets_6() const { return ___noIDTargets_6; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_noIDTargets_6() { return &___noIDTargets_6; } inline void set_noIDTargets_6(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ___noIDTargets_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___noIDTargets_6), (void*)value); } inline static int32_t get_offset_of_targets_7() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___targets_7)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_targets_7() const { return ___targets_7; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_targets_7() { return &___targets_7; } inline void set_targets_7(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___targets_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___targets_7), (void*)value); } inline static int32_t get_offset_of_delayedListFixups_8() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___delayedListFixups_8)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_delayedListFixups_8() const { return ___delayedListFixups_8; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_delayedListFixups_8() { return &___delayedListFixups_8; } inline void set_delayedListFixups_8(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___delayedListFixups_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___delayedListFixups_8), (void*)value); } inline static int32_t get_offset_of_eventSource_9() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___eventSource_9)); } inline XmlSerializer_t2960FF2C2C062704541774440D09CA3DAFFCB01B * get_eventSource_9() const { return ___eventSource_9; } inline XmlSerializer_t2960FF2C2C062704541774440D09CA3DAFFCB01B ** get_address_of_eventSource_9() { return &___eventSource_9; } inline void set_eventSource_9(XmlSerializer_t2960FF2C2C062704541774440D09CA3DAFFCB01B * value) { ___eventSource_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___eventSource_9), (void*)value); } inline static int32_t get_offset_of_delayedFixupId_10() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___delayedFixupId_10)); } inline int32_t get_delayedFixupId_10() const { return ___delayedFixupId_10; } inline int32_t* get_address_of_delayedFixupId_10() { return &___delayedFixupId_10; } inline void set_delayedFixupId_10(int32_t value) { ___delayedFixupId_10 = value; } inline static int32_t get_offset_of_referencedObjects_11() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___referencedObjects_11)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_referencedObjects_11() const { return ___referencedObjects_11; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_referencedObjects_11() { return &___referencedObjects_11; } inline void set_referencedObjects_11(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___referencedObjects_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___referencedObjects_11), (void*)value); } inline static int32_t get_offset_of_readCount_12() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___readCount_12)); } inline int32_t get_readCount_12() const { return ___readCount_12; } inline int32_t* get_address_of_readCount_12() { return &___readCount_12; } inline void set_readCount_12(int32_t value) { ___readCount_12 = value; } inline static int32_t get_offset_of_whileIterationCount_13() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___whileIterationCount_13)); } inline int32_t get_whileIterationCount_13() const { return ___whileIterationCount_13; } inline int32_t* get_address_of_whileIterationCount_13() { return &___whileIterationCount_13; } inline void set_whileIterationCount_13(int32_t value) { ___whileIterationCount_13 = value; } inline static int32_t get_offset_of_w3SchemaNS_14() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___w3SchemaNS_14)); } inline String_t* get_w3SchemaNS_14() const { return ___w3SchemaNS_14; } inline String_t** get_address_of_w3SchemaNS_14() { return &___w3SchemaNS_14; } inline void set_w3SchemaNS_14(String_t* value) { ___w3SchemaNS_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___w3SchemaNS_14), (void*)value); } inline static int32_t get_offset_of_w3InstanceNS_15() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___w3InstanceNS_15)); } inline String_t* get_w3InstanceNS_15() const { return ___w3InstanceNS_15; } inline String_t** get_address_of_w3InstanceNS_15() { return &___w3InstanceNS_15; } inline void set_w3InstanceNS_15(String_t* value) { ___w3InstanceNS_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___w3InstanceNS_15), (void*)value); } inline static int32_t get_offset_of_w3InstanceNS2000_16() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___w3InstanceNS2000_16)); } inline String_t* get_w3InstanceNS2000_16() const { return ___w3InstanceNS2000_16; } inline String_t** get_address_of_w3InstanceNS2000_16() { return &___w3InstanceNS2000_16; } inline void set_w3InstanceNS2000_16(String_t* value) { ___w3InstanceNS2000_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___w3InstanceNS2000_16), (void*)value); } inline static int32_t get_offset_of_w3InstanceNS1999_17() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___w3InstanceNS1999_17)); } inline String_t* get_w3InstanceNS1999_17() const { return ___w3InstanceNS1999_17; } inline String_t** get_address_of_w3InstanceNS1999_17() { return &___w3InstanceNS1999_17; } inline void set_w3InstanceNS1999_17(String_t* value) { ___w3InstanceNS1999_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___w3InstanceNS1999_17), (void*)value); } inline static int32_t get_offset_of_soapNS_18() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___soapNS_18)); } inline String_t* get_soapNS_18() const { return ___soapNS_18; } inline String_t** get_address_of_soapNS_18() { return &___soapNS_18; } inline void set_soapNS_18(String_t* value) { ___soapNS_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___soapNS_18), (void*)value); } inline static int32_t get_offset_of_wsdlNS_19() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___wsdlNS_19)); } inline String_t* get_wsdlNS_19() const { return ___wsdlNS_19; } inline String_t** get_address_of_wsdlNS_19() { return &___wsdlNS_19; } inline void set_wsdlNS_19(String_t* value) { ___wsdlNS_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___wsdlNS_19), (void*)value); } inline static int32_t get_offset_of_nullX_20() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___nullX_20)); } inline String_t* get_nullX_20() const { return ___nullX_20; } inline String_t** get_address_of_nullX_20() { return &___nullX_20; } inline void set_nullX_20(String_t* value) { ___nullX_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___nullX_20), (void*)value); } inline static int32_t get_offset_of_nil_21() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___nil_21)); } inline String_t* get_nil_21() const { return ___nil_21; } inline String_t** get_address_of_nil_21() { return &___nil_21; } inline void set_nil_21(String_t* value) { ___nil_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___nil_21), (void*)value); } inline static int32_t get_offset_of_typeX_22() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___typeX_22)); } inline String_t* get_typeX_22() const { return ___typeX_22; } inline String_t** get_address_of_typeX_22() { return &___typeX_22; } inline void set_typeX_22(String_t* value) { ___typeX_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeX_22), (void*)value); } inline static int32_t get_offset_of_arrayType_23() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___arrayType_23)); } inline String_t* get_arrayType_23() const { return ___arrayType_23; } inline String_t** get_address_of_arrayType_23() { return &___arrayType_23; } inline void set_arrayType_23(String_t* value) { ___arrayType_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___arrayType_23), (void*)value); } inline static int32_t get_offset_of_arrayQName_24() { return static_cast(offsetof(XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD, ___arrayQName_24)); } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * get_arrayQName_24() const { return ___arrayQName_24; } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 ** get_address_of_arrayQName_24() { return &___arrayQName_24; } inline void set_arrayQName_24(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * value) { ___arrayQName_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___arrayQName_24), (void*)value); } }; // System.Xml.Serialization.XmlSerializationWriter struct XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F : public XmlSerializationGeneratedCode_t434CFD8D2AF9FEC58DB65E02599C37182563C638 { public: // System.Runtime.Serialization.ObjectIDGenerator System.Xml.Serialization.XmlSerializationWriter::idGenerator ObjectIDGenerator_t267F4EB12AC82678B0783ABA92CD54A1503E1259 * ___idGenerator_0; // System.Int32 System.Xml.Serialization.XmlSerializationWriter::qnameCount int32_t ___qnameCount_1; // System.Boolean System.Xml.Serialization.XmlSerializationWriter::topLevelElement bool ___topLevelElement_2; // System.Collections.ArrayList System.Xml.Serialization.XmlSerializationWriter::namespaces ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___namespaces_3; // System.Xml.XmlWriter System.Xml.Serialization.XmlSerializationWriter::writer XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * ___writer_4; // System.Collections.Queue System.Xml.Serialization.XmlSerializationWriter::referencedElements Queue_t66723C58C7422102C36F8570BE048BD0CC489E52 * ___referencedElements_5; // System.Collections.Hashtable System.Xml.Serialization.XmlSerializationWriter::callbacks Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___callbacks_6; // System.Collections.Hashtable System.Xml.Serialization.XmlSerializationWriter::serializedObjects Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___serializedObjects_7; public: inline static int32_t get_offset_of_idGenerator_0() { return static_cast(offsetof(XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F, ___idGenerator_0)); } inline ObjectIDGenerator_t267F4EB12AC82678B0783ABA92CD54A1503E1259 * get_idGenerator_0() const { return ___idGenerator_0; } inline ObjectIDGenerator_t267F4EB12AC82678B0783ABA92CD54A1503E1259 ** get_address_of_idGenerator_0() { return &___idGenerator_0; } inline void set_idGenerator_0(ObjectIDGenerator_t267F4EB12AC82678B0783ABA92CD54A1503E1259 * value) { ___idGenerator_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___idGenerator_0), (void*)value); } inline static int32_t get_offset_of_qnameCount_1() { return static_cast(offsetof(XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F, ___qnameCount_1)); } inline int32_t get_qnameCount_1() const { return ___qnameCount_1; } inline int32_t* get_address_of_qnameCount_1() { return &___qnameCount_1; } inline void set_qnameCount_1(int32_t value) { ___qnameCount_1 = value; } inline static int32_t get_offset_of_topLevelElement_2() { return static_cast(offsetof(XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F, ___topLevelElement_2)); } inline bool get_topLevelElement_2() const { return ___topLevelElement_2; } inline bool* get_address_of_topLevelElement_2() { return &___topLevelElement_2; } inline void set_topLevelElement_2(bool value) { ___topLevelElement_2 = value; } inline static int32_t get_offset_of_namespaces_3() { return static_cast(offsetof(XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F, ___namespaces_3)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_namespaces_3() const { return ___namespaces_3; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_namespaces_3() { return &___namespaces_3; } inline void set_namespaces_3(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ___namespaces_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___namespaces_3), (void*)value); } inline static int32_t get_offset_of_writer_4() { return static_cast(offsetof(XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F, ___writer_4)); } inline XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * get_writer_4() const { return ___writer_4; } inline XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D ** get_address_of_writer_4() { return &___writer_4; } inline void set_writer_4(XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * value) { ___writer_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___writer_4), (void*)value); } inline static int32_t get_offset_of_referencedElements_5() { return static_cast(offsetof(XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F, ___referencedElements_5)); } inline Queue_t66723C58C7422102C36F8570BE048BD0CC489E52 * get_referencedElements_5() const { return ___referencedElements_5; } inline Queue_t66723C58C7422102C36F8570BE048BD0CC489E52 ** get_address_of_referencedElements_5() { return &___referencedElements_5; } inline void set_referencedElements_5(Queue_t66723C58C7422102C36F8570BE048BD0CC489E52 * value) { ___referencedElements_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___referencedElements_5), (void*)value); } inline static int32_t get_offset_of_callbacks_6() { return static_cast(offsetof(XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F, ___callbacks_6)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_callbacks_6() const { return ___callbacks_6; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_callbacks_6() { return &___callbacks_6; } inline void set_callbacks_6(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___callbacks_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___callbacks_6), (void*)value); } inline static int32_t get_offset_of_serializedObjects_7() { return static_cast(offsetof(XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F, ___serializedObjects_7)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_serializedObjects_7() const { return ___serializedObjects_7; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_serializedObjects_7() { return &___serializedObjects_7; } inline void set_serializedObjects_7(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___serializedObjects_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___serializedObjects_7), (void*)value); } }; // System.Xml.XmlTextWriterBase64Encoder struct XmlTextWriterBase64Encoder_t6C566B592DFF5C0E5108670EB19BA06D35F0213B : public Base64Encoder_tF36936300CC9B84076C8F16EE4AF8074ACA40CE9 { public: // System.Xml.XmlTextEncoder System.Xml.XmlTextWriterBase64Encoder::xmlTextEncoder XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * ___xmlTextEncoder_3; public: inline static int32_t get_offset_of_xmlTextEncoder_3() { return static_cast(offsetof(XmlTextWriterBase64Encoder_t6C566B592DFF5C0E5108670EB19BA06D35F0213B, ___xmlTextEncoder_3)); } inline XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * get_xmlTextEncoder_3() const { return ___xmlTextEncoder_3; } inline XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E ** get_address_of_xmlTextEncoder_3() { return &___xmlTextEncoder_3; } inline void set_xmlTextEncoder_3(XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * value) { ___xmlTextEncoder_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlTextEncoder_3), (void*)value); } }; // System.Xml.Serialization.XmlTypeAttribute struct XmlTypeAttribute_t8CF0FDD3A7F093717D676F94868FE9ABFB689800 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 { public: // System.Boolean System.Xml.Serialization.XmlTypeAttribute::includeInSchema bool ___includeInSchema_0; // System.String System.Xml.Serialization.XmlTypeAttribute::ns String_t* ___ns_1; // System.String System.Xml.Serialization.XmlTypeAttribute::typeName String_t* ___typeName_2; public: inline static int32_t get_offset_of_includeInSchema_0() { return static_cast(offsetof(XmlTypeAttribute_t8CF0FDD3A7F093717D676F94868FE9ABFB689800, ___includeInSchema_0)); } inline bool get_includeInSchema_0() const { return ___includeInSchema_0; } inline bool* get_address_of_includeInSchema_0() { return &___includeInSchema_0; } inline void set_includeInSchema_0(bool value) { ___includeInSchema_0 = value; } inline static int32_t get_offset_of_ns_1() { return static_cast(offsetof(XmlTypeAttribute_t8CF0FDD3A7F093717D676F94868FE9ABFB689800, ___ns_1)); } inline String_t* get_ns_1() const { return ___ns_1; } inline String_t** get_address_of_ns_1() { return &___ns_1; } inline void set_ns_1(String_t* value) { ___ns_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ns_1), (void*)value); } inline static int32_t get_offset_of_typeName_2() { return static_cast(offsetof(XmlTypeAttribute_t8CF0FDD3A7F093717D676F94868FE9ABFB689800, ___typeName_2)); } inline String_t* get_typeName_2() const { return ___typeName_2; } inline String_t** get_address_of_typeName_2() { return &___typeName_2; } inline void set_typeName_2(String_t* value) { ___typeName_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeName_2), (void*)value); } }; // System.Xml.Serialization.XmlTypeConvertorAttribute struct XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 { public: // System.String System.Xml.Serialization.XmlTypeConvertorAttribute::k__BackingField String_t* ___U3CMethodU3Ek__BackingField_0; public: inline static int32_t get_offset_of_U3CMethodU3Ek__BackingField_0() { return static_cast(offsetof(XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E, ___U3CMethodU3Ek__BackingField_0)); } inline String_t* get_U3CMethodU3Ek__BackingField_0() const { return ___U3CMethodU3Ek__BackingField_0; } inline String_t** get_address_of_U3CMethodU3Ek__BackingField_0() { return &___U3CMethodU3Ek__BackingField_0; } inline void set_U3CMethodU3Ek__BackingField_0(String_t* value) { ___U3CMethodU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CMethodU3Ek__BackingField_0), (void*)value); } }; // System.Xml.Serialization.XmlTypeMapElementInfoList struct XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A : public ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 { public: public: }; // System.Xml.Serialization.XmlTypeMapMemberAnyAttribute struct XmlTypeMapMemberAnyAttribute_tE046B6F71F0626D9CF844E80D385126DD952CDEE : public XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC { public: public: }; // System.Xml.Serialization.XmlTypeMapMemberElement struct XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747 : public XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC { public: // System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.XmlTypeMapMemberElement::_elementInfo XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * ____elementInfo_10; // System.String System.Xml.Serialization.XmlTypeMapMemberElement::_choiceMember String_t* ____choiceMember_11; // System.Boolean System.Xml.Serialization.XmlTypeMapMemberElement::_isTextCollector bool ____isTextCollector_12; // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapMemberElement::_choiceTypeData TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * ____choiceTypeData_13; public: inline static int32_t get_offset_of__elementInfo_10() { return static_cast(offsetof(XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747, ____elementInfo_10)); } inline XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * get__elementInfo_10() const { return ____elementInfo_10; } inline XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A ** get_address_of__elementInfo_10() { return &____elementInfo_10; } inline void set__elementInfo_10(XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * value) { ____elementInfo_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____elementInfo_10), (void*)value); } inline static int32_t get_offset_of__choiceMember_11() { return static_cast(offsetof(XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747, ____choiceMember_11)); } inline String_t* get__choiceMember_11() const { return ____choiceMember_11; } inline String_t** get_address_of__choiceMember_11() { return &____choiceMember_11; } inline void set__choiceMember_11(String_t* value) { ____choiceMember_11 = value; Il2CppCodeGenWriteBarrier((void**)(&____choiceMember_11), (void*)value); } inline static int32_t get_offset_of__isTextCollector_12() { return static_cast(offsetof(XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747, ____isTextCollector_12)); } inline bool get__isTextCollector_12() const { return ____isTextCollector_12; } inline bool* get_address_of__isTextCollector_12() { return &____isTextCollector_12; } inline void set__isTextCollector_12(bool value) { ____isTextCollector_12 = value; } inline static int32_t get_offset_of__choiceTypeData_13() { return static_cast(offsetof(XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747, ____choiceTypeData_13)); } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * get__choiceTypeData_13() const { return ____choiceTypeData_13; } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 ** get_address_of__choiceTypeData_13() { return &____choiceTypeData_13; } inline void set__choiceTypeData_13(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * value) { ____choiceTypeData_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____choiceTypeData_13), (void*)value); } }; // System.Xml.Serialization.XmlTypeMapMemberNamespaces struct XmlTypeMapMemberNamespaces_tAF134E0E65D2095D56C6BDDE1E5A651A7594A38D : public XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC { public: public: }; // System.Xml.XmlUrlResolver struct XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1 : public XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A { public: // System.Net.ICredentials System.Xml.XmlUrlResolver::_credentials RuntimeObject* ____credentials_1; // System.Net.IWebProxy System.Xml.XmlUrlResolver::_proxy RuntimeObject* ____proxy_2; // System.Net.Cache.RequestCachePolicy System.Xml.XmlUrlResolver::_cachePolicy RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * ____cachePolicy_3; public: inline static int32_t get_offset_of__credentials_1() { return static_cast(offsetof(XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1, ____credentials_1)); } inline RuntimeObject* get__credentials_1() const { return ____credentials_1; } inline RuntimeObject** get_address_of__credentials_1() { return &____credentials_1; } inline void set__credentials_1(RuntimeObject* value) { ____credentials_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____credentials_1), (void*)value); } inline static int32_t get_offset_of__proxy_2() { return static_cast(offsetof(XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1, ____proxy_2)); } inline RuntimeObject* get__proxy_2() const { return ____proxy_2; } inline RuntimeObject** get_address_of__proxy_2() { return &____proxy_2; } inline void set__proxy_2(RuntimeObject* value) { ____proxy_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____proxy_2), (void*)value); } inline static int32_t get_offset_of__cachePolicy_3() { return static_cast(offsetof(XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1, ____cachePolicy_3)); } inline RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * get__cachePolicy_3() const { return ____cachePolicy_3; } inline RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED ** get_address_of__cachePolicy_3() { return &____cachePolicy_3; } inline void set__cachePolicy_3(RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * value) { ____cachePolicy_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____cachePolicy_3), (void*)value); } }; // System.Xml.Schema.XsdDuration struct XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F { public: // System.Int32 System.Xml.Schema.XsdDuration::years int32_t ___years_0; // System.Int32 System.Xml.Schema.XsdDuration::months int32_t ___months_1; // System.Int32 System.Xml.Schema.XsdDuration::days int32_t ___days_2; // System.Int32 System.Xml.Schema.XsdDuration::hours int32_t ___hours_3; // System.Int32 System.Xml.Schema.XsdDuration::minutes int32_t ___minutes_4; // System.Int32 System.Xml.Schema.XsdDuration::seconds int32_t ___seconds_5; // System.UInt32 System.Xml.Schema.XsdDuration::nanoseconds uint32_t ___nanoseconds_6; public: inline static int32_t get_offset_of_years_0() { return static_cast(offsetof(XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F, ___years_0)); } inline int32_t get_years_0() const { return ___years_0; } inline int32_t* get_address_of_years_0() { return &___years_0; } inline void set_years_0(int32_t value) { ___years_0 = value; } inline static int32_t get_offset_of_months_1() { return static_cast(offsetof(XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F, ___months_1)); } inline int32_t get_months_1() const { return ___months_1; } inline int32_t* get_address_of_months_1() { return &___months_1; } inline void set_months_1(int32_t value) { ___months_1 = value; } inline static int32_t get_offset_of_days_2() { return static_cast(offsetof(XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F, ___days_2)); } inline int32_t get_days_2() const { return ___days_2; } inline int32_t* get_address_of_days_2() { return &___days_2; } inline void set_days_2(int32_t value) { ___days_2 = value; } inline static int32_t get_offset_of_hours_3() { return static_cast(offsetof(XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F, ___hours_3)); } inline int32_t get_hours_3() const { return ___hours_3; } inline int32_t* get_address_of_hours_3() { return &___hours_3; } inline void set_hours_3(int32_t value) { ___hours_3 = value; } inline static int32_t get_offset_of_minutes_4() { return static_cast(offsetof(XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F, ___minutes_4)); } inline int32_t get_minutes_4() const { return ___minutes_4; } inline int32_t* get_address_of_minutes_4() { return &___minutes_4; } inline void set_minutes_4(int32_t value) { ___minutes_4 = value; } inline static int32_t get_offset_of_seconds_5() { return static_cast(offsetof(XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F, ___seconds_5)); } inline int32_t get_seconds_5() const { return ___seconds_5; } inline int32_t* get_address_of_seconds_5() { return &___seconds_5; } inline void set_seconds_5(int32_t value) { ___seconds_5 = value; } inline static int32_t get_offset_of_nanoseconds_6() { return static_cast(offsetof(XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F, ___nanoseconds_6)); } inline uint32_t get_nanoseconds_6() const { return ___nanoseconds_6; } inline uint32_t* get_address_of_nanoseconds_6() { return &___nanoseconds_6; } inline void set_nanoseconds_6(uint32_t value) { ___nanoseconds_6 = value; } }; // /__StaticArrayInitTypeSize=20 struct __StaticArrayInitTypeSizeU3D20_tAFFC768CAAB023FF7786175A0F64F7EAE4B35A87 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D20_tAFFC768CAAB023FF7786175A0F64F7EAE4B35A87__padding[20]; }; public: }; // /__StaticArrayInitTypeSize=28 struct __StaticArrayInitTypeSizeU3D28_t3F2DFB0DEB57463B3BDB1DF1D66831340706BC7E { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D28_t3F2DFB0DEB57463B3BDB1DF1D66831340706BC7E__padding[28]; }; public: }; // /__StaticArrayInitTypeSize=32 struct __StaticArrayInitTypeSizeU3D32_t32451FC0FFB07E790AB1831670F4480B70832CF2 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D32_t32451FC0FFB07E790AB1831670F4480B70832CF2__padding[32]; }; public: }; // /__StaticArrayInitTypeSize=40 struct __StaticArrayInitTypeSizeU3D40_t3257F2DBB1018E8BB659AC40CD3038ED1EA19B48 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D40_t3257F2DBB1018E8BB659AC40CD3038ED1EA19B48__padding[40]; }; public: }; // /__StaticArrayInitTypeSize=416 struct __StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4__padding[416]; }; public: }; // /__StaticArrayInitTypeSize=6 struct __StaticArrayInitTypeSizeU3D6_tDF2537259373F423B466710F7B6BCCCCB9F570AB { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D6_tDF2537259373F423B466710F7B6BCCCCB9F570AB__padding[6]; }; public: }; // /__StaticArrayInitTypeSize=64 struct __StaticArrayInitTypeSizeU3D64_t5A1623F8A98BA91292FD3395CC69302605E97DFD { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D64_t5A1623F8A98BA91292FD3395CC69302605E97DFD__padding[64]; }; public: }; // System.Xml.Schema.DtdValidator/NamespaceManager struct NamespaceManager_t090926196C62C096BAD453E54CDED79D8E71720B : public XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465 { public: public: }; // System.Xml.Schema.SequenceNode/SequenceConstructPosContext struct SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED { public: // System.Xml.Schema.SequenceNode System.Xml.Schema.SequenceNode/SequenceConstructPosContext::this_ SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * ___this__0; // System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::firstpos BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos_1; // System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::lastpos BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos_2; // System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::lastposLeft BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastposLeft_3; // System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::firstposRight BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstposRight_4; public: inline static int32_t get_offset_of_this__0() { return static_cast(offsetof(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED, ___this__0)); } inline SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * get_this__0() const { return ___this__0; } inline SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD ** get_address_of_this__0() { return &___this__0; } inline void set_this__0(SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * value) { ___this__0 = value; Il2CppCodeGenWriteBarrier((void**)(&___this__0), (void*)value); } inline static int32_t get_offset_of_firstpos_1() { return static_cast(offsetof(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED, ___firstpos_1)); } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_firstpos_1() const { return ___firstpos_1; } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_firstpos_1() { return &___firstpos_1; } inline void set_firstpos_1(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value) { ___firstpos_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstpos_1), (void*)value); } inline static int32_t get_offset_of_lastpos_2() { return static_cast(offsetof(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED, ___lastpos_2)); } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_lastpos_2() const { return ___lastpos_2; } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_lastpos_2() { return &___lastpos_2; } inline void set_lastpos_2(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value) { ___lastpos_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastpos_2), (void*)value); } inline static int32_t get_offset_of_lastposLeft_3() { return static_cast(offsetof(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED, ___lastposLeft_3)); } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_lastposLeft_3() const { return ___lastposLeft_3; } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_lastposLeft_3() { return &___lastposLeft_3; } inline void set_lastposLeft_3(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value) { ___lastposLeft_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastposLeft_3), (void*)value); } inline static int32_t get_offset_of_firstposRight_4() { return static_cast(offsetof(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED, ___firstposRight_4)); } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_firstposRight_4() const { return ___firstposRight_4; } inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_firstposRight_4() { return &___firstposRight_4; } inline void set_firstposRight_4(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value) { ___firstposRight_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___firstposRight_4), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Xml.Schema.SequenceNode/SequenceConstructPosContext struct SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshaled_pinvoke { SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * ___this__0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos_2; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastposLeft_3; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstposRight_4; }; // Native definition for COM marshalling of System.Xml.Schema.SequenceNode/SequenceConstructPosContext struct SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshaled_com { SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * ___this__0; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos_1; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos_2; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastposLeft_3; BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstposRight_4; }; // System.Xml.XmlNamedNodeMap/SmallXmlNodeList struct SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE { public: // System.Object System.Xml.XmlNamedNodeMap/SmallXmlNodeList::field RuntimeObject * ___field_0; public: inline static int32_t get_offset_of_field_0() { return static_cast(offsetof(SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE, ___field_0)); } inline RuntimeObject * get_field_0() const { return ___field_0; } inline RuntimeObject ** get_address_of_field_0() { return &___field_0; } inline void set_field_0(RuntimeObject * value) { ___field_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___field_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Xml.XmlNamedNodeMap/SmallXmlNodeList struct SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_marshaled_pinvoke { Il2CppIUnknown* ___field_0; }; // Native definition for COM marshalling of System.Xml.XmlNamedNodeMap/SmallXmlNodeList struct SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_marshaled_com { Il2CppIUnknown* ___field_0; }; // System.Xml.XmlNamespaceManager/NamespaceDeclaration struct NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48 { public: // System.String System.Xml.XmlNamespaceManager/NamespaceDeclaration::prefix String_t* ___prefix_0; // System.String System.Xml.XmlNamespaceManager/NamespaceDeclaration::uri String_t* ___uri_1; // System.Int32 System.Xml.XmlNamespaceManager/NamespaceDeclaration::scopeId int32_t ___scopeId_2; // System.Int32 System.Xml.XmlNamespaceManager/NamespaceDeclaration::previousNsIndex int32_t ___previousNsIndex_3; public: inline static int32_t get_offset_of_prefix_0() { return static_cast(offsetof(NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48, ___prefix_0)); } inline String_t* get_prefix_0() const { return ___prefix_0; } inline String_t** get_address_of_prefix_0() { return &___prefix_0; } inline void set_prefix_0(String_t* value) { ___prefix_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___prefix_0), (void*)value); } inline static int32_t get_offset_of_uri_1() { return static_cast(offsetof(NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48, ___uri_1)); } inline String_t* get_uri_1() const { return ___uri_1; } inline String_t** get_address_of_uri_1() { return &___uri_1; } inline void set_uri_1(String_t* value) { ___uri_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___uri_1), (void*)value); } inline static int32_t get_offset_of_scopeId_2() { return static_cast(offsetof(NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48, ___scopeId_2)); } inline int32_t get_scopeId_2() const { return ___scopeId_2; } inline int32_t* get_address_of_scopeId_2() { return &___scopeId_2; } inline void set_scopeId_2(int32_t value) { ___scopeId_2 = value; } inline static int32_t get_offset_of_previousNsIndex_3() { return static_cast(offsetof(NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48, ___previousNsIndex_3)); } inline int32_t get_previousNsIndex_3() const { return ___previousNsIndex_3; } inline int32_t* get_address_of_previousNsIndex_3() { return &___previousNsIndex_3; } inline void set_previousNsIndex_3(int32_t value) { ___previousNsIndex_3 = value; } }; // Native definition for P/Invoke marshalling of System.Xml.XmlNamespaceManager/NamespaceDeclaration struct NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48_marshaled_pinvoke { char* ___prefix_0; char* ___uri_1; int32_t ___scopeId_2; int32_t ___previousNsIndex_3; }; // Native definition for COM marshalling of System.Xml.XmlNamespaceManager/NamespaceDeclaration struct NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48_marshaled_com { Il2CppChar* ___prefix_0; Il2CppChar* ___uri_1; int32_t ___scopeId_2; int32_t ___previousNsIndex_3; }; // System.Xml.XmlTextReaderImpl/NoNamespaceManager struct NoNamespaceManager_t9CD68D8449B828A860ED290316BEAF94CCB165E2 : public XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465 { public: public: }; // System.Xml.XmlTextReaderImpl/ParsingState struct ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF { public: // System.Char[] System.Xml.XmlTextReaderImpl/ParsingState::chars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars_0; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::charPos int32_t ___charPos_1; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::charsUsed int32_t ___charsUsed_2; // System.Text.Encoding System.Xml.XmlTextReaderImpl/ParsingState::encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding_3; // System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::appendMode bool ___appendMode_4; // System.IO.Stream System.Xml.XmlTextReaderImpl/ParsingState::stream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_5; // System.Text.Decoder System.Xml.XmlTextReaderImpl/ParsingState::decoder Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * ___decoder_6; // System.Byte[] System.Xml.XmlTextReaderImpl/ParsingState::bytes ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes_7; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::bytePos int32_t ___bytePos_8; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::bytesUsed int32_t ___bytesUsed_9; // System.IO.TextReader System.Xml.XmlTextReaderImpl/ParsingState::textReader TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___textReader_10; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::lineNo int32_t ___lineNo_11; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::lineStartPos int32_t ___lineStartPos_12; // System.String System.Xml.XmlTextReaderImpl/ParsingState::baseUriStr String_t* ___baseUriStr_13; // System.Uri System.Xml.XmlTextReaderImpl/ParsingState::baseUri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___baseUri_14; // System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::isEof bool ___isEof_15; // System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::isStreamEof bool ___isStreamEof_16; // System.Xml.IDtdEntityInfo System.Xml.XmlTextReaderImpl/ParsingState::entity RuntimeObject* ___entity_17; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::entityId int32_t ___entityId_18; // System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::eolNormalized bool ___eolNormalized_19; // System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::entityResolvedManually bool ___entityResolvedManually_20; public: inline static int32_t get_offset_of_chars_0() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___chars_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_chars_0() const { return ___chars_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_chars_0() { return &___chars_0; } inline void set_chars_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___chars_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___chars_0), (void*)value); } inline static int32_t get_offset_of_charPos_1() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___charPos_1)); } inline int32_t get_charPos_1() const { return ___charPos_1; } inline int32_t* get_address_of_charPos_1() { return &___charPos_1; } inline void set_charPos_1(int32_t value) { ___charPos_1 = value; } inline static int32_t get_offset_of_charsUsed_2() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___charsUsed_2)); } inline int32_t get_charsUsed_2() const { return ___charsUsed_2; } inline int32_t* get_address_of_charsUsed_2() { return &___charsUsed_2; } inline void set_charsUsed_2(int32_t value) { ___charsUsed_2 = value; } inline static int32_t get_offset_of_encoding_3() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___encoding_3)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_encoding_3() const { return ___encoding_3; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_encoding_3() { return &___encoding_3; } inline void set_encoding_3(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___encoding_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoding_3), (void*)value); } inline static int32_t get_offset_of_appendMode_4() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___appendMode_4)); } inline bool get_appendMode_4() const { return ___appendMode_4; } inline bool* get_address_of_appendMode_4() { return &___appendMode_4; } inline void set_appendMode_4(bool value) { ___appendMode_4 = value; } inline static int32_t get_offset_of_stream_5() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___stream_5)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_stream_5() const { return ___stream_5; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_stream_5() { return &___stream_5; } inline void set_stream_5(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___stream_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___stream_5), (void*)value); } inline static int32_t get_offset_of_decoder_6() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___decoder_6)); } inline Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * get_decoder_6() const { return ___decoder_6; } inline Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 ** get_address_of_decoder_6() { return &___decoder_6; } inline void set_decoder_6(Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * value) { ___decoder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___decoder_6), (void*)value); } inline static int32_t get_offset_of_bytes_7() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___bytes_7)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_bytes_7() const { return ___bytes_7; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_bytes_7() { return &___bytes_7; } inline void set_bytes_7(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___bytes_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___bytes_7), (void*)value); } inline static int32_t get_offset_of_bytePos_8() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___bytePos_8)); } inline int32_t get_bytePos_8() const { return ___bytePos_8; } inline int32_t* get_address_of_bytePos_8() { return &___bytePos_8; } inline void set_bytePos_8(int32_t value) { ___bytePos_8 = value; } inline static int32_t get_offset_of_bytesUsed_9() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___bytesUsed_9)); } inline int32_t get_bytesUsed_9() const { return ___bytesUsed_9; } inline int32_t* get_address_of_bytesUsed_9() { return &___bytesUsed_9; } inline void set_bytesUsed_9(int32_t value) { ___bytesUsed_9 = value; } inline static int32_t get_offset_of_textReader_10() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___textReader_10)); } inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * get_textReader_10() const { return ___textReader_10; } inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F ** get_address_of_textReader_10() { return &___textReader_10; } inline void set_textReader_10(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * value) { ___textReader_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___textReader_10), (void*)value); } inline static int32_t get_offset_of_lineNo_11() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___lineNo_11)); } inline int32_t get_lineNo_11() const { return ___lineNo_11; } inline int32_t* get_address_of_lineNo_11() { return &___lineNo_11; } inline void set_lineNo_11(int32_t value) { ___lineNo_11 = value; } inline static int32_t get_offset_of_lineStartPos_12() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___lineStartPos_12)); } inline int32_t get_lineStartPos_12() const { return ___lineStartPos_12; } inline int32_t* get_address_of_lineStartPos_12() { return &___lineStartPos_12; } inline void set_lineStartPos_12(int32_t value) { ___lineStartPos_12 = value; } inline static int32_t get_offset_of_baseUriStr_13() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___baseUriStr_13)); } inline String_t* get_baseUriStr_13() const { return ___baseUriStr_13; } inline String_t** get_address_of_baseUriStr_13() { return &___baseUriStr_13; } inline void set_baseUriStr_13(String_t* value) { ___baseUriStr_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___baseUriStr_13), (void*)value); } inline static int32_t get_offset_of_baseUri_14() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___baseUri_14)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_baseUri_14() const { return ___baseUri_14; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_baseUri_14() { return &___baseUri_14; } inline void set_baseUri_14(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___baseUri_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___baseUri_14), (void*)value); } inline static int32_t get_offset_of_isEof_15() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___isEof_15)); } inline bool get_isEof_15() const { return ___isEof_15; } inline bool* get_address_of_isEof_15() { return &___isEof_15; } inline void set_isEof_15(bool value) { ___isEof_15 = value; } inline static int32_t get_offset_of_isStreamEof_16() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___isStreamEof_16)); } inline bool get_isStreamEof_16() const { return ___isStreamEof_16; } inline bool* get_address_of_isStreamEof_16() { return &___isStreamEof_16; } inline void set_isStreamEof_16(bool value) { ___isStreamEof_16 = value; } inline static int32_t get_offset_of_entity_17() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___entity_17)); } inline RuntimeObject* get_entity_17() const { return ___entity_17; } inline RuntimeObject** get_address_of_entity_17() { return &___entity_17; } inline void set_entity_17(RuntimeObject* value) { ___entity_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___entity_17), (void*)value); } inline static int32_t get_offset_of_entityId_18() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___entityId_18)); } inline int32_t get_entityId_18() const { return ___entityId_18; } inline int32_t* get_address_of_entityId_18() { return &___entityId_18; } inline void set_entityId_18(int32_t value) { ___entityId_18 = value; } inline static int32_t get_offset_of_eolNormalized_19() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___eolNormalized_19)); } inline bool get_eolNormalized_19() const { return ___eolNormalized_19; } inline bool* get_address_of_eolNormalized_19() { return &___eolNormalized_19; } inline void set_eolNormalized_19(bool value) { ___eolNormalized_19 = value; } inline static int32_t get_offset_of_entityResolvedManually_20() { return static_cast(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___entityResolvedManually_20)); } inline bool get_entityResolvedManually_20() const { return ___entityResolvedManually_20; } inline bool* get_address_of_entityResolvedManually_20() { return &___entityResolvedManually_20; } inline void set_entityResolvedManually_20(bool value) { ___entityResolvedManually_20 = value; } }; // Native definition for P/Invoke marshalling of System.Xml.XmlTextReaderImpl/ParsingState struct ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF_marshaled_pinvoke { uint8_t* ___chars_0; int32_t ___charPos_1; int32_t ___charsUsed_2; Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding_3; int32_t ___appendMode_4; Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_5; Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * ___decoder_6; Il2CppSafeArray/*NONE*/* ___bytes_7; int32_t ___bytePos_8; int32_t ___bytesUsed_9; TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___textReader_10; int32_t ___lineNo_11; int32_t ___lineStartPos_12; char* ___baseUriStr_13; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___baseUri_14; int32_t ___isEof_15; int32_t ___isStreamEof_16; RuntimeObject* ___entity_17; int32_t ___entityId_18; int32_t ___eolNormalized_19; int32_t ___entityResolvedManually_20; }; // Native definition for COM marshalling of System.Xml.XmlTextReaderImpl/ParsingState struct ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF_marshaled_com { uint8_t* ___chars_0; int32_t ___charPos_1; int32_t ___charsUsed_2; Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding_3; int32_t ___appendMode_4; Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_5; Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * ___decoder_6; Il2CppSafeArray/*NONE*/* ___bytes_7; int32_t ___bytePos_8; int32_t ___bytesUsed_9; TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___textReader_10; int32_t ___lineNo_11; int32_t ___lineStartPos_12; Il2CppChar* ___baseUriStr_13; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___baseUri_14; int32_t ___isEof_15; int32_t ___isStreamEof_16; RuntimeObject* ___entity_17; int32_t ___entityId_18; int32_t ___eolNormalized_19; int32_t ___entityResolvedManually_20; }; // System.Xml.XmlTextWriter/Namespace struct Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB { public: // System.String System.Xml.XmlTextWriter/Namespace::prefix String_t* ___prefix_0; // System.String System.Xml.XmlTextWriter/Namespace::ns String_t* ___ns_1; // System.Boolean System.Xml.XmlTextWriter/Namespace::declared bool ___declared_2; // System.Int32 System.Xml.XmlTextWriter/Namespace::prevNsIndex int32_t ___prevNsIndex_3; public: inline static int32_t get_offset_of_prefix_0() { return static_cast(offsetof(Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB, ___prefix_0)); } inline String_t* get_prefix_0() const { return ___prefix_0; } inline String_t** get_address_of_prefix_0() { return &___prefix_0; } inline void set_prefix_0(String_t* value) { ___prefix_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___prefix_0), (void*)value); } inline static int32_t get_offset_of_ns_1() { return static_cast(offsetof(Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB, ___ns_1)); } inline String_t* get_ns_1() const { return ___ns_1; } inline String_t** get_address_of_ns_1() { return &___ns_1; } inline void set_ns_1(String_t* value) { ___ns_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ns_1), (void*)value); } inline static int32_t get_offset_of_declared_2() { return static_cast(offsetof(Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB, ___declared_2)); } inline bool get_declared_2() const { return ___declared_2; } inline bool* get_address_of_declared_2() { return &___declared_2; } inline void set_declared_2(bool value) { ___declared_2 = value; } inline static int32_t get_offset_of_prevNsIndex_3() { return static_cast(offsetof(Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB, ___prevNsIndex_3)); } inline int32_t get_prevNsIndex_3() const { return ___prevNsIndex_3; } inline int32_t* get_address_of_prevNsIndex_3() { return &___prevNsIndex_3; } inline void set_prevNsIndex_3(int32_t value) { ___prevNsIndex_3 = value; } }; // Native definition for P/Invoke marshalling of System.Xml.XmlTextWriter/Namespace struct Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB_marshaled_pinvoke { char* ___prefix_0; char* ___ns_1; int32_t ___declared_2; int32_t ___prevNsIndex_3; }; // Native definition for COM marshalling of System.Xml.XmlTextWriter/Namespace struct Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB_marshaled_com { Il2CppChar* ___prefix_0; Il2CppChar* ___ns_1; int32_t ___declared_2; int32_t ___prevNsIndex_3; }; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 struct AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 { public: // System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 ___m_coreState_1; // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___m_task_2; public: inline static int32_t get_offset_of_m_coreState_1() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020, ___m_coreState_1)); } inline AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 get_m_coreState_1() const { return ___m_coreState_1; } inline AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 * get_address_of_m_coreState_1() { return &___m_coreState_1; } inline void set_m_coreState_1(AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 value) { ___m_coreState_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_task_2() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020, ___m_task_2)); } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * get_m_task_2() const { return ___m_task_2; } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 ** get_address_of_m_task_2() { return &___m_task_2; } inline void set_m_task_2(Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * value) { ___m_task_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_2), (void*)value); } }; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 struct AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F { public: // System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 ___m_coreState_1; // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 * ___m_task_2; public: inline static int32_t get_offset_of_m_coreState_1() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F, ___m_coreState_1)); } inline AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 get_m_coreState_1() const { return ___m_coreState_1; } inline AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 * get_address_of_m_coreState_1() { return &___m_coreState_1; } inline void set_m_coreState_1(AsyncMethodBuilderCore_t2C85055E04767C52B9F66144476FCBF500DBFA34 value) { ___m_coreState_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_task_2() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F, ___m_task_2)); } inline Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 * get_m_task_2() const { return ___m_task_2; } inline Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 ** get_address_of_m_task_2() { return &___m_task_2; } inline void set_m_task_2(Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 * value) { ___m_task_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_2), (void*)value); } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1 struct ConfiguredTaskAwaitable_1_t226372B9DEDA3AA0FC1B43D6C03CEC9111045F18 { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast(offsetof(ConfiguredTaskAwaitable_1_t226372B9DEDA3AA0FC1B43D6C03CEC9111045F18, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1 struct ConfiguredTaskAwaitable_1_t7EA81BB95AB4DBB79ADF06E9518D55B0721DC03C { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast(offsetof(ConfiguredTaskAwaitable_1_t7EA81BB95AB4DBB79ADF06E9518D55B0721DC03C, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1 struct ConfiguredTaskAwaitable_1_tF9BD196482DCC94DF3512B16C854E051395A348A { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast(offsetof(ConfiguredTaskAwaitable_1_tF9BD196482DCC94DF3512B16C854E051395A348A, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // struct U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E : public RuntimeObject { public: public: }; // System.Net.Security.AuthenticationLevel struct AuthenticationLevel_tABDA8290B869DCA69B73080E99B1E3FE6F475165 { public: // System.Int32 System.Net.Security.AuthenticationLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(AuthenticationLevel_tABDA8290B869DCA69B73080E99B1E3FE6F475165, ___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(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.Xml.Serialization.ClassMap struct ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB : public ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C { public: // System.Collections.Hashtable System.Xml.Serialization.ClassMap::_elements Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ____elements_0; // System.Collections.ArrayList System.Xml.Serialization.ClassMap::_elementMembers ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ____elementMembers_1; // System.Collections.Hashtable System.Xml.Serialization.ClassMap::_attributeMembers Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ____attributeMembers_2; // System.Xml.Serialization.XmlTypeMapMemberAttribute[] System.Xml.Serialization.ClassMap::_attributeMembersArray XmlTypeMapMemberAttributeU5BU5D_tBD565E2F6F54CCD19C901BAFB18161AF4E540D35* ____attributeMembersArray_3; // System.Collections.ArrayList System.Xml.Serialization.ClassMap::_flatLists ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ____flatLists_4; // System.Collections.ArrayList System.Xml.Serialization.ClassMap::_allMembers ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ____allMembers_5; // System.Collections.ArrayList System.Xml.Serialization.ClassMap::_membersWithDefault ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ____membersWithDefault_6; // System.Collections.ArrayList System.Xml.Serialization.ClassMap::_listMembers ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ____listMembers_7; // System.Xml.Serialization.XmlTypeMapMemberAnyElement System.Xml.Serialization.ClassMap::_defaultAnyElement XmlTypeMapMemberAnyElement_t8A2AB4A984DDACBEE5837B4ECCCE30B431B832D0 * ____defaultAnyElement_8; // System.Xml.Serialization.XmlTypeMapMemberAnyAttribute System.Xml.Serialization.ClassMap::_defaultAnyAttribute XmlTypeMapMemberAnyAttribute_tE046B6F71F0626D9CF844E80D385126DD952CDEE * ____defaultAnyAttribute_9; // System.Xml.Serialization.XmlTypeMapMemberNamespaces System.Xml.Serialization.ClassMap::_namespaceDeclarations XmlTypeMapMemberNamespaces_tAF134E0E65D2095D56C6BDDE1E5A651A7594A38D * ____namespaceDeclarations_10; // System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.ClassMap::_xmlTextCollector XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * ____xmlTextCollector_11; // System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.ClassMap::_returnMember XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * ____returnMember_12; // System.Boolean System.Xml.Serialization.ClassMap::_ignoreMemberNamespace bool ____ignoreMemberNamespace_13; // System.Boolean System.Xml.Serialization.ClassMap::_canBeSimpleType bool ____canBeSimpleType_14; // System.Nullable`1 System.Xml.Serialization.ClassMap::_isOrderDependentMap Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ____isOrderDependentMap_15; public: inline static int32_t get_offset_of__elements_0() { return static_cast(offsetof(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB, ____elements_0)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get__elements_0() const { return ____elements_0; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of__elements_0() { return &____elements_0; } inline void set__elements_0(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ____elements_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____elements_0), (void*)value); } inline static int32_t get_offset_of__elementMembers_1() { return static_cast(offsetof(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB, ____elementMembers_1)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get__elementMembers_1() const { return ____elementMembers_1; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of__elementMembers_1() { return &____elementMembers_1; } inline void set__elementMembers_1(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ____elementMembers_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____elementMembers_1), (void*)value); } inline static int32_t get_offset_of__attributeMembers_2() { return static_cast(offsetof(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB, ____attributeMembers_2)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get__attributeMembers_2() const { return ____attributeMembers_2; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of__attributeMembers_2() { return &____attributeMembers_2; } inline void set__attributeMembers_2(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ____attributeMembers_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____attributeMembers_2), (void*)value); } inline static int32_t get_offset_of__attributeMembersArray_3() { return static_cast(offsetof(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB, ____attributeMembersArray_3)); } inline XmlTypeMapMemberAttributeU5BU5D_tBD565E2F6F54CCD19C901BAFB18161AF4E540D35* get__attributeMembersArray_3() const { return ____attributeMembersArray_3; } inline XmlTypeMapMemberAttributeU5BU5D_tBD565E2F6F54CCD19C901BAFB18161AF4E540D35** get_address_of__attributeMembersArray_3() { return &____attributeMembersArray_3; } inline void set__attributeMembersArray_3(XmlTypeMapMemberAttributeU5BU5D_tBD565E2F6F54CCD19C901BAFB18161AF4E540D35* value) { ____attributeMembersArray_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____attributeMembersArray_3), (void*)value); } inline static int32_t get_offset_of__flatLists_4() { return static_cast(offsetof(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB, ____flatLists_4)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get__flatLists_4() const { return ____flatLists_4; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of__flatLists_4() { return &____flatLists_4; } inline void set__flatLists_4(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ____flatLists_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____flatLists_4), (void*)value); } inline static int32_t get_offset_of__allMembers_5() { return static_cast(offsetof(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB, ____allMembers_5)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get__allMembers_5() const { return ____allMembers_5; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of__allMembers_5() { return &____allMembers_5; } inline void set__allMembers_5(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ____allMembers_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____allMembers_5), (void*)value); } inline static int32_t get_offset_of__membersWithDefault_6() { return static_cast(offsetof(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB, ____membersWithDefault_6)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get__membersWithDefault_6() const { return ____membersWithDefault_6; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of__membersWithDefault_6() { return &____membersWithDefault_6; } inline void set__membersWithDefault_6(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ____membersWithDefault_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____membersWithDefault_6), (void*)value); } inline static int32_t get_offset_of__listMembers_7() { return static_cast(offsetof(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB, ____listMembers_7)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get__listMembers_7() const { return ____listMembers_7; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of__listMembers_7() { return &____listMembers_7; } inline void set__listMembers_7(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ____listMembers_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____listMembers_7), (void*)value); } inline static int32_t get_offset_of__defaultAnyElement_8() { return static_cast(offsetof(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB, ____defaultAnyElement_8)); } inline XmlTypeMapMemberAnyElement_t8A2AB4A984DDACBEE5837B4ECCCE30B431B832D0 * get__defaultAnyElement_8() const { return ____defaultAnyElement_8; } inline XmlTypeMapMemberAnyElement_t8A2AB4A984DDACBEE5837B4ECCCE30B431B832D0 ** get_address_of__defaultAnyElement_8() { return &____defaultAnyElement_8; } inline void set__defaultAnyElement_8(XmlTypeMapMemberAnyElement_t8A2AB4A984DDACBEE5837B4ECCCE30B431B832D0 * value) { ____defaultAnyElement_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____defaultAnyElement_8), (void*)value); } inline static int32_t get_offset_of__defaultAnyAttribute_9() { return static_cast(offsetof(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB, ____defaultAnyAttribute_9)); } inline XmlTypeMapMemberAnyAttribute_tE046B6F71F0626D9CF844E80D385126DD952CDEE * get__defaultAnyAttribute_9() const { return ____defaultAnyAttribute_9; } inline XmlTypeMapMemberAnyAttribute_tE046B6F71F0626D9CF844E80D385126DD952CDEE ** get_address_of__defaultAnyAttribute_9() { return &____defaultAnyAttribute_9; } inline void set__defaultAnyAttribute_9(XmlTypeMapMemberAnyAttribute_tE046B6F71F0626D9CF844E80D385126DD952CDEE * value) { ____defaultAnyAttribute_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____defaultAnyAttribute_9), (void*)value); } inline static int32_t get_offset_of__namespaceDeclarations_10() { return static_cast(offsetof(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB, ____namespaceDeclarations_10)); } inline XmlTypeMapMemberNamespaces_tAF134E0E65D2095D56C6BDDE1E5A651A7594A38D * get__namespaceDeclarations_10() const { return ____namespaceDeclarations_10; } inline XmlTypeMapMemberNamespaces_tAF134E0E65D2095D56C6BDDE1E5A651A7594A38D ** get_address_of__namespaceDeclarations_10() { return &____namespaceDeclarations_10; } inline void set__namespaceDeclarations_10(XmlTypeMapMemberNamespaces_tAF134E0E65D2095D56C6BDDE1E5A651A7594A38D * value) { ____namespaceDeclarations_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____namespaceDeclarations_10), (void*)value); } inline static int32_t get_offset_of__xmlTextCollector_11() { return static_cast(offsetof(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB, ____xmlTextCollector_11)); } inline XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * get__xmlTextCollector_11() const { return ____xmlTextCollector_11; } inline XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC ** get_address_of__xmlTextCollector_11() { return &____xmlTextCollector_11; } inline void set__xmlTextCollector_11(XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * value) { ____xmlTextCollector_11 = value; Il2CppCodeGenWriteBarrier((void**)(&____xmlTextCollector_11), (void*)value); } inline static int32_t get_offset_of__returnMember_12() { return static_cast(offsetof(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB, ____returnMember_12)); } inline XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * get__returnMember_12() const { return ____returnMember_12; } inline XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC ** get_address_of__returnMember_12() { return &____returnMember_12; } inline void set__returnMember_12(XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * value) { ____returnMember_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____returnMember_12), (void*)value); } inline static int32_t get_offset_of__ignoreMemberNamespace_13() { return static_cast(offsetof(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB, ____ignoreMemberNamespace_13)); } inline bool get__ignoreMemberNamespace_13() const { return ____ignoreMemberNamespace_13; } inline bool* get_address_of__ignoreMemberNamespace_13() { return &____ignoreMemberNamespace_13; } inline void set__ignoreMemberNamespace_13(bool value) { ____ignoreMemberNamespace_13 = value; } inline static int32_t get_offset_of__canBeSimpleType_14() { return static_cast(offsetof(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB, ____canBeSimpleType_14)); } inline bool get__canBeSimpleType_14() const { return ____canBeSimpleType_14; } inline bool* get_address_of__canBeSimpleType_14() { return &____canBeSimpleType_14; } inline void set__canBeSimpleType_14(bool value) { ____canBeSimpleType_14 = value; } inline static int32_t get_offset_of__isOrderDependentMap_15() { return static_cast(offsetof(ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB, ____isOrderDependentMap_15)); } inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get__isOrderDependentMap_15() const { return ____isOrderDependentMap_15; } inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of__isOrderDependentMap_15() { return &____isOrderDependentMap_15; } inline void set__isOrderDependentMap_15(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value) { ____isOrderDependentMap_15 = value; } }; // System.DateTimeKind struct DateTimeKind_tA0B5F3F88991AC3B7F24393E15B54062722571D0 { public: // System.Int32 System.DateTimeKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(DateTimeKind_tA0B5F3F88991AC3B7F24393E15B54062722571D0, ___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.DateTimeOffset struct DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 { public: // System.DateTime System.DateTimeOffset::m_dateTime DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___m_dateTime_2; // System.Int16 System.DateTimeOffset::m_offsetMinutes int16_t ___m_offsetMinutes_3; public: inline static int32_t get_offset_of_m_dateTime_2() { return static_cast(offsetof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5, ___m_dateTime_2)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_m_dateTime_2() const { return ___m_dateTime_2; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_m_dateTime_2() { return &___m_dateTime_2; } inline void set_m_dateTime_2(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___m_dateTime_2 = value; } inline static int32_t get_offset_of_m_offsetMinutes_3() { return static_cast(offsetof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5, ___m_offsetMinutes_3)); } inline int16_t get_m_offsetMinutes_3() const { return ___m_offsetMinutes_3; } inline int16_t* get_address_of_m_offsetMinutes_3() { return &___m_offsetMinutes_3; } inline void set_m_offsetMinutes_3(int16_t value) { ___m_offsetMinutes_3 = value; } }; // System.Net.DecompressionMethods struct DecompressionMethods_t76ACF45ED0A6BDCC13358657248D674BCC1015BC { public: // System.Int32 System.Net.DecompressionMethods::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(DecompressionMethods_t76ACF45ED0A6BDCC13358657248D674BCC1015BC, ___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.Delegate struct Delegate_t : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value); } inline static int32_t get_offset_of_method_3() { return static_cast(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value); } inline static int32_t get_offset_of_data_9() { return static_cast(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // System.Xml.DtdProcessing struct DtdProcessing_t25005AA22D71FA607D010E88CBB7299378A455F5 { public: // System.Int32 System.Xml.DtdProcessing::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(DtdProcessing_t25005AA22D71FA607D010E88CBB7299378A455F5, ___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.EntityHandling struct EntityHandling_t0675E831FDCD3EBD42A6E4EDEE14C32C58F74B90 { public: // System.Int32 System.Xml.EntityHandling::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(EntityHandling_t0675E831FDCD3EBD42A6E4EDEE14C32C58F74B90, ___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.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // System.IO.FileAccess struct FileAccess_t09E176678AB8520C44024354E0DB2F01D40A2F5B { public: // System.Int32 System.IO.FileAccess::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FileAccess_t09E176678AB8520C44024354E0DB2F01D40A2F5B, ___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.IO.FileMode struct FileMode_t7AB84351F909CC2A0F99B798E50C6E8610994336 { public: // System.Int32 System.IO.FileMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FileMode_t7AB84351F909CC2A0F99B798E50C6E8610994336, ___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.IO.FileShare struct FileShare_t335C3032B91F35BECF45855A61AF9FA5BB9C07BB { public: // System.Int32 System.IO.FileShare::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FileShare_t335C3032B91F35BECF45855A61AF9FA5BB9C07BB, ___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.Formatting struct Formatting_t1E6C9EEFAFBEA3953A61247936613F766513FCCB { public: // System.Int32 System.Xml.Formatting::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Formatting_t1E6C9EEFAFBEA3953A61247936613F766513FCCB, ___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.Collections.Hashtable struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC : public RuntimeObject { public: // System.Collections.Hashtable/bucket[] System.Collections.Hashtable::buckets bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190* ___buckets_10; // System.Int32 System.Collections.Hashtable::count int32_t ___count_11; // System.Int32 System.Collections.Hashtable::occupancy int32_t ___occupancy_12; // System.Int32 System.Collections.Hashtable::loadsize int32_t ___loadsize_13; // System.Single System.Collections.Hashtable::loadFactor float ___loadFactor_14; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::version int32_t ___version_15; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::isWriterInProgress bool ___isWriterInProgress_16; // System.Collections.ICollection System.Collections.Hashtable::keys RuntimeObject* ___keys_17; // System.Collections.ICollection System.Collections.Hashtable::values RuntimeObject* ___values_18; // System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer RuntimeObject* ____keycomparer_19; // System.Object System.Collections.Hashtable::_syncRoot RuntimeObject * ____syncRoot_20; public: inline static int32_t get_offset_of_buckets_10() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___buckets_10)); } inline bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190* get_buckets_10() const { return ___buckets_10; } inline bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190** get_address_of_buckets_10() { return &___buckets_10; } inline void set_buckets_10(bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190* value) { ___buckets_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_10), (void*)value); } inline static int32_t get_offset_of_count_11() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___count_11)); } inline int32_t get_count_11() const { return ___count_11; } inline int32_t* get_address_of_count_11() { return &___count_11; } inline void set_count_11(int32_t value) { ___count_11 = value; } inline static int32_t get_offset_of_occupancy_12() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___occupancy_12)); } inline int32_t get_occupancy_12() const { return ___occupancy_12; } inline int32_t* get_address_of_occupancy_12() { return &___occupancy_12; } inline void set_occupancy_12(int32_t value) { ___occupancy_12 = value; } inline static int32_t get_offset_of_loadsize_13() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___loadsize_13)); } inline int32_t get_loadsize_13() const { return ___loadsize_13; } inline int32_t* get_address_of_loadsize_13() { return &___loadsize_13; } inline void set_loadsize_13(int32_t value) { ___loadsize_13 = value; } inline static int32_t get_offset_of_loadFactor_14() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___loadFactor_14)); } inline float get_loadFactor_14() const { return ___loadFactor_14; } inline float* get_address_of_loadFactor_14() { return &___loadFactor_14; } inline void set_loadFactor_14(float value) { ___loadFactor_14 = value; } inline static int32_t get_offset_of_version_15() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___version_15)); } inline int32_t get_version_15() const { return ___version_15; } inline int32_t* get_address_of_version_15() { return &___version_15; } inline void set_version_15(int32_t value) { ___version_15 = value; } inline static int32_t get_offset_of_isWriterInProgress_16() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___isWriterInProgress_16)); } inline bool get_isWriterInProgress_16() const { return ___isWriterInProgress_16; } inline bool* get_address_of_isWriterInProgress_16() { return &___isWriterInProgress_16; } inline void set_isWriterInProgress_16(bool value) { ___isWriterInProgress_16 = value; } inline static int32_t get_offset_of_keys_17() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___keys_17)); } inline RuntimeObject* get_keys_17() const { return ___keys_17; } inline RuntimeObject** get_address_of_keys_17() { return &___keys_17; } inline void set_keys_17(RuntimeObject* value) { ___keys_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_17), (void*)value); } inline static int32_t get_offset_of_values_18() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___values_18)); } inline RuntimeObject* get_values_18() const { return ___values_18; } inline RuntimeObject** get_address_of_values_18() { return &___values_18; } inline void set_values_18(RuntimeObject* value) { ___values_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_18), (void*)value); } inline static int32_t get_offset_of__keycomparer_19() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ____keycomparer_19)); } inline RuntimeObject* get__keycomparer_19() const { return ____keycomparer_19; } inline RuntimeObject** get_address_of__keycomparer_19() { return &____keycomparer_19; } inline void set__keycomparer_19(RuntimeObject* value) { ____keycomparer_19 = value; Il2CppCodeGenWriteBarrier((void**)(&____keycomparer_19), (void*)value); } inline static int32_t get_offset_of__syncRoot_20() { return static_cast(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ____syncRoot_20)); } inline RuntimeObject * get__syncRoot_20() const { return ____syncRoot_20; } inline RuntimeObject ** get_address_of__syncRoot_20() { return &____syncRoot_20; } inline void set__syncRoot_20(RuntimeObject * value) { ____syncRoot_20 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_20), (void*)value); } }; // System.IO.MemoryStream struct MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.Byte[] System.IO.MemoryStream::_buffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____buffer_5; // System.Int32 System.IO.MemoryStream::_origin int32_t ____origin_6; // System.Int32 System.IO.MemoryStream::_position int32_t ____position_7; // System.Int32 System.IO.MemoryStream::_length int32_t ____length_8; // System.Int32 System.IO.MemoryStream::_capacity int32_t ____capacity_9; // System.Boolean System.IO.MemoryStream::_expandable bool ____expandable_10; // System.Boolean System.IO.MemoryStream::_writable bool ____writable_11; // System.Boolean System.IO.MemoryStream::_exposable bool ____exposable_12; // System.Boolean System.IO.MemoryStream::_isOpen bool ____isOpen_13; // System.Threading.Tasks.Task`1 System.IO.MemoryStream::_lastReadTask Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * ____lastReadTask_14; public: inline static int32_t get_offset_of__buffer_5() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____buffer_5)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__buffer_5() const { return ____buffer_5; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__buffer_5() { return &____buffer_5; } inline void set__buffer_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ____buffer_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____buffer_5), (void*)value); } inline static int32_t get_offset_of__origin_6() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____origin_6)); } inline int32_t get__origin_6() const { return ____origin_6; } inline int32_t* get_address_of__origin_6() { return &____origin_6; } inline void set__origin_6(int32_t value) { ____origin_6 = value; } inline static int32_t get_offset_of__position_7() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____position_7)); } inline int32_t get__position_7() const { return ____position_7; } inline int32_t* get_address_of__position_7() { return &____position_7; } inline void set__position_7(int32_t value) { ____position_7 = value; } inline static int32_t get_offset_of__length_8() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____length_8)); } inline int32_t get__length_8() const { return ____length_8; } inline int32_t* get_address_of__length_8() { return &____length_8; } inline void set__length_8(int32_t value) { ____length_8 = value; } inline static int32_t get_offset_of__capacity_9() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____capacity_9)); } inline int32_t get__capacity_9() const { return ____capacity_9; } inline int32_t* get_address_of__capacity_9() { return &____capacity_9; } inline void set__capacity_9(int32_t value) { ____capacity_9 = value; } inline static int32_t get_offset_of__expandable_10() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____expandable_10)); } inline bool get__expandable_10() const { return ____expandable_10; } inline bool* get_address_of__expandable_10() { return &____expandable_10; } inline void set__expandable_10(bool value) { ____expandable_10 = value; } inline static int32_t get_offset_of__writable_11() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____writable_11)); } inline bool get__writable_11() const { return ____writable_11; } inline bool* get_address_of__writable_11() { return &____writable_11; } inline void set__writable_11(bool value) { ____writable_11 = value; } inline static int32_t get_offset_of__exposable_12() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____exposable_12)); } inline bool get__exposable_12() const { return ____exposable_12; } inline bool* get_address_of__exposable_12() { return &____exposable_12; } inline void set__exposable_12(bool value) { ____exposable_12 = value; } inline static int32_t get_offset_of__isOpen_13() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____isOpen_13)); } inline bool get__isOpen_13() const { return ____isOpen_13; } inline bool* get_address_of__isOpen_13() { return &____isOpen_13; } inline void set__isOpen_13(bool value) { ____isOpen_13 = value; } inline static int32_t get_offset_of__lastReadTask_14() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____lastReadTask_14)); } inline Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * get__lastReadTask_14() const { return ____lastReadTask_14; } inline Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 ** get_address_of__lastReadTask_14() { return &____lastReadTask_14; } inline void set__lastReadTask_14(Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * value) { ____lastReadTask_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____lastReadTask_14), (void*)value); } }; // System.Reflection.MethodInfo struct MethodInfo_t : public MethodBase_t { public: public: }; // System.Xml.ReadState struct ReadState_tD89BBF06656CA45737179919236BDA5EC69D2FEF { public: // System.Int32 System.Xml.ReadState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ReadState_tD89BBF06656CA45737179919236BDA5EC69D2FEF, ___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.Net.Cache.RequestCacheLevel struct RequestCacheLevel_t26F97AE5EF38C0C115B2B4DF0DE3B73CA1B2ADF4 { public: // System.Int32 System.Net.Cache.RequestCacheLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(RequestCacheLevel_t26F97AE5EF38C0C115B2B4DF0DE3B73CA1B2ADF4, ___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.RuntimeFieldHandle struct RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 { public: // System.IntPtr System.RuntimeFieldHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96, ___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.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(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.Xml.Serialization.SchemaTypes struct SchemaTypes_t335C61BC524CBCF69090FE1A5B5227A5B03AF2C6 { public: // System.Int32 System.Xml.Serialization.SchemaTypes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SchemaTypes_t335C61BC524CBCF69090FE1A5B5227A5B03AF2C6, ___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.SequenceNode struct SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD : public InteriorNode_tC61D7F7F6437A2E04D837FC62AB439D7E0D7D541 { public: public: }; // System.Xml.Serialization.SerializationFormat struct SerializationFormat_tAA809018F2717CCC5D0D99A37DE4542612D2CFA3 { public: // System.Int32 System.Xml.Serialization.SerializationFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SerializationFormat_tAA809018F2717CCC5D0D99A37DE4542612D2CFA3, ___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.Net.ServicePoint struct ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 : public RuntimeObject { public: // System.Uri System.Net.ServicePoint::uri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri_0; // System.DateTime System.Net.ServicePoint::lastDnsResolve DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___lastDnsResolve_1; // System.Version System.Net.ServicePoint::protocolVersion Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___protocolVersion_2; // System.Net.IPHostEntry System.Net.ServicePoint::host IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA * ___host_3; // System.Boolean System.Net.ServicePoint::usesProxy bool ___usesProxy_4; // System.Boolean System.Net.ServicePoint::sendContinue bool ___sendContinue_5; // System.Boolean System.Net.ServicePoint::useConnect bool ___useConnect_6; // System.Object System.Net.ServicePoint::hostE RuntimeObject * ___hostE_7; // System.Boolean System.Net.ServicePoint::useNagle bool ___useNagle_8; // System.Net.BindIPEndPoint System.Net.ServicePoint::endPointCallback BindIPEndPoint_t05F17E8ACBB2C324EF8EA367FB2899690F2E0D32 * ___endPointCallback_9; // System.Boolean System.Net.ServicePoint::tcp_keepalive bool ___tcp_keepalive_10; // System.Int32 System.Net.ServicePoint::tcp_keepalive_time int32_t ___tcp_keepalive_time_11; // System.Int32 System.Net.ServicePoint::tcp_keepalive_interval int32_t ___tcp_keepalive_interval_12; // System.Net.ServicePointScheduler System.Net.ServicePoint::k__BackingField ServicePointScheduler_t06FFEEFEFBD2B726733E6E27E2529742FA4DB1A7 * ___U3CSchedulerU3Ek__BackingField_13; // System.Object System.Net.ServicePoint::m_ServerCertificateOrBytes RuntimeObject * ___m_ServerCertificateOrBytes_14; // System.Object System.Net.ServicePoint::m_ClientCertificateOrBytes RuntimeObject * ___m_ClientCertificateOrBytes_15; public: inline static int32_t get_offset_of_uri_0() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___uri_0)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_uri_0() const { return ___uri_0; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_uri_0() { return &___uri_0; } inline void set_uri_0(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___uri_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___uri_0), (void*)value); } inline static int32_t get_offset_of_lastDnsResolve_1() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___lastDnsResolve_1)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_lastDnsResolve_1() const { return ___lastDnsResolve_1; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_lastDnsResolve_1() { return &___lastDnsResolve_1; } inline void set_lastDnsResolve_1(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___lastDnsResolve_1 = value; } inline static int32_t get_offset_of_protocolVersion_2() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___protocolVersion_2)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_protocolVersion_2() const { return ___protocolVersion_2; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_protocolVersion_2() { return &___protocolVersion_2; } inline void set_protocolVersion_2(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___protocolVersion_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___protocolVersion_2), (void*)value); } inline static int32_t get_offset_of_host_3() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___host_3)); } inline IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA * get_host_3() const { return ___host_3; } inline IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA ** get_address_of_host_3() { return &___host_3; } inline void set_host_3(IPHostEntry_tD787E3A1E0F633AC5A7761921DE4DC2A8EA117AA * value) { ___host_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___host_3), (void*)value); } inline static int32_t get_offset_of_usesProxy_4() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___usesProxy_4)); } inline bool get_usesProxy_4() const { return ___usesProxy_4; } inline bool* get_address_of_usesProxy_4() { return &___usesProxy_4; } inline void set_usesProxy_4(bool value) { ___usesProxy_4 = value; } inline static int32_t get_offset_of_sendContinue_5() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___sendContinue_5)); } inline bool get_sendContinue_5() const { return ___sendContinue_5; } inline bool* get_address_of_sendContinue_5() { return &___sendContinue_5; } inline void set_sendContinue_5(bool value) { ___sendContinue_5 = value; } inline static int32_t get_offset_of_useConnect_6() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___useConnect_6)); } inline bool get_useConnect_6() const { return ___useConnect_6; } inline bool* get_address_of_useConnect_6() { return &___useConnect_6; } inline void set_useConnect_6(bool value) { ___useConnect_6 = value; } inline static int32_t get_offset_of_hostE_7() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___hostE_7)); } inline RuntimeObject * get_hostE_7() const { return ___hostE_7; } inline RuntimeObject ** get_address_of_hostE_7() { return &___hostE_7; } inline void set_hostE_7(RuntimeObject * value) { ___hostE_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___hostE_7), (void*)value); } inline static int32_t get_offset_of_useNagle_8() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___useNagle_8)); } inline bool get_useNagle_8() const { return ___useNagle_8; } inline bool* get_address_of_useNagle_8() { return &___useNagle_8; } inline void set_useNagle_8(bool value) { ___useNagle_8 = value; } inline static int32_t get_offset_of_endPointCallback_9() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___endPointCallback_9)); } inline BindIPEndPoint_t05F17E8ACBB2C324EF8EA367FB2899690F2E0D32 * get_endPointCallback_9() const { return ___endPointCallback_9; } inline BindIPEndPoint_t05F17E8ACBB2C324EF8EA367FB2899690F2E0D32 ** get_address_of_endPointCallback_9() { return &___endPointCallback_9; } inline void set_endPointCallback_9(BindIPEndPoint_t05F17E8ACBB2C324EF8EA367FB2899690F2E0D32 * value) { ___endPointCallback_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___endPointCallback_9), (void*)value); } inline static int32_t get_offset_of_tcp_keepalive_10() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___tcp_keepalive_10)); } inline bool get_tcp_keepalive_10() const { return ___tcp_keepalive_10; } inline bool* get_address_of_tcp_keepalive_10() { return &___tcp_keepalive_10; } inline void set_tcp_keepalive_10(bool value) { ___tcp_keepalive_10 = value; } inline static int32_t get_offset_of_tcp_keepalive_time_11() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___tcp_keepalive_time_11)); } inline int32_t get_tcp_keepalive_time_11() const { return ___tcp_keepalive_time_11; } inline int32_t* get_address_of_tcp_keepalive_time_11() { return &___tcp_keepalive_time_11; } inline void set_tcp_keepalive_time_11(int32_t value) { ___tcp_keepalive_time_11 = value; } inline static int32_t get_offset_of_tcp_keepalive_interval_12() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___tcp_keepalive_interval_12)); } inline int32_t get_tcp_keepalive_interval_12() const { return ___tcp_keepalive_interval_12; } inline int32_t* get_address_of_tcp_keepalive_interval_12() { return &___tcp_keepalive_interval_12; } inline void set_tcp_keepalive_interval_12(int32_t value) { ___tcp_keepalive_interval_12 = value; } inline static int32_t get_offset_of_U3CSchedulerU3Ek__BackingField_13() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___U3CSchedulerU3Ek__BackingField_13)); } inline ServicePointScheduler_t06FFEEFEFBD2B726733E6E27E2529742FA4DB1A7 * get_U3CSchedulerU3Ek__BackingField_13() const { return ___U3CSchedulerU3Ek__BackingField_13; } inline ServicePointScheduler_t06FFEEFEFBD2B726733E6E27E2529742FA4DB1A7 ** get_address_of_U3CSchedulerU3Ek__BackingField_13() { return &___U3CSchedulerU3Ek__BackingField_13; } inline void set_U3CSchedulerU3Ek__BackingField_13(ServicePointScheduler_t06FFEEFEFBD2B726733E6E27E2529742FA4DB1A7 * value) { ___U3CSchedulerU3Ek__BackingField_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CSchedulerU3Ek__BackingField_13), (void*)value); } inline static int32_t get_offset_of_m_ServerCertificateOrBytes_14() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___m_ServerCertificateOrBytes_14)); } inline RuntimeObject * get_m_ServerCertificateOrBytes_14() const { return ___m_ServerCertificateOrBytes_14; } inline RuntimeObject ** get_address_of_m_ServerCertificateOrBytes_14() { return &___m_ServerCertificateOrBytes_14; } inline void set_m_ServerCertificateOrBytes_14(RuntimeObject * value) { ___m_ServerCertificateOrBytes_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ServerCertificateOrBytes_14), (void*)value); } inline static int32_t get_offset_of_m_ClientCertificateOrBytes_15() { return static_cast(offsetof(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0, ___m_ClientCertificateOrBytes_15)); } inline RuntimeObject * get_m_ClientCertificateOrBytes_15() const { return ___m_ClientCertificateOrBytes_15; } inline RuntimeObject ** get_address_of_m_ClientCertificateOrBytes_15() { return &___m_ClientCertificateOrBytes_15; } inline void set_m_ClientCertificateOrBytes_15(RuntimeObject * value) { ___m_ClientCertificateOrBytes_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ClientCertificateOrBytes_15), (void*)value); } }; // System.IO.StreamWriter struct StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 : public TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 { public: // System.IO.Stream System.IO.StreamWriter::stream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_12; // System.Text.Encoding System.IO.StreamWriter::encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding_13; // System.Text.Encoder System.IO.StreamWriter::encoder Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * ___encoder_14; // System.Byte[] System.IO.StreamWriter::byteBuffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___byteBuffer_15; // System.Char[] System.IO.StreamWriter::charBuffer CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___charBuffer_16; // System.Int32 System.IO.StreamWriter::charPos int32_t ___charPos_17; // System.Int32 System.IO.StreamWriter::charLen int32_t ___charLen_18; // System.Boolean System.IO.StreamWriter::autoFlush bool ___autoFlush_19; // System.Boolean System.IO.StreamWriter::haveWrittenPreamble bool ___haveWrittenPreamble_20; // System.Boolean System.IO.StreamWriter::closable bool ___closable_21; // System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamWriter::_asyncWriteTask Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ____asyncWriteTask_22; public: inline static int32_t get_offset_of_stream_12() { return static_cast(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___stream_12)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_stream_12() const { return ___stream_12; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_stream_12() { return &___stream_12; } inline void set_stream_12(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___stream_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___stream_12), (void*)value); } inline static int32_t get_offset_of_encoding_13() { return static_cast(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___encoding_13)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_encoding_13() const { return ___encoding_13; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_encoding_13() { return &___encoding_13; } inline void set_encoding_13(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___encoding_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoding_13), (void*)value); } inline static int32_t get_offset_of_encoder_14() { return static_cast(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___encoder_14)); } inline Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * get_encoder_14() const { return ___encoder_14; } inline Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A ** get_address_of_encoder_14() { return &___encoder_14; } inline void set_encoder_14(Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * value) { ___encoder_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoder_14), (void*)value); } inline static int32_t get_offset_of_byteBuffer_15() { return static_cast(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___byteBuffer_15)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_byteBuffer_15() const { return ___byteBuffer_15; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_byteBuffer_15() { return &___byteBuffer_15; } inline void set_byteBuffer_15(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___byteBuffer_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___byteBuffer_15), (void*)value); } inline static int32_t get_offset_of_charBuffer_16() { return static_cast(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___charBuffer_16)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_charBuffer_16() const { return ___charBuffer_16; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_charBuffer_16() { return &___charBuffer_16; } inline void set_charBuffer_16(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___charBuffer_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___charBuffer_16), (void*)value); } inline static int32_t get_offset_of_charPos_17() { return static_cast(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___charPos_17)); } inline int32_t get_charPos_17() const { return ___charPos_17; } inline int32_t* get_address_of_charPos_17() { return &___charPos_17; } inline void set_charPos_17(int32_t value) { ___charPos_17 = value; } inline static int32_t get_offset_of_charLen_18() { return static_cast(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___charLen_18)); } inline int32_t get_charLen_18() const { return ___charLen_18; } inline int32_t* get_address_of_charLen_18() { return &___charLen_18; } inline void set_charLen_18(int32_t value) { ___charLen_18 = value; } inline static int32_t get_offset_of_autoFlush_19() { return static_cast(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___autoFlush_19)); } inline bool get_autoFlush_19() const { return ___autoFlush_19; } inline bool* get_address_of_autoFlush_19() { return &___autoFlush_19; } inline void set_autoFlush_19(bool value) { ___autoFlush_19 = value; } inline static int32_t get_offset_of_haveWrittenPreamble_20() { return static_cast(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___haveWrittenPreamble_20)); } inline bool get_haveWrittenPreamble_20() const { return ___haveWrittenPreamble_20; } inline bool* get_address_of_haveWrittenPreamble_20() { return &___haveWrittenPreamble_20; } inline void set_haveWrittenPreamble_20(bool value) { ___haveWrittenPreamble_20 = value; } inline static int32_t get_offset_of_closable_21() { return static_cast(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___closable_21)); } inline bool get_closable_21() const { return ___closable_21; } inline bool* get_address_of_closable_21() { return &___closable_21; } inline void set_closable_21(bool value) { ___closable_21 = value; } inline static int32_t get_offset_of__asyncWriteTask_22() { return static_cast(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ____asyncWriteTask_22)); } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get__asyncWriteTask_22() const { return ____asyncWriteTask_22; } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of__asyncWriteTask_22() { return &____asyncWriteTask_22; } inline void set__asyncWriteTask_22(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value) { ____asyncWriteTask_22 = value; Il2CppCodeGenWriteBarrier((void**)(&____asyncWriteTask_22), (void*)value); } }; // System.StringComparison struct StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998 { public: // System.Int32 System.StringComparison::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998, ___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.Threading.Tasks.Task struct Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 : public RuntimeObject { public: // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_taskId int32_t ___m_taskId_4; // System.Object System.Threading.Tasks.Task::m_action RuntimeObject * ___m_action_5; // System.Object System.Threading.Tasks.Task::m_stateObject RuntimeObject * ___m_stateObject_6; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::m_taskScheduler TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___m_taskScheduler_7; // System.Threading.Tasks.Task System.Threading.Tasks.Task::m_parent Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___m_parent_8; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_stateFlags int32_t ___m_stateFlags_9; // System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_continuationObject RuntimeObject * ___m_continuationObject_28; // System.Threading.Tasks.Task/ContingentProperties modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_contingentProperties ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * ___m_contingentProperties_33; public: inline static int32_t get_offset_of_m_taskId_4() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_taskId_4)); } inline int32_t get_m_taskId_4() const { return ___m_taskId_4; } inline int32_t* get_address_of_m_taskId_4() { return &___m_taskId_4; } inline void set_m_taskId_4(int32_t value) { ___m_taskId_4 = value; } inline static int32_t get_offset_of_m_action_5() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_action_5)); } inline RuntimeObject * get_m_action_5() const { return ___m_action_5; } inline RuntimeObject ** get_address_of_m_action_5() { return &___m_action_5; } inline void set_m_action_5(RuntimeObject * value) { ___m_action_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_action_5), (void*)value); } inline static int32_t get_offset_of_m_stateObject_6() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_stateObject_6)); } inline RuntimeObject * get_m_stateObject_6() const { return ___m_stateObject_6; } inline RuntimeObject ** get_address_of_m_stateObject_6() { return &___m_stateObject_6; } inline void set_m_stateObject_6(RuntimeObject * value) { ___m_stateObject_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_stateObject_6), (void*)value); } inline static int32_t get_offset_of_m_taskScheduler_7() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_taskScheduler_7)); } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * get_m_taskScheduler_7() const { return ___m_taskScheduler_7; } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D ** get_address_of_m_taskScheduler_7() { return &___m_taskScheduler_7; } inline void set_m_taskScheduler_7(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * value) { ___m_taskScheduler_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_taskScheduler_7), (void*)value); } inline static int32_t get_offset_of_m_parent_8() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_parent_8)); } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_m_parent_8() const { return ___m_parent_8; } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_m_parent_8() { return &___m_parent_8; } inline void set_m_parent_8(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value) { ___m_parent_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_parent_8), (void*)value); } inline static int32_t get_offset_of_m_stateFlags_9() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_stateFlags_9)); } inline int32_t get_m_stateFlags_9() const { return ___m_stateFlags_9; } inline int32_t* get_address_of_m_stateFlags_9() { return &___m_stateFlags_9; } inline void set_m_stateFlags_9(int32_t value) { ___m_stateFlags_9 = value; } inline static int32_t get_offset_of_m_continuationObject_28() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_continuationObject_28)); } inline RuntimeObject * get_m_continuationObject_28() const { return ___m_continuationObject_28; } inline RuntimeObject ** get_address_of_m_continuationObject_28() { return &___m_continuationObject_28; } inline void set_m_continuationObject_28(RuntimeObject * value) { ___m_continuationObject_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_continuationObject_28), (void*)value); } inline static int32_t get_offset_of_m_contingentProperties_33() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_contingentProperties_33)); } inline ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * get_m_contingentProperties_33() const { return ___m_contingentProperties_33; } inline ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 ** get_address_of_m_contingentProperties_33() { return &___m_contingentProperties_33; } inline void set_m_contingentProperties_33(ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * value) { ___m_contingentProperties_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_contingentProperties_33), (void*)value); } }; // System.Threading.Tasks.TaskContinuationOptions struct TaskContinuationOptions_t9FC13DFA1FFAFD07FE9A19491D1DBEB48BFA8399 { public: // System.Int32 System.Threading.Tasks.TaskContinuationOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TaskContinuationOptions_t9FC13DFA1FFAFD07FE9A19491D1DBEB48BFA8399, ___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.Threading.Tasks.TaskCreationOptions struct TaskCreationOptions_t469019F1B0F93FA60337952E265311E8048D2112 { public: // System.Int32 System.Threading.Tasks.TaskCreationOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TaskCreationOptions_t469019F1B0F93FA60337952E265311E8048D2112, ___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.TimeSpan struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_3; public: inline static int32_t get_offset_of__ticks_3() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____ticks_3)); } inline int64_t get__ticks_3() const { return ____ticks_3; } inline int64_t* get_address_of__ticks_3() { return &____ticks_3; } inline void set__ticks_3(int64_t value) { ____ticks_3 = value; } }; // System.Security.Principal.TokenImpersonationLevel struct TokenImpersonationLevel_t666D9E038A04949CBCDDDBA08E5FD612F3EE4838 { public: // System.Int32 System.Security.Principal.TokenImpersonationLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TokenImpersonationLevel_t666D9E038A04949CBCDDDBA08E5FD612F3EE4838, ___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.TypeCode struct TypeCode_tCB39BAB5CFB7A1E0BCB521413E3C46B81C31AA7C { public: // System.Int32 System.TypeCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TypeCode_tCB39BAB5CFB7A1E0BCB521413E3C46B81C31AA7C, ___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.UriIdnScope struct UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D { public: // System.Int32 System.UriIdnScope::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D, ___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.WhitespaceHandling struct WhitespaceHandling_t5B5D7F564E2C68D609D844ADC3D68F931DA5F034 { public: // System.Int32 System.Xml.WhitespaceHandling::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(WhitespaceHandling_t5B5D7F564E2C68D609D844ADC3D68F931DA5F034, ___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.WriteState struct WriteState_t5FC2A1D32436519584C900786EA9C0E15D9317C6 { public: // System.Int32 System.Xml.WriteState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(WriteState_t5FC2A1D32436519584C900786EA9C0E15D9317C6, ___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.XmlCharacterData struct XmlCharacterData_tDE362DEBB89559C552E40DB1346331A259C9205B : public XmlLinkedNode_tAF992FE43A99E1889622121C0D712C80586580F0 { public: // System.String System.Xml.XmlCharacterData::data String_t* ___data_2; public: inline static int32_t get_offset_of_data_2() { return static_cast(offsetof(XmlCharacterData_tDE362DEBB89559C552E40DB1346331A259C9205B, ___data_2)); } inline String_t* get_data_2() const { return ___data_2; } inline String_t** get_address_of_data_2() { return &___data_2; } inline void set_data_2(String_t* value) { ___data_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_2), (void*)value); } }; // System.Xml.XmlNodeType struct XmlNodeType_t6202952ADDE08339EF2AAC42CE97C84E99AC5D81 { public: // System.Int32 System.Xml.XmlNodeType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlNodeType_t6202952ADDE08339EF2AAC42CE97C84E99AC5D81, ___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.XmlRegisteredNonCachedStream struct XmlRegisteredNonCachedStream_t34366F50733A8D122E74F0C51EAD411FF827BCC1 : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.IO.Stream System.Xml.XmlRegisteredNonCachedStream::stream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_5; // System.Xml.XmlDownloadManager System.Xml.XmlRegisteredNonCachedStream::downloadManager XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * ___downloadManager_6; // System.String System.Xml.XmlRegisteredNonCachedStream::host String_t* ___host_7; public: inline static int32_t get_offset_of_stream_5() { return static_cast(offsetof(XmlRegisteredNonCachedStream_t34366F50733A8D122E74F0C51EAD411FF827BCC1, ___stream_5)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_stream_5() const { return ___stream_5; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_stream_5() { return &___stream_5; } inline void set_stream_5(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___stream_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___stream_5), (void*)value); } inline static int32_t get_offset_of_downloadManager_6() { return static_cast(offsetof(XmlRegisteredNonCachedStream_t34366F50733A8D122E74F0C51EAD411FF827BCC1, ___downloadManager_6)); } inline XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * get_downloadManager_6() const { return ___downloadManager_6; } inline XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D ** get_address_of_downloadManager_6() { return &___downloadManager_6; } inline void set_downloadManager_6(XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * value) { ___downloadManager_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___downloadManager_6), (void*)value); } inline static int32_t get_offset_of_host_7() { return static_cast(offsetof(XmlRegisteredNonCachedStream_t34366F50733A8D122E74F0C51EAD411FF827BCC1, ___host_7)); } inline String_t* get_host_7() const { return ___host_7; } inline String_t** get_address_of_host_7() { return &___host_7; } inline void set_host_7(String_t* value) { ___host_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___host_7), (void*)value); } }; // System.Xml.Schema.XmlSchemaContentType struct XmlSchemaContentType_tCB95E5FCA55200D9C0AF534D6344518C0968E714 { public: // System.Int32 System.Xml.Schema.XmlSchemaContentType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlSchemaContentType_tCB95E5FCA55200D9C0AF534D6344518C0968E714, ___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.XmlSchemaDatatypeVariety struct XmlSchemaDatatypeVariety_tC3E3DA50C51D19A6958479C5851FD90C59435E7B { public: // System.Int32 System.Xml.Schema.XmlSchemaDatatypeVariety::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlSchemaDatatypeVariety_tC3E3DA50C51D19A6958479C5851FD90C59435E7B, ___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.XmlSchemaDerivationMethod struct XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E { public: // System.Int32 System.Xml.Schema.XmlSchemaDerivationMethod::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlSchemaDerivationMethod_tB960EB54D0A380C43B2EA296A17718B629BBD20E, ___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.XmlSchemaForm struct XmlSchemaForm_tAFA037CC98C760F6686439643387677185EC9D91 { public: // System.Int32 System.Xml.Schema.XmlSchemaForm::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlSchemaForm_tAFA037CC98C760F6686439643387677185EC9D91, ___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.XmlSpace struct XmlSpace_t16F1125FF443A131844086CD412753BFE485A047 { public: // System.Int32 System.Xml.XmlSpace::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlSpace_t16F1125FF443A131844086CD412753BFE485A047, ___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.XmlTextEncoder struct XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E : public RuntimeObject { public: // System.IO.TextWriter System.Xml.XmlTextEncoder::textWriter TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * ___textWriter_0; // System.Boolean System.Xml.XmlTextEncoder::inAttribute bool ___inAttribute_1; // System.Char System.Xml.XmlTextEncoder::quoteChar Il2CppChar ___quoteChar_2; // System.Text.StringBuilder System.Xml.XmlTextEncoder::attrValue StringBuilder_t * ___attrValue_3; // System.Boolean System.Xml.XmlTextEncoder::cacheAttrValue bool ___cacheAttrValue_4; // System.Xml.XmlCharType System.Xml.XmlTextEncoder::xmlCharType XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA ___xmlCharType_5; public: inline static int32_t get_offset_of_textWriter_0() { return static_cast(offsetof(XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E, ___textWriter_0)); } inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * get_textWriter_0() const { return ___textWriter_0; } inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 ** get_address_of_textWriter_0() { return &___textWriter_0; } inline void set_textWriter_0(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * value) { ___textWriter_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___textWriter_0), (void*)value); } inline static int32_t get_offset_of_inAttribute_1() { return static_cast(offsetof(XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E, ___inAttribute_1)); } inline bool get_inAttribute_1() const { return ___inAttribute_1; } inline bool* get_address_of_inAttribute_1() { return &___inAttribute_1; } inline void set_inAttribute_1(bool value) { ___inAttribute_1 = value; } inline static int32_t get_offset_of_quoteChar_2() { return static_cast(offsetof(XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E, ___quoteChar_2)); } inline Il2CppChar get_quoteChar_2() const { return ___quoteChar_2; } inline Il2CppChar* get_address_of_quoteChar_2() { return &___quoteChar_2; } inline void set_quoteChar_2(Il2CppChar value) { ___quoteChar_2 = value; } inline static int32_t get_offset_of_attrValue_3() { return static_cast(offsetof(XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E, ___attrValue_3)); } inline StringBuilder_t * get_attrValue_3() const { return ___attrValue_3; } inline StringBuilder_t ** get_address_of_attrValue_3() { return &___attrValue_3; } inline void set_attrValue_3(StringBuilder_t * value) { ___attrValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___attrValue_3), (void*)value); } inline static int32_t get_offset_of_cacheAttrValue_4() { return static_cast(offsetof(XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E, ___cacheAttrValue_4)); } inline bool get_cacheAttrValue_4() const { return ___cacheAttrValue_4; } inline bool* get_address_of_cacheAttrValue_4() { return &___cacheAttrValue_4; } inline void set_cacheAttrValue_4(bool value) { ___cacheAttrValue_4 = value; } inline static int32_t get_offset_of_xmlCharType_5() { return static_cast(offsetof(XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E, ___xmlCharType_5)); } inline XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA get_xmlCharType_5() const { return ___xmlCharType_5; } inline XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA * get_address_of_xmlCharType_5() { return &___xmlCharType_5; } inline void set_xmlCharType_5(XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA value) { ___xmlCharType_5 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___xmlCharType_5))->___charProperties_2), (void*)NULL); } }; // System.Xml.XmlTokenizedType struct XmlTokenizedType_t920EB9FDDB3F1BF66147159D679D1BF84CB6ECD4 { public: // System.Int32 System.Xml.XmlTokenizedType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlTokenizedType_t920EB9FDDB3F1BF66147159D679D1BF84CB6ECD4, ___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.XmlTypeCode struct XmlTypeCode_t8BCC3C3572E95AA39A6F53864E90CE04AB3290E1 { public: // System.Int32 System.Xml.Schema.XmlTypeCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XmlTypeCode_t8BCC3C3572E95AA39A6F53864E90CE04AB3290E1, ___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.Serialization.XmlTypeMapMemberExpandable struct XmlTypeMapMemberExpandable_t4AB3E2327627775BEDBA72B187C19F446C6DF2E7 : public XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747 { public: // System.Int32 System.Xml.Serialization.XmlTypeMapMemberExpandable::_flatArrayIndex int32_t ____flatArrayIndex_14; public: inline static int32_t get_offset_of__flatArrayIndex_14() { return static_cast(offsetof(XmlTypeMapMemberExpandable_t4AB3E2327627775BEDBA72B187C19F446C6DF2E7, ____flatArrayIndex_14)); } inline int32_t get__flatArrayIndex_14() const { return ____flatArrayIndex_14; } inline int32_t* get_address_of__flatArrayIndex_14() { return &____flatArrayIndex_14; } inline void set__flatArrayIndex_14(int32_t value) { ____flatArrayIndex_14 = value; } }; // System.Xml.Serialization.XmlTypeMapMemberList struct XmlTypeMapMemberList_t7EB7E9134FBE0B056939C2876C2C3ECFEFC28C82 : public XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747 { public: public: }; // System.Xml.XmlUnspecifiedAttribute struct XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641 : public XmlAttribute_t3F58A4BDFB486D0E610E4003E54A89BCCB65AB6D { public: // System.Boolean System.Xml.XmlUnspecifiedAttribute::fSpecified bool ___fSpecified_3; public: inline static int32_t get_offset_of_fSpecified_3() { return static_cast(offsetof(XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641, ___fSpecified_3)); } inline bool get_fSpecified_3() const { return ___fSpecified_3; } inline bool* get_address_of_fSpecified_3() { return &___fSpecified_3; } inline void set_fSpecified_3(bool value) { ___fSpecified_3 = value; } }; // System.Xml.Schema.XsdDateTime struct XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D { public: // System.DateTime System.Xml.Schema.XsdDateTime::dt DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dt_0; // System.UInt32 System.Xml.Schema.XsdDateTime::extra uint32_t ___extra_1; public: inline static int32_t get_offset_of_dt_0() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D, ___dt_0)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_dt_0() const { return ___dt_0; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_dt_0() { return &___dt_0; } inline void set_dt_0(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___dt_0 = value; } inline static int32_t get_offset_of_extra_1() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D, ___extra_1)); } inline uint32_t get_extra_1() const { return ___extra_1; } inline uint32_t* get_address_of_extra_1() { return &___extra_1; } inline void set_extra_1(uint32_t value) { ___extra_1 = value; } }; // Native definition for P/Invoke marshalling of System.Xml.Schema.XsdDateTime struct XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_marshaled_pinvoke { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dt_0; uint32_t ___extra_1; }; // Native definition for COM marshalling of System.Xml.Schema.XsdDateTime struct XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_marshaled_com { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dt_0; uint32_t ___extra_1; }; // System.Xml.Schema.XsdDateTimeFlags struct XsdDateTimeFlags_tA0CFF619A2C537BD8E65672DA641CF4B2405156C { public: // System.Int32 System.Xml.Schema.XsdDateTimeFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XsdDateTimeFlags_tA0CFF619A2C537BD8E65672DA641CF4B2405156C, ___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.DtdParser/LiteralType struct LiteralType_t51F532B516170D1DCBF5F9E9E12EB60CA4992D9E { public: // System.Int32 System.Xml.DtdParser/LiteralType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(LiteralType_t51F532B516170D1DCBF5F9E9E12EB60CA4992D9E, ___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.DtdParser/ScanningFunction struct ScanningFunction_t825EA9F91833C249805390326683C9FCE6890946 { public: // System.Int32 System.Xml.DtdParser/ScanningFunction::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ScanningFunction_t825EA9F91833C249805390326683C9FCE6890946, ___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.DtdParser/Token struct Token_t4D77216503EB740B5C32F3336EC83279448A727E { public: // System.Int32 System.Xml.DtdParser/Token::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Token_t4D77216503EB740B5C32F3336EC83279448A727E, ___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.Net.HttpWebRequest/NtlmAuthState struct NtlmAuthState_tB25DC6ECE6512540ECD9B75F3B047DA7E5976535 { public: // System.Int32 System.Net.HttpWebRequest/NtlmAuthState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(NtlmAuthState_tB25DC6ECE6512540ECD9B75F3B047DA7E5976535, ___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.NamespaceList/ListType struct ListType_tBCCE1790B6DF8C56EBFC60AD58C2A26063F9DBEC { public: // System.Int32 System.Xml.Schema.NamespaceList/ListType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ListType_tBCCE1790B6DF8C56EBFC60AD58C2A26063F9DBEC, ___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.SchemaAttDef/Reserve struct Reserve_t5D2FAFDD811B5DDB9AC140445601545BDBBC45C8 { public: // System.Int32 System.Xml.Schema.SchemaAttDef/Reserve::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Reserve_t5D2FAFDD811B5DDB9AC140445601545BDBBC45C8, ___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.SchemaDeclBase/Use struct Use_t28B781655D907656D9A7781A78E59008C669F972 { public: // System.Int32 System.Xml.Schema.SchemaDeclBase/Use::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Use_t28B781655D907656D9A7781A78E59008C669F972, ___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.Uri/Flags struct Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4 { public: // System.UInt64 System.Uri/Flags::value__ uint64_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4, ___value___2)); } inline uint64_t get_value___2() const { return ___value___2; } inline uint64_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint64_t value) { ___value___2 = value; } }; // System.Xml.Schema.XmlAtomicValue/Union struct Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F { public: union { struct { union { #pragma pack(push, tp, 1) struct { // System.Boolean System.Xml.Schema.XmlAtomicValue/Union::boolVal bool ___boolVal_0; }; #pragma pack(pop, tp) struct { bool ___boolVal_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Double System.Xml.Schema.XmlAtomicValue/Union::dblVal double ___dblVal_1; }; #pragma pack(pop, tp) struct { double ___dblVal_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Int64 System.Xml.Schema.XmlAtomicValue/Union::i64Val int64_t ___i64Val_2; }; #pragma pack(pop, tp) struct { int64_t ___i64Val_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Int32 System.Xml.Schema.XmlAtomicValue/Union::i32Val int32_t ___i32Val_3; }; #pragma pack(pop, tp) struct { int32_t ___i32Val_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.DateTime System.Xml.Schema.XmlAtomicValue/Union::dtVal DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dtVal_4; }; #pragma pack(pop, tp) struct { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dtVal_4_forAlignmentOnly; }; }; }; uint8_t Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F__padding[8]; }; public: inline static int32_t get_offset_of_boolVal_0() { return static_cast(offsetof(Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F, ___boolVal_0)); } inline bool get_boolVal_0() const { return ___boolVal_0; } inline bool* get_address_of_boolVal_0() { return &___boolVal_0; } inline void set_boolVal_0(bool value) { ___boolVal_0 = value; } inline static int32_t get_offset_of_dblVal_1() { return static_cast(offsetof(Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F, ___dblVal_1)); } inline double get_dblVal_1() const { return ___dblVal_1; } inline double* get_address_of_dblVal_1() { return &___dblVal_1; } inline void set_dblVal_1(double value) { ___dblVal_1 = value; } inline static int32_t get_offset_of_i64Val_2() { return static_cast(offsetof(Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F, ___i64Val_2)); } inline int64_t get_i64Val_2() const { return ___i64Val_2; } inline int64_t* get_address_of_i64Val_2() { return &___i64Val_2; } inline void set_i64Val_2(int64_t value) { ___i64Val_2 = value; } inline static int32_t get_offset_of_i32Val_3() { return static_cast(offsetof(Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F, ___i32Val_3)); } inline int32_t get_i32Val_3() const { return ___i32Val_3; } inline int32_t* get_address_of_i32Val_3() { return &___i32Val_3; } inline void set_i32Val_3(int32_t value) { ___i32Val_3 = value; } inline static int32_t get_offset_of_dtVal_4() { return static_cast(offsetof(Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F, ___dtVal_4)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_dtVal_4() const { return ___dtVal_4; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_dtVal_4() { return &___dtVal_4; } inline void set_dtVal_4(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___dtVal_4 = value; } }; // Native definition for P/Invoke marshalling of System.Xml.Schema.XmlAtomicValue/Union struct Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F_marshaled_pinvoke { union { struct { union { #pragma pack(push, tp, 1) struct { int32_t ___boolVal_0; }; #pragma pack(pop, tp) struct { int32_t ___boolVal_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { double ___dblVal_1; }; #pragma pack(pop, tp) struct { double ___dblVal_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { int64_t ___i64Val_2; }; #pragma pack(pop, tp) struct { int64_t ___i64Val_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { int32_t ___i32Val_3; }; #pragma pack(pop, tp) struct { int32_t ___i32Val_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dtVal_4; }; #pragma pack(pop, tp) struct { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dtVal_4_forAlignmentOnly; }; }; }; uint8_t Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F__padding[8]; }; }; // Native definition for COM marshalling of System.Xml.Schema.XmlAtomicValue/Union struct Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F_marshaled_com { union { struct { union { #pragma pack(push, tp, 1) struct { int32_t ___boolVal_0; }; #pragma pack(pop, tp) struct { int32_t ___boolVal_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { double ___dblVal_1; }; #pragma pack(pop, tp) struct { double ___dblVal_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { int64_t ___i64Val_2; }; #pragma pack(pop, tp) struct { int64_t ___i64Val_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { int32_t ___i32Val_3; }; #pragma pack(pop, tp) struct { int32_t ___i32Val_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dtVal_4; }; #pragma pack(pop, tp) struct { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dtVal_4_forAlignmentOnly; }; }; }; uint8_t Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F__padding[8]; }; }; // System.Xml.Schema.XmlSchemaParticle/Occurs struct Occurs_tE1D41715FC55ECA460AB8AE9C68E39DF0ED1747F { public: // System.Int32 System.Xml.Schema.XmlSchemaParticle/Occurs::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Occurs_tE1D41715FC55ECA460AB8AE9C68E39DF0ED1747F, ___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.XmlTextReaderImpl/EntityExpandType struct EntityExpandType_tCEEA49C1F079AC09AED865BC20335712253F05CA { public: // System.Int32 System.Xml.XmlTextReaderImpl/EntityExpandType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(EntityExpandType_tCEEA49C1F079AC09AED865BC20335712253F05CA, ___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.XmlTextReaderImpl/EntityType struct EntityType_t58AEEE9C0FA245DE0D2D51EAA0B0932A9E925C22 { public: // System.Int32 System.Xml.XmlTextReaderImpl/EntityType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(EntityType_t58AEEE9C0FA245DE0D2D51EAA0B0932A9E925C22, ___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.XmlTextReaderImpl/IncrementalReadState struct IncrementalReadState_t72BEC479C21012EC24863F561F0BFFFCE52DB97A { public: // System.Int32 System.Xml.XmlTextReaderImpl/IncrementalReadState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(IncrementalReadState_t72BEC479C21012EC24863F561F0BFFFCE52DB97A, ___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.XmlTextReaderImpl/InitInputType struct InitInputType_tC848B5C5FB2C66B2A21B54C201684DDCC9385ABE { public: // System.Int32 System.Xml.XmlTextReaderImpl/InitInputType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(InitInputType_tC848B5C5FB2C66B2A21B54C201684DDCC9385ABE, ___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.XmlTextReaderImpl/ParsingFunction struct ParsingFunction_t742546E1DF71A6992EAA17FC90B6C8BC7EB7642C { public: // System.Int32 System.Xml.XmlTextReaderImpl/ParsingFunction::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ParsingFunction_t742546E1DF71A6992EAA17FC90B6C8BC7EB7642C, ___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.XmlTextReaderImpl/ParsingMode struct ParsingMode_tA0CAD5F0C6A7A4BD87DAC17C5DD3A6E4DF3A4939 { public: // System.Int32 System.Xml.XmlTextReaderImpl/ParsingMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ParsingMode_tA0CAD5F0C6A7A4BD87DAC17C5DD3A6E4DF3A4939, ___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.XmlTextWriter/NamespaceState struct NamespaceState_t70DDAB16B7FAF8E9437F174C42B9CA023C7ABB8B { public: // System.Int32 System.Xml.XmlTextWriter/NamespaceState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(NamespaceState_t70DDAB16B7FAF8E9437F174C42B9CA023C7ABB8B, ___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.XmlTextWriter/SpecialAttr struct SpecialAttr_tB7E41418E95FF4D8293A70FB57D901B5FE8CADD7 { public: // System.Int32 System.Xml.XmlTextWriter/SpecialAttr::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SpecialAttr_tB7E41418E95FF4D8293A70FB57D901B5FE8CADD7, ___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.XmlTextWriter/State struct State_tE0E12FF743D37B3B0B6D1DE2EF74B81B632AA8F6 { public: // System.Int32 System.Xml.XmlTextWriter/State::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(State_tE0E12FF743D37B3B0B6D1DE2EF74B81B632AA8F6, ___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.XmlTextWriter/Token struct Token_t1C2DE327268C7DBF13A132FF4E0E3DC05B5672B9 { public: // System.Int32 System.Xml.XmlTextWriter/Token::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Token_t1C2DE327268C7DBF13A132FF4E0E3DC05B5672B9, ___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.XsdDateTime/DateTimeTypeCode struct DateTimeTypeCode_t353D9085254551686D334B4873F0B3FD820F0276 { public: // System.Int32 System.Xml.Schema.XsdDateTime/DateTimeTypeCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(DateTimeTypeCode_t353D9085254551686D334B4873F0B3FD820F0276, ___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.XsdDateTime/XsdDateTimeKind struct XsdDateTimeKind_tF6642210478B887764F3AE8116FC3C5A6EB3E3F0 { public: // System.Int32 System.Xml.Schema.XsdDateTime/XsdDateTimeKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XsdDateTimeKind_tF6642210478B887764F3AE8116FC3C5A6EB3E3F0, ___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.XsdDuration/DurationType struct DurationType_t2686B055AE0909D5E46CA3ED100ADB6919FB95B1 { public: // System.Int32 System.Xml.Schema.XsdDuration/DurationType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(DurationType_t2686B055AE0909D5E46CA3ED100ADB6919FB95B1, ___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.XsdDuration/Parts struct Parts_tCBD7D6EC6CB2F727B8F238AD2EB467DBBF1EE2A9 { public: // System.Int32 System.Xml.Schema.XsdDuration/Parts::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Parts_tCBD7D6EC6CB2F727B8F238AD2EB467DBBF1EE2A9, ___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.Threading.Tasks.TaskFactory`1 struct TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 : public RuntimeObject { public: // System.Threading.CancellationToken System.Threading.Tasks.TaskFactory`1::m_defaultCancellationToken CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___m_defaultCancellationToken_0; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskFactory`1::m_defaultScheduler TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___m_defaultScheduler_1; // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.TaskFactory`1::m_defaultCreationOptions int32_t ___m_defaultCreationOptions_2; // System.Threading.Tasks.TaskContinuationOptions System.Threading.Tasks.TaskFactory`1::m_defaultContinuationOptions int32_t ___m_defaultContinuationOptions_3; public: inline static int32_t get_offset_of_m_defaultCancellationToken_0() { return static_cast(offsetof(TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55, ___m_defaultCancellationToken_0)); } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD get_m_defaultCancellationToken_0() const { return ___m_defaultCancellationToken_0; } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * get_address_of_m_defaultCancellationToken_0() { return &___m_defaultCancellationToken_0; } inline void set_m_defaultCancellationToken_0(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD value) { ___m_defaultCancellationToken_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_defaultCancellationToken_0))->___m_source_0), (void*)NULL); } inline static int32_t get_offset_of_m_defaultScheduler_1() { return static_cast(offsetof(TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55, ___m_defaultScheduler_1)); } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * get_m_defaultScheduler_1() const { return ___m_defaultScheduler_1; } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D ** get_address_of_m_defaultScheduler_1() { return &___m_defaultScheduler_1; } inline void set_m_defaultScheduler_1(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * value) { ___m_defaultScheduler_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_defaultScheduler_1), (void*)value); } inline static int32_t get_offset_of_m_defaultCreationOptions_2() { return static_cast(offsetof(TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55, ___m_defaultCreationOptions_2)); } inline int32_t get_m_defaultCreationOptions_2() const { return ___m_defaultCreationOptions_2; } inline int32_t* get_address_of_m_defaultCreationOptions_2() { return &___m_defaultCreationOptions_2; } inline void set_m_defaultCreationOptions_2(int32_t value) { ___m_defaultCreationOptions_2 = value; } inline static int32_t get_offset_of_m_defaultContinuationOptions_3() { return static_cast(offsetof(TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55, ___m_defaultContinuationOptions_3)); } inline int32_t get_m_defaultContinuationOptions_3() const { return ___m_defaultContinuationOptions_3; } inline int32_t* get_address_of_m_defaultContinuationOptions_3() { return &___m_defaultContinuationOptions_3; } inline void set_m_defaultContinuationOptions_3(int32_t value) { ___m_defaultContinuationOptions_3 = value; } }; // System.Threading.Tasks.TaskFactory`1 struct TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406 : public RuntimeObject { public: // System.Threading.CancellationToken System.Threading.Tasks.TaskFactory`1::m_defaultCancellationToken CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___m_defaultCancellationToken_0; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskFactory`1::m_defaultScheduler TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___m_defaultScheduler_1; // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.TaskFactory`1::m_defaultCreationOptions int32_t ___m_defaultCreationOptions_2; // System.Threading.Tasks.TaskContinuationOptions System.Threading.Tasks.TaskFactory`1::m_defaultContinuationOptions int32_t ___m_defaultContinuationOptions_3; public: inline static int32_t get_offset_of_m_defaultCancellationToken_0() { return static_cast(offsetof(TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406, ___m_defaultCancellationToken_0)); } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD get_m_defaultCancellationToken_0() const { return ___m_defaultCancellationToken_0; } inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * get_address_of_m_defaultCancellationToken_0() { return &___m_defaultCancellationToken_0; } inline void set_m_defaultCancellationToken_0(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD value) { ___m_defaultCancellationToken_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_defaultCancellationToken_0))->___m_source_0), (void*)NULL); } inline static int32_t get_offset_of_m_defaultScheduler_1() { return static_cast(offsetof(TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406, ___m_defaultScheduler_1)); } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * get_m_defaultScheduler_1() const { return ___m_defaultScheduler_1; } inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D ** get_address_of_m_defaultScheduler_1() { return &___m_defaultScheduler_1; } inline void set_m_defaultScheduler_1(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * value) { ___m_defaultScheduler_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_defaultScheduler_1), (void*)value); } inline static int32_t get_offset_of_m_defaultCreationOptions_2() { return static_cast(offsetof(TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406, ___m_defaultCreationOptions_2)); } inline int32_t get_m_defaultCreationOptions_2() const { return ___m_defaultCreationOptions_2; } inline int32_t* get_address_of_m_defaultCreationOptions_2() { return &___m_defaultCreationOptions_2; } inline void set_m_defaultCreationOptions_2(int32_t value) { ___m_defaultCreationOptions_2 = value; } inline static int32_t get_offset_of_m_defaultContinuationOptions_3() { return static_cast(offsetof(TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406, ___m_defaultContinuationOptions_3)); } inline int32_t get_m_defaultContinuationOptions_3() const { return ___m_defaultContinuationOptions_3; } inline int32_t* get_address_of_m_defaultContinuationOptions_3() { return &___m_defaultContinuationOptions_3; } inline void set_m_defaultContinuationOptions_3(int32_t value) { ___m_defaultContinuationOptions_3 = value; } }; // System.Threading.Tasks.Task`1 struct Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result RuntimeObject * ___m_result_40; public: inline static int32_t get_offset_of_m_result_40() { return static_cast(offsetof(Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17, ___m_result_40)); } inline RuntimeObject * get_m_result_40() const { return ___m_result_40; } inline RuntimeObject ** get_address_of_m_result_40() { return &___m_result_40; } inline void set_m_result_40(RuntimeObject * value) { ___m_result_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_result_40), (void*)value); } }; // System.Threading.Tasks.Task`1 struct Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___m_result_40; public: inline static int32_t get_offset_of_m_result_40() { return static_cast(offsetof(Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602, ___m_result_40)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_m_result_40() const { return ___m_result_40; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_m_result_40() { return &___m_result_40; } inline void set_m_result_40(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___m_result_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_result_40), (void*)value); } }; // System.Threading.Tasks.Task`1 struct Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765 : public Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 { public: // TResult System.Threading.Tasks.Task`1::m_result WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * ___m_result_40; public: inline static int32_t get_offset_of_m_result_40() { return static_cast(offsetof(Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765, ___m_result_40)); } inline WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * get_m_result_40() const { return ___m_result_40; } inline WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 ** get_address_of_m_result_40() { return &___m_result_40; } inline void set_m_result_40(WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * value) { ___m_result_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_result_40), (void*)value); } }; // System.Xml.Schema.DatatypeImplementation struct DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 : public XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 { public: // System.Xml.Schema.XmlSchemaDatatypeVariety System.Xml.Schema.DatatypeImplementation::variety int32_t ___variety_0; // System.Xml.Schema.RestrictionFacets System.Xml.Schema.DatatypeImplementation::restriction RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * ___restriction_1; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::baseType DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___baseType_2; // System.Xml.Schema.XmlValueConverter System.Xml.Schema.DatatypeImplementation::valueConverter XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * ___valueConverter_3; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.DatatypeImplementation::parentSchemaType XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___parentSchemaType_4; public: inline static int32_t get_offset_of_variety_0() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15, ___variety_0)); } inline int32_t get_variety_0() const { return ___variety_0; } inline int32_t* get_address_of_variety_0() { return &___variety_0; } inline void set_variety_0(int32_t value) { ___variety_0 = value; } inline static int32_t get_offset_of_restriction_1() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15, ___restriction_1)); } inline RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * get_restriction_1() const { return ___restriction_1; } inline RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA ** get_address_of_restriction_1() { return &___restriction_1; } inline void set_restriction_1(RestrictionFacets_tCB9F2F24F3B08A03D9ED4211125F3229E5C868DA * value) { ___restriction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___restriction_1), (void*)value); } inline static int32_t get_offset_of_baseType_2() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15, ___baseType_2)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_baseType_2() const { return ___baseType_2; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_baseType_2() { return &___baseType_2; } inline void set_baseType_2(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___baseType_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___baseType_2), (void*)value); } inline static int32_t get_offset_of_valueConverter_3() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15, ___valueConverter_3)); } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * get_valueConverter_3() const { return ___valueConverter_3; } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 ** get_address_of_valueConverter_3() { return &___valueConverter_3; } inline void set_valueConverter_3(XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * value) { ___valueConverter_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___valueConverter_3), (void*)value); } inline static int32_t get_offset_of_parentSchemaType_4() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15, ___parentSchemaType_4)); } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * get_parentSchemaType_4() const { return ___parentSchemaType_4; } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA ** get_address_of_parentSchemaType_4() { return &___parentSchemaType_4; } inline void set_parentSchemaType_4(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * value) { ___parentSchemaType_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___parentSchemaType_4), (void*)value); } }; // System.IO.FileStream struct FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.Byte[] System.IO.FileStream::buf ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf_7; // System.String System.IO.FileStream::name String_t* ___name_8; // Microsoft.Win32.SafeHandles.SafeFileHandle System.IO.FileStream::safeHandle SafeFileHandle_tC77A9860A03C31DC46AD2C08EC10EACDC3B7A662 * ___safeHandle_9; // System.Boolean System.IO.FileStream::isExposed bool ___isExposed_10; // System.Int64 System.IO.FileStream::append_startpos int64_t ___append_startpos_11; // System.IO.FileAccess System.IO.FileStream::access int32_t ___access_12; // System.Boolean System.IO.FileStream::owner bool ___owner_13; // System.Boolean System.IO.FileStream::async bool ___async_14; // System.Boolean System.IO.FileStream::canseek bool ___canseek_15; // System.Boolean System.IO.FileStream::anonymous bool ___anonymous_16; // System.Boolean System.IO.FileStream::buf_dirty bool ___buf_dirty_17; // System.Int32 System.IO.FileStream::buf_size int32_t ___buf_size_18; // System.Int32 System.IO.FileStream::buf_length int32_t ___buf_length_19; // System.Int32 System.IO.FileStream::buf_offset int32_t ___buf_offset_20; // System.Int64 System.IO.FileStream::buf_start int64_t ___buf_start_21; public: inline static int32_t get_offset_of_buf_7() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_7)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_buf_7() const { return ___buf_7; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_buf_7() { return &___buf_7; } inline void set_buf_7(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___buf_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf_7), (void*)value); } inline static int32_t get_offset_of_name_8() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___name_8)); } inline String_t* get_name_8() const { return ___name_8; } inline String_t** get_address_of_name_8() { return &___name_8; } inline void set_name_8(String_t* value) { ___name_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_8), (void*)value); } inline static int32_t get_offset_of_safeHandle_9() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___safeHandle_9)); } inline SafeFileHandle_tC77A9860A03C31DC46AD2C08EC10EACDC3B7A662 * get_safeHandle_9() const { return ___safeHandle_9; } inline SafeFileHandle_tC77A9860A03C31DC46AD2C08EC10EACDC3B7A662 ** get_address_of_safeHandle_9() { return &___safeHandle_9; } inline void set_safeHandle_9(SafeFileHandle_tC77A9860A03C31DC46AD2C08EC10EACDC3B7A662 * value) { ___safeHandle_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___safeHandle_9), (void*)value); } inline static int32_t get_offset_of_isExposed_10() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___isExposed_10)); } inline bool get_isExposed_10() const { return ___isExposed_10; } inline bool* get_address_of_isExposed_10() { return &___isExposed_10; } inline void set_isExposed_10(bool value) { ___isExposed_10 = value; } inline static int32_t get_offset_of_append_startpos_11() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___append_startpos_11)); } inline int64_t get_append_startpos_11() const { return ___append_startpos_11; } inline int64_t* get_address_of_append_startpos_11() { return &___append_startpos_11; } inline void set_append_startpos_11(int64_t value) { ___append_startpos_11 = value; } inline static int32_t get_offset_of_access_12() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___access_12)); } inline int32_t get_access_12() const { return ___access_12; } inline int32_t* get_address_of_access_12() { return &___access_12; } inline void set_access_12(int32_t value) { ___access_12 = value; } inline static int32_t get_offset_of_owner_13() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___owner_13)); } inline bool get_owner_13() const { return ___owner_13; } inline bool* get_address_of_owner_13() { return &___owner_13; } inline void set_owner_13(bool value) { ___owner_13 = value; } inline static int32_t get_offset_of_async_14() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___async_14)); } inline bool get_async_14() const { return ___async_14; } inline bool* get_address_of_async_14() { return &___async_14; } inline void set_async_14(bool value) { ___async_14 = value; } inline static int32_t get_offset_of_canseek_15() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___canseek_15)); } inline bool get_canseek_15() const { return ___canseek_15; } inline bool* get_address_of_canseek_15() { return &___canseek_15; } inline void set_canseek_15(bool value) { ___canseek_15 = value; } inline static int32_t get_offset_of_anonymous_16() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___anonymous_16)); } inline bool get_anonymous_16() const { return ___anonymous_16; } inline bool* get_address_of_anonymous_16() { return &___anonymous_16; } inline void set_anonymous_16(bool value) { ___anonymous_16 = value; } inline static int32_t get_offset_of_buf_dirty_17() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_dirty_17)); } inline bool get_buf_dirty_17() const { return ___buf_dirty_17; } inline bool* get_address_of_buf_dirty_17() { return &___buf_dirty_17; } inline void set_buf_dirty_17(bool value) { ___buf_dirty_17 = value; } inline static int32_t get_offset_of_buf_size_18() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_size_18)); } inline int32_t get_buf_size_18() const { return ___buf_size_18; } inline int32_t* get_address_of_buf_size_18() { return &___buf_size_18; } inline void set_buf_size_18(int32_t value) { ___buf_size_18 = value; } inline static int32_t get_offset_of_buf_length_19() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_length_19)); } inline int32_t get_buf_length_19() const { return ___buf_length_19; } inline int32_t* get_address_of_buf_length_19() { return &___buf_length_19; } inline void set_buf_length_19(int32_t value) { ___buf_length_19 = value; } inline static int32_t get_offset_of_buf_offset_20() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_offset_20)); } inline int32_t get_buf_offset_20() const { return ___buf_offset_20; } inline int32_t* get_address_of_buf_offset_20() { return &___buf_offset_20; } inline void set_buf_offset_20(int32_t value) { ___buf_offset_20 = value; } inline static int32_t get_offset_of_buf_start_21() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26, ___buf_start_21)); } inline int64_t get_buf_start_21() const { return ___buf_start_21; } inline int64_t* get_address_of_buf_start_21() { return &___buf_start_21; } inline void set_buf_start_21(int64_t value) { ___buf_start_21 = value; } }; // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_11; }; // System.Net.Cache.RequestCachePolicy struct RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED : public RuntimeObject { public: // System.Net.Cache.RequestCacheLevel System.Net.Cache.RequestCachePolicy::m_Level int32_t ___m_Level_0; public: inline static int32_t get_offset_of_m_Level_0() { return static_cast(offsetof(RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED, ___m_Level_0)); } inline int32_t get_m_Level_0() const { return ___m_Level_0; } inline int32_t* get_address_of_m_Level_0() { return &___m_Level_0; } inline void set_m_Level_0(int32_t value) { ___m_Level_0 = value; } }; // System.SystemException struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t { public: public: }; // System.TimeZoneInfo struct TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074 : public RuntimeObject { public: // System.TimeSpan System.TimeZoneInfo::baseUtcOffset TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___baseUtcOffset_0; // System.String System.TimeZoneInfo::daylightDisplayName String_t* ___daylightDisplayName_1; // System.String System.TimeZoneInfo::displayName String_t* ___displayName_2; // System.String System.TimeZoneInfo::id String_t* ___id_3; // System.Collections.Generic.List`1> System.TimeZoneInfo::transitions List_1_t960AA958F641EF26613957B203B645E693F9430D * ___transitions_5; // System.String System.TimeZoneInfo::standardDisplayName String_t* ___standardDisplayName_7; // System.Boolean System.TimeZoneInfo::supportsDaylightSavingTime bool ___supportsDaylightSavingTime_8; // System.TimeZoneInfo/AdjustmentRule[] System.TimeZoneInfo::adjustmentRules AdjustmentRuleU5BU5D_t13A903FE644194C2CAF6698B6890B32A226FD19F* ___adjustmentRules_11; public: inline static int32_t get_offset_of_baseUtcOffset_0() { return static_cast(offsetof(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074, ___baseUtcOffset_0)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_baseUtcOffset_0() const { return ___baseUtcOffset_0; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_baseUtcOffset_0() { return &___baseUtcOffset_0; } inline void set_baseUtcOffset_0(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___baseUtcOffset_0 = value; } inline static int32_t get_offset_of_daylightDisplayName_1() { return static_cast(offsetof(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074, ___daylightDisplayName_1)); } inline String_t* get_daylightDisplayName_1() const { return ___daylightDisplayName_1; } inline String_t** get_address_of_daylightDisplayName_1() { return &___daylightDisplayName_1; } inline void set_daylightDisplayName_1(String_t* value) { ___daylightDisplayName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___daylightDisplayName_1), (void*)value); } inline static int32_t get_offset_of_displayName_2() { return static_cast(offsetof(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074, ___displayName_2)); } inline String_t* get_displayName_2() const { return ___displayName_2; } inline String_t** get_address_of_displayName_2() { return &___displayName_2; } inline void set_displayName_2(String_t* value) { ___displayName_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___displayName_2), (void*)value); } inline static int32_t get_offset_of_id_3() { return static_cast(offsetof(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074, ___id_3)); } inline String_t* get_id_3() const { return ___id_3; } inline String_t** get_address_of_id_3() { return &___id_3; } inline void set_id_3(String_t* value) { ___id_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_3), (void*)value); } inline static int32_t get_offset_of_transitions_5() { return static_cast(offsetof(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074, ___transitions_5)); } inline List_1_t960AA958F641EF26613957B203B645E693F9430D * get_transitions_5() const { return ___transitions_5; } inline List_1_t960AA958F641EF26613957B203B645E693F9430D ** get_address_of_transitions_5() { return &___transitions_5; } inline void set_transitions_5(List_1_t960AA958F641EF26613957B203B645E693F9430D * value) { ___transitions_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___transitions_5), (void*)value); } inline static int32_t get_offset_of_standardDisplayName_7() { return static_cast(offsetof(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074, ___standardDisplayName_7)); } inline String_t* get_standardDisplayName_7() const { return ___standardDisplayName_7; } inline String_t** get_address_of_standardDisplayName_7() { return &___standardDisplayName_7; } inline void set_standardDisplayName_7(String_t* value) { ___standardDisplayName_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___standardDisplayName_7), (void*)value); } inline static int32_t get_offset_of_supportsDaylightSavingTime_8() { return static_cast(offsetof(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074, ___supportsDaylightSavingTime_8)); } inline bool get_supportsDaylightSavingTime_8() const { return ___supportsDaylightSavingTime_8; } inline bool* get_address_of_supportsDaylightSavingTime_8() { return &___supportsDaylightSavingTime_8; } inline void set_supportsDaylightSavingTime_8(bool value) { ___supportsDaylightSavingTime_8 = value; } inline static int32_t get_offset_of_adjustmentRules_11() { return static_cast(offsetof(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074, ___adjustmentRules_11)); } inline AdjustmentRuleU5BU5D_t13A903FE644194C2CAF6698B6890B32A226FD19F* get_adjustmentRules_11() const { return ___adjustmentRules_11; } inline AdjustmentRuleU5BU5D_t13A903FE644194C2CAF6698B6890B32A226FD19F** get_address_of_adjustmentRules_11() { return &___adjustmentRules_11; } inline void set_adjustmentRules_11(AdjustmentRuleU5BU5D_t13A903FE644194C2CAF6698B6890B32A226FD19F* value) { ___adjustmentRules_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___adjustmentRules_11), (void*)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(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; } }; // System.Xml.Serialization.TypeData struct TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 : public RuntimeObject { public: // System.Type System.Xml.Serialization.TypeData::type Type_t * ___type_0; // System.String System.Xml.Serialization.TypeData::elementName String_t* ___elementName_1; // System.Xml.Serialization.SchemaTypes System.Xml.Serialization.TypeData::sType int32_t ___sType_2; // System.Type System.Xml.Serialization.TypeData::listItemType Type_t * ___listItemType_3; // System.String System.Xml.Serialization.TypeData::typeName String_t* ___typeName_4; // System.String System.Xml.Serialization.TypeData::fullTypeName String_t* ___fullTypeName_5; // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeData::listItemTypeData TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * ___listItemTypeData_6; // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeData::mappedType TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * ___mappedType_7; // System.Xml.Schema.XmlSchemaPatternFacet System.Xml.Serialization.TypeData::facet XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 * ___facet_8; // System.Reflection.MethodInfo System.Xml.Serialization.TypeData::typeConvertor MethodInfo_t * ___typeConvertor_9; // System.Boolean System.Xml.Serialization.TypeData::hasPublicConstructor bool ___hasPublicConstructor_10; // System.Boolean System.Xml.Serialization.TypeData::nullableOverride bool ___nullableOverride_11; public: inline static int32_t get_offset_of_type_0() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___type_0)); } inline Type_t * get_type_0() const { return ___type_0; } inline Type_t ** get_address_of_type_0() { return &___type_0; } inline void set_type_0(Type_t * value) { ___type_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_0), (void*)value); } inline static int32_t get_offset_of_elementName_1() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___elementName_1)); } inline String_t* get_elementName_1() const { return ___elementName_1; } inline String_t** get_address_of_elementName_1() { return &___elementName_1; } inline void set_elementName_1(String_t* value) { ___elementName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___elementName_1), (void*)value); } inline static int32_t get_offset_of_sType_2() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___sType_2)); } inline int32_t get_sType_2() const { return ___sType_2; } inline int32_t* get_address_of_sType_2() { return &___sType_2; } inline void set_sType_2(int32_t value) { ___sType_2 = value; } inline static int32_t get_offset_of_listItemType_3() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___listItemType_3)); } inline Type_t * get_listItemType_3() const { return ___listItemType_3; } inline Type_t ** get_address_of_listItemType_3() { return &___listItemType_3; } inline void set_listItemType_3(Type_t * value) { ___listItemType_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___listItemType_3), (void*)value); } inline static int32_t get_offset_of_typeName_4() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___typeName_4)); } inline String_t* get_typeName_4() const { return ___typeName_4; } inline String_t** get_address_of_typeName_4() { return &___typeName_4; } inline void set_typeName_4(String_t* value) { ___typeName_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeName_4), (void*)value); } inline static int32_t get_offset_of_fullTypeName_5() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___fullTypeName_5)); } inline String_t* get_fullTypeName_5() const { return ___fullTypeName_5; } inline String_t** get_address_of_fullTypeName_5() { return &___fullTypeName_5; } inline void set_fullTypeName_5(String_t* value) { ___fullTypeName_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___fullTypeName_5), (void*)value); } inline static int32_t get_offset_of_listItemTypeData_6() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___listItemTypeData_6)); } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * get_listItemTypeData_6() const { return ___listItemTypeData_6; } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 ** get_address_of_listItemTypeData_6() { return &___listItemTypeData_6; } inline void set_listItemTypeData_6(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * value) { ___listItemTypeData_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___listItemTypeData_6), (void*)value); } inline static int32_t get_offset_of_mappedType_7() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___mappedType_7)); } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * get_mappedType_7() const { return ___mappedType_7; } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 ** get_address_of_mappedType_7() { return &___mappedType_7; } inline void set_mappedType_7(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * value) { ___mappedType_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___mappedType_7), (void*)value); } inline static int32_t get_offset_of_facet_8() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___facet_8)); } inline XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 * get_facet_8() const { return ___facet_8; } inline XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 ** get_address_of_facet_8() { return &___facet_8; } inline void set_facet_8(XmlSchemaPatternFacet_t4B0DD650C87F804406E906E929F622AD1EEC5193 * value) { ___facet_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___facet_8), (void*)value); } inline static int32_t get_offset_of_typeConvertor_9() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___typeConvertor_9)); } inline MethodInfo_t * get_typeConvertor_9() const { return ___typeConvertor_9; } inline MethodInfo_t ** get_address_of_typeConvertor_9() { return &___typeConvertor_9; } inline void set_typeConvertor_9(MethodInfo_t * value) { ___typeConvertor_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeConvertor_9), (void*)value); } inline static int32_t get_offset_of_hasPublicConstructor_10() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___hasPublicConstructor_10)); } inline bool get_hasPublicConstructor_10() const { return ___hasPublicConstructor_10; } inline bool* get_address_of_hasPublicConstructor_10() { return &___hasPublicConstructor_10; } inline void set_hasPublicConstructor_10(bool value) { ___hasPublicConstructor_10 = value; } inline static int32_t get_offset_of_nullableOverride_11() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2, ___nullableOverride_11)); } inline bool get_nullableOverride_11() const { return ___nullableOverride_11; } inline bool* get_address_of_nullableOverride_11() { return &___nullableOverride_11; } inline void set_nullableOverride_11(bool value) { ___nullableOverride_11 = value; } }; // System.Uri struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 : public RuntimeObject { public: // System.String System.Uri::m_String String_t* ___m_String_13; // System.String System.Uri::m_originalUnicodeString String_t* ___m_originalUnicodeString_14; // System.UriParser System.Uri::m_Syntax UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___m_Syntax_15; // System.String System.Uri::m_DnsSafeHost String_t* ___m_DnsSafeHost_16; // System.Uri/Flags System.Uri::m_Flags uint64_t ___m_Flags_17; // System.Uri/UriInfo System.Uri::m_Info UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * ___m_Info_18; // System.Boolean System.Uri::m_iriParsing bool ___m_iriParsing_19; public: inline static int32_t get_offset_of_m_String_13() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_String_13)); } inline String_t* get_m_String_13() const { return ___m_String_13; } inline String_t** get_address_of_m_String_13() { return &___m_String_13; } inline void set_m_String_13(String_t* value) { ___m_String_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_String_13), (void*)value); } inline static int32_t get_offset_of_m_originalUnicodeString_14() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_originalUnicodeString_14)); } inline String_t* get_m_originalUnicodeString_14() const { return ___m_originalUnicodeString_14; } inline String_t** get_address_of_m_originalUnicodeString_14() { return &___m_originalUnicodeString_14; } inline void set_m_originalUnicodeString_14(String_t* value) { ___m_originalUnicodeString_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_originalUnicodeString_14), (void*)value); } inline static int32_t get_offset_of_m_Syntax_15() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Syntax_15)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_m_Syntax_15() const { return ___m_Syntax_15; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_m_Syntax_15() { return &___m_Syntax_15; } inline void set_m_Syntax_15(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___m_Syntax_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Syntax_15), (void*)value); } inline static int32_t get_offset_of_m_DnsSafeHost_16() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_DnsSafeHost_16)); } inline String_t* get_m_DnsSafeHost_16() const { return ___m_DnsSafeHost_16; } inline String_t** get_address_of_m_DnsSafeHost_16() { return &___m_DnsSafeHost_16; } inline void set_m_DnsSafeHost_16(String_t* value) { ___m_DnsSafeHost_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DnsSafeHost_16), (void*)value); } inline static int32_t get_offset_of_m_Flags_17() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Flags_17)); } inline uint64_t get_m_Flags_17() const { return ___m_Flags_17; } inline uint64_t* get_address_of_m_Flags_17() { return &___m_Flags_17; } inline void set_m_Flags_17(uint64_t value) { ___m_Flags_17 = value; } inline static int32_t get_offset_of_m_Info_18() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Info_18)); } inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * get_m_Info_18() const { return ___m_Info_18; } inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 ** get_address_of_m_Info_18() { return &___m_Info_18; } inline void set_m_Info_18(UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * value) { ___m_Info_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Info_18), (void*)value); } inline static int32_t get_offset_of_m_iriParsing_19() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_iriParsing_19)); } inline bool get_m_iriParsing_19() const { return ___m_iriParsing_19; } inline bool* get_address_of_m_iriParsing_19() { return &___m_iriParsing_19; } inline void set_m_iriParsing_19(bool value) { ___m_iriParsing_19 = value; } }; // System.Net.WebRequest struct WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: // System.Net.Security.AuthenticationLevel System.Net.WebRequest::m_AuthenticationLevel int32_t ___m_AuthenticationLevel_4; // System.Security.Principal.TokenImpersonationLevel System.Net.WebRequest::m_ImpersonationLevel int32_t ___m_ImpersonationLevel_5; // System.Net.Cache.RequestCachePolicy System.Net.WebRequest::m_CachePolicy RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * ___m_CachePolicy_6; // System.Net.Cache.RequestCacheProtocol System.Net.WebRequest::m_CacheProtocol RequestCacheProtocol_tD3294F615CA528D71DE764785CCE49EBBAD3E2A7 * ___m_CacheProtocol_7; // System.Net.Cache.RequestCacheBinding System.Net.WebRequest::m_CacheBinding RequestCacheBinding_tE74959972BA5BEBD27642CC91FD5E4A0A6BFA447 * ___m_CacheBinding_8; public: inline static int32_t get_offset_of_m_AuthenticationLevel_4() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E, ___m_AuthenticationLevel_4)); } inline int32_t get_m_AuthenticationLevel_4() const { return ___m_AuthenticationLevel_4; } inline int32_t* get_address_of_m_AuthenticationLevel_4() { return &___m_AuthenticationLevel_4; } inline void set_m_AuthenticationLevel_4(int32_t value) { ___m_AuthenticationLevel_4 = value; } inline static int32_t get_offset_of_m_ImpersonationLevel_5() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E, ___m_ImpersonationLevel_5)); } inline int32_t get_m_ImpersonationLevel_5() const { return ___m_ImpersonationLevel_5; } inline int32_t* get_address_of_m_ImpersonationLevel_5() { return &___m_ImpersonationLevel_5; } inline void set_m_ImpersonationLevel_5(int32_t value) { ___m_ImpersonationLevel_5 = value; } inline static int32_t get_offset_of_m_CachePolicy_6() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E, ___m_CachePolicy_6)); } inline RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * get_m_CachePolicy_6() const { return ___m_CachePolicy_6; } inline RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED ** get_address_of_m_CachePolicy_6() { return &___m_CachePolicy_6; } inline void set_m_CachePolicy_6(RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * value) { ___m_CachePolicy_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CachePolicy_6), (void*)value); } inline static int32_t get_offset_of_m_CacheProtocol_7() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E, ___m_CacheProtocol_7)); } inline RequestCacheProtocol_tD3294F615CA528D71DE764785CCE49EBBAD3E2A7 * get_m_CacheProtocol_7() const { return ___m_CacheProtocol_7; } inline RequestCacheProtocol_tD3294F615CA528D71DE764785CCE49EBBAD3E2A7 ** get_address_of_m_CacheProtocol_7() { return &___m_CacheProtocol_7; } inline void set_m_CacheProtocol_7(RequestCacheProtocol_tD3294F615CA528D71DE764785CCE49EBBAD3E2A7 * value) { ___m_CacheProtocol_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CacheProtocol_7), (void*)value); } inline static int32_t get_offset_of_m_CacheBinding_8() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E, ___m_CacheBinding_8)); } inline RequestCacheBinding_tE74959972BA5BEBD27642CC91FD5E4A0A6BFA447 * get_m_CacheBinding_8() const { return ___m_CacheBinding_8; } inline RequestCacheBinding_tE74959972BA5BEBD27642CC91FD5E4A0A6BFA447 ** get_address_of_m_CacheBinding_8() { return &___m_CacheBinding_8; } inline void set_m_CacheBinding_8(RequestCacheBinding_tE74959972BA5BEBD27642CC91FD5E4A0A6BFA447 * value) { ___m_CacheBinding_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CacheBinding_8), (void*)value); } }; // System.Xml.Schema.XmlAtomicValue struct XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C : public XPathItem_t053B6F865E42EB40BFD03AE958B99844501E5701 { public: // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlAtomicValue::xmlType XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___xmlType_0; // System.Object System.Xml.Schema.XmlAtomicValue::objVal RuntimeObject * ___objVal_1; // System.TypeCode System.Xml.Schema.XmlAtomicValue::clrType int32_t ___clrType_2; // System.Xml.Schema.XmlAtomicValue/Union System.Xml.Schema.XmlAtomicValue::unionVal Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F ___unionVal_3; // System.Xml.Schema.XmlAtomicValue/NamespacePrefixForQName System.Xml.Schema.XmlAtomicValue::nsPrefix NamespacePrefixForQName_t38692CB52444997F00035FBB30BCEC358855A1B2 * ___nsPrefix_4; public: inline static int32_t get_offset_of_xmlType_0() { return static_cast(offsetof(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C, ___xmlType_0)); } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * get_xmlType_0() const { return ___xmlType_0; } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA ** get_address_of_xmlType_0() { return &___xmlType_0; } inline void set_xmlType_0(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * value) { ___xmlType_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlType_0), (void*)value); } inline static int32_t get_offset_of_objVal_1() { return static_cast(offsetof(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C, ___objVal_1)); } inline RuntimeObject * get_objVal_1() const { return ___objVal_1; } inline RuntimeObject ** get_address_of_objVal_1() { return &___objVal_1; } inline void set_objVal_1(RuntimeObject * value) { ___objVal_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___objVal_1), (void*)value); } inline static int32_t get_offset_of_clrType_2() { return static_cast(offsetof(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C, ___clrType_2)); } inline int32_t get_clrType_2() const { return ___clrType_2; } inline int32_t* get_address_of_clrType_2() { return &___clrType_2; } inline void set_clrType_2(int32_t value) { ___clrType_2 = value; } inline static int32_t get_offset_of_unionVal_3() { return static_cast(offsetof(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C, ___unionVal_3)); } inline Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F get_unionVal_3() const { return ___unionVal_3; } inline Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F * get_address_of_unionVal_3() { return &___unionVal_3; } inline void set_unionVal_3(Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F value) { ___unionVal_3 = value; } inline static int32_t get_offset_of_nsPrefix_4() { return static_cast(offsetof(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C, ___nsPrefix_4)); } inline NamespacePrefixForQName_t38692CB52444997F00035FBB30BCEC358855A1B2 * get_nsPrefix_4() const { return ___nsPrefix_4; } inline NamespacePrefixForQName_t38692CB52444997F00035FBB30BCEC358855A1B2 ** get_address_of_nsPrefix_4() { return &___nsPrefix_4; } inline void set_nsPrefix_4(NamespacePrefixForQName_t38692CB52444997F00035FBB30BCEC358855A1B2 * value) { ___nsPrefix_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___nsPrefix_4), (void*)value); } }; // System.Xml.Schema.XmlBaseConverter struct XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 : public XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 { public: // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlBaseConverter::schemaType XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___schemaType_0; // System.Xml.Schema.XmlTypeCode System.Xml.Schema.XmlBaseConverter::typeCode int32_t ___typeCode_1; // System.Type System.Xml.Schema.XmlBaseConverter::clrTypeDefault Type_t * ___clrTypeDefault_2; public: inline static int32_t get_offset_of_schemaType_0() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55, ___schemaType_0)); } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * get_schemaType_0() const { return ___schemaType_0; } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA ** get_address_of_schemaType_0() { return &___schemaType_0; } inline void set_schemaType_0(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * value) { ___schemaType_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___schemaType_0), (void*)value); } inline static int32_t get_offset_of_typeCode_1() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55, ___typeCode_1)); } inline int32_t get_typeCode_1() const { return ___typeCode_1; } inline int32_t* get_address_of_typeCode_1() { return &___typeCode_1; } inline void set_typeCode_1(int32_t value) { ___typeCode_1 = value; } inline static int32_t get_offset_of_clrTypeDefault_2() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55, ___clrTypeDefault_2)); } inline Type_t * get_clrTypeDefault_2() const { return ___clrTypeDefault_2; } inline Type_t ** get_address_of_clrTypeDefault_2() { return &___clrTypeDefault_2; } inline void set_clrTypeDefault_2(Type_t * value) { ___clrTypeDefault_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___clrTypeDefault_2), (void*)value); } }; // System.Xml.XmlCachedStream struct XmlCachedStream_t16365C843A7DEB2CD28A1C6550229581A2913D83 : public MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C { public: // System.Uri System.Xml.XmlCachedStream::uri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri_15; public: inline static int32_t get_offset_of_uri_15() { return static_cast(offsetof(XmlCachedStream_t16365C843A7DEB2CD28A1C6550229581A2913D83, ___uri_15)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_uri_15() const { return ___uri_15; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_uri_15() { return &___uri_15; } inline void set_uri_15(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___uri_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___uri_15), (void*)value); } }; // System.Xml.Serialization.XmlMapping struct XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 : public RuntimeObject { public: // System.Xml.Serialization.ObjectMap System.Xml.Serialization.XmlMapping::map ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C * ___map_0; // System.Collections.ArrayList System.Xml.Serialization.XmlMapping::relatedMaps ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___relatedMaps_1; // System.Xml.Serialization.SerializationFormat System.Xml.Serialization.XmlMapping::format int32_t ___format_2; // System.String System.Xml.Serialization.XmlMapping::_elementName String_t* ____elementName_3; // System.String System.Xml.Serialization.XmlMapping::_namespace String_t* ____namespace_4; // System.String System.Xml.Serialization.XmlMapping::key String_t* ___key_5; public: inline static int32_t get_offset_of_map_0() { return static_cast(offsetof(XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9, ___map_0)); } inline ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C * get_map_0() const { return ___map_0; } inline ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C ** get_address_of_map_0() { return &___map_0; } inline void set_map_0(ObjectMap_t7A8443346E6A156B8D9173F81BB35A5A23992B5C * value) { ___map_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___map_0), (void*)value); } inline static int32_t get_offset_of_relatedMaps_1() { return static_cast(offsetof(XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9, ___relatedMaps_1)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_relatedMaps_1() const { return ___relatedMaps_1; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_relatedMaps_1() { return &___relatedMaps_1; } inline void set_relatedMaps_1(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ___relatedMaps_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___relatedMaps_1), (void*)value); } inline static int32_t get_offset_of_format_2() { return static_cast(offsetof(XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9, ___format_2)); } inline int32_t get_format_2() const { return ___format_2; } inline int32_t* get_address_of_format_2() { return &___format_2; } inline void set_format_2(int32_t value) { ___format_2 = value; } inline static int32_t get_offset_of__elementName_3() { return static_cast(offsetof(XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9, ____elementName_3)); } inline String_t* get__elementName_3() const { return ____elementName_3; } inline String_t** get_address_of__elementName_3() { return &____elementName_3; } inline void set__elementName_3(String_t* value) { ____elementName_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____elementName_3), (void*)value); } inline static int32_t get_offset_of__namespace_4() { return static_cast(offsetof(XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9, ____namespace_4)); } inline String_t* get__namespace_4() const { return ____namespace_4; } inline String_t** get_address_of__namespace_4() { return &____namespace_4; } inline void set__namespace_4(String_t* value) { ____namespace_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____namespace_4), (void*)value); } inline static int32_t get_offset_of_key_5() { return static_cast(offsetof(XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9, ___key_5)); } inline String_t* get_key_5() const { return ___key_5; } inline String_t** get_address_of_key_5() { return &___key_5; } inline void set_key_5(String_t* value) { ___key_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_5), (void*)value); } }; // System.Xml.Schema.XmlSchemaParticle struct XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789 : public XmlSchemaAnnotated_t68F13E739330186883290FF723E752BD26F2E3A7 { public: // System.Decimal System.Xml.Schema.XmlSchemaParticle::minOccurs Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___minOccurs_0; // System.Decimal System.Xml.Schema.XmlSchemaParticle::maxOccurs Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___maxOccurs_1; // System.Xml.Schema.XmlSchemaParticle/Occurs System.Xml.Schema.XmlSchemaParticle::flags int32_t ___flags_2; public: inline static int32_t get_offset_of_minOccurs_0() { return static_cast(offsetof(XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789, ___minOccurs_0)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_minOccurs_0() const { return ___minOccurs_0; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_minOccurs_0() { return &___minOccurs_0; } inline void set_minOccurs_0(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___minOccurs_0 = value; } inline static int32_t get_offset_of_maxOccurs_1() { return static_cast(offsetof(XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789, ___maxOccurs_1)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_maxOccurs_1() const { return ___maxOccurs_1; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_maxOccurs_1() { return &___maxOccurs_1; } inline void set_maxOccurs_1(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___maxOccurs_1 = value; } inline static int32_t get_offset_of_flags_2() { return static_cast(offsetof(XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789, ___flags_2)); } inline int32_t get_flags_2() const { return ___flags_2; } inline int32_t* get_address_of_flags_2() { return &___flags_2; } inline void set_flags_2(int32_t value) { ___flags_2 = value; } }; // System.Xml.Schema.XmlSchemaType struct XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA : public XmlSchemaAnnotated_t68F13E739330186883290FF723E752BD26F2E3A7 { public: // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::final int32_t ___final_0; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::derivedBy int32_t ___derivedBy_1; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaType::baseSchemaType XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___baseSchemaType_2; // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaType::datatype XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * ___datatype_3; // System.Xml.Schema.SchemaElementDecl modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.Schema.XmlSchemaType::elementDecl SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * ___elementDecl_4; // System.Xml.XmlQualifiedName modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.Schema.XmlSchemaType::qname XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___qname_5; // System.Xml.Schema.XmlSchemaContentType System.Xml.Schema.XmlSchemaType::contentType int32_t ___contentType_6; public: inline static int32_t get_offset_of_final_0() { return static_cast(offsetof(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA, ___final_0)); } inline int32_t get_final_0() const { return ___final_0; } inline int32_t* get_address_of_final_0() { return &___final_0; } inline void set_final_0(int32_t value) { ___final_0 = value; } inline static int32_t get_offset_of_derivedBy_1() { return static_cast(offsetof(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA, ___derivedBy_1)); } inline int32_t get_derivedBy_1() const { return ___derivedBy_1; } inline int32_t* get_address_of_derivedBy_1() { return &___derivedBy_1; } inline void set_derivedBy_1(int32_t value) { ___derivedBy_1 = value; } inline static int32_t get_offset_of_baseSchemaType_2() { return static_cast(offsetof(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA, ___baseSchemaType_2)); } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * get_baseSchemaType_2() const { return ___baseSchemaType_2; } inline XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA ** get_address_of_baseSchemaType_2() { return &___baseSchemaType_2; } inline void set_baseSchemaType_2(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * value) { ___baseSchemaType_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___baseSchemaType_2), (void*)value); } inline static int32_t get_offset_of_datatype_3() { return static_cast(offsetof(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA, ___datatype_3)); } inline XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * get_datatype_3() const { return ___datatype_3; } inline XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 ** get_address_of_datatype_3() { return &___datatype_3; } inline void set_datatype_3(XmlSchemaDatatype_t857F76DDC0B34F4FC5DDA7AEF2736EB3660A4C38 * value) { ___datatype_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___datatype_3), (void*)value); } inline static int32_t get_offset_of_elementDecl_4() { return static_cast(offsetof(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA, ___elementDecl_4)); } inline SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * get_elementDecl_4() const { return ___elementDecl_4; } inline SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B ** get_address_of_elementDecl_4() { return &___elementDecl_4; } inline void set_elementDecl_4(SchemaElementDecl_t2C010D7212311FC98219214B53CEC6084997243B * value) { ___elementDecl_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___elementDecl_4), (void*)value); } inline static int32_t get_offset_of_qname_5() { return static_cast(offsetof(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA, ___qname_5)); } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * get_qname_5() const { return ___qname_5; } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 ** get_address_of_qname_5() { return &___qname_5; } inline void set_qname_5(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * value) { ___qname_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___qname_5), (void*)value); } inline static int32_t get_offset_of_contentType_6() { return static_cast(offsetof(XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA, ___contentType_6)); } inline int32_t get_contentType_6() const { return ___contentType_6; } inline int32_t* get_address_of_contentType_6() { return &___contentType_6; } inline void set_contentType_6(int32_t value) { ___contentType_6 = value; } }; // System.Xml.Serialization.XmlSerializationReaderInterpreter struct XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26 : public XmlSerializationReader_t6E81B5E062BBB91CE09BB405F96E262A2D2893CD { public: // System.Xml.Serialization.XmlMapping System.Xml.Serialization.XmlSerializationReaderInterpreter::_typeMap XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 * ____typeMap_25; // System.Xml.Serialization.SerializationFormat System.Xml.Serialization.XmlSerializationReaderInterpreter::_format int32_t ____format_26; public: inline static int32_t get_offset_of__typeMap_25() { return static_cast(offsetof(XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26, ____typeMap_25)); } inline XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 * get__typeMap_25() const { return ____typeMap_25; } inline XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 ** get_address_of__typeMap_25() { return &____typeMap_25; } inline void set__typeMap_25(XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 * value) { ____typeMap_25 = value; Il2CppCodeGenWriteBarrier((void**)(&____typeMap_25), (void*)value); } inline static int32_t get_offset_of__format_26() { return static_cast(offsetof(XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26, ____format_26)); } inline int32_t get__format_26() const { return ____format_26; } inline int32_t* get_address_of__format_26() { return &____format_26; } inline void set__format_26(int32_t value) { ____format_26 = value; } }; // System.Xml.Serialization.XmlSerializationWriterInterpreter struct XmlSerializationWriterInterpreter_t5421FAFC8BE8D6DA736DF8A6DC1ADA79770CDB54 : public XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F { public: // System.Xml.Serialization.XmlMapping System.Xml.Serialization.XmlSerializationWriterInterpreter::_typeMap XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 * ____typeMap_8; // System.Xml.Serialization.SerializationFormat System.Xml.Serialization.XmlSerializationWriterInterpreter::_format int32_t ____format_9; public: inline static int32_t get_offset_of__typeMap_8() { return static_cast(offsetof(XmlSerializationWriterInterpreter_t5421FAFC8BE8D6DA736DF8A6DC1ADA79770CDB54, ____typeMap_8)); } inline XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 * get__typeMap_8() const { return ____typeMap_8; } inline XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 ** get_address_of__typeMap_8() { return &____typeMap_8; } inline void set__typeMap_8(XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 * value) { ____typeMap_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____typeMap_8), (void*)value); } inline static int32_t get_offset_of__format_9() { return static_cast(offsetof(XmlSerializationWriterInterpreter_t5421FAFC8BE8D6DA736DF8A6DC1ADA79770CDB54, ____format_9)); } inline int32_t get__format_9() const { return ____format_9; } inline int32_t* get_address_of__format_9() { return &____format_9; } inline void set__format_9(int32_t value) { ____format_9 = value; } }; // System.Xml.XmlTextReaderImpl struct XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 : public XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138 { public: // System.Xml.XmlTextReaderImpl/LaterInitParam System.Xml.XmlTextReaderImpl::laterInitParam LaterInitParam_t6670C77CB75356E7E47BBE3177DB78D355B0EFBF * ___laterInitParam_3; // System.Xml.XmlCharType System.Xml.XmlTextReaderImpl::xmlCharType XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA ___xmlCharType_4; // System.Xml.XmlTextReaderImpl/ParsingState System.Xml.XmlTextReaderImpl::ps ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF ___ps_5; // System.Xml.XmlTextReaderImpl/ParsingFunction System.Xml.XmlTextReaderImpl::parsingFunction int32_t ___parsingFunction_6; // System.Xml.XmlTextReaderImpl/ParsingFunction System.Xml.XmlTextReaderImpl::nextParsingFunction int32_t ___nextParsingFunction_7; // System.Xml.XmlTextReaderImpl/ParsingFunction System.Xml.XmlTextReaderImpl::nextNextParsingFunction int32_t ___nextNextParsingFunction_8; // System.Xml.XmlTextReaderImpl/NodeData[] System.Xml.XmlTextReaderImpl::nodes NodeDataU5BU5D_tF52E3FD243752A83F37BFD931C7C13C513A1CAB0* ___nodes_9; // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl::curNode NodeData_tD504C5A621E7DD546954D87282438662327280EA * ___curNode_10; // System.Int32 System.Xml.XmlTextReaderImpl::index int32_t ___index_11; // System.Int32 System.Xml.XmlTextReaderImpl::curAttrIndex int32_t ___curAttrIndex_12; // System.Int32 System.Xml.XmlTextReaderImpl::attrCount int32_t ___attrCount_13; // System.Int32 System.Xml.XmlTextReaderImpl::attrHashtable int32_t ___attrHashtable_14; // System.Int32 System.Xml.XmlTextReaderImpl::attrDuplWalkCount int32_t ___attrDuplWalkCount_15; // System.Boolean System.Xml.XmlTextReaderImpl::attrNeedNamespaceLookup bool ___attrNeedNamespaceLookup_16; // System.Boolean System.Xml.XmlTextReaderImpl::fullAttrCleanup bool ___fullAttrCleanup_17; // System.Xml.XmlTextReaderImpl/NodeData[] System.Xml.XmlTextReaderImpl::attrDuplSortingArray NodeDataU5BU5D_tF52E3FD243752A83F37BFD931C7C13C513A1CAB0* ___attrDuplSortingArray_18; // System.Xml.XmlNameTable System.Xml.XmlTextReaderImpl::nameTable XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * ___nameTable_19; // System.Boolean System.Xml.XmlTextReaderImpl::nameTableFromSettings bool ___nameTableFromSettings_20; // System.Xml.XmlResolver System.Xml.XmlTextReaderImpl::xmlResolver XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A * ___xmlResolver_21; // System.String System.Xml.XmlTextReaderImpl::url String_t* ___url_22; // System.Boolean System.Xml.XmlTextReaderImpl::normalize bool ___normalize_23; // System.Boolean System.Xml.XmlTextReaderImpl::supportNamespaces bool ___supportNamespaces_24; // System.Xml.WhitespaceHandling System.Xml.XmlTextReaderImpl::whitespaceHandling int32_t ___whitespaceHandling_25; // System.Xml.DtdProcessing System.Xml.XmlTextReaderImpl::dtdProcessing int32_t ___dtdProcessing_26; // System.Xml.EntityHandling System.Xml.XmlTextReaderImpl::entityHandling int32_t ___entityHandling_27; // System.Boolean System.Xml.XmlTextReaderImpl::ignorePIs bool ___ignorePIs_28; // System.Boolean System.Xml.XmlTextReaderImpl::ignoreComments bool ___ignoreComments_29; // System.Boolean System.Xml.XmlTextReaderImpl::checkCharacters bool ___checkCharacters_30; // System.Int32 System.Xml.XmlTextReaderImpl::lineNumberOffset int32_t ___lineNumberOffset_31; // System.Int32 System.Xml.XmlTextReaderImpl::linePositionOffset int32_t ___linePositionOffset_32; // System.Boolean System.Xml.XmlTextReaderImpl::closeInput bool ___closeInput_33; // System.Int64 System.Xml.XmlTextReaderImpl::maxCharactersInDocument int64_t ___maxCharactersInDocument_34; // System.Int64 System.Xml.XmlTextReaderImpl::maxCharactersFromEntities int64_t ___maxCharactersFromEntities_35; // System.Boolean System.Xml.XmlTextReaderImpl::v1Compat bool ___v1Compat_36; // System.Xml.XmlNamespaceManager System.Xml.XmlTextReaderImpl::namespaceManager XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465 * ___namespaceManager_37; // System.String System.Xml.XmlTextReaderImpl::lastPrefix String_t* ___lastPrefix_38; // System.Xml.XmlTextReaderImpl/XmlContext System.Xml.XmlTextReaderImpl::xmlContext XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D * ___xmlContext_39; // System.Xml.XmlTextReaderImpl/ParsingState[] System.Xml.XmlTextReaderImpl::parsingStatesStack ParsingStateU5BU5D_t76C574A7045A0E6E9113EF2F2E2B1A863D91376D* ___parsingStatesStack_40; // System.Int32 System.Xml.XmlTextReaderImpl::parsingStatesStackTop int32_t ___parsingStatesStackTop_41; // System.String System.Xml.XmlTextReaderImpl::reportedBaseUri String_t* ___reportedBaseUri_42; // System.Text.Encoding System.Xml.XmlTextReaderImpl::reportedEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___reportedEncoding_43; // System.Xml.IDtdInfo System.Xml.XmlTextReaderImpl::dtdInfo RuntimeObject* ___dtdInfo_44; // System.Xml.XmlNodeType System.Xml.XmlTextReaderImpl::fragmentType int32_t ___fragmentType_45; // System.Xml.XmlParserContext System.Xml.XmlTextReaderImpl::fragmentParserContext XmlParserContext_tD8B22CA52F41246D7FB94A21A2A5ED605DD4CD28 * ___fragmentParserContext_46; // System.Boolean System.Xml.XmlTextReaderImpl::fragment bool ___fragment_47; // System.Xml.IncrementalReadDecoder System.Xml.XmlTextReaderImpl::incReadDecoder IncrementalReadDecoder_t89737691013C036E9386839AE30A43C9721B3984 * ___incReadDecoder_48; // System.Xml.XmlTextReaderImpl/IncrementalReadState System.Xml.XmlTextReaderImpl::incReadState int32_t ___incReadState_49; // System.Xml.LineInfo System.Xml.XmlTextReaderImpl::incReadLineInfo LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE ___incReadLineInfo_50; // System.Int32 System.Xml.XmlTextReaderImpl::incReadDepth int32_t ___incReadDepth_51; // System.Int32 System.Xml.XmlTextReaderImpl::incReadLeftStartPos int32_t ___incReadLeftStartPos_52; // System.Int32 System.Xml.XmlTextReaderImpl::incReadLeftEndPos int32_t ___incReadLeftEndPos_53; // System.Int32 System.Xml.XmlTextReaderImpl::attributeValueBaseEntityId int32_t ___attributeValueBaseEntityId_54; // System.Boolean System.Xml.XmlTextReaderImpl::emptyEntityInAttributeResolved bool ___emptyEntityInAttributeResolved_55; // System.Xml.IValidationEventHandling System.Xml.XmlTextReaderImpl::validationEventHandling RuntimeObject* ___validationEventHandling_56; // System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate System.Xml.XmlTextReaderImpl::onDefaultAttributeUse OnDefaultAttributeUseDelegate_t3E995824DB2F605D21E74880C851C4C6BB9A1E88 * ___onDefaultAttributeUse_57; // System.Boolean System.Xml.XmlTextReaderImpl::validatingReaderCompatFlag bool ___validatingReaderCompatFlag_58; // System.Boolean System.Xml.XmlTextReaderImpl::addDefaultAttributesAndNormalize bool ___addDefaultAttributesAndNormalize_59; // System.Text.StringBuilder System.Xml.XmlTextReaderImpl::stringBuilder StringBuilder_t * ___stringBuilder_60; // System.Boolean System.Xml.XmlTextReaderImpl::rootElementParsed bool ___rootElementParsed_61; // System.Boolean System.Xml.XmlTextReaderImpl::standalone bool ___standalone_62; // System.Int32 System.Xml.XmlTextReaderImpl::nextEntityId int32_t ___nextEntityId_63; // System.Xml.XmlTextReaderImpl/ParsingMode System.Xml.XmlTextReaderImpl::parsingMode int32_t ___parsingMode_64; // System.Xml.ReadState System.Xml.XmlTextReaderImpl::readState int32_t ___readState_65; // System.Xml.IDtdEntityInfo System.Xml.XmlTextReaderImpl::lastEntity RuntimeObject* ___lastEntity_66; // System.Boolean System.Xml.XmlTextReaderImpl::afterResetState bool ___afterResetState_67; // System.Int32 System.Xml.XmlTextReaderImpl::documentStartBytePos int32_t ___documentStartBytePos_68; // System.Int32 System.Xml.XmlTextReaderImpl::readValueOffset int32_t ___readValueOffset_69; // System.Int64 System.Xml.XmlTextReaderImpl::charactersInDocument int64_t ___charactersInDocument_70; // System.Int64 System.Xml.XmlTextReaderImpl::charactersFromEntities int64_t ___charactersFromEntities_71; // System.Collections.Generic.Dictionary`2 System.Xml.XmlTextReaderImpl::currentEntities Dictionary_2_t7E4F75E23B8A710084DDD8B7D9D901F39C24B184 * ___currentEntities_72; // System.Boolean System.Xml.XmlTextReaderImpl::disableUndeclaredEntityCheck bool ___disableUndeclaredEntityCheck_73; // System.Xml.XmlReader System.Xml.XmlTextReaderImpl::outerReader XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138 * ___outerReader_74; // System.Boolean System.Xml.XmlTextReaderImpl::xmlResolverIsSet bool ___xmlResolverIsSet_75; // System.String System.Xml.XmlTextReaderImpl::Xml String_t* ___Xml_76; // System.String System.Xml.XmlTextReaderImpl::XmlNs String_t* ___XmlNs_77; // System.Threading.Tasks.Task`1> System.Xml.XmlTextReaderImpl::parseText_dummyTask Task_1_tDC99D8BCBDBB4A01765BBF5823E5764CEC20D642 * ___parseText_dummyTask_78; public: inline static int32_t get_offset_of_laterInitParam_3() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___laterInitParam_3)); } inline LaterInitParam_t6670C77CB75356E7E47BBE3177DB78D355B0EFBF * get_laterInitParam_3() const { return ___laterInitParam_3; } inline LaterInitParam_t6670C77CB75356E7E47BBE3177DB78D355B0EFBF ** get_address_of_laterInitParam_3() { return &___laterInitParam_3; } inline void set_laterInitParam_3(LaterInitParam_t6670C77CB75356E7E47BBE3177DB78D355B0EFBF * value) { ___laterInitParam_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___laterInitParam_3), (void*)value); } inline static int32_t get_offset_of_xmlCharType_4() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___xmlCharType_4)); } inline XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA get_xmlCharType_4() const { return ___xmlCharType_4; } inline XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA * get_address_of_xmlCharType_4() { return &___xmlCharType_4; } inline void set_xmlCharType_4(XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA value) { ___xmlCharType_4 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___xmlCharType_4))->___charProperties_2), (void*)NULL); } inline static int32_t get_offset_of_ps_5() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___ps_5)); } inline ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF get_ps_5() const { return ___ps_5; } inline ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF * get_address_of_ps_5() { return &___ps_5; } inline void set_ps_5(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF value) { ___ps_5 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___ps_5))->___chars_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___ps_5))->___encoding_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___ps_5))->___stream_5), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___ps_5))->___decoder_6), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___ps_5))->___bytes_7), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___ps_5))->___textReader_10), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___ps_5))->___baseUriStr_13), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___ps_5))->___baseUri_14), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___ps_5))->___entity_17), (void*)NULL); #endif } inline static int32_t get_offset_of_parsingFunction_6() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___parsingFunction_6)); } inline int32_t get_parsingFunction_6() const { return ___parsingFunction_6; } inline int32_t* get_address_of_parsingFunction_6() { return &___parsingFunction_6; } inline void set_parsingFunction_6(int32_t value) { ___parsingFunction_6 = value; } inline static int32_t get_offset_of_nextParsingFunction_7() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___nextParsingFunction_7)); } inline int32_t get_nextParsingFunction_7() const { return ___nextParsingFunction_7; } inline int32_t* get_address_of_nextParsingFunction_7() { return &___nextParsingFunction_7; } inline void set_nextParsingFunction_7(int32_t value) { ___nextParsingFunction_7 = value; } inline static int32_t get_offset_of_nextNextParsingFunction_8() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___nextNextParsingFunction_8)); } inline int32_t get_nextNextParsingFunction_8() const { return ___nextNextParsingFunction_8; } inline int32_t* get_address_of_nextNextParsingFunction_8() { return &___nextNextParsingFunction_8; } inline void set_nextNextParsingFunction_8(int32_t value) { ___nextNextParsingFunction_8 = value; } inline static int32_t get_offset_of_nodes_9() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___nodes_9)); } inline NodeDataU5BU5D_tF52E3FD243752A83F37BFD931C7C13C513A1CAB0* get_nodes_9() const { return ___nodes_9; } inline NodeDataU5BU5D_tF52E3FD243752A83F37BFD931C7C13C513A1CAB0** get_address_of_nodes_9() { return &___nodes_9; } inline void set_nodes_9(NodeDataU5BU5D_tF52E3FD243752A83F37BFD931C7C13C513A1CAB0* value) { ___nodes_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___nodes_9), (void*)value); } inline static int32_t get_offset_of_curNode_10() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___curNode_10)); } inline NodeData_tD504C5A621E7DD546954D87282438662327280EA * get_curNode_10() const { return ___curNode_10; } inline NodeData_tD504C5A621E7DD546954D87282438662327280EA ** get_address_of_curNode_10() { return &___curNode_10; } inline void set_curNode_10(NodeData_tD504C5A621E7DD546954D87282438662327280EA * value) { ___curNode_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___curNode_10), (void*)value); } inline static int32_t get_offset_of_index_11() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___index_11)); } inline int32_t get_index_11() const { return ___index_11; } inline int32_t* get_address_of_index_11() { return &___index_11; } inline void set_index_11(int32_t value) { ___index_11 = value; } inline static int32_t get_offset_of_curAttrIndex_12() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___curAttrIndex_12)); } inline int32_t get_curAttrIndex_12() const { return ___curAttrIndex_12; } inline int32_t* get_address_of_curAttrIndex_12() { return &___curAttrIndex_12; } inline void set_curAttrIndex_12(int32_t value) { ___curAttrIndex_12 = value; } inline static int32_t get_offset_of_attrCount_13() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___attrCount_13)); } inline int32_t get_attrCount_13() const { return ___attrCount_13; } inline int32_t* get_address_of_attrCount_13() { return &___attrCount_13; } inline void set_attrCount_13(int32_t value) { ___attrCount_13 = value; } inline static int32_t get_offset_of_attrHashtable_14() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___attrHashtable_14)); } inline int32_t get_attrHashtable_14() const { return ___attrHashtable_14; } inline int32_t* get_address_of_attrHashtable_14() { return &___attrHashtable_14; } inline void set_attrHashtable_14(int32_t value) { ___attrHashtable_14 = value; } inline static int32_t get_offset_of_attrDuplWalkCount_15() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___attrDuplWalkCount_15)); } inline int32_t get_attrDuplWalkCount_15() const { return ___attrDuplWalkCount_15; } inline int32_t* get_address_of_attrDuplWalkCount_15() { return &___attrDuplWalkCount_15; } inline void set_attrDuplWalkCount_15(int32_t value) { ___attrDuplWalkCount_15 = value; } inline static int32_t get_offset_of_attrNeedNamespaceLookup_16() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___attrNeedNamespaceLookup_16)); } inline bool get_attrNeedNamespaceLookup_16() const { return ___attrNeedNamespaceLookup_16; } inline bool* get_address_of_attrNeedNamespaceLookup_16() { return &___attrNeedNamespaceLookup_16; } inline void set_attrNeedNamespaceLookup_16(bool value) { ___attrNeedNamespaceLookup_16 = value; } inline static int32_t get_offset_of_fullAttrCleanup_17() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___fullAttrCleanup_17)); } inline bool get_fullAttrCleanup_17() const { return ___fullAttrCleanup_17; } inline bool* get_address_of_fullAttrCleanup_17() { return &___fullAttrCleanup_17; } inline void set_fullAttrCleanup_17(bool value) { ___fullAttrCleanup_17 = value; } inline static int32_t get_offset_of_attrDuplSortingArray_18() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___attrDuplSortingArray_18)); } inline NodeDataU5BU5D_tF52E3FD243752A83F37BFD931C7C13C513A1CAB0* get_attrDuplSortingArray_18() const { return ___attrDuplSortingArray_18; } inline NodeDataU5BU5D_tF52E3FD243752A83F37BFD931C7C13C513A1CAB0** get_address_of_attrDuplSortingArray_18() { return &___attrDuplSortingArray_18; } inline void set_attrDuplSortingArray_18(NodeDataU5BU5D_tF52E3FD243752A83F37BFD931C7C13C513A1CAB0* value) { ___attrDuplSortingArray_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___attrDuplSortingArray_18), (void*)value); } inline static int32_t get_offset_of_nameTable_19() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___nameTable_19)); } inline XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * get_nameTable_19() const { return ___nameTable_19; } inline XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 ** get_address_of_nameTable_19() { return &___nameTable_19; } inline void set_nameTable_19(XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * value) { ___nameTable_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___nameTable_19), (void*)value); } inline static int32_t get_offset_of_nameTableFromSettings_20() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___nameTableFromSettings_20)); } inline bool get_nameTableFromSettings_20() const { return ___nameTableFromSettings_20; } inline bool* get_address_of_nameTableFromSettings_20() { return &___nameTableFromSettings_20; } inline void set_nameTableFromSettings_20(bool value) { ___nameTableFromSettings_20 = value; } inline static int32_t get_offset_of_xmlResolver_21() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___xmlResolver_21)); } inline XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A * get_xmlResolver_21() const { return ___xmlResolver_21; } inline XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A ** get_address_of_xmlResolver_21() { return &___xmlResolver_21; } inline void set_xmlResolver_21(XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A * value) { ___xmlResolver_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlResolver_21), (void*)value); } inline static int32_t get_offset_of_url_22() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___url_22)); } inline String_t* get_url_22() const { return ___url_22; } inline String_t** get_address_of_url_22() { return &___url_22; } inline void set_url_22(String_t* value) { ___url_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___url_22), (void*)value); } inline static int32_t get_offset_of_normalize_23() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___normalize_23)); } inline bool get_normalize_23() const { return ___normalize_23; } inline bool* get_address_of_normalize_23() { return &___normalize_23; } inline void set_normalize_23(bool value) { ___normalize_23 = value; } inline static int32_t get_offset_of_supportNamespaces_24() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___supportNamespaces_24)); } inline bool get_supportNamespaces_24() const { return ___supportNamespaces_24; } inline bool* get_address_of_supportNamespaces_24() { return &___supportNamespaces_24; } inline void set_supportNamespaces_24(bool value) { ___supportNamespaces_24 = value; } inline static int32_t get_offset_of_whitespaceHandling_25() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___whitespaceHandling_25)); } inline int32_t get_whitespaceHandling_25() const { return ___whitespaceHandling_25; } inline int32_t* get_address_of_whitespaceHandling_25() { return &___whitespaceHandling_25; } inline void set_whitespaceHandling_25(int32_t value) { ___whitespaceHandling_25 = value; } inline static int32_t get_offset_of_dtdProcessing_26() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___dtdProcessing_26)); } inline int32_t get_dtdProcessing_26() const { return ___dtdProcessing_26; } inline int32_t* get_address_of_dtdProcessing_26() { return &___dtdProcessing_26; } inline void set_dtdProcessing_26(int32_t value) { ___dtdProcessing_26 = value; } inline static int32_t get_offset_of_entityHandling_27() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___entityHandling_27)); } inline int32_t get_entityHandling_27() const { return ___entityHandling_27; } inline int32_t* get_address_of_entityHandling_27() { return &___entityHandling_27; } inline void set_entityHandling_27(int32_t value) { ___entityHandling_27 = value; } inline static int32_t get_offset_of_ignorePIs_28() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___ignorePIs_28)); } inline bool get_ignorePIs_28() const { return ___ignorePIs_28; } inline bool* get_address_of_ignorePIs_28() { return &___ignorePIs_28; } inline void set_ignorePIs_28(bool value) { ___ignorePIs_28 = value; } inline static int32_t get_offset_of_ignoreComments_29() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___ignoreComments_29)); } inline bool get_ignoreComments_29() const { return ___ignoreComments_29; } inline bool* get_address_of_ignoreComments_29() { return &___ignoreComments_29; } inline void set_ignoreComments_29(bool value) { ___ignoreComments_29 = value; } inline static int32_t get_offset_of_checkCharacters_30() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___checkCharacters_30)); } inline bool get_checkCharacters_30() const { return ___checkCharacters_30; } inline bool* get_address_of_checkCharacters_30() { return &___checkCharacters_30; } inline void set_checkCharacters_30(bool value) { ___checkCharacters_30 = value; } inline static int32_t get_offset_of_lineNumberOffset_31() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___lineNumberOffset_31)); } inline int32_t get_lineNumberOffset_31() const { return ___lineNumberOffset_31; } inline int32_t* get_address_of_lineNumberOffset_31() { return &___lineNumberOffset_31; } inline void set_lineNumberOffset_31(int32_t value) { ___lineNumberOffset_31 = value; } inline static int32_t get_offset_of_linePositionOffset_32() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___linePositionOffset_32)); } inline int32_t get_linePositionOffset_32() const { return ___linePositionOffset_32; } inline int32_t* get_address_of_linePositionOffset_32() { return &___linePositionOffset_32; } inline void set_linePositionOffset_32(int32_t value) { ___linePositionOffset_32 = value; } inline static int32_t get_offset_of_closeInput_33() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___closeInput_33)); } inline bool get_closeInput_33() const { return ___closeInput_33; } inline bool* get_address_of_closeInput_33() { return &___closeInput_33; } inline void set_closeInput_33(bool value) { ___closeInput_33 = value; } inline static int32_t get_offset_of_maxCharactersInDocument_34() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___maxCharactersInDocument_34)); } inline int64_t get_maxCharactersInDocument_34() const { return ___maxCharactersInDocument_34; } inline int64_t* get_address_of_maxCharactersInDocument_34() { return &___maxCharactersInDocument_34; } inline void set_maxCharactersInDocument_34(int64_t value) { ___maxCharactersInDocument_34 = value; } inline static int32_t get_offset_of_maxCharactersFromEntities_35() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___maxCharactersFromEntities_35)); } inline int64_t get_maxCharactersFromEntities_35() const { return ___maxCharactersFromEntities_35; } inline int64_t* get_address_of_maxCharactersFromEntities_35() { return &___maxCharactersFromEntities_35; } inline void set_maxCharactersFromEntities_35(int64_t value) { ___maxCharactersFromEntities_35 = value; } inline static int32_t get_offset_of_v1Compat_36() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___v1Compat_36)); } inline bool get_v1Compat_36() const { return ___v1Compat_36; } inline bool* get_address_of_v1Compat_36() { return &___v1Compat_36; } inline void set_v1Compat_36(bool value) { ___v1Compat_36 = value; } inline static int32_t get_offset_of_namespaceManager_37() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___namespaceManager_37)); } inline XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465 * get_namespaceManager_37() const { return ___namespaceManager_37; } inline XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465 ** get_address_of_namespaceManager_37() { return &___namespaceManager_37; } inline void set_namespaceManager_37(XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465 * value) { ___namespaceManager_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___namespaceManager_37), (void*)value); } inline static int32_t get_offset_of_lastPrefix_38() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___lastPrefix_38)); } inline String_t* get_lastPrefix_38() const { return ___lastPrefix_38; } inline String_t** get_address_of_lastPrefix_38() { return &___lastPrefix_38; } inline void set_lastPrefix_38(String_t* value) { ___lastPrefix_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastPrefix_38), (void*)value); } inline static int32_t get_offset_of_xmlContext_39() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___xmlContext_39)); } inline XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D * get_xmlContext_39() const { return ___xmlContext_39; } inline XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D ** get_address_of_xmlContext_39() { return &___xmlContext_39; } inline void set_xmlContext_39(XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D * value) { ___xmlContext_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlContext_39), (void*)value); } inline static int32_t get_offset_of_parsingStatesStack_40() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___parsingStatesStack_40)); } inline ParsingStateU5BU5D_t76C574A7045A0E6E9113EF2F2E2B1A863D91376D* get_parsingStatesStack_40() const { return ___parsingStatesStack_40; } inline ParsingStateU5BU5D_t76C574A7045A0E6E9113EF2F2E2B1A863D91376D** get_address_of_parsingStatesStack_40() { return &___parsingStatesStack_40; } inline void set_parsingStatesStack_40(ParsingStateU5BU5D_t76C574A7045A0E6E9113EF2F2E2B1A863D91376D* value) { ___parsingStatesStack_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___parsingStatesStack_40), (void*)value); } inline static int32_t get_offset_of_parsingStatesStackTop_41() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___parsingStatesStackTop_41)); } inline int32_t get_parsingStatesStackTop_41() const { return ___parsingStatesStackTop_41; } inline int32_t* get_address_of_parsingStatesStackTop_41() { return &___parsingStatesStackTop_41; } inline void set_parsingStatesStackTop_41(int32_t value) { ___parsingStatesStackTop_41 = value; } inline static int32_t get_offset_of_reportedBaseUri_42() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___reportedBaseUri_42)); } inline String_t* get_reportedBaseUri_42() const { return ___reportedBaseUri_42; } inline String_t** get_address_of_reportedBaseUri_42() { return &___reportedBaseUri_42; } inline void set_reportedBaseUri_42(String_t* value) { ___reportedBaseUri_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___reportedBaseUri_42), (void*)value); } inline static int32_t get_offset_of_reportedEncoding_43() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___reportedEncoding_43)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_reportedEncoding_43() const { return ___reportedEncoding_43; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_reportedEncoding_43() { return &___reportedEncoding_43; } inline void set_reportedEncoding_43(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___reportedEncoding_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___reportedEncoding_43), (void*)value); } inline static int32_t get_offset_of_dtdInfo_44() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___dtdInfo_44)); } inline RuntimeObject* get_dtdInfo_44() const { return ___dtdInfo_44; } inline RuntimeObject** get_address_of_dtdInfo_44() { return &___dtdInfo_44; } inline void set_dtdInfo_44(RuntimeObject* value) { ___dtdInfo_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___dtdInfo_44), (void*)value); } inline static int32_t get_offset_of_fragmentType_45() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___fragmentType_45)); } inline int32_t get_fragmentType_45() const { return ___fragmentType_45; } inline int32_t* get_address_of_fragmentType_45() { return &___fragmentType_45; } inline void set_fragmentType_45(int32_t value) { ___fragmentType_45 = value; } inline static int32_t get_offset_of_fragmentParserContext_46() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___fragmentParserContext_46)); } inline XmlParserContext_tD8B22CA52F41246D7FB94A21A2A5ED605DD4CD28 * get_fragmentParserContext_46() const { return ___fragmentParserContext_46; } inline XmlParserContext_tD8B22CA52F41246D7FB94A21A2A5ED605DD4CD28 ** get_address_of_fragmentParserContext_46() { return &___fragmentParserContext_46; } inline void set_fragmentParserContext_46(XmlParserContext_tD8B22CA52F41246D7FB94A21A2A5ED605DD4CD28 * value) { ___fragmentParserContext_46 = value; Il2CppCodeGenWriteBarrier((void**)(&___fragmentParserContext_46), (void*)value); } inline static int32_t get_offset_of_fragment_47() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___fragment_47)); } inline bool get_fragment_47() const { return ___fragment_47; } inline bool* get_address_of_fragment_47() { return &___fragment_47; } inline void set_fragment_47(bool value) { ___fragment_47 = value; } inline static int32_t get_offset_of_incReadDecoder_48() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___incReadDecoder_48)); } inline IncrementalReadDecoder_t89737691013C036E9386839AE30A43C9721B3984 * get_incReadDecoder_48() const { return ___incReadDecoder_48; } inline IncrementalReadDecoder_t89737691013C036E9386839AE30A43C9721B3984 ** get_address_of_incReadDecoder_48() { return &___incReadDecoder_48; } inline void set_incReadDecoder_48(IncrementalReadDecoder_t89737691013C036E9386839AE30A43C9721B3984 * value) { ___incReadDecoder_48 = value; Il2CppCodeGenWriteBarrier((void**)(&___incReadDecoder_48), (void*)value); } inline static int32_t get_offset_of_incReadState_49() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___incReadState_49)); } inline int32_t get_incReadState_49() const { return ___incReadState_49; } inline int32_t* get_address_of_incReadState_49() { return &___incReadState_49; } inline void set_incReadState_49(int32_t value) { ___incReadState_49 = value; } inline static int32_t get_offset_of_incReadLineInfo_50() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___incReadLineInfo_50)); } inline LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE get_incReadLineInfo_50() const { return ___incReadLineInfo_50; } inline LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE * get_address_of_incReadLineInfo_50() { return &___incReadLineInfo_50; } inline void set_incReadLineInfo_50(LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE value) { ___incReadLineInfo_50 = value; } inline static int32_t get_offset_of_incReadDepth_51() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___incReadDepth_51)); } inline int32_t get_incReadDepth_51() const { return ___incReadDepth_51; } inline int32_t* get_address_of_incReadDepth_51() { return &___incReadDepth_51; } inline void set_incReadDepth_51(int32_t value) { ___incReadDepth_51 = value; } inline static int32_t get_offset_of_incReadLeftStartPos_52() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___incReadLeftStartPos_52)); } inline int32_t get_incReadLeftStartPos_52() const { return ___incReadLeftStartPos_52; } inline int32_t* get_address_of_incReadLeftStartPos_52() { return &___incReadLeftStartPos_52; } inline void set_incReadLeftStartPos_52(int32_t value) { ___incReadLeftStartPos_52 = value; } inline static int32_t get_offset_of_incReadLeftEndPos_53() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___incReadLeftEndPos_53)); } inline int32_t get_incReadLeftEndPos_53() const { return ___incReadLeftEndPos_53; } inline int32_t* get_address_of_incReadLeftEndPos_53() { return &___incReadLeftEndPos_53; } inline void set_incReadLeftEndPos_53(int32_t value) { ___incReadLeftEndPos_53 = value; } inline static int32_t get_offset_of_attributeValueBaseEntityId_54() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___attributeValueBaseEntityId_54)); } inline int32_t get_attributeValueBaseEntityId_54() const { return ___attributeValueBaseEntityId_54; } inline int32_t* get_address_of_attributeValueBaseEntityId_54() { return &___attributeValueBaseEntityId_54; } inline void set_attributeValueBaseEntityId_54(int32_t value) { ___attributeValueBaseEntityId_54 = value; } inline static int32_t get_offset_of_emptyEntityInAttributeResolved_55() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___emptyEntityInAttributeResolved_55)); } inline bool get_emptyEntityInAttributeResolved_55() const { return ___emptyEntityInAttributeResolved_55; } inline bool* get_address_of_emptyEntityInAttributeResolved_55() { return &___emptyEntityInAttributeResolved_55; } inline void set_emptyEntityInAttributeResolved_55(bool value) { ___emptyEntityInAttributeResolved_55 = value; } inline static int32_t get_offset_of_validationEventHandling_56() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___validationEventHandling_56)); } inline RuntimeObject* get_validationEventHandling_56() const { return ___validationEventHandling_56; } inline RuntimeObject** get_address_of_validationEventHandling_56() { return &___validationEventHandling_56; } inline void set_validationEventHandling_56(RuntimeObject* value) { ___validationEventHandling_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___validationEventHandling_56), (void*)value); } inline static int32_t get_offset_of_onDefaultAttributeUse_57() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___onDefaultAttributeUse_57)); } inline OnDefaultAttributeUseDelegate_t3E995824DB2F605D21E74880C851C4C6BB9A1E88 * get_onDefaultAttributeUse_57() const { return ___onDefaultAttributeUse_57; } inline OnDefaultAttributeUseDelegate_t3E995824DB2F605D21E74880C851C4C6BB9A1E88 ** get_address_of_onDefaultAttributeUse_57() { return &___onDefaultAttributeUse_57; } inline void set_onDefaultAttributeUse_57(OnDefaultAttributeUseDelegate_t3E995824DB2F605D21E74880C851C4C6BB9A1E88 * value) { ___onDefaultAttributeUse_57 = value; Il2CppCodeGenWriteBarrier((void**)(&___onDefaultAttributeUse_57), (void*)value); } inline static int32_t get_offset_of_validatingReaderCompatFlag_58() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___validatingReaderCompatFlag_58)); } inline bool get_validatingReaderCompatFlag_58() const { return ___validatingReaderCompatFlag_58; } inline bool* get_address_of_validatingReaderCompatFlag_58() { return &___validatingReaderCompatFlag_58; } inline void set_validatingReaderCompatFlag_58(bool value) { ___validatingReaderCompatFlag_58 = value; } inline static int32_t get_offset_of_addDefaultAttributesAndNormalize_59() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___addDefaultAttributesAndNormalize_59)); } inline bool get_addDefaultAttributesAndNormalize_59() const { return ___addDefaultAttributesAndNormalize_59; } inline bool* get_address_of_addDefaultAttributesAndNormalize_59() { return &___addDefaultAttributesAndNormalize_59; } inline void set_addDefaultAttributesAndNormalize_59(bool value) { ___addDefaultAttributesAndNormalize_59 = value; } inline static int32_t get_offset_of_stringBuilder_60() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___stringBuilder_60)); } inline StringBuilder_t * get_stringBuilder_60() const { return ___stringBuilder_60; } inline StringBuilder_t ** get_address_of_stringBuilder_60() { return &___stringBuilder_60; } inline void set_stringBuilder_60(StringBuilder_t * value) { ___stringBuilder_60 = value; Il2CppCodeGenWriteBarrier((void**)(&___stringBuilder_60), (void*)value); } inline static int32_t get_offset_of_rootElementParsed_61() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___rootElementParsed_61)); } inline bool get_rootElementParsed_61() const { return ___rootElementParsed_61; } inline bool* get_address_of_rootElementParsed_61() { return &___rootElementParsed_61; } inline void set_rootElementParsed_61(bool value) { ___rootElementParsed_61 = value; } inline static int32_t get_offset_of_standalone_62() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___standalone_62)); } inline bool get_standalone_62() const { return ___standalone_62; } inline bool* get_address_of_standalone_62() { return &___standalone_62; } inline void set_standalone_62(bool value) { ___standalone_62 = value; } inline static int32_t get_offset_of_nextEntityId_63() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___nextEntityId_63)); } inline int32_t get_nextEntityId_63() const { return ___nextEntityId_63; } inline int32_t* get_address_of_nextEntityId_63() { return &___nextEntityId_63; } inline void set_nextEntityId_63(int32_t value) { ___nextEntityId_63 = value; } inline static int32_t get_offset_of_parsingMode_64() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___parsingMode_64)); } inline int32_t get_parsingMode_64() const { return ___parsingMode_64; } inline int32_t* get_address_of_parsingMode_64() { return &___parsingMode_64; } inline void set_parsingMode_64(int32_t value) { ___parsingMode_64 = value; } inline static int32_t get_offset_of_readState_65() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___readState_65)); } inline int32_t get_readState_65() const { return ___readState_65; } inline int32_t* get_address_of_readState_65() { return &___readState_65; } inline void set_readState_65(int32_t value) { ___readState_65 = value; } inline static int32_t get_offset_of_lastEntity_66() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___lastEntity_66)); } inline RuntimeObject* get_lastEntity_66() const { return ___lastEntity_66; } inline RuntimeObject** get_address_of_lastEntity_66() { return &___lastEntity_66; } inline void set_lastEntity_66(RuntimeObject* value) { ___lastEntity_66 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastEntity_66), (void*)value); } inline static int32_t get_offset_of_afterResetState_67() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___afterResetState_67)); } inline bool get_afterResetState_67() const { return ___afterResetState_67; } inline bool* get_address_of_afterResetState_67() { return &___afterResetState_67; } inline void set_afterResetState_67(bool value) { ___afterResetState_67 = value; } inline static int32_t get_offset_of_documentStartBytePos_68() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___documentStartBytePos_68)); } inline int32_t get_documentStartBytePos_68() const { return ___documentStartBytePos_68; } inline int32_t* get_address_of_documentStartBytePos_68() { return &___documentStartBytePos_68; } inline void set_documentStartBytePos_68(int32_t value) { ___documentStartBytePos_68 = value; } inline static int32_t get_offset_of_readValueOffset_69() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___readValueOffset_69)); } inline int32_t get_readValueOffset_69() const { return ___readValueOffset_69; } inline int32_t* get_address_of_readValueOffset_69() { return &___readValueOffset_69; } inline void set_readValueOffset_69(int32_t value) { ___readValueOffset_69 = value; } inline static int32_t get_offset_of_charactersInDocument_70() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___charactersInDocument_70)); } inline int64_t get_charactersInDocument_70() const { return ___charactersInDocument_70; } inline int64_t* get_address_of_charactersInDocument_70() { return &___charactersInDocument_70; } inline void set_charactersInDocument_70(int64_t value) { ___charactersInDocument_70 = value; } inline static int32_t get_offset_of_charactersFromEntities_71() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___charactersFromEntities_71)); } inline int64_t get_charactersFromEntities_71() const { return ___charactersFromEntities_71; } inline int64_t* get_address_of_charactersFromEntities_71() { return &___charactersFromEntities_71; } inline void set_charactersFromEntities_71(int64_t value) { ___charactersFromEntities_71 = value; } inline static int32_t get_offset_of_currentEntities_72() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___currentEntities_72)); } inline Dictionary_2_t7E4F75E23B8A710084DDD8B7D9D901F39C24B184 * get_currentEntities_72() const { return ___currentEntities_72; } inline Dictionary_2_t7E4F75E23B8A710084DDD8B7D9D901F39C24B184 ** get_address_of_currentEntities_72() { return &___currentEntities_72; } inline void set_currentEntities_72(Dictionary_2_t7E4F75E23B8A710084DDD8B7D9D901F39C24B184 * value) { ___currentEntities_72 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentEntities_72), (void*)value); } inline static int32_t get_offset_of_disableUndeclaredEntityCheck_73() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___disableUndeclaredEntityCheck_73)); } inline bool get_disableUndeclaredEntityCheck_73() const { return ___disableUndeclaredEntityCheck_73; } inline bool* get_address_of_disableUndeclaredEntityCheck_73() { return &___disableUndeclaredEntityCheck_73; } inline void set_disableUndeclaredEntityCheck_73(bool value) { ___disableUndeclaredEntityCheck_73 = value; } inline static int32_t get_offset_of_outerReader_74() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___outerReader_74)); } inline XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138 * get_outerReader_74() const { return ___outerReader_74; } inline XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138 ** get_address_of_outerReader_74() { return &___outerReader_74; } inline void set_outerReader_74(XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138 * value) { ___outerReader_74 = value; Il2CppCodeGenWriteBarrier((void**)(&___outerReader_74), (void*)value); } inline static int32_t get_offset_of_xmlResolverIsSet_75() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___xmlResolverIsSet_75)); } inline bool get_xmlResolverIsSet_75() const { return ___xmlResolverIsSet_75; } inline bool* get_address_of_xmlResolverIsSet_75() { return &___xmlResolverIsSet_75; } inline void set_xmlResolverIsSet_75(bool value) { ___xmlResolverIsSet_75 = value; } inline static int32_t get_offset_of_Xml_76() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___Xml_76)); } inline String_t* get_Xml_76() const { return ___Xml_76; } inline String_t** get_address_of_Xml_76() { return &___Xml_76; } inline void set_Xml_76(String_t* value) { ___Xml_76 = value; Il2CppCodeGenWriteBarrier((void**)(&___Xml_76), (void*)value); } inline static int32_t get_offset_of_XmlNs_77() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___XmlNs_77)); } inline String_t* get_XmlNs_77() const { return ___XmlNs_77; } inline String_t** get_address_of_XmlNs_77() { return &___XmlNs_77; } inline void set_XmlNs_77(String_t* value) { ___XmlNs_77 = value; Il2CppCodeGenWriteBarrier((void**)(&___XmlNs_77), (void*)value); } inline static int32_t get_offset_of_parseText_dummyTask_78() { return static_cast(offsetof(XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4, ___parseText_dummyTask_78)); } inline Task_1_tDC99D8BCBDBB4A01765BBF5823E5764CEC20D642 * get_parseText_dummyTask_78() const { return ___parseText_dummyTask_78; } inline Task_1_tDC99D8BCBDBB4A01765BBF5823E5764CEC20D642 ** get_address_of_parseText_dummyTask_78() { return &___parseText_dummyTask_78; } inline void set_parseText_dummyTask_78(Task_1_tDC99D8BCBDBB4A01765BBF5823E5764CEC20D642 * value) { ___parseText_dummyTask_78 = value; Il2CppCodeGenWriteBarrier((void**)(&___parseText_dummyTask_78), (void*)value); } }; // System.Xml.XmlTextWriter struct XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 : public XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D { public: // System.IO.TextWriter System.Xml.XmlTextWriter::textWriter TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * ___textWriter_0; // System.Xml.XmlTextEncoder System.Xml.XmlTextWriter::xmlEncoder XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * ___xmlEncoder_1; // System.Text.Encoding System.Xml.XmlTextWriter::encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding_2; // System.Xml.Formatting System.Xml.XmlTextWriter::formatting int32_t ___formatting_3; // System.Boolean System.Xml.XmlTextWriter::indented bool ___indented_4; // System.Int32 System.Xml.XmlTextWriter::indentation int32_t ___indentation_5; // System.Char System.Xml.XmlTextWriter::indentChar Il2CppChar ___indentChar_6; // System.Xml.XmlTextWriter/TagInfo[] System.Xml.XmlTextWriter::stack TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* ___stack_7; // System.Int32 System.Xml.XmlTextWriter::top int32_t ___top_8; // System.Xml.XmlTextWriter/State[] System.Xml.XmlTextWriter::stateTable StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* ___stateTable_9; // System.Xml.XmlTextWriter/State System.Xml.XmlTextWriter::currentState int32_t ___currentState_10; // System.Xml.XmlTextWriter/Token System.Xml.XmlTextWriter::lastToken int32_t ___lastToken_11; // System.Xml.XmlTextWriterBase64Encoder System.Xml.XmlTextWriter::base64Encoder XmlTextWriterBase64Encoder_t6C566B592DFF5C0E5108670EB19BA06D35F0213B * ___base64Encoder_12; // System.Char System.Xml.XmlTextWriter::quoteChar Il2CppChar ___quoteChar_13; // System.Char System.Xml.XmlTextWriter::curQuoteChar Il2CppChar ___curQuoteChar_14; // System.Boolean System.Xml.XmlTextWriter::namespaces bool ___namespaces_15; // System.Xml.XmlTextWriter/SpecialAttr System.Xml.XmlTextWriter::specialAttr int32_t ___specialAttr_16; // System.String System.Xml.XmlTextWriter::prefixForXmlNs String_t* ___prefixForXmlNs_17; // System.Boolean System.Xml.XmlTextWriter::flush bool ___flush_18; // System.Xml.XmlTextWriter/Namespace[] System.Xml.XmlTextWriter::nsStack NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* ___nsStack_19; // System.Int32 System.Xml.XmlTextWriter::nsTop int32_t ___nsTop_20; // System.Collections.Generic.Dictionary`2 System.Xml.XmlTextWriter::nsHashtable Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * ___nsHashtable_21; // System.Boolean System.Xml.XmlTextWriter::useNsHashtable bool ___useNsHashtable_22; // System.Xml.XmlCharType System.Xml.XmlTextWriter::xmlCharType XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA ___xmlCharType_23; public: inline static int32_t get_offset_of_textWriter_0() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___textWriter_0)); } inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * get_textWriter_0() const { return ___textWriter_0; } inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 ** get_address_of_textWriter_0() { return &___textWriter_0; } inline void set_textWriter_0(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * value) { ___textWriter_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___textWriter_0), (void*)value); } inline static int32_t get_offset_of_xmlEncoder_1() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___xmlEncoder_1)); } inline XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * get_xmlEncoder_1() const { return ___xmlEncoder_1; } inline XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E ** get_address_of_xmlEncoder_1() { return &___xmlEncoder_1; } inline void set_xmlEncoder_1(XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * value) { ___xmlEncoder_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlEncoder_1), (void*)value); } inline static int32_t get_offset_of_encoding_2() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___encoding_2)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_encoding_2() const { return ___encoding_2; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_encoding_2() { return &___encoding_2; } inline void set_encoding_2(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___encoding_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoding_2), (void*)value); } inline static int32_t get_offset_of_formatting_3() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___formatting_3)); } inline int32_t get_formatting_3() const { return ___formatting_3; } inline int32_t* get_address_of_formatting_3() { return &___formatting_3; } inline void set_formatting_3(int32_t value) { ___formatting_3 = value; } inline static int32_t get_offset_of_indented_4() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___indented_4)); } inline bool get_indented_4() const { return ___indented_4; } inline bool* get_address_of_indented_4() { return &___indented_4; } inline void set_indented_4(bool value) { ___indented_4 = value; } inline static int32_t get_offset_of_indentation_5() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___indentation_5)); } inline int32_t get_indentation_5() const { return ___indentation_5; } inline int32_t* get_address_of_indentation_5() { return &___indentation_5; } inline void set_indentation_5(int32_t value) { ___indentation_5 = value; } inline static int32_t get_offset_of_indentChar_6() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___indentChar_6)); } inline Il2CppChar get_indentChar_6() const { return ___indentChar_6; } inline Il2CppChar* get_address_of_indentChar_6() { return &___indentChar_6; } inline void set_indentChar_6(Il2CppChar value) { ___indentChar_6 = value; } inline static int32_t get_offset_of_stack_7() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___stack_7)); } inline TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* get_stack_7() const { return ___stack_7; } inline TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637** get_address_of_stack_7() { return &___stack_7; } inline void set_stack_7(TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* value) { ___stack_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___stack_7), (void*)value); } inline static int32_t get_offset_of_top_8() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___top_8)); } inline int32_t get_top_8() const { return ___top_8; } inline int32_t* get_address_of_top_8() { return &___top_8; } inline void set_top_8(int32_t value) { ___top_8 = value; } inline static int32_t get_offset_of_stateTable_9() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___stateTable_9)); } inline StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* get_stateTable_9() const { return ___stateTable_9; } inline StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A** get_address_of_stateTable_9() { return &___stateTable_9; } inline void set_stateTable_9(StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* value) { ___stateTable_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___stateTable_9), (void*)value); } inline static int32_t get_offset_of_currentState_10() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___currentState_10)); } inline int32_t get_currentState_10() const { return ___currentState_10; } inline int32_t* get_address_of_currentState_10() { return &___currentState_10; } inline void set_currentState_10(int32_t value) { ___currentState_10 = value; } inline static int32_t get_offset_of_lastToken_11() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___lastToken_11)); } inline int32_t get_lastToken_11() const { return ___lastToken_11; } inline int32_t* get_address_of_lastToken_11() { return &___lastToken_11; } inline void set_lastToken_11(int32_t value) { ___lastToken_11 = value; } inline static int32_t get_offset_of_base64Encoder_12() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___base64Encoder_12)); } inline XmlTextWriterBase64Encoder_t6C566B592DFF5C0E5108670EB19BA06D35F0213B * get_base64Encoder_12() const { return ___base64Encoder_12; } inline XmlTextWriterBase64Encoder_t6C566B592DFF5C0E5108670EB19BA06D35F0213B ** get_address_of_base64Encoder_12() { return &___base64Encoder_12; } inline void set_base64Encoder_12(XmlTextWriterBase64Encoder_t6C566B592DFF5C0E5108670EB19BA06D35F0213B * value) { ___base64Encoder_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___base64Encoder_12), (void*)value); } inline static int32_t get_offset_of_quoteChar_13() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___quoteChar_13)); } inline Il2CppChar get_quoteChar_13() const { return ___quoteChar_13; } inline Il2CppChar* get_address_of_quoteChar_13() { return &___quoteChar_13; } inline void set_quoteChar_13(Il2CppChar value) { ___quoteChar_13 = value; } inline static int32_t get_offset_of_curQuoteChar_14() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___curQuoteChar_14)); } inline Il2CppChar get_curQuoteChar_14() const { return ___curQuoteChar_14; } inline Il2CppChar* get_address_of_curQuoteChar_14() { return &___curQuoteChar_14; } inline void set_curQuoteChar_14(Il2CppChar value) { ___curQuoteChar_14 = value; } inline static int32_t get_offset_of_namespaces_15() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___namespaces_15)); } inline bool get_namespaces_15() const { return ___namespaces_15; } inline bool* get_address_of_namespaces_15() { return &___namespaces_15; } inline void set_namespaces_15(bool value) { ___namespaces_15 = value; } inline static int32_t get_offset_of_specialAttr_16() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___specialAttr_16)); } inline int32_t get_specialAttr_16() const { return ___specialAttr_16; } inline int32_t* get_address_of_specialAttr_16() { return &___specialAttr_16; } inline void set_specialAttr_16(int32_t value) { ___specialAttr_16 = value; } inline static int32_t get_offset_of_prefixForXmlNs_17() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___prefixForXmlNs_17)); } inline String_t* get_prefixForXmlNs_17() const { return ___prefixForXmlNs_17; } inline String_t** get_address_of_prefixForXmlNs_17() { return &___prefixForXmlNs_17; } inline void set_prefixForXmlNs_17(String_t* value) { ___prefixForXmlNs_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___prefixForXmlNs_17), (void*)value); } inline static int32_t get_offset_of_flush_18() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___flush_18)); } inline bool get_flush_18() const { return ___flush_18; } inline bool* get_address_of_flush_18() { return &___flush_18; } inline void set_flush_18(bool value) { ___flush_18 = value; } inline static int32_t get_offset_of_nsStack_19() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___nsStack_19)); } inline NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* get_nsStack_19() const { return ___nsStack_19; } inline NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6** get_address_of_nsStack_19() { return &___nsStack_19; } inline void set_nsStack_19(NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* value) { ___nsStack_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___nsStack_19), (void*)value); } inline static int32_t get_offset_of_nsTop_20() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___nsTop_20)); } inline int32_t get_nsTop_20() const { return ___nsTop_20; } inline int32_t* get_address_of_nsTop_20() { return &___nsTop_20; } inline void set_nsTop_20(int32_t value) { ___nsTop_20 = value; } inline static int32_t get_offset_of_nsHashtable_21() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___nsHashtable_21)); } inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * get_nsHashtable_21() const { return ___nsHashtable_21; } inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 ** get_address_of_nsHashtable_21() { return &___nsHashtable_21; } inline void set_nsHashtable_21(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * value) { ___nsHashtable_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___nsHashtable_21), (void*)value); } inline static int32_t get_offset_of_useNsHashtable_22() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___useNsHashtable_22)); } inline bool get_useNsHashtable_22() const { return ___useNsHashtable_22; } inline bool* get_address_of_useNsHashtable_22() { return &___useNsHashtable_22; } inline void set_useNsHashtable_22(bool value) { ___useNsHashtable_22 = value; } inline static int32_t get_offset_of_xmlCharType_23() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2, ___xmlCharType_23)); } inline XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA get_xmlCharType_23() const { return ___xmlCharType_23; } inline XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA * get_address_of_xmlCharType_23() { return &___xmlCharType_23; } inline void set_xmlCharType_23(XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA value) { ___xmlCharType_23 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___xmlCharType_23))->___charProperties_2), (void*)NULL); } }; // System.Xml.Serialization.XmlTypeMapElementInfo struct XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A : public RuntimeObject { public: // System.String System.Xml.Serialization.XmlTypeMapElementInfo::_elementName String_t* ____elementName_0; // System.String System.Xml.Serialization.XmlTypeMapElementInfo::_namespace String_t* ____namespace_1; // System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlTypeMapElementInfo::_form int32_t ____form_2; // System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.XmlTypeMapElementInfo::_member XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * ____member_3; // System.Object System.Xml.Serialization.XmlTypeMapElementInfo::_choiceValue RuntimeObject * ____choiceValue_4; // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::_isNullable bool ____isNullable_5; // System.Int32 System.Xml.Serialization.XmlTypeMapElementInfo::_nestingLevel int32_t ____nestingLevel_6; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapElementInfo::_mappedType XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * ____mappedType_7; // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapElementInfo::_type TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * ____type_8; // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::_wrappedElement bool ____wrappedElement_9; // System.Int32 System.Xml.Serialization.XmlTypeMapElementInfo::_explicitOrder int32_t ____explicitOrder_10; public: inline static int32_t get_offset_of__elementName_0() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____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__namespace_1() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____namespace_1)); } inline String_t* get__namespace_1() const { return ____namespace_1; } inline String_t** get_address_of__namespace_1() { return &____namespace_1; } inline void set__namespace_1(String_t* value) { ____namespace_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____namespace_1), (void*)value); } inline static int32_t get_offset_of__form_2() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____form_2)); } inline int32_t get__form_2() const { return ____form_2; } inline int32_t* get_address_of__form_2() { return &____form_2; } inline void set__form_2(int32_t value) { ____form_2 = value; } inline static int32_t get_offset_of__member_3() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____member_3)); } inline XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * get__member_3() const { return ____member_3; } inline XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC ** get_address_of__member_3() { return &____member_3; } inline void set__member_3(XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * value) { ____member_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____member_3), (void*)value); } inline static int32_t get_offset_of__choiceValue_4() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____choiceValue_4)); } inline RuntimeObject * get__choiceValue_4() const { return ____choiceValue_4; } inline RuntimeObject ** get_address_of__choiceValue_4() { return &____choiceValue_4; } inline void set__choiceValue_4(RuntimeObject * value) { ____choiceValue_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____choiceValue_4), (void*)value); } inline static int32_t get_offset_of__isNullable_5() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____isNullable_5)); } inline bool get__isNullable_5() const { return ____isNullable_5; } inline bool* get_address_of__isNullable_5() { return &____isNullable_5; } inline void set__isNullable_5(bool value) { ____isNullable_5 = value; } inline static int32_t get_offset_of__nestingLevel_6() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____nestingLevel_6)); } inline int32_t get__nestingLevel_6() const { return ____nestingLevel_6; } inline int32_t* get_address_of__nestingLevel_6() { return &____nestingLevel_6; } inline void set__nestingLevel_6(int32_t value) { ____nestingLevel_6 = value; } inline static int32_t get_offset_of__mappedType_7() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____mappedType_7)); } inline XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * get__mappedType_7() const { return ____mappedType_7; } inline XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 ** get_address_of__mappedType_7() { return &____mappedType_7; } inline void set__mappedType_7(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * value) { ____mappedType_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____mappedType_7), (void*)value); } inline static int32_t get_offset_of__type_8() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____type_8)); } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * get__type_8() const { return ____type_8; } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 ** get_address_of__type_8() { return &____type_8; } inline void set__type_8(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * value) { ____type_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____type_8), (void*)value); } inline static int32_t get_offset_of__wrappedElement_9() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____wrappedElement_9)); } inline bool get__wrappedElement_9() const { return ____wrappedElement_9; } inline bool* get_address_of__wrappedElement_9() { return &____wrappedElement_9; } inline void set__wrappedElement_9(bool value) { ____wrappedElement_9 = value; } inline static int32_t get_offset_of__explicitOrder_10() { return static_cast(offsetof(XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A, ____explicitOrder_10)); } inline int32_t get__explicitOrder_10() const { return ____explicitOrder_10; } inline int32_t* get_address_of__explicitOrder_10() { return &____explicitOrder_10; } inline void set__explicitOrder_10(int32_t value) { ____explicitOrder_10 = value; } }; // System.Xml.Serialization.XmlTypeMapMemberAnyElement struct XmlTypeMapMemberAnyElement_t8A2AB4A984DDACBEE5837B4ECCCE30B431B832D0 : public XmlTypeMapMemberExpandable_t4AB3E2327627775BEDBA72B187C19F446C6DF2E7 { public: public: }; // System.Xml.Serialization.XmlTypeMapMemberAttribute struct XmlTypeMapMemberAttribute_t492CF61ABC22EAEB88A63F604D2C40F65C7AFB1E : public XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC { public: // System.String System.Xml.Serialization.XmlTypeMapMemberAttribute::_attributeName String_t* ____attributeName_10; // System.String System.Xml.Serialization.XmlTypeMapMemberAttribute::_namespace String_t* ____namespace_11; // System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlTypeMapMemberAttribute::_form int32_t ____form_12; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapMemberAttribute::_mappedType XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * ____mappedType_13; public: inline static int32_t get_offset_of__attributeName_10() { return static_cast(offsetof(XmlTypeMapMemberAttribute_t492CF61ABC22EAEB88A63F604D2C40F65C7AFB1E, ____attributeName_10)); } inline String_t* get__attributeName_10() const { return ____attributeName_10; } inline String_t** get_address_of__attributeName_10() { return &____attributeName_10; } inline void set__attributeName_10(String_t* value) { ____attributeName_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____attributeName_10), (void*)value); } inline static int32_t get_offset_of__namespace_11() { return static_cast(offsetof(XmlTypeMapMemberAttribute_t492CF61ABC22EAEB88A63F604D2C40F65C7AFB1E, ____namespace_11)); } inline String_t* get__namespace_11() const { return ____namespace_11; } inline String_t** get_address_of__namespace_11() { return &____namespace_11; } inline void set__namespace_11(String_t* value) { ____namespace_11 = value; Il2CppCodeGenWriteBarrier((void**)(&____namespace_11), (void*)value); } inline static int32_t get_offset_of__form_12() { return static_cast(offsetof(XmlTypeMapMemberAttribute_t492CF61ABC22EAEB88A63F604D2C40F65C7AFB1E, ____form_12)); } inline int32_t get__form_12() const { return ____form_12; } inline int32_t* get_address_of__form_12() { return &____form_12; } inline void set__form_12(int32_t value) { ____form_12 = value; } inline static int32_t get_offset_of__mappedType_13() { return static_cast(offsetof(XmlTypeMapMemberAttribute_t492CF61ABC22EAEB88A63F604D2C40F65C7AFB1E, ____mappedType_13)); } inline XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * get__mappedType_13() const { return ____mappedType_13; } inline XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 ** get_address_of__mappedType_13() { return &____mappedType_13; } inline void set__mappedType_13(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * value) { ____mappedType_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____mappedType_13), (void*)value); } }; // System.Xml.Serialization.XmlTypeMapMemberFlatList struct XmlTypeMapMemberFlatList_t5FF2F887FFCAEF62B495A4A8EF43F62C8BDEEA73 : public XmlTypeMapMemberExpandable_t4AB3E2327627775BEDBA72B187C19F446C6DF2E7 { public: // System.Xml.Serialization.ListMap System.Xml.Serialization.XmlTypeMapMemberFlatList::_listMap ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * ____listMap_15; public: inline static int32_t get_offset_of__listMap_15() { return static_cast(offsetof(XmlTypeMapMemberFlatList_t5FF2F887FFCAEF62B495A4A8EF43F62C8BDEEA73, ____listMap_15)); } inline ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * get__listMap_15() const { return ____listMap_15; } inline ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 ** get_address_of__listMap_15() { return &____listMap_15; } inline void set__listMap_15(ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * value) { ____listMap_15 = value; Il2CppCodeGenWriteBarrier((void**)(&____listMap_15), (void*)value); } }; // System.Xml.XmlWhitespace struct XmlWhitespace_t7BB2E46A48255FAEF7A758CA9EE2191A4891D56C : public XmlCharacterData_tDE362DEBB89559C552E40DB1346331A259C9205B { public: public: }; // System.Xml.DtdParser/ParseElementOnlyContent_LocalFrame struct ParseElementOnlyContent_LocalFrame_t7039F5048E02E9CBFFC9AE73C56E4163B3B3638D : public RuntimeObject { public: // System.Int32 System.Xml.DtdParser/ParseElementOnlyContent_LocalFrame::startParenEntityId int32_t ___startParenEntityId_0; // System.Xml.DtdParser/Token System.Xml.DtdParser/ParseElementOnlyContent_LocalFrame::parsingSchema int32_t ___parsingSchema_1; public: inline static int32_t get_offset_of_startParenEntityId_0() { return static_cast(offsetof(ParseElementOnlyContent_LocalFrame_t7039F5048E02E9CBFFC9AE73C56E4163B3B3638D, ___startParenEntityId_0)); } inline int32_t get_startParenEntityId_0() const { return ___startParenEntityId_0; } inline int32_t* get_address_of_startParenEntityId_0() { return &___startParenEntityId_0; } inline void set_startParenEntityId_0(int32_t value) { ___startParenEntityId_0 = value; } inline static int32_t get_offset_of_parsingSchema_1() { return static_cast(offsetof(ParseElementOnlyContent_LocalFrame_t7039F5048E02E9CBFFC9AE73C56E4163B3B3638D, ___parsingSchema_1)); } inline int32_t get_parsingSchema_1() const { return ___parsingSchema_1; } inline int32_t* get_address_of_parsingSchema_1() { return &___parsingSchema_1; } inline void set_parsingSchema_1(int32_t value) { ___parsingSchema_1 = value; } }; // System.Net.HttpWebRequest/AuthorizationState struct AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 { public: // System.Net.HttpWebRequest System.Net.HttpWebRequest/AuthorizationState::request HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * ___request_0; // System.Boolean System.Net.HttpWebRequest/AuthorizationState::isProxy bool ___isProxy_1; // System.Boolean System.Net.HttpWebRequest/AuthorizationState::isCompleted bool ___isCompleted_2; // System.Net.HttpWebRequest/NtlmAuthState System.Net.HttpWebRequest/AuthorizationState::ntlm_auth_state int32_t ___ntlm_auth_state_3; public: inline static int32_t get_offset_of_request_0() { return static_cast(offsetof(AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55, ___request_0)); } inline HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * get_request_0() const { return ___request_0; } inline HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A ** get_address_of_request_0() { return &___request_0; } inline void set_request_0(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * value) { ___request_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___request_0), (void*)value); } inline static int32_t get_offset_of_isProxy_1() { return static_cast(offsetof(AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55, ___isProxy_1)); } inline bool get_isProxy_1() const { return ___isProxy_1; } inline bool* get_address_of_isProxy_1() { return &___isProxy_1; } inline void set_isProxy_1(bool value) { ___isProxy_1 = value; } inline static int32_t get_offset_of_isCompleted_2() { return static_cast(offsetof(AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55, ___isCompleted_2)); } inline bool get_isCompleted_2() const { return ___isCompleted_2; } inline bool* get_address_of_isCompleted_2() { return &___isCompleted_2; } inline void set_isCompleted_2(bool value) { ___isCompleted_2 = value; } inline static int32_t get_offset_of_ntlm_auth_state_3() { return static_cast(offsetof(AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55, ___ntlm_auth_state_3)); } inline int32_t get_ntlm_auth_state_3() const { return ___ntlm_auth_state_3; } inline int32_t* get_address_of_ntlm_auth_state_3() { return &___ntlm_auth_state_3; } inline void set_ntlm_auth_state_3(int32_t value) { ___ntlm_auth_state_3 = value; } }; // Native definition for P/Invoke marshalling of System.Net.HttpWebRequest/AuthorizationState struct AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55_marshaled_pinvoke { HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * ___request_0; int32_t ___isProxy_1; int32_t ___isCompleted_2; int32_t ___ntlm_auth_state_3; }; // Native definition for COM marshalling of System.Net.HttpWebRequest/AuthorizationState struct AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55_marshaled_com { HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * ___request_0; int32_t ___isProxy_1; int32_t ___isCompleted_2; int32_t ___ntlm_auth_state_3; }; // System.Xml.XmlDownloadManager/d__5 struct U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782 { public: // System.Int32 System.Xml.XmlDownloadManager/d__5::<>1__state int32_t ___U3CU3E1__state_0; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 System.Xml.XmlDownloadManager/d__5::<>t__builder AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F ___U3CU3Et__builder_1; // System.Uri System.Xml.XmlDownloadManager/d__5::uri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri_2; // System.Net.ICredentials System.Xml.XmlDownloadManager/d__5::credentials RuntimeObject* ___credentials_3; // System.Net.IWebProxy System.Xml.XmlDownloadManager/d__5::proxy RuntimeObject* ___proxy_4; // System.Net.Cache.RequestCachePolicy System.Xml.XmlDownloadManager/d__5::cachePolicy RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * ___cachePolicy_5; // System.Net.WebRequest System.Xml.XmlDownloadManager/d__5::5__1 WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E * ___U3CreqU3E5__1_6; // System.Xml.XmlDownloadManager System.Xml.XmlDownloadManager/d__5::<>4__this XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * ___U3CU3E4__this_7; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter System.Xml.XmlDownloadManager/d__5::<>u__1 ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 ___U3CU3Eu__1_8; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782, ___U3CU3Et__builder_1)); } inline AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; } inline AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; } inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F value) { ___U3CU3Et__builder_1 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3Et__builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3Et__builder_1))->___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3Et__builder_1))->___m_task_2), (void*)NULL); #endif } inline static int32_t get_offset_of_uri_2() { return static_cast(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782, ___uri_2)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_uri_2() const { return ___uri_2; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_uri_2() { return &___uri_2; } inline void set_uri_2(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___uri_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___uri_2), (void*)value); } inline static int32_t get_offset_of_credentials_3() { return static_cast(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782, ___credentials_3)); } inline RuntimeObject* get_credentials_3() const { return ___credentials_3; } inline RuntimeObject** get_address_of_credentials_3() { return &___credentials_3; } inline void set_credentials_3(RuntimeObject* value) { ___credentials_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___credentials_3), (void*)value); } inline static int32_t get_offset_of_proxy_4() { return static_cast(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782, ___proxy_4)); } inline RuntimeObject* get_proxy_4() const { return ___proxy_4; } inline RuntimeObject** get_address_of_proxy_4() { return &___proxy_4; } inline void set_proxy_4(RuntimeObject* value) { ___proxy_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___proxy_4), (void*)value); } inline static int32_t get_offset_of_cachePolicy_5() { return static_cast(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782, ___cachePolicy_5)); } inline RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * get_cachePolicy_5() const { return ___cachePolicy_5; } inline RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED ** get_address_of_cachePolicy_5() { return &___cachePolicy_5; } inline void set_cachePolicy_5(RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * value) { ___cachePolicy_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___cachePolicy_5), (void*)value); } inline static int32_t get_offset_of_U3CreqU3E5__1_6() { return static_cast(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782, ___U3CreqU3E5__1_6)); } inline WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E * get_U3CreqU3E5__1_6() const { return ___U3CreqU3E5__1_6; } inline WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E ** get_address_of_U3CreqU3E5__1_6() { return &___U3CreqU3E5__1_6; } inline void set_U3CreqU3E5__1_6(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E * value) { ___U3CreqU3E5__1_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CreqU3E5__1_6), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_7() { return static_cast(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782, ___U3CU3E4__this_7)); } inline XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * get_U3CU3E4__this_7() const { return ___U3CU3E4__this_7; } inline XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D ** get_address_of_U3CU3E4__this_7() { return &___U3CU3E4__this_7; } inline void set_U3CU3E4__this_7(XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * value) { ___U3CU3E4__this_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_7), (void*)value); } inline static int32_t get_offset_of_U3CU3Eu__1_8() { return static_cast(offsetof(U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782, ___U3CU3Eu__1_8)); } inline ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 get_U3CU3Eu__1_8() const { return ___U3CU3Eu__1_8; } inline ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 * get_address_of_U3CU3Eu__1_8() { return &___U3CU3Eu__1_8; } inline void set_U3CU3Eu__1_8(ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 value) { ___U3CU3Eu__1_8 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3Eu__1_8))->___m_task_0), (void*)NULL); } }; // System.Xml.XmlTextReaderImpl/LaterInitParam struct LaterInitParam_t6670C77CB75356E7E47BBE3177DB78D355B0EFBF : public RuntimeObject { public: // System.Boolean System.Xml.XmlTextReaderImpl/LaterInitParam::useAsync bool ___useAsync_0; // System.IO.Stream System.Xml.XmlTextReaderImpl/LaterInitParam::inputStream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___inputStream_1; // System.Byte[] System.Xml.XmlTextReaderImpl/LaterInitParam::inputBytes ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___inputBytes_2; // System.Int32 System.Xml.XmlTextReaderImpl/LaterInitParam::inputByteCount int32_t ___inputByteCount_3; // System.Uri System.Xml.XmlTextReaderImpl/LaterInitParam::inputbaseUri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___inputbaseUri_4; // System.String System.Xml.XmlTextReaderImpl/LaterInitParam::inputUriStr String_t* ___inputUriStr_5; // System.Xml.XmlResolver System.Xml.XmlTextReaderImpl/LaterInitParam::inputUriResolver XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A * ___inputUriResolver_6; // System.Xml.XmlParserContext System.Xml.XmlTextReaderImpl/LaterInitParam::inputContext XmlParserContext_tD8B22CA52F41246D7FB94A21A2A5ED605DD4CD28 * ___inputContext_7; // System.IO.TextReader System.Xml.XmlTextReaderImpl/LaterInitParam::inputTextReader TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___inputTextReader_8; // System.Xml.XmlTextReaderImpl/InitInputType System.Xml.XmlTextReaderImpl/LaterInitParam::initType int32_t ___initType_9; public: inline static int32_t get_offset_of_useAsync_0() { return static_cast(offsetof(LaterInitParam_t6670C77CB75356E7E47BBE3177DB78D355B0EFBF, ___useAsync_0)); } inline bool get_useAsync_0() const { return ___useAsync_0; } inline bool* get_address_of_useAsync_0() { return &___useAsync_0; } inline void set_useAsync_0(bool value) { ___useAsync_0 = value; } inline static int32_t get_offset_of_inputStream_1() { return static_cast(offsetof(LaterInitParam_t6670C77CB75356E7E47BBE3177DB78D355B0EFBF, ___inputStream_1)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_inputStream_1() const { return ___inputStream_1; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_inputStream_1() { return &___inputStream_1; } inline void set_inputStream_1(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___inputStream_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputStream_1), (void*)value); } inline static int32_t get_offset_of_inputBytes_2() { return static_cast(offsetof(LaterInitParam_t6670C77CB75356E7E47BBE3177DB78D355B0EFBF, ___inputBytes_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_inputBytes_2() const { return ___inputBytes_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_inputBytes_2() { return &___inputBytes_2; } inline void set_inputBytes_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___inputBytes_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputBytes_2), (void*)value); } inline static int32_t get_offset_of_inputByteCount_3() { return static_cast(offsetof(LaterInitParam_t6670C77CB75356E7E47BBE3177DB78D355B0EFBF, ___inputByteCount_3)); } inline int32_t get_inputByteCount_3() const { return ___inputByteCount_3; } inline int32_t* get_address_of_inputByteCount_3() { return &___inputByteCount_3; } inline void set_inputByteCount_3(int32_t value) { ___inputByteCount_3 = value; } inline static int32_t get_offset_of_inputbaseUri_4() { return static_cast(offsetof(LaterInitParam_t6670C77CB75356E7E47BBE3177DB78D355B0EFBF, ___inputbaseUri_4)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_inputbaseUri_4() const { return ___inputbaseUri_4; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_inputbaseUri_4() { return &___inputbaseUri_4; } inline void set_inputbaseUri_4(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___inputbaseUri_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputbaseUri_4), (void*)value); } inline static int32_t get_offset_of_inputUriStr_5() { return static_cast(offsetof(LaterInitParam_t6670C77CB75356E7E47BBE3177DB78D355B0EFBF, ___inputUriStr_5)); } inline String_t* get_inputUriStr_5() const { return ___inputUriStr_5; } inline String_t** get_address_of_inputUriStr_5() { return &___inputUriStr_5; } inline void set_inputUriStr_5(String_t* value) { ___inputUriStr_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputUriStr_5), (void*)value); } inline static int32_t get_offset_of_inputUriResolver_6() { return static_cast(offsetof(LaterInitParam_t6670C77CB75356E7E47BBE3177DB78D355B0EFBF, ___inputUriResolver_6)); } inline XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A * get_inputUriResolver_6() const { return ___inputUriResolver_6; } inline XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A ** get_address_of_inputUriResolver_6() { return &___inputUriResolver_6; } inline void set_inputUriResolver_6(XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A * value) { ___inputUriResolver_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputUriResolver_6), (void*)value); } inline static int32_t get_offset_of_inputContext_7() { return static_cast(offsetof(LaterInitParam_t6670C77CB75356E7E47BBE3177DB78D355B0EFBF, ___inputContext_7)); } inline XmlParserContext_tD8B22CA52F41246D7FB94A21A2A5ED605DD4CD28 * get_inputContext_7() const { return ___inputContext_7; } inline XmlParserContext_tD8B22CA52F41246D7FB94A21A2A5ED605DD4CD28 ** get_address_of_inputContext_7() { return &___inputContext_7; } inline void set_inputContext_7(XmlParserContext_tD8B22CA52F41246D7FB94A21A2A5ED605DD4CD28 * value) { ___inputContext_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputContext_7), (void*)value); } inline static int32_t get_offset_of_inputTextReader_8() { return static_cast(offsetof(LaterInitParam_t6670C77CB75356E7E47BBE3177DB78D355B0EFBF, ___inputTextReader_8)); } inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * get_inputTextReader_8() const { return ___inputTextReader_8; } inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F ** get_address_of_inputTextReader_8() { return &___inputTextReader_8; } inline void set_inputTextReader_8(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * value) { ___inputTextReader_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputTextReader_8), (void*)value); } inline static int32_t get_offset_of_initType_9() { return static_cast(offsetof(LaterInitParam_t6670C77CB75356E7E47BBE3177DB78D355B0EFBF, ___initType_9)); } inline int32_t get_initType_9() const { return ___initType_9; } inline int32_t* get_address_of_initType_9() { return &___initType_9; } inline void set_initType_9(int32_t value) { ___initType_9 = value; } }; // System.Xml.XmlTextReaderImpl/NodeData struct NodeData_tD504C5A621E7DD546954D87282438662327280EA : public RuntimeObject { public: // System.Xml.XmlNodeType System.Xml.XmlTextReaderImpl/NodeData::type int32_t ___type_1; // System.String System.Xml.XmlTextReaderImpl/NodeData::localName String_t* ___localName_2; // System.String System.Xml.XmlTextReaderImpl/NodeData::prefix String_t* ___prefix_3; // System.String System.Xml.XmlTextReaderImpl/NodeData::ns String_t* ___ns_4; // System.String System.Xml.XmlTextReaderImpl/NodeData::nameWPrefix String_t* ___nameWPrefix_5; // System.String System.Xml.XmlTextReaderImpl/NodeData::value String_t* ___value_6; // System.Char[] System.Xml.XmlTextReaderImpl/NodeData::chars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars_7; // System.Int32 System.Xml.XmlTextReaderImpl/NodeData::valueStartPos int32_t ___valueStartPos_8; // System.Int32 System.Xml.XmlTextReaderImpl/NodeData::valueLength int32_t ___valueLength_9; // System.Xml.LineInfo System.Xml.XmlTextReaderImpl/NodeData::lineInfo LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE ___lineInfo_10; // System.Xml.LineInfo System.Xml.XmlTextReaderImpl/NodeData::lineInfo2 LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE ___lineInfo2_11; // System.Char System.Xml.XmlTextReaderImpl/NodeData::quoteChar Il2CppChar ___quoteChar_12; // System.Int32 System.Xml.XmlTextReaderImpl/NodeData::depth int32_t ___depth_13; // System.Boolean System.Xml.XmlTextReaderImpl/NodeData::isEmptyOrDefault bool ___isEmptyOrDefault_14; // System.Int32 System.Xml.XmlTextReaderImpl/NodeData::entityId int32_t ___entityId_15; // System.Boolean System.Xml.XmlTextReaderImpl/NodeData::xmlContextPushed bool ___xmlContextPushed_16; // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl/NodeData::nextAttrValueChunk NodeData_tD504C5A621E7DD546954D87282438662327280EA * ___nextAttrValueChunk_17; // System.Object System.Xml.XmlTextReaderImpl/NodeData::schemaType RuntimeObject * ___schemaType_18; // System.Object System.Xml.XmlTextReaderImpl/NodeData::typedValue RuntimeObject * ___typedValue_19; public: inline static int32_t get_offset_of_type_1() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___type_1)); } inline int32_t get_type_1() const { return ___type_1; } inline int32_t* get_address_of_type_1() { return &___type_1; } inline void set_type_1(int32_t value) { ___type_1 = value; } inline static int32_t get_offset_of_localName_2() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___localName_2)); } inline String_t* get_localName_2() const { return ___localName_2; } inline String_t** get_address_of_localName_2() { return &___localName_2; } inline void set_localName_2(String_t* value) { ___localName_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___localName_2), (void*)value); } inline static int32_t get_offset_of_prefix_3() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___prefix_3)); } inline String_t* get_prefix_3() const { return ___prefix_3; } inline String_t** get_address_of_prefix_3() { return &___prefix_3; } inline void set_prefix_3(String_t* value) { ___prefix_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___prefix_3), (void*)value); } inline static int32_t get_offset_of_ns_4() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___ns_4)); } inline String_t* get_ns_4() const { return ___ns_4; } inline String_t** get_address_of_ns_4() { return &___ns_4; } inline void set_ns_4(String_t* value) { ___ns_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___ns_4), (void*)value); } inline static int32_t get_offset_of_nameWPrefix_5() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___nameWPrefix_5)); } inline String_t* get_nameWPrefix_5() const { return ___nameWPrefix_5; } inline String_t** get_address_of_nameWPrefix_5() { return &___nameWPrefix_5; } inline void set_nameWPrefix_5(String_t* value) { ___nameWPrefix_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___nameWPrefix_5), (void*)value); } inline static int32_t get_offset_of_value_6() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___value_6)); } inline String_t* get_value_6() const { return ___value_6; } inline String_t** get_address_of_value_6() { return &___value_6; } inline void set_value_6(String_t* value) { ___value_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_6), (void*)value); } inline static int32_t get_offset_of_chars_7() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___chars_7)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_chars_7() const { return ___chars_7; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_chars_7() { return &___chars_7; } inline void set_chars_7(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___chars_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___chars_7), (void*)value); } inline static int32_t get_offset_of_valueStartPos_8() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___valueStartPos_8)); } inline int32_t get_valueStartPos_8() const { return ___valueStartPos_8; } inline int32_t* get_address_of_valueStartPos_8() { return &___valueStartPos_8; } inline void set_valueStartPos_8(int32_t value) { ___valueStartPos_8 = value; } inline static int32_t get_offset_of_valueLength_9() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___valueLength_9)); } inline int32_t get_valueLength_9() const { return ___valueLength_9; } inline int32_t* get_address_of_valueLength_9() { return &___valueLength_9; } inline void set_valueLength_9(int32_t value) { ___valueLength_9 = value; } inline static int32_t get_offset_of_lineInfo_10() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___lineInfo_10)); } inline LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE get_lineInfo_10() const { return ___lineInfo_10; } inline LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE * get_address_of_lineInfo_10() { return &___lineInfo_10; } inline void set_lineInfo_10(LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE value) { ___lineInfo_10 = value; } inline static int32_t get_offset_of_lineInfo2_11() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___lineInfo2_11)); } inline LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE get_lineInfo2_11() const { return ___lineInfo2_11; } inline LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE * get_address_of_lineInfo2_11() { return &___lineInfo2_11; } inline void set_lineInfo2_11(LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE value) { ___lineInfo2_11 = value; } inline static int32_t get_offset_of_quoteChar_12() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___quoteChar_12)); } inline Il2CppChar get_quoteChar_12() const { return ___quoteChar_12; } inline Il2CppChar* get_address_of_quoteChar_12() { return &___quoteChar_12; } inline void set_quoteChar_12(Il2CppChar value) { ___quoteChar_12 = value; } inline static int32_t get_offset_of_depth_13() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___depth_13)); } inline int32_t get_depth_13() const { return ___depth_13; } inline int32_t* get_address_of_depth_13() { return &___depth_13; } inline void set_depth_13(int32_t value) { ___depth_13 = value; } inline static int32_t get_offset_of_isEmptyOrDefault_14() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___isEmptyOrDefault_14)); } inline bool get_isEmptyOrDefault_14() const { return ___isEmptyOrDefault_14; } inline bool* get_address_of_isEmptyOrDefault_14() { return &___isEmptyOrDefault_14; } inline void set_isEmptyOrDefault_14(bool value) { ___isEmptyOrDefault_14 = value; } inline static int32_t get_offset_of_entityId_15() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___entityId_15)); } inline int32_t get_entityId_15() const { return ___entityId_15; } inline int32_t* get_address_of_entityId_15() { return &___entityId_15; } inline void set_entityId_15(int32_t value) { ___entityId_15 = value; } inline static int32_t get_offset_of_xmlContextPushed_16() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___xmlContextPushed_16)); } inline bool get_xmlContextPushed_16() const { return ___xmlContextPushed_16; } inline bool* get_address_of_xmlContextPushed_16() { return &___xmlContextPushed_16; } inline void set_xmlContextPushed_16(bool value) { ___xmlContextPushed_16 = value; } inline static int32_t get_offset_of_nextAttrValueChunk_17() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___nextAttrValueChunk_17)); } inline NodeData_tD504C5A621E7DD546954D87282438662327280EA * get_nextAttrValueChunk_17() const { return ___nextAttrValueChunk_17; } inline NodeData_tD504C5A621E7DD546954D87282438662327280EA ** get_address_of_nextAttrValueChunk_17() { return &___nextAttrValueChunk_17; } inline void set_nextAttrValueChunk_17(NodeData_tD504C5A621E7DD546954D87282438662327280EA * value) { ___nextAttrValueChunk_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___nextAttrValueChunk_17), (void*)value); } inline static int32_t get_offset_of_schemaType_18() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___schemaType_18)); } inline RuntimeObject * get_schemaType_18() const { return ___schemaType_18; } inline RuntimeObject ** get_address_of_schemaType_18() { return &___schemaType_18; } inline void set_schemaType_18(RuntimeObject * value) { ___schemaType_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___schemaType_18), (void*)value); } inline static int32_t get_offset_of_typedValue_19() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA, ___typedValue_19)); } inline RuntimeObject * get_typedValue_19() const { return ___typedValue_19; } inline RuntimeObject ** get_address_of_typedValue_19() { return &___typedValue_19; } inline void set_typedValue_19(RuntimeObject * value) { ___typedValue_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___typedValue_19), (void*)value); } }; // System.Xml.XmlTextReaderImpl/XmlContext struct XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D : public RuntimeObject { public: // System.Xml.XmlSpace System.Xml.XmlTextReaderImpl/XmlContext::xmlSpace int32_t ___xmlSpace_0; // System.String System.Xml.XmlTextReaderImpl/XmlContext::xmlLang String_t* ___xmlLang_1; // System.String System.Xml.XmlTextReaderImpl/XmlContext::defaultNamespace String_t* ___defaultNamespace_2; // System.Xml.XmlTextReaderImpl/XmlContext System.Xml.XmlTextReaderImpl/XmlContext::previousContext XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D * ___previousContext_3; public: inline static int32_t get_offset_of_xmlSpace_0() { return static_cast(offsetof(XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D, ___xmlSpace_0)); } inline int32_t get_xmlSpace_0() const { return ___xmlSpace_0; } inline int32_t* get_address_of_xmlSpace_0() { return &___xmlSpace_0; } inline void set_xmlSpace_0(int32_t value) { ___xmlSpace_0 = value; } inline static int32_t get_offset_of_xmlLang_1() { return static_cast(offsetof(XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D, ___xmlLang_1)); } inline String_t* get_xmlLang_1() const { return ___xmlLang_1; } inline String_t** get_address_of_xmlLang_1() { return &___xmlLang_1; } inline void set_xmlLang_1(String_t* value) { ___xmlLang_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlLang_1), (void*)value); } inline static int32_t get_offset_of_defaultNamespace_2() { return static_cast(offsetof(XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D, ___defaultNamespace_2)); } inline String_t* get_defaultNamespace_2() const { return ___defaultNamespace_2; } inline String_t** get_address_of_defaultNamespace_2() { return &___defaultNamespace_2; } inline void set_defaultNamespace_2(String_t* value) { ___defaultNamespace_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultNamespace_2), (void*)value); } inline static int32_t get_offset_of_previousContext_3() { return static_cast(offsetof(XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D, ___previousContext_3)); } inline XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D * get_previousContext_3() const { return ___previousContext_3; } inline XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D ** get_address_of_previousContext_3() { return &___previousContext_3; } inline void set_previousContext_3(XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D * value) { ___previousContext_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___previousContext_3), (void*)value); } }; // System.Xml.XmlTextWriter/TagInfo struct TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 { public: // System.String System.Xml.XmlTextWriter/TagInfo::name String_t* ___name_0; // System.String System.Xml.XmlTextWriter/TagInfo::prefix String_t* ___prefix_1; // System.String System.Xml.XmlTextWriter/TagInfo::defaultNs String_t* ___defaultNs_2; // System.Xml.XmlTextWriter/NamespaceState System.Xml.XmlTextWriter/TagInfo::defaultNsState int32_t ___defaultNsState_3; // System.Xml.XmlSpace System.Xml.XmlTextWriter/TagInfo::xmlSpace int32_t ___xmlSpace_4; // System.String System.Xml.XmlTextWriter/TagInfo::xmlLang String_t* ___xmlLang_5; // System.Int32 System.Xml.XmlTextWriter/TagInfo::prevNsTop int32_t ___prevNsTop_6; // System.Int32 System.Xml.XmlTextWriter/TagInfo::prefixCount int32_t ___prefixCount_7; // System.Boolean System.Xml.XmlTextWriter/TagInfo::mixed bool ___mixed_8; public: inline static int32_t get_offset_of_name_0() { return static_cast(offsetof(TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___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_prefix_1() { return static_cast(offsetof(TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___prefix_1)); } inline String_t* get_prefix_1() const { return ___prefix_1; } inline String_t** get_address_of_prefix_1() { return &___prefix_1; } inline void set_prefix_1(String_t* value) { ___prefix_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___prefix_1), (void*)value); } inline static int32_t get_offset_of_defaultNs_2() { return static_cast(offsetof(TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___defaultNs_2)); } inline String_t* get_defaultNs_2() const { return ___defaultNs_2; } inline String_t** get_address_of_defaultNs_2() { return &___defaultNs_2; } inline void set_defaultNs_2(String_t* value) { ___defaultNs_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultNs_2), (void*)value); } inline static int32_t get_offset_of_defaultNsState_3() { return static_cast(offsetof(TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___defaultNsState_3)); } inline int32_t get_defaultNsState_3() const { return ___defaultNsState_3; } inline int32_t* get_address_of_defaultNsState_3() { return &___defaultNsState_3; } inline void set_defaultNsState_3(int32_t value) { ___defaultNsState_3 = value; } inline static int32_t get_offset_of_xmlSpace_4() { return static_cast(offsetof(TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___xmlSpace_4)); } inline int32_t get_xmlSpace_4() const { return ___xmlSpace_4; } inline int32_t* get_address_of_xmlSpace_4() { return &___xmlSpace_4; } inline void set_xmlSpace_4(int32_t value) { ___xmlSpace_4 = value; } inline static int32_t get_offset_of_xmlLang_5() { return static_cast(offsetof(TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___xmlLang_5)); } inline String_t* get_xmlLang_5() const { return ___xmlLang_5; } inline String_t** get_address_of_xmlLang_5() { return &___xmlLang_5; } inline void set_xmlLang_5(String_t* value) { ___xmlLang_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlLang_5), (void*)value); } inline static int32_t get_offset_of_prevNsTop_6() { return static_cast(offsetof(TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___prevNsTop_6)); } inline int32_t get_prevNsTop_6() const { return ___prevNsTop_6; } inline int32_t* get_address_of_prevNsTop_6() { return &___prevNsTop_6; } inline void set_prevNsTop_6(int32_t value) { ___prevNsTop_6 = value; } inline static int32_t get_offset_of_prefixCount_7() { return static_cast(offsetof(TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___prefixCount_7)); } inline int32_t get_prefixCount_7() const { return ___prefixCount_7; } inline int32_t* get_address_of_prefixCount_7() { return &___prefixCount_7; } inline void set_prefixCount_7(int32_t value) { ___prefixCount_7 = value; } inline static int32_t get_offset_of_mixed_8() { return static_cast(offsetof(TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___mixed_8)); } inline bool get_mixed_8() const { return ___mixed_8; } inline bool* get_address_of_mixed_8() { return &___mixed_8; } inline void set_mixed_8(bool value) { ___mixed_8 = value; } }; // Native definition for P/Invoke marshalling of System.Xml.XmlTextWriter/TagInfo struct TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2_marshaled_pinvoke { char* ___name_0; char* ___prefix_1; char* ___defaultNs_2; int32_t ___defaultNsState_3; int32_t ___xmlSpace_4; char* ___xmlLang_5; int32_t ___prevNsTop_6; int32_t ___prefixCount_7; int32_t ___mixed_8; }; // Native definition for COM marshalling of System.Xml.XmlTextWriter/TagInfo struct TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2_marshaled_com { Il2CppChar* ___name_0; Il2CppChar* ___prefix_1; Il2CppChar* ___defaultNs_2; int32_t ___defaultNsState_3; int32_t ___xmlSpace_4; Il2CppChar* ___xmlLang_5; int32_t ___prevNsTop_6; int32_t ___prefixCount_7; int32_t ___mixed_8; }; // System.Xml.XmlUrlResolver/d__15 struct U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 { public: // System.Int32 System.Xml.XmlUrlResolver/d__15::<>1__state int32_t ___U3CU3E1__state_0; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 System.Xml.XmlUrlResolver/d__15::<>t__builder AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 ___U3CU3Et__builder_1; // System.Type System.Xml.XmlUrlResolver/d__15::ofObjectToReturn Type_t * ___ofObjectToReturn_2; // System.Uri System.Xml.XmlUrlResolver/d__15::absoluteUri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___absoluteUri_3; // System.Xml.XmlUrlResolver System.Xml.XmlUrlResolver/d__15::<>4__this XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1 * ___U3CU3E4__this_4; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter System.Xml.XmlUrlResolver/d__15::<>u__1 ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC ___U3CU3Eu__1_5; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast(offsetof(U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218, ___U3CU3Et__builder_1)); } inline AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; } inline AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; } inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 value) { ___U3CU3Et__builder_1 = value; Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3Et__builder_1))->___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___U3CU3Et__builder_1))->___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3Et__builder_1))->___m_task_2), (void*)NULL); #endif } inline static int32_t get_offset_of_ofObjectToReturn_2() { return static_cast(offsetof(U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218, ___ofObjectToReturn_2)); } inline Type_t * get_ofObjectToReturn_2() const { return ___ofObjectToReturn_2; } inline Type_t ** get_address_of_ofObjectToReturn_2() { return &___ofObjectToReturn_2; } inline void set_ofObjectToReturn_2(Type_t * value) { ___ofObjectToReturn_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___ofObjectToReturn_2), (void*)value); } inline static int32_t get_offset_of_absoluteUri_3() { return static_cast(offsetof(U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218, ___absoluteUri_3)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_absoluteUri_3() const { return ___absoluteUri_3; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_absoluteUri_3() { return &___absoluteUri_3; } inline void set_absoluteUri_3(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___absoluteUri_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___absoluteUri_3), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_4() { return static_cast(offsetof(U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218, ___U3CU3E4__this_4)); } inline XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1 * get_U3CU3E4__this_4() const { return ___U3CU3E4__this_4; } inline XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1 ** get_address_of_U3CU3E4__this_4() { return &___U3CU3E4__this_4; } inline void set_U3CU3E4__this_4(XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1 * value) { ___U3CU3E4__this_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_4), (void*)value); } inline static int32_t get_offset_of_U3CU3Eu__1_5() { return static_cast(offsetof(U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218, ___U3CU3Eu__1_5)); } inline ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC get_U3CU3Eu__1_5() const { return ___U3CU3Eu__1_5; } inline ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC * get_address_of_U3CU3Eu__1_5() { return &___U3CU3Eu__1_5; } inline void set_U3CU3Eu__1_5(ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC value) { ___U3CU3Eu__1_5 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3Eu__1_5))->___m_task_0), (void*)NULL); } }; // System.Xml.Schema.XsdDateTime/Parser struct Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 { public: // System.Xml.Schema.XsdDateTime/DateTimeTypeCode System.Xml.Schema.XsdDateTime/Parser::typeCode int32_t ___typeCode_0; // System.Int32 System.Xml.Schema.XsdDateTime/Parser::year int32_t ___year_1; // System.Int32 System.Xml.Schema.XsdDateTime/Parser::month int32_t ___month_2; // System.Int32 System.Xml.Schema.XsdDateTime/Parser::day int32_t ___day_3; // System.Int32 System.Xml.Schema.XsdDateTime/Parser::hour int32_t ___hour_4; // System.Int32 System.Xml.Schema.XsdDateTime/Parser::minute int32_t ___minute_5; // System.Int32 System.Xml.Schema.XsdDateTime/Parser::second int32_t ___second_6; // System.Int32 System.Xml.Schema.XsdDateTime/Parser::fraction int32_t ___fraction_7; // System.Xml.Schema.XsdDateTime/XsdDateTimeKind System.Xml.Schema.XsdDateTime/Parser::kind int32_t ___kind_8; // System.Int32 System.Xml.Schema.XsdDateTime/Parser::zoneHour int32_t ___zoneHour_9; // System.Int32 System.Xml.Schema.XsdDateTime/Parser::zoneMinute int32_t ___zoneMinute_10; // System.String System.Xml.Schema.XsdDateTime/Parser::text String_t* ___text_11; // System.Int32 System.Xml.Schema.XsdDateTime/Parser::length int32_t ___length_12; public: inline static int32_t get_offset_of_typeCode_0() { return static_cast(offsetof(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855, ___typeCode_0)); } inline int32_t get_typeCode_0() const { return ___typeCode_0; } inline int32_t* get_address_of_typeCode_0() { return &___typeCode_0; } inline void set_typeCode_0(int32_t value) { ___typeCode_0 = value; } inline static int32_t get_offset_of_year_1() { return static_cast(offsetof(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855, ___year_1)); } inline int32_t get_year_1() const { return ___year_1; } inline int32_t* get_address_of_year_1() { return &___year_1; } inline void set_year_1(int32_t value) { ___year_1 = value; } inline static int32_t get_offset_of_month_2() { return static_cast(offsetof(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855, ___month_2)); } inline int32_t get_month_2() const { return ___month_2; } inline int32_t* get_address_of_month_2() { return &___month_2; } inline void set_month_2(int32_t value) { ___month_2 = value; } inline static int32_t get_offset_of_day_3() { return static_cast(offsetof(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855, ___day_3)); } inline int32_t get_day_3() const { return ___day_3; } inline int32_t* get_address_of_day_3() { return &___day_3; } inline void set_day_3(int32_t value) { ___day_3 = value; } inline static int32_t get_offset_of_hour_4() { return static_cast(offsetof(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855, ___hour_4)); } inline int32_t get_hour_4() const { return ___hour_4; } inline int32_t* get_address_of_hour_4() { return &___hour_4; } inline void set_hour_4(int32_t value) { ___hour_4 = value; } inline static int32_t get_offset_of_minute_5() { return static_cast(offsetof(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855, ___minute_5)); } inline int32_t get_minute_5() const { return ___minute_5; } inline int32_t* get_address_of_minute_5() { return &___minute_5; } inline void set_minute_5(int32_t value) { ___minute_5 = value; } inline static int32_t get_offset_of_second_6() { return static_cast(offsetof(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855, ___second_6)); } inline int32_t get_second_6() const { return ___second_6; } inline int32_t* get_address_of_second_6() { return &___second_6; } inline void set_second_6(int32_t value) { ___second_6 = value; } inline static int32_t get_offset_of_fraction_7() { return static_cast(offsetof(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855, ___fraction_7)); } inline int32_t get_fraction_7() const { return ___fraction_7; } inline int32_t* get_address_of_fraction_7() { return &___fraction_7; } inline void set_fraction_7(int32_t value) { ___fraction_7 = value; } inline static int32_t get_offset_of_kind_8() { return static_cast(offsetof(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855, ___kind_8)); } inline int32_t get_kind_8() const { return ___kind_8; } inline int32_t* get_address_of_kind_8() { return &___kind_8; } inline void set_kind_8(int32_t value) { ___kind_8 = value; } inline static int32_t get_offset_of_zoneHour_9() { return static_cast(offsetof(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855, ___zoneHour_9)); } inline int32_t get_zoneHour_9() const { return ___zoneHour_9; } inline int32_t* get_address_of_zoneHour_9() { return &___zoneHour_9; } inline void set_zoneHour_9(int32_t value) { ___zoneHour_9 = value; } inline static int32_t get_offset_of_zoneMinute_10() { return static_cast(offsetof(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855, ___zoneMinute_10)); } inline int32_t get_zoneMinute_10() const { return ___zoneMinute_10; } inline int32_t* get_address_of_zoneMinute_10() { return &___zoneMinute_10; } inline void set_zoneMinute_10(int32_t value) { ___zoneMinute_10 = value; } inline static int32_t get_offset_of_text_11() { return static_cast(offsetof(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855, ___text_11)); } inline String_t* get_text_11() const { return ___text_11; } inline String_t** get_address_of_text_11() { return &___text_11; } inline void set_text_11(String_t* value) { ___text_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___text_11), (void*)value); } inline static int32_t get_offset_of_length_12() { return static_cast(offsetof(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855, ___length_12)); } inline int32_t get_length_12() const { return ___length_12; } inline int32_t* get_address_of_length_12() { return &___length_12; } inline void set_length_12(int32_t value) { ___length_12 = value; } }; // Native definition for P/Invoke marshalling of System.Xml.Schema.XsdDateTime/Parser struct Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_marshaled_pinvoke { int32_t ___typeCode_0; int32_t ___year_1; int32_t ___month_2; int32_t ___day_3; int32_t ___hour_4; int32_t ___minute_5; int32_t ___second_6; int32_t ___fraction_7; int32_t ___kind_8; int32_t ___zoneHour_9; int32_t ___zoneMinute_10; char* ___text_11; int32_t ___length_12; }; // Native definition for COM marshalling of System.Xml.Schema.XsdDateTime/Parser struct Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_marshaled_com { int32_t ___typeCode_0; int32_t ___year_1; int32_t ___month_2; int32_t ___day_3; int32_t ___hour_4; int32_t ___minute_5; int32_t ___second_6; int32_t ___fraction_7; int32_t ___kind_8; int32_t ___zoneHour_9; int32_t ___zoneMinute_10; Il2CppChar* ___text_11; int32_t ___length_12; }; // System.Func`2 struct Func_2_tAC7EF348160054EFB6A83AC44C3A19A395DA47E2 : public MulticastDelegate_t { public: public: }; // System.Func`3 struct Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 : public MulticastDelegate_t { public: public: }; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast(offsetof(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value); } }; // System.ArithmeticException struct ArithmeticException_t8E5F44FABC7FAE0966CBA6DE9BFD545F2660ED47 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA : public MulticastDelegate_t { public: public: }; // System.FormatException struct FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.Net.HttpWebRequest struct HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A : public WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E { public: // System.Uri System.Net.HttpWebRequest::requestUri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___requestUri_12; // System.Uri System.Net.HttpWebRequest::actualUri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___actualUri_13; // System.Boolean System.Net.HttpWebRequest::hostChanged bool ___hostChanged_14; // System.Boolean System.Net.HttpWebRequest::allowAutoRedirect bool ___allowAutoRedirect_15; // System.Boolean System.Net.HttpWebRequest::allowBuffering bool ___allowBuffering_16; // System.Security.Cryptography.X509Certificates.X509CertificateCollection System.Net.HttpWebRequest::certificates X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * ___certificates_17; // System.String System.Net.HttpWebRequest::connectionGroup String_t* ___connectionGroup_18; // System.Boolean System.Net.HttpWebRequest::haveContentLength bool ___haveContentLength_19; // System.Int64 System.Net.HttpWebRequest::contentLength int64_t ___contentLength_20; // System.Net.HttpContinueDelegate System.Net.HttpWebRequest::continueDelegate HttpContinueDelegate_t84ADA70221E0AC5A340AD9D012F81C1683FC240F * ___continueDelegate_21; // System.Net.CookieContainer System.Net.HttpWebRequest::cookieContainer CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * ___cookieContainer_22; // System.Net.ICredentials System.Net.HttpWebRequest::credentials RuntimeObject* ___credentials_23; // System.Boolean System.Net.HttpWebRequest::haveResponse bool ___haveResponse_24; // System.Boolean System.Net.HttpWebRequest::requestSent bool ___requestSent_25; // System.Net.WebHeaderCollection System.Net.HttpWebRequest::webHeaders WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * ___webHeaders_26; // System.Boolean System.Net.HttpWebRequest::keepAlive bool ___keepAlive_27; // System.Int32 System.Net.HttpWebRequest::maxAutoRedirect int32_t ___maxAutoRedirect_28; // System.String System.Net.HttpWebRequest::mediaType String_t* ___mediaType_29; // System.String System.Net.HttpWebRequest::method String_t* ___method_30; // System.String System.Net.HttpWebRequest::initialMethod String_t* ___initialMethod_31; // System.Boolean System.Net.HttpWebRequest::pipelined bool ___pipelined_32; // System.Boolean System.Net.HttpWebRequest::preAuthenticate bool ___preAuthenticate_33; // System.Boolean System.Net.HttpWebRequest::usedPreAuth bool ___usedPreAuth_34; // System.Version System.Net.HttpWebRequest::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_35; // System.Boolean System.Net.HttpWebRequest::force_version bool ___force_version_36; // System.Version System.Net.HttpWebRequest::actualVersion Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___actualVersion_37; // System.Net.IWebProxy System.Net.HttpWebRequest::proxy RuntimeObject* ___proxy_38; // System.Boolean System.Net.HttpWebRequest::sendChunked bool ___sendChunked_39; // System.Net.ServicePoint System.Net.HttpWebRequest::servicePoint ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * ___servicePoint_40; // System.Int32 System.Net.HttpWebRequest::timeout int32_t ___timeout_41; // System.Net.WebRequestStream System.Net.HttpWebRequest::writeStream WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * ___writeStream_42; // System.Net.HttpWebResponse System.Net.HttpWebRequest::webResponse HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * ___webResponse_43; // System.Net.WebCompletionSource System.Net.HttpWebRequest::responseTask WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * ___responseTask_44; // System.Net.WebOperation System.Net.HttpWebRequest::currentOperation WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * ___currentOperation_45; // System.Int32 System.Net.HttpWebRequest::aborted int32_t ___aborted_46; // System.Boolean System.Net.HttpWebRequest::gotRequestStream bool ___gotRequestStream_47; // System.Int32 System.Net.HttpWebRequest::redirects int32_t ___redirects_48; // System.Boolean System.Net.HttpWebRequest::expectContinue bool ___expectContinue_49; // System.Boolean System.Net.HttpWebRequest::getResponseCalled bool ___getResponseCalled_50; // System.Object System.Net.HttpWebRequest::locker RuntimeObject * ___locker_51; // System.Boolean System.Net.HttpWebRequest::finished_reading bool ___finished_reading_52; // System.Net.DecompressionMethods System.Net.HttpWebRequest::auto_decomp int32_t ___auto_decomp_53; // System.Int32 System.Net.HttpWebRequest::readWriteTimeout int32_t ___readWriteTimeout_55; // Mono.Security.Interface.MonoTlsProvider System.Net.HttpWebRequest::tlsProvider MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7 * ___tlsProvider_56; // Mono.Security.Interface.MonoTlsSettings System.Net.HttpWebRequest::tlsSettings MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21 * ___tlsSettings_57; // System.Net.ServerCertValidationCallback System.Net.HttpWebRequest::certValidationCallback ServerCertValidationCallback_t885D5EF5D7240832CCAD6FA7D59D4ED2DEAAB1FA * ___certValidationCallback_58; // System.Net.HttpWebRequest/AuthorizationState System.Net.HttpWebRequest::auth_state AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 ___auth_state_59; // System.Net.HttpWebRequest/AuthorizationState System.Net.HttpWebRequest::proxy_auth_state AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 ___proxy_auth_state_60; // System.String System.Net.HttpWebRequest::host String_t* ___host_61; // System.Func`2 System.Net.HttpWebRequest::ResendContentFactory Func_2_t1536C4C0AD9482796F7C72574A4B3DE8607E4E20 * ___ResendContentFactory_62; // System.Boolean System.Net.HttpWebRequest::k__BackingField bool ___U3CThrowOnErrorU3Ek__BackingField_63; // System.Boolean System.Net.HttpWebRequest::unsafe_auth_blah bool ___unsafe_auth_blah_64; public: inline static int32_t get_offset_of_requestUri_12() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___requestUri_12)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_requestUri_12() const { return ___requestUri_12; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_requestUri_12() { return &___requestUri_12; } inline void set_requestUri_12(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___requestUri_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___requestUri_12), (void*)value); } inline static int32_t get_offset_of_actualUri_13() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___actualUri_13)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_actualUri_13() const { return ___actualUri_13; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_actualUri_13() { return &___actualUri_13; } inline void set_actualUri_13(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___actualUri_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___actualUri_13), (void*)value); } inline static int32_t get_offset_of_hostChanged_14() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___hostChanged_14)); } inline bool get_hostChanged_14() const { return ___hostChanged_14; } inline bool* get_address_of_hostChanged_14() { return &___hostChanged_14; } inline void set_hostChanged_14(bool value) { ___hostChanged_14 = value; } inline static int32_t get_offset_of_allowAutoRedirect_15() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___allowAutoRedirect_15)); } inline bool get_allowAutoRedirect_15() const { return ___allowAutoRedirect_15; } inline bool* get_address_of_allowAutoRedirect_15() { return &___allowAutoRedirect_15; } inline void set_allowAutoRedirect_15(bool value) { ___allowAutoRedirect_15 = value; } inline static int32_t get_offset_of_allowBuffering_16() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___allowBuffering_16)); } inline bool get_allowBuffering_16() const { return ___allowBuffering_16; } inline bool* get_address_of_allowBuffering_16() { return &___allowBuffering_16; } inline void set_allowBuffering_16(bool value) { ___allowBuffering_16 = value; } inline static int32_t get_offset_of_certificates_17() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___certificates_17)); } inline X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * get_certificates_17() const { return ___certificates_17; } inline X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B ** get_address_of_certificates_17() { return &___certificates_17; } inline void set_certificates_17(X509CertificateCollection_t2990976CAD6265665564A400870A381968AB706B * value) { ___certificates_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___certificates_17), (void*)value); } inline static int32_t get_offset_of_connectionGroup_18() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___connectionGroup_18)); } inline String_t* get_connectionGroup_18() const { return ___connectionGroup_18; } inline String_t** get_address_of_connectionGroup_18() { return &___connectionGroup_18; } inline void set_connectionGroup_18(String_t* value) { ___connectionGroup_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___connectionGroup_18), (void*)value); } inline static int32_t get_offset_of_haveContentLength_19() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___haveContentLength_19)); } inline bool get_haveContentLength_19() const { return ___haveContentLength_19; } inline bool* get_address_of_haveContentLength_19() { return &___haveContentLength_19; } inline void set_haveContentLength_19(bool value) { ___haveContentLength_19 = value; } inline static int32_t get_offset_of_contentLength_20() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___contentLength_20)); } inline int64_t get_contentLength_20() const { return ___contentLength_20; } inline int64_t* get_address_of_contentLength_20() { return &___contentLength_20; } inline void set_contentLength_20(int64_t value) { ___contentLength_20 = value; } inline static int32_t get_offset_of_continueDelegate_21() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___continueDelegate_21)); } inline HttpContinueDelegate_t84ADA70221E0AC5A340AD9D012F81C1683FC240F * get_continueDelegate_21() const { return ___continueDelegate_21; } inline HttpContinueDelegate_t84ADA70221E0AC5A340AD9D012F81C1683FC240F ** get_address_of_continueDelegate_21() { return &___continueDelegate_21; } inline void set_continueDelegate_21(HttpContinueDelegate_t84ADA70221E0AC5A340AD9D012F81C1683FC240F * value) { ___continueDelegate_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___continueDelegate_21), (void*)value); } inline static int32_t get_offset_of_cookieContainer_22() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___cookieContainer_22)); } inline CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * get_cookieContainer_22() const { return ___cookieContainer_22; } inline CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 ** get_address_of_cookieContainer_22() { return &___cookieContainer_22; } inline void set_cookieContainer_22(CookieContainer_tF22AADBBB0BBD4D3FF4440A226F8E8580B08F4C2 * value) { ___cookieContainer_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___cookieContainer_22), (void*)value); } inline static int32_t get_offset_of_credentials_23() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___credentials_23)); } inline RuntimeObject* get_credentials_23() const { return ___credentials_23; } inline RuntimeObject** get_address_of_credentials_23() { return &___credentials_23; } inline void set_credentials_23(RuntimeObject* value) { ___credentials_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___credentials_23), (void*)value); } inline static int32_t get_offset_of_haveResponse_24() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___haveResponse_24)); } inline bool get_haveResponse_24() const { return ___haveResponse_24; } inline bool* get_address_of_haveResponse_24() { return &___haveResponse_24; } inline void set_haveResponse_24(bool value) { ___haveResponse_24 = value; } inline static int32_t get_offset_of_requestSent_25() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___requestSent_25)); } inline bool get_requestSent_25() const { return ___requestSent_25; } inline bool* get_address_of_requestSent_25() { return &___requestSent_25; } inline void set_requestSent_25(bool value) { ___requestSent_25 = value; } inline static int32_t get_offset_of_webHeaders_26() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___webHeaders_26)); } inline WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * get_webHeaders_26() const { return ___webHeaders_26; } inline WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 ** get_address_of_webHeaders_26() { return &___webHeaders_26; } inline void set_webHeaders_26(WebHeaderCollection_tB7EEB47640F12A532E1D8331A5AD498A289824D4 * value) { ___webHeaders_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___webHeaders_26), (void*)value); } inline static int32_t get_offset_of_keepAlive_27() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___keepAlive_27)); } inline bool get_keepAlive_27() const { return ___keepAlive_27; } inline bool* get_address_of_keepAlive_27() { return &___keepAlive_27; } inline void set_keepAlive_27(bool value) { ___keepAlive_27 = value; } inline static int32_t get_offset_of_maxAutoRedirect_28() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___maxAutoRedirect_28)); } inline int32_t get_maxAutoRedirect_28() const { return ___maxAutoRedirect_28; } inline int32_t* get_address_of_maxAutoRedirect_28() { return &___maxAutoRedirect_28; } inline void set_maxAutoRedirect_28(int32_t value) { ___maxAutoRedirect_28 = value; } inline static int32_t get_offset_of_mediaType_29() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___mediaType_29)); } inline String_t* get_mediaType_29() const { return ___mediaType_29; } inline String_t** get_address_of_mediaType_29() { return &___mediaType_29; } inline void set_mediaType_29(String_t* value) { ___mediaType_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___mediaType_29), (void*)value); } inline static int32_t get_offset_of_method_30() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___method_30)); } inline String_t* get_method_30() const { return ___method_30; } inline String_t** get_address_of_method_30() { return &___method_30; } inline void set_method_30(String_t* value) { ___method_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_30), (void*)value); } inline static int32_t get_offset_of_initialMethod_31() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___initialMethod_31)); } inline String_t* get_initialMethod_31() const { return ___initialMethod_31; } inline String_t** get_address_of_initialMethod_31() { return &___initialMethod_31; } inline void set_initialMethod_31(String_t* value) { ___initialMethod_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___initialMethod_31), (void*)value); } inline static int32_t get_offset_of_pipelined_32() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___pipelined_32)); } inline bool get_pipelined_32() const { return ___pipelined_32; } inline bool* get_address_of_pipelined_32() { return &___pipelined_32; } inline void set_pipelined_32(bool value) { ___pipelined_32 = value; } inline static int32_t get_offset_of_preAuthenticate_33() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___preAuthenticate_33)); } inline bool get_preAuthenticate_33() const { return ___preAuthenticate_33; } inline bool* get_address_of_preAuthenticate_33() { return &___preAuthenticate_33; } inline void set_preAuthenticate_33(bool value) { ___preAuthenticate_33 = value; } inline static int32_t get_offset_of_usedPreAuth_34() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___usedPreAuth_34)); } inline bool get_usedPreAuth_34() const { return ___usedPreAuth_34; } inline bool* get_address_of_usedPreAuth_34() { return &___usedPreAuth_34; } inline void set_usedPreAuth_34(bool value) { ___usedPreAuth_34 = value; } inline static int32_t get_offset_of_version_35() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___version_35)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_35() const { return ___version_35; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_35() { return &___version_35; } inline void set_version_35(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_35), (void*)value); } inline static int32_t get_offset_of_force_version_36() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___force_version_36)); } inline bool get_force_version_36() const { return ___force_version_36; } inline bool* get_address_of_force_version_36() { return &___force_version_36; } inline void set_force_version_36(bool value) { ___force_version_36 = value; } inline static int32_t get_offset_of_actualVersion_37() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___actualVersion_37)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_actualVersion_37() const { return ___actualVersion_37; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_actualVersion_37() { return &___actualVersion_37; } inline void set_actualVersion_37(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___actualVersion_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___actualVersion_37), (void*)value); } inline static int32_t get_offset_of_proxy_38() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___proxy_38)); } inline RuntimeObject* get_proxy_38() const { return ___proxy_38; } inline RuntimeObject** get_address_of_proxy_38() { return &___proxy_38; } inline void set_proxy_38(RuntimeObject* value) { ___proxy_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___proxy_38), (void*)value); } inline static int32_t get_offset_of_sendChunked_39() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___sendChunked_39)); } inline bool get_sendChunked_39() const { return ___sendChunked_39; } inline bool* get_address_of_sendChunked_39() { return &___sendChunked_39; } inline void set_sendChunked_39(bool value) { ___sendChunked_39 = value; } inline static int32_t get_offset_of_servicePoint_40() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___servicePoint_40)); } inline ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * get_servicePoint_40() const { return ___servicePoint_40; } inline ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 ** get_address_of_servicePoint_40() { return &___servicePoint_40; } inline void set_servicePoint_40(ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * value) { ___servicePoint_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___servicePoint_40), (void*)value); } inline static int32_t get_offset_of_timeout_41() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___timeout_41)); } inline int32_t get_timeout_41() const { return ___timeout_41; } inline int32_t* get_address_of_timeout_41() { return &___timeout_41; } inline void set_timeout_41(int32_t value) { ___timeout_41 = value; } inline static int32_t get_offset_of_writeStream_42() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___writeStream_42)); } inline WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * get_writeStream_42() const { return ___writeStream_42; } inline WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 ** get_address_of_writeStream_42() { return &___writeStream_42; } inline void set_writeStream_42(WebRequestStream_t9F0251C03B8D0975476759A9C3791E6849E43887 * value) { ___writeStream_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___writeStream_42), (void*)value); } inline static int32_t get_offset_of_webResponse_43() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___webResponse_43)); } inline HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * get_webResponse_43() const { return ___webResponse_43; } inline HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB ** get_address_of_webResponse_43() { return &___webResponse_43; } inline void set_webResponse_43(HttpWebResponse_tD58890FA8C0EA55ED8B628D0FB87E9DF9B8CE7EB * value) { ___webResponse_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___webResponse_43), (void*)value); } inline static int32_t get_offset_of_responseTask_44() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___responseTask_44)); } inline WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * get_responseTask_44() const { return ___responseTask_44; } inline WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E ** get_address_of_responseTask_44() { return &___responseTask_44; } inline void set_responseTask_44(WebCompletionSource_tF1258B468350A374EC59049FE0E31C7879D6AB1E * value) { ___responseTask_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___responseTask_44), (void*)value); } inline static int32_t get_offset_of_currentOperation_45() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___currentOperation_45)); } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * get_currentOperation_45() const { return ___currentOperation_45; } inline WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 ** get_address_of_currentOperation_45() { return &___currentOperation_45; } inline void set_currentOperation_45(WebOperation_tA657473A4429C6E434B401D4BF98A8654E5B3E00 * value) { ___currentOperation_45 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentOperation_45), (void*)value); } inline static int32_t get_offset_of_aborted_46() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___aborted_46)); } inline int32_t get_aborted_46() const { return ___aborted_46; } inline int32_t* get_address_of_aborted_46() { return &___aborted_46; } inline void set_aborted_46(int32_t value) { ___aborted_46 = value; } inline static int32_t get_offset_of_gotRequestStream_47() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___gotRequestStream_47)); } inline bool get_gotRequestStream_47() const { return ___gotRequestStream_47; } inline bool* get_address_of_gotRequestStream_47() { return &___gotRequestStream_47; } inline void set_gotRequestStream_47(bool value) { ___gotRequestStream_47 = value; } inline static int32_t get_offset_of_redirects_48() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___redirects_48)); } inline int32_t get_redirects_48() const { return ___redirects_48; } inline int32_t* get_address_of_redirects_48() { return &___redirects_48; } inline void set_redirects_48(int32_t value) { ___redirects_48 = value; } inline static int32_t get_offset_of_expectContinue_49() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___expectContinue_49)); } inline bool get_expectContinue_49() const { return ___expectContinue_49; } inline bool* get_address_of_expectContinue_49() { return &___expectContinue_49; } inline void set_expectContinue_49(bool value) { ___expectContinue_49 = value; } inline static int32_t get_offset_of_getResponseCalled_50() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___getResponseCalled_50)); } inline bool get_getResponseCalled_50() const { return ___getResponseCalled_50; } inline bool* get_address_of_getResponseCalled_50() { return &___getResponseCalled_50; } inline void set_getResponseCalled_50(bool value) { ___getResponseCalled_50 = value; } inline static int32_t get_offset_of_locker_51() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___locker_51)); } inline RuntimeObject * get_locker_51() const { return ___locker_51; } inline RuntimeObject ** get_address_of_locker_51() { return &___locker_51; } inline void set_locker_51(RuntimeObject * value) { ___locker_51 = value; Il2CppCodeGenWriteBarrier((void**)(&___locker_51), (void*)value); } inline static int32_t get_offset_of_finished_reading_52() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___finished_reading_52)); } inline bool get_finished_reading_52() const { return ___finished_reading_52; } inline bool* get_address_of_finished_reading_52() { return &___finished_reading_52; } inline void set_finished_reading_52(bool value) { ___finished_reading_52 = value; } inline static int32_t get_offset_of_auto_decomp_53() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___auto_decomp_53)); } inline int32_t get_auto_decomp_53() const { return ___auto_decomp_53; } inline int32_t* get_address_of_auto_decomp_53() { return &___auto_decomp_53; } inline void set_auto_decomp_53(int32_t value) { ___auto_decomp_53 = value; } inline static int32_t get_offset_of_readWriteTimeout_55() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___readWriteTimeout_55)); } inline int32_t get_readWriteTimeout_55() const { return ___readWriteTimeout_55; } inline int32_t* get_address_of_readWriteTimeout_55() { return &___readWriteTimeout_55; } inline void set_readWriteTimeout_55(int32_t value) { ___readWriteTimeout_55 = value; } inline static int32_t get_offset_of_tlsProvider_56() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___tlsProvider_56)); } inline MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7 * get_tlsProvider_56() const { return ___tlsProvider_56; } inline MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7 ** get_address_of_tlsProvider_56() { return &___tlsProvider_56; } inline void set_tlsProvider_56(MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7 * value) { ___tlsProvider_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___tlsProvider_56), (void*)value); } inline static int32_t get_offset_of_tlsSettings_57() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___tlsSettings_57)); } inline MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21 * get_tlsSettings_57() const { return ___tlsSettings_57; } inline MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21 ** get_address_of_tlsSettings_57() { return &___tlsSettings_57; } inline void set_tlsSettings_57(MonoTlsSettings_tBDF72C906FE6477EFBA9493F7F5CB5ADE2C80E21 * value) { ___tlsSettings_57 = value; Il2CppCodeGenWriteBarrier((void**)(&___tlsSettings_57), (void*)value); } inline static int32_t get_offset_of_certValidationCallback_58() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___certValidationCallback_58)); } inline ServerCertValidationCallback_t885D5EF5D7240832CCAD6FA7D59D4ED2DEAAB1FA * get_certValidationCallback_58() const { return ___certValidationCallback_58; } inline ServerCertValidationCallback_t885D5EF5D7240832CCAD6FA7D59D4ED2DEAAB1FA ** get_address_of_certValidationCallback_58() { return &___certValidationCallback_58; } inline void set_certValidationCallback_58(ServerCertValidationCallback_t885D5EF5D7240832CCAD6FA7D59D4ED2DEAAB1FA * value) { ___certValidationCallback_58 = value; Il2CppCodeGenWriteBarrier((void**)(&___certValidationCallback_58), (void*)value); } inline static int32_t get_offset_of_auth_state_59() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___auth_state_59)); } inline AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 get_auth_state_59() const { return ___auth_state_59; } inline AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * get_address_of_auth_state_59() { return &___auth_state_59; } inline void set_auth_state_59(AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 value) { ___auth_state_59 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___auth_state_59))->___request_0), (void*)NULL); } inline static int32_t get_offset_of_proxy_auth_state_60() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___proxy_auth_state_60)); } inline AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 get_proxy_auth_state_60() const { return ___proxy_auth_state_60; } inline AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 * get_address_of_proxy_auth_state_60() { return &___proxy_auth_state_60; } inline void set_proxy_auth_state_60(AuthorizationState_tAFF7CCE61655C69AC36E9D910C218D983D959B55 value) { ___proxy_auth_state_60 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___proxy_auth_state_60))->___request_0), (void*)NULL); } inline static int32_t get_offset_of_host_61() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___host_61)); } inline String_t* get_host_61() const { return ___host_61; } inline String_t** get_address_of_host_61() { return &___host_61; } inline void set_host_61(String_t* value) { ___host_61 = value; Il2CppCodeGenWriteBarrier((void**)(&___host_61), (void*)value); } inline static int32_t get_offset_of_ResendContentFactory_62() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___ResendContentFactory_62)); } inline Func_2_t1536C4C0AD9482796F7C72574A4B3DE8607E4E20 * get_ResendContentFactory_62() const { return ___ResendContentFactory_62; } inline Func_2_t1536C4C0AD9482796F7C72574A4B3DE8607E4E20 ** get_address_of_ResendContentFactory_62() { return &___ResendContentFactory_62; } inline void set_ResendContentFactory_62(Func_2_t1536C4C0AD9482796F7C72574A4B3DE8607E4E20 * value) { ___ResendContentFactory_62 = value; Il2CppCodeGenWriteBarrier((void**)(&___ResendContentFactory_62), (void*)value); } inline static int32_t get_offset_of_U3CThrowOnErrorU3Ek__BackingField_63() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___U3CThrowOnErrorU3Ek__BackingField_63)); } inline bool get_U3CThrowOnErrorU3Ek__BackingField_63() const { return ___U3CThrowOnErrorU3Ek__BackingField_63; } inline bool* get_address_of_U3CThrowOnErrorU3Ek__BackingField_63() { return &___U3CThrowOnErrorU3Ek__BackingField_63; } inline void set_U3CThrowOnErrorU3Ek__BackingField_63(bool value) { ___U3CThrowOnErrorU3Ek__BackingField_63 = value; } inline static int32_t get_offset_of_unsafe_auth_blah_64() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A, ___unsafe_auth_blah_64)); } inline bool get_unsafe_auth_blah_64() const { return ___unsafe_auth_blah_64; } inline bool* get_address_of_unsafe_auth_blah_64() { return &___unsafe_auth_blah_64; } inline void set_unsafe_auth_blah_64(bool value) { ___unsafe_auth_blah_64 = value; } }; // System.InvalidCastException struct InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.Xml.XmlException struct XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.String System.Xml.XmlException::res String_t* ___res_17; // System.String[] System.Xml.XmlException::args StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___args_18; // System.Int32 System.Xml.XmlException::lineNumber int32_t ___lineNumber_19; // System.Int32 System.Xml.XmlException::linePosition int32_t ___linePosition_20; // System.String System.Xml.XmlException::sourceUri String_t* ___sourceUri_21; // System.String System.Xml.XmlException::message String_t* ___message_22; public: inline static int32_t get_offset_of_res_17() { return static_cast(offsetof(XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918, ___res_17)); } inline String_t* get_res_17() const { return ___res_17; } inline String_t** get_address_of_res_17() { return &___res_17; } inline void set_res_17(String_t* value) { ___res_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___res_17), (void*)value); } inline static int32_t get_offset_of_args_18() { return static_cast(offsetof(XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918, ___args_18)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_args_18() const { return ___args_18; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_args_18() { return &___args_18; } inline void set_args_18(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___args_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___args_18), (void*)value); } inline static int32_t get_offset_of_lineNumber_19() { return static_cast(offsetof(XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918, ___lineNumber_19)); } inline int32_t get_lineNumber_19() const { return ___lineNumber_19; } inline int32_t* get_address_of_lineNumber_19() { return &___lineNumber_19; } inline void set_lineNumber_19(int32_t value) { ___lineNumber_19 = value; } inline static int32_t get_offset_of_linePosition_20() { return static_cast(offsetof(XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918, ___linePosition_20)); } inline int32_t get_linePosition_20() const { return ___linePosition_20; } inline int32_t* get_address_of_linePosition_20() { return &___linePosition_20; } inline void set_linePosition_20(int32_t value) { ___linePosition_20 = value; } inline static int32_t get_offset_of_sourceUri_21() { return static_cast(offsetof(XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918, ___sourceUri_21)); } inline String_t* get_sourceUri_21() const { return ___sourceUri_21; } inline String_t** get_address_of_sourceUri_21() { return &___sourceUri_21; } inline void set_sourceUri_21(String_t* value) { ___sourceUri_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___sourceUri_21), (void*)value); } inline static int32_t get_offset_of_message_22() { return static_cast(offsetof(XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918, ___message_22)); } inline String_t* get_message_22() const { return ___message_22; } inline String_t** get_address_of_message_22() { return &___message_22; } inline void set_message_22(String_t* value) { ___message_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___message_22), (void*)value); } }; // System.Xml.Schema.XmlListConverter struct XmlListConverter_t58F692567B1B34BF5171B647F1BE66EC017D4F4D : public XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 { public: // System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlListConverter::atomicConverter XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * ___atomicConverter_32; public: inline static int32_t get_offset_of_atomicConverter_32() { return static_cast(offsetof(XmlListConverter_t58F692567B1B34BF5171B647F1BE66EC017D4F4D, ___atomicConverter_32)); } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * get_atomicConverter_32() const { return ___atomicConverter_32; } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 ** get_address_of_atomicConverter_32() { return &___atomicConverter_32; } inline void set_atomicConverter_32(XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * value) { ___atomicConverter_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___atomicConverter_32), (void*)value); } }; // System.Xml.Schema.XmlSchemaSimpleType struct XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C : public XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA { public: // System.Xml.Schema.XmlSchemaSimpleTypeContent System.Xml.Schema.XmlSchemaSimpleType::content XmlSchemaSimpleTypeContent_t38B7E1118EA6B9348F35D47139C9BE910724DB65 * ___content_7; public: inline static int32_t get_offset_of_content_7() { return static_cast(offsetof(XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C, ___content_7)); } inline XmlSchemaSimpleTypeContent_t38B7E1118EA6B9348F35D47139C9BE910724DB65 * get_content_7() const { return ___content_7; } inline XmlSchemaSimpleTypeContent_t38B7E1118EA6B9348F35D47139C9BE910724DB65 ** get_address_of_content_7() { return &___content_7; } inline void set_content_7(XmlSchemaSimpleTypeContent_t38B7E1118EA6B9348F35D47139C9BE910724DB65 * value) { ___content_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___content_7), (void*)value); } }; // System.Xml.Serialization.XmlSerializationCollectionFixupCallback struct XmlSerializationCollectionFixupCallback_t88A34696BDDF37FD897F180858064DF7EF750B1A : public MulticastDelegate_t { public: public: }; // System.Xml.Serialization.XmlSerializationFixupCallback struct XmlSerializationFixupCallback_t20E0CC9B652B1BC41D75F4793FD87671D166E549 : public MulticastDelegate_t { public: public: }; // System.Xml.Serialization.XmlTypeMapping struct XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 : public XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 { public: // System.String System.Xml.Serialization.XmlTypeMapping::xmlType String_t* ___xmlType_6; // System.String System.Xml.Serialization.XmlTypeMapping::xmlTypeNamespace String_t* ___xmlTypeNamespace_7; // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapping::type TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * ___type_8; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapping::baseMap XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * ___baseMap_9; // System.Boolean System.Xml.Serialization.XmlTypeMapping::multiReferenceType bool ___multiReferenceType_10; // System.Boolean System.Xml.Serialization.XmlTypeMapping::includeInSchema bool ___includeInSchema_11; // System.Boolean System.Xml.Serialization.XmlTypeMapping::isNullable bool ___isNullable_12; // System.Boolean System.Xml.Serialization.XmlTypeMapping::isAny bool ___isAny_13; // System.Collections.ArrayList System.Xml.Serialization.XmlTypeMapping::_derivedTypes ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ____derivedTypes_14; public: inline static int32_t get_offset_of_xmlType_6() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ___xmlType_6)); } inline String_t* get_xmlType_6() const { return ___xmlType_6; } inline String_t** get_address_of_xmlType_6() { return &___xmlType_6; } inline void set_xmlType_6(String_t* value) { ___xmlType_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlType_6), (void*)value); } inline static int32_t get_offset_of_xmlTypeNamespace_7() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ___xmlTypeNamespace_7)); } inline String_t* get_xmlTypeNamespace_7() const { return ___xmlTypeNamespace_7; } inline String_t** get_address_of_xmlTypeNamespace_7() { return &___xmlTypeNamespace_7; } inline void set_xmlTypeNamespace_7(String_t* value) { ___xmlTypeNamespace_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___xmlTypeNamespace_7), (void*)value); } inline static int32_t get_offset_of_type_8() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ___type_8)); } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * get_type_8() const { return ___type_8; } inline TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 ** get_address_of_type_8() { return &___type_8; } inline void set_type_8(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * value) { ___type_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_8), (void*)value); } inline static int32_t get_offset_of_baseMap_9() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ___baseMap_9)); } inline XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * get_baseMap_9() const { return ___baseMap_9; } inline XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 ** get_address_of_baseMap_9() { return &___baseMap_9; } inline void set_baseMap_9(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * value) { ___baseMap_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___baseMap_9), (void*)value); } inline static int32_t get_offset_of_multiReferenceType_10() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ___multiReferenceType_10)); } inline bool get_multiReferenceType_10() const { return ___multiReferenceType_10; } inline bool* get_address_of_multiReferenceType_10() { return &___multiReferenceType_10; } inline void set_multiReferenceType_10(bool value) { ___multiReferenceType_10 = value; } inline static int32_t get_offset_of_includeInSchema_11() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ___includeInSchema_11)); } inline bool get_includeInSchema_11() const { return ___includeInSchema_11; } inline bool* get_address_of_includeInSchema_11() { return &___includeInSchema_11; } inline void set_includeInSchema_11(bool value) { ___includeInSchema_11 = value; } inline static int32_t get_offset_of_isNullable_12() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ___isNullable_12)); } inline bool get_isNullable_12() const { return ___isNullable_12; } inline bool* get_address_of_isNullable_12() { return &___isNullable_12; } inline void set_isNullable_12(bool value) { ___isNullable_12 = value; } inline static int32_t get_offset_of_isAny_13() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ___isAny_13)); } inline bool get_isAny_13() const { return ___isAny_13; } inline bool* get_address_of_isAny_13() { return &___isAny_13; } inline void set_isAny_13(bool value) { ___isAny_13 = value; } inline static int32_t get_offset_of__derivedTypes_14() { return static_cast(offsetof(XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581, ____derivedTypes_14)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get__derivedTypes_14() const { return ____derivedTypes_14; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of__derivedTypes_14() { return &____derivedTypes_14; } inline void set__derivedTypes_14(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ____derivedTypes_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____derivedTypes_14), (void*)value); } }; // System.Xml.SecureStringHasher/HashCodeOfStringDelegate struct HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 : public MulticastDelegate_t { public: public: }; // System.Xml.XmlQualifiedName/HashCodeOfStringDelegate struct HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E : public MulticastDelegate_t { public: public: }; // System.Xml.Schema.XmlSchemaParticle/EmptyParticle struct EmptyParticle_t56BD41298CE124A8F2F4F4426105E1663120F7BF : public XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789 { public: public: }; // System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate struct OnDefaultAttributeUseDelegate_t3E995824DB2F605D21E74880C851C4C6BB9A1E88 : public MulticastDelegate_t { public: public: }; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: public: }; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: // System.Object System.ArgumentOutOfRangeException::m_actualValue RuntimeObject * ___m_actualValue_19; public: inline static int32_t get_offset_of_m_actualValue_19() { return static_cast(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8, ___m_actualValue_19)); } inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; } inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; } inline void set_m_actualValue_19(RuntimeObject * value) { ___m_actualValue_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value); } }; // System.OverflowException struct OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 : public ArithmeticException_t8E5F44FABC7FAE0966CBA6DE9BFD545F2660ED47 { public: public: }; // System.Xml.Schema.XmlUntypedConverter struct XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF : public XmlListConverter_t58F692567B1B34BF5171B647F1BE66EC017D4F4D { public: // System.Boolean System.Xml.Schema.XmlUntypedConverter::allowListToList bool ___allowListToList_33; public: inline static int32_t get_offset_of_allowListToList_33() { return static_cast(offsetof(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF, ___allowListToList_33)); } inline bool get_allowListToList_33() const { return ___allowListToList_33; } inline bool* get_address_of_allowListToList_33() { return &___allowListToList_33; } inline void set_allowListToList_33(bool value) { ___allowListToList_33 = value; } }; // System.Object // System.Object // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 struct Il2CppArrayBounds; // System.Array struct Il2CppArrayBounds; // System.Array // System.Collections.ArrayList struct ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_StaticFields { public: // System.Object[] System.Collections.ArrayList::emptyArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___emptyArray_4; public: inline static int32_t get_offset_of_emptyArray_4() { return static_cast(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_StaticFields, ___emptyArray_4)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_emptyArray_4() const { return ___emptyArray_4; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_emptyArray_4() { return &___emptyArray_4; } inline void set_emptyArray_4(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___emptyArray_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___emptyArray_4), (void*)value); } }; // System.Collections.ArrayList // System.Attribute // System.Attribute // System.Xml.Base64Encoder // System.Xml.Base64Encoder // System.Reflection.Binder // System.Reflection.Binder // System.Xml.Schema.BitSet // System.Xml.Schema.BitSet // System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields { public: // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___invariant_culture_info_0; // System.Object System.Globalization.CultureInfo::shared_table_lock RuntimeObject * ___shared_table_lock_1; // System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___default_current_culture_2; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___s_DefaultThreadCurrentUICulture_33; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___s_DefaultThreadCurrentCulture_34; // System.Collections.Generic.Dictionary`2 System.Globalization.CultureInfo::shared_by_number Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * ___shared_by_number_35; // System.Collections.Generic.Dictionary`2 System.Globalization.CultureInfo::shared_by_name Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * ___shared_by_name_36; // System.Boolean System.Globalization.CultureInfo::IsTaiwanSku bool ___IsTaiwanSku_37; public: inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___invariant_culture_info_0)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; } inline void set_invariant_culture_info_0(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___invariant_culture_info_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value); } inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_table_lock_1)); } inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; } inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; } inline void set_shared_table_lock_1(RuntimeObject * value) { ___shared_table_lock_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value); } inline static int32_t get_offset_of_default_current_culture_2() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___default_current_culture_2)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_default_current_culture_2() const { return ___default_current_culture_2; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; } inline void set_default_current_culture_2(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___default_current_culture_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; } inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___s_DefaultThreadCurrentUICulture_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___s_DefaultThreadCurrentCulture_34)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; } inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___s_DefaultThreadCurrentCulture_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value); } inline static int32_t get_offset_of_shared_by_number_35() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_by_number_35)); } inline Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * get_shared_by_number_35() const { return ___shared_by_number_35; } inline Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; } inline void set_shared_by_number_35(Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * value) { ___shared_by_number_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value); } inline static int32_t get_offset_of_shared_by_name_36() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_by_name_36)); } inline Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * get_shared_by_name_36() const { return ___shared_by_name_36; } inline Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; } inline void set_shared_by_name_36(Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * value) { ___shared_by_name_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value); } inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___IsTaiwanSku_37)); } inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; } inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; } inline void set_IsTaiwanSku_37(bool value) { ___IsTaiwanSku_37 = value; } }; // System.Globalization.CultureInfo // System.DBNull struct DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_StaticFields { public: // System.DBNull System.DBNull::Value DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast(offsetof(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_StaticFields, ___Value_0)); } inline DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 * get_Value_0() const { return ___Value_0; } inline DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value); } }; // System.DBNull // System.Text.Decoder // System.Text.Decoder // System.Xml.EmptyEnumerator // System.Xml.EmptyEnumerator // System.Text.Encoding struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields { public: // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___defaultEncoding_0; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___unicodeEncoding_1; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___bigEndianUnicode_2; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf7Encoding_3; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf8Encoding_4; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf32Encoding_5; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___asciiEncoding_6; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___latin1Encoding_7; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___encodings_8; // System.Object System.Text.Encoding::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_15; public: inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___defaultEncoding_0)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_defaultEncoding_0() const { return ___defaultEncoding_0; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; } inline void set_defaultEncoding_0(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___defaultEncoding_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultEncoding_0), (void*)value); } inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___unicodeEncoding_1)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; } inline void set_unicodeEncoding_1(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___unicodeEncoding_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___unicodeEncoding_1), (void*)value); } inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___bigEndianUnicode_2)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; } inline void set_bigEndianUnicode_2(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___bigEndianUnicode_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___bigEndianUnicode_2), (void*)value); } inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf7Encoding_3)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf7Encoding_3() const { return ___utf7Encoding_3; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; } inline void set_utf7Encoding_3(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf7Encoding_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf7Encoding_3), (void*)value); } inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf8Encoding_4)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf8Encoding_4() const { return ___utf8Encoding_4; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; } inline void set_utf8Encoding_4(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf8Encoding_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf8Encoding_4), (void*)value); } inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf32Encoding_5)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf32Encoding_5() const { return ___utf32Encoding_5; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; } inline void set_utf32Encoding_5(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf32Encoding_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf32Encoding_5), (void*)value); } inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___asciiEncoding_6)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_asciiEncoding_6() const { return ___asciiEncoding_6; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; } inline void set_asciiEncoding_6(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___asciiEncoding_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___asciiEncoding_6), (void*)value); } inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___latin1Encoding_7)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_latin1Encoding_7() const { return ___latin1Encoding_7; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; } inline void set_latin1Encoding_7(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___latin1Encoding_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___latin1Encoding_7), (void*)value); } inline static int32_t get_offset_of_encodings_8() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___encodings_8)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_encodings_8() const { return ___encodings_8; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_encodings_8() { return &___encodings_8; } inline void set_encodings_8(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___encodings_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___encodings_8), (void*)value); } inline static int32_t get_offset_of_s_InternalSyncObject_15() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___s_InternalSyncObject_15)); } inline RuntimeObject * get_s_InternalSyncObject_15() const { return ___s_InternalSyncObject_15; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_15() { return &___s_InternalSyncObject_15; } inline void set_s_InternalSyncObject_15(RuntimeObject * value) { ___s_InternalSyncObject_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_15), (void*)value); } }; // System.Text.Encoding // System.MarshalByRefObject // System.MarshalByRefObject // System.Reflection.MemberInfo // System.Reflection.MemberInfo // System.Xml.Serialization.ObjectMap // System.Xml.Serialization.ObjectMap // System.Xml.OpenedHost // System.Xml.OpenedHost // System.Xml.SecureStringHasher struct SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A_StaticFields { public: // System.Xml.SecureStringHasher/HashCodeOfStringDelegate System.Xml.SecureStringHasher::hashCodeDelegate HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * ___hashCodeDelegate_0; public: inline static int32_t get_offset_of_hashCodeDelegate_0() { return static_cast(offsetof(SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A_StaticFields, ___hashCodeDelegate_0)); } inline HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * get_hashCodeDelegate_0() const { return ___hashCodeDelegate_0; } inline HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 ** get_address_of_hashCodeDelegate_0() { return &___hashCodeDelegate_0; } inline void set_hashCodeDelegate_0(HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * value) { ___hashCodeDelegate_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___hashCodeDelegate_0), (void*)value); } }; // System.Xml.SecureStringHasher // System.String 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(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.String // System.Text.StringBuilder // System.Text.StringBuilder // System.Xml.Schema.SyntaxTreeNode // System.Xml.Schema.SyntaxTreeNode // System.ValueType // System.ValueType // System.Xml.XPath.XPathItem // System.Xml.XPath.XPathItem // System.Xml.Serialization.XmlAttributes // System.Xml.Serialization.XmlAttributes // System.Xml.XmlDownloadManager // System.Xml.XmlDownloadManager // System.Xml.XmlNameTable // System.Xml.XmlNameTable // System.Xml.XmlNamespaceManager // System.Xml.XmlNamespaceManager // System.Xml.XmlNode // System.Xml.XmlNode // System.Xml.XmlQualifiedName struct XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_StaticFields { public: // System.Xml.XmlQualifiedName/HashCodeOfStringDelegate System.Xml.XmlQualifiedName::hashCodeDelegate HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E * ___hashCodeDelegate_0; // System.Xml.XmlQualifiedName System.Xml.XmlQualifiedName::Empty XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___Empty_4; public: inline static int32_t get_offset_of_hashCodeDelegate_0() { return static_cast(offsetof(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_StaticFields, ___hashCodeDelegate_0)); } inline HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E * get_hashCodeDelegate_0() const { return ___hashCodeDelegate_0; } inline HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E ** get_address_of_hashCodeDelegate_0() { return &___hashCodeDelegate_0; } inline void set_hashCodeDelegate_0(HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E * value) { ___hashCodeDelegate_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___hashCodeDelegate_0), (void*)value); } inline static int32_t get_offset_of_Empty_4() { return static_cast(offsetof(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_StaticFields, ___Empty_4)); } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * get_Empty_4() const { return ___Empty_4; } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 ** get_address_of_Empty_4() { return &___Empty_4; } inline void set_Empty_4(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * value) { ___Empty_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_4), (void*)value); } }; // System.Xml.XmlQualifiedName // System.Xml.XmlReader struct XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138_StaticFields { public: // System.UInt32 System.Xml.XmlReader::IsTextualNodeBitmap uint32_t ___IsTextualNodeBitmap_0; // System.UInt32 System.Xml.XmlReader::CanReadContentAsBitmap uint32_t ___CanReadContentAsBitmap_1; // System.UInt32 System.Xml.XmlReader::HasValueBitmap uint32_t ___HasValueBitmap_2; public: inline static int32_t get_offset_of_IsTextualNodeBitmap_0() { return static_cast(offsetof(XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138_StaticFields, ___IsTextualNodeBitmap_0)); } inline uint32_t get_IsTextualNodeBitmap_0() const { return ___IsTextualNodeBitmap_0; } inline uint32_t* get_address_of_IsTextualNodeBitmap_0() { return &___IsTextualNodeBitmap_0; } inline void set_IsTextualNodeBitmap_0(uint32_t value) { ___IsTextualNodeBitmap_0 = value; } inline static int32_t get_offset_of_CanReadContentAsBitmap_1() { return static_cast(offsetof(XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138_StaticFields, ___CanReadContentAsBitmap_1)); } inline uint32_t get_CanReadContentAsBitmap_1() const { return ___CanReadContentAsBitmap_1; } inline uint32_t* get_address_of_CanReadContentAsBitmap_1() { return &___CanReadContentAsBitmap_1; } inline void set_CanReadContentAsBitmap_1(uint32_t value) { ___CanReadContentAsBitmap_1 = value; } inline static int32_t get_offset_of_HasValueBitmap_2() { return static_cast(offsetof(XmlReader_tECCB3D8B757F8CE744EF0430F338BEF15E060138_StaticFields, ___HasValueBitmap_2)); } inline uint32_t get_HasValueBitmap_2() const { return ___HasValueBitmap_2; } inline uint32_t* get_address_of_HasValueBitmap_2() { return &___HasValueBitmap_2; } inline void set_HasValueBitmap_2(uint32_t value) { ___HasValueBitmap_2 = value; } }; // System.Xml.XmlReader // System.Xml.Serialization.XmlReflectionMember // System.Xml.Serialization.XmlReflectionMember // System.Xml.XmlResolver // System.Xml.XmlResolver // System.Xml.Schema.XmlSchemaDatatype // System.Xml.Schema.XmlSchemaDatatype // System.Xml.Schema.XmlSchemaObject // System.Xml.Schema.XmlSchemaObject // System.Xml.Serialization.XmlSerializationGeneratedCode // System.Xml.Serialization.XmlSerializationGeneratedCode // System.Xml.Serialization.XmlSerializerImplementation // System.Xml.Serialization.XmlSerializerImplementation // System.Xml.Serialization.XmlTypeMapMember // System.Xml.Serialization.XmlTypeMapMember // System.Xml.Schema.XmlValueConverter // System.Xml.Schema.XmlValueConverter // System.Xml.XmlWriter // System.Xml.XmlWriter // System.Xml.Schema.XsdSimpleValue // System.Xml.Schema.XsdSimpleValue // System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap // System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap // System.Xml.DtdParser/UndeclaredNotation // System.Xml.DtdParser/UndeclaredNotation // System.Xml.Serialization.EnumMap/EnumMapMember // System.Xml.Serialization.EnumMap/EnumMapMember // System.Xml.NameTable/Entry // System.Xml.NameTable/Entry // System.Xml.Schema.XmlAtomicValue/NamespacePrefixForQName // System.Xml.Schema.XmlAtomicValue/NamespacePrefixForQName // System.Xml.XmlDownloadManager/<>c__DisplayClass4_0 // System.Xml.XmlDownloadManager/<>c__DisplayClass4_0 // System.Xml.Serialization.XmlReflectionImporter/<>c struct U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE_StaticFields { public: // System.Xml.Serialization.XmlReflectionImporter/<>c System.Xml.Serialization.XmlReflectionImporter/<>c::<>9 U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE * ___U3CU3E9_0; // System.Comparison`1 System.Xml.Serialization.XmlReflectionImporter/<>c::<>9__28_0 Comparison_1_t44AF266C7D621EBE70F2BF21FFA6B7C2C260453A * ___U3CU3E9__28_0_1; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__28_0_1() { return static_cast(offsetof(U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE_StaticFields, ___U3CU3E9__28_0_1)); } inline Comparison_1_t44AF266C7D621EBE70F2BF21FFA6B7C2C260453A * get_U3CU3E9__28_0_1() const { return ___U3CU3E9__28_0_1; } inline Comparison_1_t44AF266C7D621EBE70F2BF21FFA6B7C2C260453A ** get_address_of_U3CU3E9__28_0_1() { return &___U3CU3E9__28_0_1; } inline void set_U3CU3E9__28_0_1(Comparison_1_t44AF266C7D621EBE70F2BF21FFA6B7C2C260453A * value) { ___U3CU3E9__28_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__28_0_1), (void*)value); } }; // System.Xml.Serialization.XmlReflectionImporter/<>c // System.Xml.Serialization.XmlSerializationReader/CollectionFixup // System.Xml.Serialization.XmlSerializationReader/CollectionFixup // System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup // System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup // System.Xml.Serialization.XmlSerializationReader/Fixup // System.Xml.Serialization.XmlSerializationReader/Fixup // System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo // System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo // System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo // System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo // System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo // System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo // System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo // System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo // System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo // System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo // System.Xml.Serialization.XmlSerializer/SerializerData // System.Xml.Serialization.XmlSerializer/SerializerData // System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer struct DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC_StaticFields { public: // System.Collections.Generic.IComparer`1 System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer::s_instance RuntimeObject* ___s_instance_0; public: inline static int32_t get_offset_of_s_instance_0() { return static_cast(offsetof(DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC_StaticFields, ___s_instance_0)); } inline RuntimeObject* get_s_instance_0() const { return ___s_instance_0; } inline RuntimeObject** get_address_of_s_instance_0() { return &___s_instance_0; } inline void set_s_instance_0(RuntimeObject* value) { ___s_instance_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_instance_0), (void*)value); } }; // System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer // System.Xml.XmlTextReaderImpl/DtdParserProxy // System.Xml.XmlTextReaderImpl/DtdParserProxy // System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator // System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter // System.Nullable`1 // System.Nullable`1 // System.Runtime.CompilerServices.AsyncMethodBuilderCore // System.Runtime.CompilerServices.AsyncMethodBuilderCore // System.Boolean 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(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(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.Boolean // System.Byte // System.Byte // System.Threading.CancellationToken struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_StaticFields { public: // System.Action`1 System.Threading.CancellationToken::s_ActionToActionObjShunt Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___s_ActionToActionObjShunt_1; public: inline static int32_t get_offset_of_s_ActionToActionObjShunt_1() { return static_cast(offsetof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_StaticFields, ___s_ActionToActionObjShunt_1)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get_s_ActionToActionObjShunt_1() const { return ___s_ActionToActionObjShunt_1; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of_s_ActionToActionObjShunt_1() { return &___s_ActionToActionObjShunt_1; } inline void set_s_ActionToActionObjShunt_1(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ___s_ActionToActionObjShunt_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_ActionToActionObjShunt_1), (void*)value); } }; // System.Threading.CancellationToken // System.Char struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value); } }; // System.Char // System.DateTime struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields { public: // System.Int32[] System.DateTime::DaysToMonth365 Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth365_29; // System.Int32[] System.DateTime::DaysToMonth366 Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth366_30; // System.DateTime System.DateTime::MinValue DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MinValue_31; // System.DateTime System.DateTime::MaxValue DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MaxValue_32; public: inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth365_29)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; } inline void set_DaysToMonth365_29(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___DaysToMonth365_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value); } inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth366_30)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; } inline void set_DaysToMonth366_30(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___DaysToMonth366_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value); } inline static int32_t get_offset_of_MinValue_31() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MinValue_31)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MinValue_31() const { return ___MinValue_31; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MinValue_31() { return &___MinValue_31; } inline void set_MinValue_31(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___MinValue_31 = value; } inline static int32_t get_offset_of_MaxValue_32() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MaxValue_32)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MaxValue_32() const { return ___MaxValue_32; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MaxValue_32() { return &___MaxValue_32; } inline void set_MaxValue_32(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___MaxValue_32 = value; } }; // System.DateTime // System.Decimal struct Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields { public: // System.UInt32[] System.Decimal::Powers10 UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___Powers10_6; // System.Decimal System.Decimal::Zero Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___Zero_7; // System.Decimal System.Decimal::One Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___One_8; // System.Decimal System.Decimal::MinusOne Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MinusOne_9; // System.Decimal System.Decimal::MaxValue Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MaxValue_10; // System.Decimal System.Decimal::MinValue Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MinValue_11; // System.Decimal System.Decimal::NearNegativeZero Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___NearNegativeZero_12; // System.Decimal System.Decimal::NearPositiveZero Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___NearPositiveZero_13; public: inline static int32_t get_offset_of_Powers10_6() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___Powers10_6)); } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_Powers10_6() const { return ___Powers10_6; } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_Powers10_6() { return &___Powers10_6; } inline void set_Powers10_6(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value) { ___Powers10_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value); } inline static int32_t get_offset_of_Zero_7() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___Zero_7)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_Zero_7() const { return ___Zero_7; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___Zero_7 = value; } inline static int32_t get_offset_of_One_8() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___One_8)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_One_8() const { return ___One_8; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_One_8() { return &___One_8; } inline void set_One_8(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___One_8 = value; } inline static int32_t get_offset_of_MinusOne_9() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MinusOne_9)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MinusOne_9() const { return ___MinusOne_9; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MinusOne_9() { return &___MinusOne_9; } inline void set_MinusOne_9(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___MinusOne_9 = value; } inline static int32_t get_offset_of_MaxValue_10() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MaxValue_10)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MaxValue_10() const { return ___MaxValue_10; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MaxValue_10() { return &___MaxValue_10; } inline void set_MaxValue_10(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___MaxValue_10 = value; } inline static int32_t get_offset_of_MinValue_11() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MinValue_11)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MinValue_11() const { return ___MinValue_11; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MinValue_11() { return &___MinValue_11; } inline void set_MinValue_11(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___MinValue_11 = value; } inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___NearNegativeZero_12)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; } inline void set_NearNegativeZero_12(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___NearNegativeZero_12 = value; } inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___NearPositiveZero_13)); } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; } inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; } inline void set_NearPositiveZero_13(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value) { ___NearPositiveZero_13 = value; } }; // System.Decimal // System.Double struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; // System.Double // System.Enum 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(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); } }; // System.Enum // System.Reflection.FieldInfo // System.Reflection.FieldInfo // System.Int16 // System.Int16 // System.Int32 // System.Int32 // System.Int64 // System.Int64 // System.IntPtr 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(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.IntPtr // System.Xml.Schema.InteriorNode // System.Xml.Schema.InteriorNode // System.Xml.LineInfo // System.Xml.LineInfo // System.Xml.Serialization.ListMap // System.Xml.Serialization.ListMap // System.Reflection.MethodBase // System.Reflection.MethodBase // System.Reflection.ParameterModifier // System.Reflection.ParameterModifier // System.Reflection.PropertyInfo // System.Reflection.PropertyInfo // System.SByte // System.SByte // System.Single // System.Single // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields { public: // System.IO.Stream System.IO.Stream::Null Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___Null_1; public: inline static int32_t get_offset_of_Null_1() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields, ___Null_1)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_Null_1() const { return ___Null_1; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_Null_1() { return &___Null_1; } inline void set_Null_1(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___Null_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value); } }; // System.IO.Stream // System.IO.TextReader struct TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields { public: // System.Func`2 System.IO.TextReader::_ReadLineDelegate Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * ____ReadLineDelegate_1; // System.Func`2 System.IO.TextReader::_ReadDelegate Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * ____ReadDelegate_2; // System.IO.TextReader System.IO.TextReader::Null TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___Null_3; public: inline static int32_t get_offset_of__ReadLineDelegate_1() { return static_cast(offsetof(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields, ____ReadLineDelegate_1)); } inline Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * get__ReadLineDelegate_1() const { return ____ReadLineDelegate_1; } inline Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 ** get_address_of__ReadLineDelegate_1() { return &____ReadLineDelegate_1; } inline void set__ReadLineDelegate_1(Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * value) { ____ReadLineDelegate_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____ReadLineDelegate_1), (void*)value); } inline static int32_t get_offset_of__ReadDelegate_2() { return static_cast(offsetof(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields, ____ReadDelegate_2)); } inline Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * get__ReadDelegate_2() const { return ____ReadDelegate_2; } inline Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C ** get_address_of__ReadDelegate_2() { return &____ReadDelegate_2; } inline void set__ReadDelegate_2(Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * value) { ____ReadDelegate_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____ReadDelegate_2), (void*)value); } inline static int32_t get_offset_of_Null_3() { return static_cast(offsetof(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields, ___Null_3)); } inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * get_Null_3() const { return ___Null_3; } inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F ** get_address_of_Null_3() { return &___Null_3; } inline void set_Null_3(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * value) { ___Null_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_3), (void*)value); } }; // System.IO.TextReader // System.IO.TextWriter struct TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields { public: // System.IO.TextWriter System.IO.TextWriter::Null TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * ___Null_1; // System.Action`1 System.IO.TextWriter::_WriteCharDelegate Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteCharDelegate_2; // System.Action`1 System.IO.TextWriter::_WriteStringDelegate Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteStringDelegate_3; // System.Action`1 System.IO.TextWriter::_WriteCharArrayRangeDelegate Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteCharArrayRangeDelegate_4; // System.Action`1 System.IO.TextWriter::_WriteLineCharDelegate Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteLineCharDelegate_5; // System.Action`1 System.IO.TextWriter::_WriteLineStringDelegate Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteLineStringDelegate_6; // System.Action`1 System.IO.TextWriter::_WriteLineCharArrayRangeDelegate Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteLineCharArrayRangeDelegate_7; // System.Action`1 System.IO.TextWriter::_FlushDelegate Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____FlushDelegate_8; public: inline static int32_t get_offset_of_Null_1() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ___Null_1)); } inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * get_Null_1() const { return ___Null_1; } inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 ** get_address_of_Null_1() { return &___Null_1; } inline void set_Null_1(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * value) { ___Null_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value); } inline static int32_t get_offset_of__WriteCharDelegate_2() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteCharDelegate_2)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteCharDelegate_2() const { return ____WriteCharDelegate_2; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteCharDelegate_2() { return &____WriteCharDelegate_2; } inline void set__WriteCharDelegate_2(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ____WriteCharDelegate_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____WriteCharDelegate_2), (void*)value); } inline static int32_t get_offset_of__WriteStringDelegate_3() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteStringDelegate_3)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteStringDelegate_3() const { return ____WriteStringDelegate_3; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteStringDelegate_3() { return &____WriteStringDelegate_3; } inline void set__WriteStringDelegate_3(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ____WriteStringDelegate_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____WriteStringDelegate_3), (void*)value); } inline static int32_t get_offset_of__WriteCharArrayRangeDelegate_4() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteCharArrayRangeDelegate_4)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteCharArrayRangeDelegate_4() const { return ____WriteCharArrayRangeDelegate_4; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteCharArrayRangeDelegate_4() { return &____WriteCharArrayRangeDelegate_4; } inline void set__WriteCharArrayRangeDelegate_4(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ____WriteCharArrayRangeDelegate_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____WriteCharArrayRangeDelegate_4), (void*)value); } inline static int32_t get_offset_of__WriteLineCharDelegate_5() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteLineCharDelegate_5)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteLineCharDelegate_5() const { return ____WriteLineCharDelegate_5; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteLineCharDelegate_5() { return &____WriteLineCharDelegate_5; } inline void set__WriteLineCharDelegate_5(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ____WriteLineCharDelegate_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____WriteLineCharDelegate_5), (void*)value); } inline static int32_t get_offset_of__WriteLineStringDelegate_6() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteLineStringDelegate_6)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteLineStringDelegate_6() const { return ____WriteLineStringDelegate_6; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteLineStringDelegate_6() { return &____WriteLineStringDelegate_6; } inline void set__WriteLineStringDelegate_6(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ____WriteLineStringDelegate_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____WriteLineStringDelegate_6), (void*)value); } inline static int32_t get_offset_of__WriteLineCharArrayRangeDelegate_7() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteLineCharArrayRangeDelegate_7)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteLineCharArrayRangeDelegate_7() const { return ____WriteLineCharArrayRangeDelegate_7; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteLineCharArrayRangeDelegate_7() { return &____WriteLineCharArrayRangeDelegate_7; } inline void set__WriteLineCharArrayRangeDelegate_7(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ____WriteLineCharArrayRangeDelegate_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____WriteLineCharArrayRangeDelegate_7), (void*)value); } inline static int32_t get_offset_of__FlushDelegate_8() { return static_cast(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____FlushDelegate_8)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__FlushDelegate_8() const { return ____FlushDelegate_8; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__FlushDelegate_8() { return &____FlushDelegate_8; } inline void set__FlushDelegate_8(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ____FlushDelegate_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____FlushDelegate_8), (void*)value); } }; // System.IO.TextWriter // System.UInt16 // System.UInt16 // System.UInt32 // System.UInt32 // System.UInt64 // System.UInt64 // System.Void // System.Void // System.Net.WebResponse // System.Net.WebResponse // System.Xml.XmlAttribute // System.Xml.XmlAttribute // System.Xml.XmlCharType struct XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA_StaticFields { public: // System.Object System.Xml.XmlCharType::s_Lock RuntimeObject * ___s_Lock_0; // System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.XmlCharType::s_CharProperties ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___s_CharProperties_1; public: inline static int32_t get_offset_of_s_Lock_0() { return static_cast(offsetof(XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA_StaticFields, ___s_Lock_0)); } inline RuntimeObject * get_s_Lock_0() const { return ___s_Lock_0; } inline RuntimeObject ** get_address_of_s_Lock_0() { return &___s_Lock_0; } inline void set_s_Lock_0(RuntimeObject * value) { ___s_Lock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Lock_0), (void*)value); } inline static int32_t get_offset_of_s_CharProperties_1() { return static_cast(offsetof(XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA_StaticFields, ___s_CharProperties_1)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_s_CharProperties_1() const { return ___s_CharProperties_1; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_s_CharProperties_1() { return &___s_CharProperties_1; } inline void set_s_CharProperties_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___s_CharProperties_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_CharProperties_1), (void*)value); } }; // System.Xml.XmlCharType // System.Xml.XmlDocument struct XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F_StaticFields { public: // System.Xml.EmptyEnumerator System.Xml.XmlDocument::EmptyEnumerator EmptyEnumerator_t138901A02D453E19CDE87DFD96981F8A98928E13 * ___EmptyEnumerator_41; // System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::NotKnownSchemaInfo RuntimeObject* ___NotKnownSchemaInfo_42; // System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::ValidSchemaInfo RuntimeObject* ___ValidSchemaInfo_43; // System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::InvalidSchemaInfo RuntimeObject* ___InvalidSchemaInfo_44; public: inline static int32_t get_offset_of_EmptyEnumerator_41() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F_StaticFields, ___EmptyEnumerator_41)); } inline EmptyEnumerator_t138901A02D453E19CDE87DFD96981F8A98928E13 * get_EmptyEnumerator_41() const { return ___EmptyEnumerator_41; } inline EmptyEnumerator_t138901A02D453E19CDE87DFD96981F8A98928E13 ** get_address_of_EmptyEnumerator_41() { return &___EmptyEnumerator_41; } inline void set_EmptyEnumerator_41(EmptyEnumerator_t138901A02D453E19CDE87DFD96981F8A98928E13 * value) { ___EmptyEnumerator_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyEnumerator_41), (void*)value); } inline static int32_t get_offset_of_NotKnownSchemaInfo_42() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F_StaticFields, ___NotKnownSchemaInfo_42)); } inline RuntimeObject* get_NotKnownSchemaInfo_42() const { return ___NotKnownSchemaInfo_42; } inline RuntimeObject** get_address_of_NotKnownSchemaInfo_42() { return &___NotKnownSchemaInfo_42; } inline void set_NotKnownSchemaInfo_42(RuntimeObject* value) { ___NotKnownSchemaInfo_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___NotKnownSchemaInfo_42), (void*)value); } inline static int32_t get_offset_of_ValidSchemaInfo_43() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F_StaticFields, ___ValidSchemaInfo_43)); } inline RuntimeObject* get_ValidSchemaInfo_43() const { return ___ValidSchemaInfo_43; } inline RuntimeObject** get_address_of_ValidSchemaInfo_43() { return &___ValidSchemaInfo_43; } inline void set_ValidSchemaInfo_43(RuntimeObject* value) { ___ValidSchemaInfo_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___ValidSchemaInfo_43), (void*)value); } inline static int32_t get_offset_of_InvalidSchemaInfo_44() { return static_cast(offsetof(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F_StaticFields, ___InvalidSchemaInfo_44)); } inline RuntimeObject* get_InvalidSchemaInfo_44() const { return ___InvalidSchemaInfo_44; } inline RuntimeObject** get_address_of_InvalidSchemaInfo_44() { return &___InvalidSchemaInfo_44; } inline void set_InvalidSchemaInfo_44(RuntimeObject* value) { ___InvalidSchemaInfo_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___InvalidSchemaInfo_44), (void*)value); } }; // System.Xml.XmlDocument // System.Xml.XmlLinkedNode // System.Xml.XmlLinkedNode // System.Xml.Schema.XmlSchemaAnnotated // System.Xml.Schema.XmlSchemaAnnotated // System.Xml.Serialization.XmlSerializationReader // System.Xml.Serialization.XmlSerializationReader // System.Xml.Serialization.XmlSerializationWriter // System.Xml.Serialization.XmlSerializationWriter // System.Xml.XmlTextWriterBase64Encoder // System.Xml.XmlTextWriterBase64Encoder // System.Xml.Serialization.XmlTypeAttribute // System.Xml.Serialization.XmlTypeAttribute // System.Xml.Serialization.XmlTypeConvertorAttribute // System.Xml.Serialization.XmlTypeConvertorAttribute // System.Xml.Serialization.XmlTypeMapElementInfoList // System.Xml.Serialization.XmlTypeMapElementInfoList // System.Xml.Serialization.XmlTypeMapMemberAnyAttribute // System.Xml.Serialization.XmlTypeMapMemberAnyAttribute // System.Xml.Serialization.XmlTypeMapMemberElement // System.Xml.Serialization.XmlTypeMapMemberElement // System.Xml.Serialization.XmlTypeMapMemberNamespaces // System.Xml.Serialization.XmlTypeMapMemberNamespaces // System.Xml.XmlUrlResolver struct XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1_StaticFields { public: // System.Object System.Xml.XmlUrlResolver::s_DownloadManager RuntimeObject * ___s_DownloadManager_0; public: inline static int32_t get_offset_of_s_DownloadManager_0() { return static_cast(offsetof(XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1_StaticFields, ___s_DownloadManager_0)); } inline RuntimeObject * get_s_DownloadManager_0() const { return ___s_DownloadManager_0; } inline RuntimeObject ** get_address_of_s_DownloadManager_0() { return &___s_DownloadManager_0; } inline void set_s_DownloadManager_0(RuntimeObject * value) { ___s_DownloadManager_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DownloadManager_0), (void*)value); } }; // System.Xml.XmlUrlResolver // System.Xml.Schema.XsdDuration // System.Xml.Schema.XsdDuration // /__StaticArrayInitTypeSize=20 // /__StaticArrayInitTypeSize=20 // /__StaticArrayInitTypeSize=28 // /__StaticArrayInitTypeSize=28 // /__StaticArrayInitTypeSize=32 // /__StaticArrayInitTypeSize=32 // /__StaticArrayInitTypeSize=40 // /__StaticArrayInitTypeSize=40 // /__StaticArrayInitTypeSize=416 // /__StaticArrayInitTypeSize=416 // /__StaticArrayInitTypeSize=6 // /__StaticArrayInitTypeSize=6 // /__StaticArrayInitTypeSize=64 // /__StaticArrayInitTypeSize=64 // System.Xml.Schema.DtdValidator/NamespaceManager // System.Xml.Schema.DtdValidator/NamespaceManager // System.Xml.Schema.SequenceNode/SequenceConstructPosContext // System.Xml.Schema.SequenceNode/SequenceConstructPosContext // System.Xml.XmlNamedNodeMap/SmallXmlNodeList // System.Xml.XmlNamedNodeMap/SmallXmlNodeList // System.Xml.XmlNamespaceManager/NamespaceDeclaration // System.Xml.XmlNamespaceManager/NamespaceDeclaration // System.Xml.XmlTextReaderImpl/NoNamespaceManager // System.Xml.XmlTextReaderImpl/NoNamespaceManager // System.Xml.XmlTextReaderImpl/ParsingState // System.Xml.XmlTextReaderImpl/ParsingState // System.Xml.XmlTextWriter/Namespace // System.Xml.XmlTextWriter/Namespace // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 struct AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020_StaticFields { public: // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * ___s_defaultResultTask_0; public: inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020_StaticFields, ___s_defaultResultTask_0)); } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; } inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; } inline void set_s_defaultResultTask_0(Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * value) { ___s_defaultResultTask_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_defaultResultTask_0), (void*)value); } }; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 struct AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F_StaticFields { public: // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 * ___s_defaultResultTask_0; public: inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast(offsetof(AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F_StaticFields, ___s_defaultResultTask_0)); } inline Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; } inline Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; } inline void set_s_defaultResultTask_0(Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 * value) { ___s_defaultResultTask_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_defaultResultTask_0), (void*)value); } }; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1 // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1 // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1 // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1 // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1 // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1 // struct U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields { public: // /__StaticArrayInitTypeSize=6 ::5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98 __StaticArrayInitTypeSizeU3D6_tDF2537259373F423B466710F7B6BCCCCB9F570AB ___5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0; // /__StaticArrayInitTypeSize=416 ::6A0D50D692745A6663128CD315B71079584F3E59 __StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 ___6A0D50D692745A6663128CD315B71079584F3E59_1; // /__StaticArrayInitTypeSize=32 ::7A32E1A19C182315E4263A65A72066492550D8CD __StaticArrayInitTypeSizeU3D32_t32451FC0FFB07E790AB1831670F4480B70832CF2 ___7A32E1A19C182315E4263A65A72066492550D8CD_2; // /__StaticArrayInitTypeSize=28 ::9E31F24F64765FCAA589F589324D17C9FCF6A06D __StaticArrayInitTypeSizeU3D28_t3F2DFB0DEB57463B3BDB1DF1D66831340706BC7E ___9E31F24F64765FCAA589F589324D17C9FCF6A06D_3; // /__StaticArrayInitTypeSize=416 ::B368804F0C6DAB083B253A6B106D0783D5C32E90 __StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 ___B368804F0C6DAB083B253A6B106D0783D5C32E90_4; // /__StaticArrayInitTypeSize=40 ::B9F0004E3873FDDCABFDA6174EA18F0859B637B4 __StaticArrayInitTypeSizeU3D40_t3257F2DBB1018E8BB659AC40CD3038ED1EA19B48 ___B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5; // /__StaticArrayInitTypeSize=20 ::BAD037B714E1CD1052149B51238A3D4351DD10B5 __StaticArrayInitTypeSizeU3D20_tAFFC768CAAB023FF7786175A0F64F7EAE4B35A87 ___BAD037B714E1CD1052149B51238A3D4351DD10B5_6; // System.Int64 ::EBC658B067B5C785A3F0BB67D73755F6FEE7F70C int64_t ___EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7; // /__StaticArrayInitTypeSize=64 ::EE3413A2C088FF9432054D6E60A7CB6A498D25F0 __StaticArrayInitTypeSizeU3D64_t5A1623F8A98BA91292FD3395CC69302605E97DFD ___EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8; public: inline static int32_t get_offset_of_U35D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0)); } inline __StaticArrayInitTypeSizeU3D6_tDF2537259373F423B466710F7B6BCCCCB9F570AB get_U35D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0() const { return ___5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0; } inline __StaticArrayInitTypeSizeU3D6_tDF2537259373F423B466710F7B6BCCCCB9F570AB * get_address_of_U35D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0() { return &___5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0; } inline void set_U35D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0(__StaticArrayInitTypeSizeU3D6_tDF2537259373F423B466710F7B6BCCCCB9F570AB value) { ___5D100A87B697F3AE2015A5D3B2A7B5419E1BCA98_0 = value; } inline static int32_t get_offset_of_U36A0D50D692745A6663128CD315B71079584F3E59_1() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___6A0D50D692745A6663128CD315B71079584F3E59_1)); } inline __StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 get_U36A0D50D692745A6663128CD315B71079584F3E59_1() const { return ___6A0D50D692745A6663128CD315B71079584F3E59_1; } inline __StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 * get_address_of_U36A0D50D692745A6663128CD315B71079584F3E59_1() { return &___6A0D50D692745A6663128CD315B71079584F3E59_1; } inline void set_U36A0D50D692745A6663128CD315B71079584F3E59_1(__StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 value) { ___6A0D50D692745A6663128CD315B71079584F3E59_1 = value; } inline static int32_t get_offset_of_U37A32E1A19C182315E4263A65A72066492550D8CD_2() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___7A32E1A19C182315E4263A65A72066492550D8CD_2)); } inline __StaticArrayInitTypeSizeU3D32_t32451FC0FFB07E790AB1831670F4480B70832CF2 get_U37A32E1A19C182315E4263A65A72066492550D8CD_2() const { return ___7A32E1A19C182315E4263A65A72066492550D8CD_2; } inline __StaticArrayInitTypeSizeU3D32_t32451FC0FFB07E790AB1831670F4480B70832CF2 * get_address_of_U37A32E1A19C182315E4263A65A72066492550D8CD_2() { return &___7A32E1A19C182315E4263A65A72066492550D8CD_2; } inline void set_U37A32E1A19C182315E4263A65A72066492550D8CD_2(__StaticArrayInitTypeSizeU3D32_t32451FC0FFB07E790AB1831670F4480B70832CF2 value) { ___7A32E1A19C182315E4263A65A72066492550D8CD_2 = value; } inline static int32_t get_offset_of_U39E31F24F64765FCAA589F589324D17C9FCF6A06D_3() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___9E31F24F64765FCAA589F589324D17C9FCF6A06D_3)); } inline __StaticArrayInitTypeSizeU3D28_t3F2DFB0DEB57463B3BDB1DF1D66831340706BC7E get_U39E31F24F64765FCAA589F589324D17C9FCF6A06D_3() const { return ___9E31F24F64765FCAA589F589324D17C9FCF6A06D_3; } inline __StaticArrayInitTypeSizeU3D28_t3F2DFB0DEB57463B3BDB1DF1D66831340706BC7E * get_address_of_U39E31F24F64765FCAA589F589324D17C9FCF6A06D_3() { return &___9E31F24F64765FCAA589F589324D17C9FCF6A06D_3; } inline void set_U39E31F24F64765FCAA589F589324D17C9FCF6A06D_3(__StaticArrayInitTypeSizeU3D28_t3F2DFB0DEB57463B3BDB1DF1D66831340706BC7E value) { ___9E31F24F64765FCAA589F589324D17C9FCF6A06D_3 = value; } inline static int32_t get_offset_of_B368804F0C6DAB083B253A6B106D0783D5C32E90_4() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___B368804F0C6DAB083B253A6B106D0783D5C32E90_4)); } inline __StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 get_B368804F0C6DAB083B253A6B106D0783D5C32E90_4() const { return ___B368804F0C6DAB083B253A6B106D0783D5C32E90_4; } inline __StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 * get_address_of_B368804F0C6DAB083B253A6B106D0783D5C32E90_4() { return &___B368804F0C6DAB083B253A6B106D0783D5C32E90_4; } inline void set_B368804F0C6DAB083B253A6B106D0783D5C32E90_4(__StaticArrayInitTypeSizeU3D416_tEA2021331600112E61D2C04468109C687F093BF4 value) { ___B368804F0C6DAB083B253A6B106D0783D5C32E90_4 = value; } inline static int32_t get_offset_of_B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5)); } inline __StaticArrayInitTypeSizeU3D40_t3257F2DBB1018E8BB659AC40CD3038ED1EA19B48 get_B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5() const { return ___B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5; } inline __StaticArrayInitTypeSizeU3D40_t3257F2DBB1018E8BB659AC40CD3038ED1EA19B48 * get_address_of_B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5() { return &___B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5; } inline void set_B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5(__StaticArrayInitTypeSizeU3D40_t3257F2DBB1018E8BB659AC40CD3038ED1EA19B48 value) { ___B9F0004E3873FDDCABFDA6174EA18F0859B637B4_5 = value; } inline static int32_t get_offset_of_BAD037B714E1CD1052149B51238A3D4351DD10B5_6() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___BAD037B714E1CD1052149B51238A3D4351DD10B5_6)); } inline __StaticArrayInitTypeSizeU3D20_tAFFC768CAAB023FF7786175A0F64F7EAE4B35A87 get_BAD037B714E1CD1052149B51238A3D4351DD10B5_6() const { return ___BAD037B714E1CD1052149B51238A3D4351DD10B5_6; } inline __StaticArrayInitTypeSizeU3D20_tAFFC768CAAB023FF7786175A0F64F7EAE4B35A87 * get_address_of_BAD037B714E1CD1052149B51238A3D4351DD10B5_6() { return &___BAD037B714E1CD1052149B51238A3D4351DD10B5_6; } inline void set_BAD037B714E1CD1052149B51238A3D4351DD10B5_6(__StaticArrayInitTypeSizeU3D20_tAFFC768CAAB023FF7786175A0F64F7EAE4B35A87 value) { ___BAD037B714E1CD1052149B51238A3D4351DD10B5_6 = value; } inline static int32_t get_offset_of_EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7)); } inline int64_t get_EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7() const { return ___EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7; } inline int64_t* get_address_of_EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7() { return &___EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7; } inline void set_EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7(int64_t value) { ___EBC658B067B5C785A3F0BB67D73755F6FEE7F70C_7 = value; } inline static int32_t get_offset_of_EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E_StaticFields, ___EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8)); } inline __StaticArrayInitTypeSizeU3D64_t5A1623F8A98BA91292FD3395CC69302605E97DFD get_EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8() const { return ___EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8; } inline __StaticArrayInitTypeSizeU3D64_t5A1623F8A98BA91292FD3395CC69302605E97DFD * get_address_of_EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8() { return &___EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8; } inline void set_EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8(__StaticArrayInitTypeSizeU3D64_t5A1623F8A98BA91292FD3395CC69302605E97DFD value) { ___EE3413A2C088FF9432054D6E60A7CB6A498D25F0_8 = value; } }; // // System.Net.Security.AuthenticationLevel // System.Net.Security.AuthenticationLevel // System.Reflection.BindingFlags // System.Reflection.BindingFlags // System.Xml.Serialization.ClassMap // System.Xml.Serialization.ClassMap // System.DateTimeKind // System.DateTimeKind // System.DateTimeOffset struct DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_StaticFields { public: // System.DateTimeOffset System.DateTimeOffset::MinValue DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___MinValue_0; // System.DateTimeOffset System.DateTimeOffset::MaxValue DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___MaxValue_1; public: inline static int32_t get_offset_of_MinValue_0() { return static_cast(offsetof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_StaticFields, ___MinValue_0)); } inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 get_MinValue_0() const { return ___MinValue_0; } inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * get_address_of_MinValue_0() { return &___MinValue_0; } inline void set_MinValue_0(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 value) { ___MinValue_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast(offsetof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_StaticFields, ___MaxValue_1)); } inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 get_MaxValue_1() const { return ___MaxValue_1; } inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 value) { ___MaxValue_1 = value; } }; // System.DateTimeOffset // System.Net.DecompressionMethods // System.Net.DecompressionMethods // System.Delegate // System.Delegate // System.Xml.DtdProcessing // System.Xml.DtdProcessing // System.Xml.EntityHandling // System.Xml.EntityHandling // System.Exception struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // System.Exception // System.IO.FileAccess // System.IO.FileAccess // System.IO.FileMode // System.IO.FileMode // System.IO.FileShare // System.IO.FileShare // System.Xml.Formatting // System.Xml.Formatting // System.Collections.Hashtable // System.Collections.Hashtable // System.IO.MemoryStream // System.IO.MemoryStream // System.Reflection.MethodInfo // System.Reflection.MethodInfo // System.Xml.ReadState // System.Xml.ReadState // System.Net.Cache.RequestCacheLevel // System.Net.Cache.RequestCacheLevel // System.RuntimeFieldHandle // System.RuntimeFieldHandle // System.RuntimeTypeHandle // System.RuntimeTypeHandle // System.Xml.Serialization.SchemaTypes // System.Xml.Serialization.SchemaTypes // System.Xml.Schema.SequenceNode // System.Xml.Schema.SequenceNode // System.Xml.Serialization.SerializationFormat // System.Xml.Serialization.SerializationFormat // System.Net.ServicePoint // System.Net.ServicePoint // System.IO.StreamWriter struct StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6_StaticFields { public: // System.IO.StreamWriter System.IO.StreamWriter::Null StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 * ___Null_11; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamWriter::_UTF8NoBOM Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ____UTF8NoBOM_23; public: inline static int32_t get_offset_of_Null_11() { return static_cast(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6_StaticFields, ___Null_11)); } inline StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 * get_Null_11() const { return ___Null_11; } inline StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 ** get_address_of_Null_11() { return &___Null_11; } inline void set_Null_11(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 * value) { ___Null_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_11), (void*)value); } inline static int32_t get_offset_of__UTF8NoBOM_23() { return static_cast(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6_StaticFields, ____UTF8NoBOM_23)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get__UTF8NoBOM_23() const { return ____UTF8NoBOM_23; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of__UTF8NoBOM_23() { return &____UTF8NoBOM_23; } inline void set__UTF8NoBOM_23(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ____UTF8NoBOM_23 = value; Il2CppCodeGenWriteBarrier((void**)(&____UTF8NoBOM_23), (void*)value); } }; // System.IO.StreamWriter // System.StringComparison // System.StringComparison // System.Threading.Tasks.Task struct Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields { public: // System.Int32 System.Threading.Tasks.Task::s_taskIdCounter int32_t ___s_taskIdCounter_2; // System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task::s_factory TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B * ___s_factory_3; // System.Object System.Threading.Tasks.Task::s_taskCompletionSentinel RuntimeObject * ___s_taskCompletionSentinel_29; // System.Boolean System.Threading.Tasks.Task::s_asyncDebuggingEnabled bool ___s_asyncDebuggingEnabled_30; // System.Collections.Generic.Dictionary`2 System.Threading.Tasks.Task::s_currentActiveTasks Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8 * ___s_currentActiveTasks_31; // System.Object System.Threading.Tasks.Task::s_activeTasksLock RuntimeObject * ___s_activeTasksLock_32; // System.Action`1 System.Threading.Tasks.Task::s_taskCancelCallback Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___s_taskCancelCallback_34; // System.Func`1 System.Threading.Tasks.Task::s_createContingentProperties Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B * ___s_createContingentProperties_35; // System.Threading.Tasks.Task System.Threading.Tasks.Task::s_completedTask Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___s_completedTask_36; // System.Predicate`1 System.Threading.Tasks.Task::s_IsExceptionObservedByParentPredicate Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD * ___s_IsExceptionObservedByParentPredicate_37; // System.Threading.ContextCallback System.Threading.Tasks.Task::s_ecCallback ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * ___s_ecCallback_38; // System.Predicate`1 System.Threading.Tasks.Task::s_IsTaskContinuationNullPredicate Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * ___s_IsTaskContinuationNullPredicate_39; public: inline static int32_t get_offset_of_s_taskIdCounter_2() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_taskIdCounter_2)); } inline int32_t get_s_taskIdCounter_2() const { return ___s_taskIdCounter_2; } inline int32_t* get_address_of_s_taskIdCounter_2() { return &___s_taskIdCounter_2; } inline void set_s_taskIdCounter_2(int32_t value) { ___s_taskIdCounter_2 = value; } inline static int32_t get_offset_of_s_factory_3() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_factory_3)); } inline TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B * get_s_factory_3() const { return ___s_factory_3; } inline TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B ** get_address_of_s_factory_3() { return &___s_factory_3; } inline void set_s_factory_3(TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B * value) { ___s_factory_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_factory_3), (void*)value); } inline static int32_t get_offset_of_s_taskCompletionSentinel_29() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_taskCompletionSentinel_29)); } inline RuntimeObject * get_s_taskCompletionSentinel_29() const { return ___s_taskCompletionSentinel_29; } inline RuntimeObject ** get_address_of_s_taskCompletionSentinel_29() { return &___s_taskCompletionSentinel_29; } inline void set_s_taskCompletionSentinel_29(RuntimeObject * value) { ___s_taskCompletionSentinel_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_taskCompletionSentinel_29), (void*)value); } inline static int32_t get_offset_of_s_asyncDebuggingEnabled_30() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_asyncDebuggingEnabled_30)); } inline bool get_s_asyncDebuggingEnabled_30() const { return ___s_asyncDebuggingEnabled_30; } inline bool* get_address_of_s_asyncDebuggingEnabled_30() { return &___s_asyncDebuggingEnabled_30; } inline void set_s_asyncDebuggingEnabled_30(bool value) { ___s_asyncDebuggingEnabled_30 = value; } inline static int32_t get_offset_of_s_currentActiveTasks_31() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_currentActiveTasks_31)); } inline Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8 * get_s_currentActiveTasks_31() const { return ___s_currentActiveTasks_31; } inline Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8 ** get_address_of_s_currentActiveTasks_31() { return &___s_currentActiveTasks_31; } inline void set_s_currentActiveTasks_31(Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8 * value) { ___s_currentActiveTasks_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_currentActiveTasks_31), (void*)value); } inline static int32_t get_offset_of_s_activeTasksLock_32() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_activeTasksLock_32)); } inline RuntimeObject * get_s_activeTasksLock_32() const { return ___s_activeTasksLock_32; } inline RuntimeObject ** get_address_of_s_activeTasksLock_32() { return &___s_activeTasksLock_32; } inline void set_s_activeTasksLock_32(RuntimeObject * value) { ___s_activeTasksLock_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_activeTasksLock_32), (void*)value); } inline static int32_t get_offset_of_s_taskCancelCallback_34() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_taskCancelCallback_34)); } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get_s_taskCancelCallback_34() const { return ___s_taskCancelCallback_34; } inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of_s_taskCancelCallback_34() { return &___s_taskCancelCallback_34; } inline void set_s_taskCancelCallback_34(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value) { ___s_taskCancelCallback_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_taskCancelCallback_34), (void*)value); } inline static int32_t get_offset_of_s_createContingentProperties_35() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_createContingentProperties_35)); } inline Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B * get_s_createContingentProperties_35() const { return ___s_createContingentProperties_35; } inline Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B ** get_address_of_s_createContingentProperties_35() { return &___s_createContingentProperties_35; } inline void set_s_createContingentProperties_35(Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B * value) { ___s_createContingentProperties_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_createContingentProperties_35), (void*)value); } inline static int32_t get_offset_of_s_completedTask_36() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_completedTask_36)); } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_s_completedTask_36() const { return ___s_completedTask_36; } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_s_completedTask_36() { return &___s_completedTask_36; } inline void set_s_completedTask_36(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value) { ___s_completedTask_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_completedTask_36), (void*)value); } inline static int32_t get_offset_of_s_IsExceptionObservedByParentPredicate_37() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_IsExceptionObservedByParentPredicate_37)); } inline Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD * get_s_IsExceptionObservedByParentPredicate_37() const { return ___s_IsExceptionObservedByParentPredicate_37; } inline Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD ** get_address_of_s_IsExceptionObservedByParentPredicate_37() { return &___s_IsExceptionObservedByParentPredicate_37; } inline void set_s_IsExceptionObservedByParentPredicate_37(Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD * value) { ___s_IsExceptionObservedByParentPredicate_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_IsExceptionObservedByParentPredicate_37), (void*)value); } inline static int32_t get_offset_of_s_ecCallback_38() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_ecCallback_38)); } inline ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * get_s_ecCallback_38() const { return ___s_ecCallback_38; } inline ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B ** get_address_of_s_ecCallback_38() { return &___s_ecCallback_38; } inline void set_s_ecCallback_38(ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * value) { ___s_ecCallback_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_ecCallback_38), (void*)value); } inline static int32_t get_offset_of_s_IsTaskContinuationNullPredicate_39() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_IsTaskContinuationNullPredicate_39)); } inline Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * get_s_IsTaskContinuationNullPredicate_39() const { return ___s_IsTaskContinuationNullPredicate_39; } inline Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB ** get_address_of_s_IsTaskContinuationNullPredicate_39() { return &___s_IsTaskContinuationNullPredicate_39; } inline void set_s_IsTaskContinuationNullPredicate_39(Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * value) { ___s_IsTaskContinuationNullPredicate_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_IsTaskContinuationNullPredicate_39), (void*)value); } }; // System.Threading.Tasks.Task struct Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_ThreadStaticFields { public: // System.Threading.Tasks.Task System.Threading.Tasks.Task::t_currentTask Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___t_currentTask_0; // System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::t_stackGuard StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * ___t_stackGuard_1; public: inline static int32_t get_offset_of_t_currentTask_0() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_ThreadStaticFields, ___t_currentTask_0)); } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_t_currentTask_0() const { return ___t_currentTask_0; } inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_t_currentTask_0() { return &___t_currentTask_0; } inline void set_t_currentTask_0(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value) { ___t_currentTask_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___t_currentTask_0), (void*)value); } inline static int32_t get_offset_of_t_stackGuard_1() { return static_cast(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_ThreadStaticFields, ___t_stackGuard_1)); } inline StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * get_t_stackGuard_1() const { return ___t_stackGuard_1; } inline StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D ** get_address_of_t_stackGuard_1() { return &___t_stackGuard_1; } inline void set_t_stackGuard_1(StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * value) { ___t_stackGuard_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___t_stackGuard_1), (void*)value); } }; // System.Threading.Tasks.TaskContinuationOptions // System.Threading.Tasks.TaskContinuationOptions // System.Threading.Tasks.TaskCreationOptions // System.Threading.Tasks.TaskCreationOptions // System.TimeSpan struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_0; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_1; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MinValue_2; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_4; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_5; public: inline static int32_t get_offset_of_Zero_0() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_0)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_0() const { return ___Zero_0; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___Zero_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_1)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_1() const { return ___MaxValue_1; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MaxValue_1 = value; } inline static int32_t get_offset_of_MinValue_2() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_2)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_2() const { return ___MinValue_2; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_2() { return &___MinValue_2; } inline void set_MinValue_2(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MinValue_2 = value; } inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyConfigChecked_4)); } inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; } inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; } inline void set__legacyConfigChecked_4(bool value) { ____legacyConfigChecked_4 = value; } inline static int32_t get_offset_of__legacyMode_5() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyMode_5)); } inline bool get__legacyMode_5() const { return ____legacyMode_5; } inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; } inline void set__legacyMode_5(bool value) { ____legacyMode_5 = value; } }; // System.TimeSpan // System.Security.Principal.TokenImpersonationLevel // System.Security.Principal.TokenImpersonationLevel // System.TypeCode // System.TypeCode // System.UriIdnScope // System.UriIdnScope // System.Xml.WhitespaceHandling // System.Xml.WhitespaceHandling // System.Xml.WriteState // System.Xml.WriteState // System.Xml.XmlCharacterData // System.Xml.XmlCharacterData // System.Xml.XmlNodeType // System.Xml.XmlNodeType // System.Xml.XmlRegisteredNonCachedStream // System.Xml.XmlRegisteredNonCachedStream // System.Xml.Schema.XmlSchemaContentType // System.Xml.Schema.XmlSchemaContentType // System.Xml.Schema.XmlSchemaDatatypeVariety // System.Xml.Schema.XmlSchemaDatatypeVariety // System.Xml.Schema.XmlSchemaDerivationMethod // System.Xml.Schema.XmlSchemaDerivationMethod // System.Xml.Schema.XmlSchemaForm // System.Xml.Schema.XmlSchemaForm // System.Xml.XmlSpace // System.Xml.XmlSpace // System.Xml.XmlTextEncoder // System.Xml.XmlTextEncoder // System.Xml.XmlTokenizedType // System.Xml.XmlTokenizedType // System.Xml.Schema.XmlTypeCode // System.Xml.Schema.XmlTypeCode // System.Xml.Serialization.XmlTypeMapMemberExpandable // System.Xml.Serialization.XmlTypeMapMemberExpandable // System.Xml.Serialization.XmlTypeMapMemberList // System.Xml.Serialization.XmlTypeMapMemberList // System.Xml.XmlUnspecifiedAttribute // System.Xml.XmlUnspecifiedAttribute // System.Xml.Schema.XsdDateTime struct XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields { public: // System.Int32 System.Xml.Schema.XsdDateTime::Lzyyyy int32_t ___Lzyyyy_2; // System.Int32 System.Xml.Schema.XsdDateTime::Lzyyyy_ int32_t ___Lzyyyy__3; // System.Int32 System.Xml.Schema.XsdDateTime::Lzyyyy_MM int32_t ___Lzyyyy_MM_4; // System.Int32 System.Xml.Schema.XsdDateTime::Lzyyyy_MM_ int32_t ___Lzyyyy_MM__5; // System.Int32 System.Xml.Schema.XsdDateTime::Lzyyyy_MM_dd int32_t ___Lzyyyy_MM_dd_6; // System.Int32 System.Xml.Schema.XsdDateTime::Lzyyyy_MM_ddT int32_t ___Lzyyyy_MM_ddT_7; // System.Int32 System.Xml.Schema.XsdDateTime::LzHH int32_t ___LzHH_8; // System.Int32 System.Xml.Schema.XsdDateTime::LzHH_ int32_t ___LzHH__9; // System.Int32 System.Xml.Schema.XsdDateTime::LzHH_mm int32_t ___LzHH_mm_10; // System.Int32 System.Xml.Schema.XsdDateTime::LzHH_mm_ int32_t ___LzHH_mm__11; // System.Int32 System.Xml.Schema.XsdDateTime::LzHH_mm_ss int32_t ___LzHH_mm_ss_12; // System.Int32 System.Xml.Schema.XsdDateTime::Lz_ int32_t ___Lz__13; // System.Int32 System.Xml.Schema.XsdDateTime::Lz_zz int32_t ___Lz_zz_14; // System.Int32 System.Xml.Schema.XsdDateTime::Lz_zz_ int32_t ___Lz_zz__15; // System.Int32 System.Xml.Schema.XsdDateTime::Lz_zz_zz int32_t ___Lz_zz_zz_16; // System.Int32 System.Xml.Schema.XsdDateTime::Lz__ int32_t ___Lz___17; // System.Int32 System.Xml.Schema.XsdDateTime::Lz__mm int32_t ___Lz__mm_18; // System.Int32 System.Xml.Schema.XsdDateTime::Lz__mm_ int32_t ___Lz__mm__19; // System.Int32 System.Xml.Schema.XsdDateTime::Lz__mm__ int32_t ___Lz__mm___20; // System.Int32 System.Xml.Schema.XsdDateTime::Lz__mm_dd int32_t ___Lz__mm_dd_21; // System.Int32 System.Xml.Schema.XsdDateTime::Lz___ int32_t ___Lz____22; // System.Int32 System.Xml.Schema.XsdDateTime::Lz___dd int32_t ___Lz___dd_23; // System.Xml.Schema.XmlTypeCode[] System.Xml.Schema.XsdDateTime::typeCodes XmlTypeCodeU5BU5D_t4B53622F8096A3BE4E235382465B2E0FF7B85D6B* ___typeCodes_24; public: inline static int32_t get_offset_of_Lzyyyy_2() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lzyyyy_2)); } inline int32_t get_Lzyyyy_2() const { return ___Lzyyyy_2; } inline int32_t* get_address_of_Lzyyyy_2() { return &___Lzyyyy_2; } inline void set_Lzyyyy_2(int32_t value) { ___Lzyyyy_2 = value; } inline static int32_t get_offset_of_Lzyyyy__3() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lzyyyy__3)); } inline int32_t get_Lzyyyy__3() const { return ___Lzyyyy__3; } inline int32_t* get_address_of_Lzyyyy__3() { return &___Lzyyyy__3; } inline void set_Lzyyyy__3(int32_t value) { ___Lzyyyy__3 = value; } inline static int32_t get_offset_of_Lzyyyy_MM_4() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lzyyyy_MM_4)); } inline int32_t get_Lzyyyy_MM_4() const { return ___Lzyyyy_MM_4; } inline int32_t* get_address_of_Lzyyyy_MM_4() { return &___Lzyyyy_MM_4; } inline void set_Lzyyyy_MM_4(int32_t value) { ___Lzyyyy_MM_4 = value; } inline static int32_t get_offset_of_Lzyyyy_MM__5() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lzyyyy_MM__5)); } inline int32_t get_Lzyyyy_MM__5() const { return ___Lzyyyy_MM__5; } inline int32_t* get_address_of_Lzyyyy_MM__5() { return &___Lzyyyy_MM__5; } inline void set_Lzyyyy_MM__5(int32_t value) { ___Lzyyyy_MM__5 = value; } inline static int32_t get_offset_of_Lzyyyy_MM_dd_6() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lzyyyy_MM_dd_6)); } inline int32_t get_Lzyyyy_MM_dd_6() const { return ___Lzyyyy_MM_dd_6; } inline int32_t* get_address_of_Lzyyyy_MM_dd_6() { return &___Lzyyyy_MM_dd_6; } inline void set_Lzyyyy_MM_dd_6(int32_t value) { ___Lzyyyy_MM_dd_6 = value; } inline static int32_t get_offset_of_Lzyyyy_MM_ddT_7() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lzyyyy_MM_ddT_7)); } inline int32_t get_Lzyyyy_MM_ddT_7() const { return ___Lzyyyy_MM_ddT_7; } inline int32_t* get_address_of_Lzyyyy_MM_ddT_7() { return &___Lzyyyy_MM_ddT_7; } inline void set_Lzyyyy_MM_ddT_7(int32_t value) { ___Lzyyyy_MM_ddT_7 = value; } inline static int32_t get_offset_of_LzHH_8() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___LzHH_8)); } inline int32_t get_LzHH_8() const { return ___LzHH_8; } inline int32_t* get_address_of_LzHH_8() { return &___LzHH_8; } inline void set_LzHH_8(int32_t value) { ___LzHH_8 = value; } inline static int32_t get_offset_of_LzHH__9() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___LzHH__9)); } inline int32_t get_LzHH__9() const { return ___LzHH__9; } inline int32_t* get_address_of_LzHH__9() { return &___LzHH__9; } inline void set_LzHH__9(int32_t value) { ___LzHH__9 = value; } inline static int32_t get_offset_of_LzHH_mm_10() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___LzHH_mm_10)); } inline int32_t get_LzHH_mm_10() const { return ___LzHH_mm_10; } inline int32_t* get_address_of_LzHH_mm_10() { return &___LzHH_mm_10; } inline void set_LzHH_mm_10(int32_t value) { ___LzHH_mm_10 = value; } inline static int32_t get_offset_of_LzHH_mm__11() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___LzHH_mm__11)); } inline int32_t get_LzHH_mm__11() const { return ___LzHH_mm__11; } inline int32_t* get_address_of_LzHH_mm__11() { return &___LzHH_mm__11; } inline void set_LzHH_mm__11(int32_t value) { ___LzHH_mm__11 = value; } inline static int32_t get_offset_of_LzHH_mm_ss_12() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___LzHH_mm_ss_12)); } inline int32_t get_LzHH_mm_ss_12() const { return ___LzHH_mm_ss_12; } inline int32_t* get_address_of_LzHH_mm_ss_12() { return &___LzHH_mm_ss_12; } inline void set_LzHH_mm_ss_12(int32_t value) { ___LzHH_mm_ss_12 = value; } inline static int32_t get_offset_of_Lz__13() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lz__13)); } inline int32_t get_Lz__13() const { return ___Lz__13; } inline int32_t* get_address_of_Lz__13() { return &___Lz__13; } inline void set_Lz__13(int32_t value) { ___Lz__13 = value; } inline static int32_t get_offset_of_Lz_zz_14() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lz_zz_14)); } inline int32_t get_Lz_zz_14() const { return ___Lz_zz_14; } inline int32_t* get_address_of_Lz_zz_14() { return &___Lz_zz_14; } inline void set_Lz_zz_14(int32_t value) { ___Lz_zz_14 = value; } inline static int32_t get_offset_of_Lz_zz__15() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lz_zz__15)); } inline int32_t get_Lz_zz__15() const { return ___Lz_zz__15; } inline int32_t* get_address_of_Lz_zz__15() { return &___Lz_zz__15; } inline void set_Lz_zz__15(int32_t value) { ___Lz_zz__15 = value; } inline static int32_t get_offset_of_Lz_zz_zz_16() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lz_zz_zz_16)); } inline int32_t get_Lz_zz_zz_16() const { return ___Lz_zz_zz_16; } inline int32_t* get_address_of_Lz_zz_zz_16() { return &___Lz_zz_zz_16; } inline void set_Lz_zz_zz_16(int32_t value) { ___Lz_zz_zz_16 = value; } inline static int32_t get_offset_of_Lz___17() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lz___17)); } inline int32_t get_Lz___17() const { return ___Lz___17; } inline int32_t* get_address_of_Lz___17() { return &___Lz___17; } inline void set_Lz___17(int32_t value) { ___Lz___17 = value; } inline static int32_t get_offset_of_Lz__mm_18() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lz__mm_18)); } inline int32_t get_Lz__mm_18() const { return ___Lz__mm_18; } inline int32_t* get_address_of_Lz__mm_18() { return &___Lz__mm_18; } inline void set_Lz__mm_18(int32_t value) { ___Lz__mm_18 = value; } inline static int32_t get_offset_of_Lz__mm__19() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lz__mm__19)); } inline int32_t get_Lz__mm__19() const { return ___Lz__mm__19; } inline int32_t* get_address_of_Lz__mm__19() { return &___Lz__mm__19; } inline void set_Lz__mm__19(int32_t value) { ___Lz__mm__19 = value; } inline static int32_t get_offset_of_Lz__mm___20() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lz__mm___20)); } inline int32_t get_Lz__mm___20() const { return ___Lz__mm___20; } inline int32_t* get_address_of_Lz__mm___20() { return &___Lz__mm___20; } inline void set_Lz__mm___20(int32_t value) { ___Lz__mm___20 = value; } inline static int32_t get_offset_of_Lz__mm_dd_21() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lz__mm_dd_21)); } inline int32_t get_Lz__mm_dd_21() const { return ___Lz__mm_dd_21; } inline int32_t* get_address_of_Lz__mm_dd_21() { return &___Lz__mm_dd_21; } inline void set_Lz__mm_dd_21(int32_t value) { ___Lz__mm_dd_21 = value; } inline static int32_t get_offset_of_Lz____22() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lz____22)); } inline int32_t get_Lz____22() const { return ___Lz____22; } inline int32_t* get_address_of_Lz____22() { return &___Lz____22; } inline void set_Lz____22(int32_t value) { ___Lz____22 = value; } inline static int32_t get_offset_of_Lz___dd_23() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___Lz___dd_23)); } inline int32_t get_Lz___dd_23() const { return ___Lz___dd_23; } inline int32_t* get_address_of_Lz___dd_23() { return &___Lz___dd_23; } inline void set_Lz___dd_23(int32_t value) { ___Lz___dd_23 = value; } inline static int32_t get_offset_of_typeCodes_24() { return static_cast(offsetof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields, ___typeCodes_24)); } inline XmlTypeCodeU5BU5D_t4B53622F8096A3BE4E235382465B2E0FF7B85D6B* get_typeCodes_24() const { return ___typeCodes_24; } inline XmlTypeCodeU5BU5D_t4B53622F8096A3BE4E235382465B2E0FF7B85D6B** get_address_of_typeCodes_24() { return &___typeCodes_24; } inline void set_typeCodes_24(XmlTypeCodeU5BU5D_t4B53622F8096A3BE4E235382465B2E0FF7B85D6B* value) { ___typeCodes_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeCodes_24), (void*)value); } }; // System.Xml.Schema.XsdDateTime // System.Xml.Schema.XsdDateTimeFlags // System.Xml.Schema.XsdDateTimeFlags // System.Xml.DtdParser/LiteralType // System.Xml.DtdParser/LiteralType // System.Xml.DtdParser/ScanningFunction // System.Xml.DtdParser/ScanningFunction // System.Xml.DtdParser/Token // System.Xml.DtdParser/Token // System.Net.HttpWebRequest/NtlmAuthState // System.Net.HttpWebRequest/NtlmAuthState // System.Xml.Schema.NamespaceList/ListType // System.Xml.Schema.NamespaceList/ListType // System.Xml.Schema.SchemaAttDef/Reserve // System.Xml.Schema.SchemaAttDef/Reserve // System.Xml.Schema.SchemaDeclBase/Use // System.Xml.Schema.SchemaDeclBase/Use // System.Uri/Flags // System.Uri/Flags // System.Xml.Schema.XmlAtomicValue/Union // System.Xml.Schema.XmlAtomicValue/Union // System.Xml.Schema.XmlSchemaParticle/Occurs // System.Xml.Schema.XmlSchemaParticle/Occurs // System.Xml.XmlTextReaderImpl/EntityExpandType // System.Xml.XmlTextReaderImpl/EntityExpandType // System.Xml.XmlTextReaderImpl/EntityType // System.Xml.XmlTextReaderImpl/EntityType // System.Xml.XmlTextReaderImpl/IncrementalReadState // System.Xml.XmlTextReaderImpl/IncrementalReadState // System.Xml.XmlTextReaderImpl/InitInputType // System.Xml.XmlTextReaderImpl/InitInputType // System.Xml.XmlTextReaderImpl/ParsingFunction // System.Xml.XmlTextReaderImpl/ParsingFunction // System.Xml.XmlTextReaderImpl/ParsingMode // System.Xml.XmlTextReaderImpl/ParsingMode // System.Xml.XmlTextWriter/NamespaceState // System.Xml.XmlTextWriter/NamespaceState // System.Xml.XmlTextWriter/SpecialAttr // System.Xml.XmlTextWriter/SpecialAttr // System.Xml.XmlTextWriter/State // System.Xml.XmlTextWriter/State // System.Xml.XmlTextWriter/Token // System.Xml.XmlTextWriter/Token // System.Xml.Schema.XsdDateTime/DateTimeTypeCode // System.Xml.Schema.XsdDateTime/DateTimeTypeCode // System.Xml.Schema.XsdDateTime/XsdDateTimeKind // System.Xml.Schema.XsdDateTime/XsdDateTimeKind // System.Xml.Schema.XsdDuration/DurationType // System.Xml.Schema.XsdDuration/DurationType // System.Xml.Schema.XsdDuration/Parts // System.Xml.Schema.XsdDuration/Parts // System.Threading.Tasks.TaskFactory`1 // System.Threading.Tasks.TaskFactory`1 // System.Threading.Tasks.TaskFactory`1 // System.Threading.Tasks.TaskFactory`1 // System.Threading.Tasks.Task`1 struct Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17_StaticFields { public: // System.Threading.Tasks.TaskFactory`1 System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * ___s_Factory_41; // System.Func`2,System.Threading.Tasks.Task`1> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD * ___TaskWhenAnyCast_42; public: inline static int32_t get_offset_of_s_Factory_41() { return static_cast(offsetof(Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17_StaticFields, ___s_Factory_41)); } inline TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * get_s_Factory_41() const { return ___s_Factory_41; } inline TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 ** get_address_of_s_Factory_41() { return &___s_Factory_41; } inline void set_s_Factory_41(TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * value) { ___s_Factory_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_41), (void*)value); } inline static int32_t get_offset_of_TaskWhenAnyCast_42() { return static_cast(offsetof(Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17_StaticFields, ___TaskWhenAnyCast_42)); } inline Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD * get_TaskWhenAnyCast_42() const { return ___TaskWhenAnyCast_42; } inline Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD ** get_address_of_TaskWhenAnyCast_42() { return &___TaskWhenAnyCast_42; } inline void set_TaskWhenAnyCast_42(Func_2_t44F36790F9746FCE5ABFDE6205B6020B2578F6DD * value) { ___TaskWhenAnyCast_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_42), (void*)value); } }; // System.Threading.Tasks.Task`1 // System.Threading.Tasks.Task`1 struct Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602_StaticFields { public: // System.Threading.Tasks.TaskFactory`1 System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t4F381CB16ECB0701C89F772EAF8F5DCD3A8E5F8B * ___s_Factory_41; // System.Func`2,System.Threading.Tasks.Task`1> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_tAED7D799F8DF45785D811BDBACC7E9480C0B901B * ___TaskWhenAnyCast_42; public: inline static int32_t get_offset_of_s_Factory_41() { return static_cast(offsetof(Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602_StaticFields, ___s_Factory_41)); } inline TaskFactory_1_t4F381CB16ECB0701C89F772EAF8F5DCD3A8E5F8B * get_s_Factory_41() const { return ___s_Factory_41; } inline TaskFactory_1_t4F381CB16ECB0701C89F772EAF8F5DCD3A8E5F8B ** get_address_of_s_Factory_41() { return &___s_Factory_41; } inline void set_s_Factory_41(TaskFactory_1_t4F381CB16ECB0701C89F772EAF8F5DCD3A8E5F8B * value) { ___s_Factory_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_41), (void*)value); } inline static int32_t get_offset_of_TaskWhenAnyCast_42() { return static_cast(offsetof(Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602_StaticFields, ___TaskWhenAnyCast_42)); } inline Func_2_tAED7D799F8DF45785D811BDBACC7E9480C0B901B * get_TaskWhenAnyCast_42() const { return ___TaskWhenAnyCast_42; } inline Func_2_tAED7D799F8DF45785D811BDBACC7E9480C0B901B ** get_address_of_TaskWhenAnyCast_42() { return &___TaskWhenAnyCast_42; } inline void set_TaskWhenAnyCast_42(Func_2_tAED7D799F8DF45785D811BDBACC7E9480C0B901B * value) { ___TaskWhenAnyCast_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_42), (void*)value); } }; // System.Threading.Tasks.Task`1 // System.Threading.Tasks.Task`1 struct Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765_StaticFields { public: // System.Threading.Tasks.TaskFactory`1 System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406 * ___s_Factory_41; // System.Func`2,System.Threading.Tasks.Task`1> System.Threading.Tasks.Task`1::TaskWhenAnyCast Func_2_t2C94CFD55C2E528DE57128CD2A37F45F9E914E5C * ___TaskWhenAnyCast_42; public: inline static int32_t get_offset_of_s_Factory_41() { return static_cast(offsetof(Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765_StaticFields, ___s_Factory_41)); } inline TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406 * get_s_Factory_41() const { return ___s_Factory_41; } inline TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406 ** get_address_of_s_Factory_41() { return &___s_Factory_41; } inline void set_s_Factory_41(TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406 * value) { ___s_Factory_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_41), (void*)value); } inline static int32_t get_offset_of_TaskWhenAnyCast_42() { return static_cast(offsetof(Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765_StaticFields, ___TaskWhenAnyCast_42)); } inline Func_2_t2C94CFD55C2E528DE57128CD2A37F45F9E914E5C * get_TaskWhenAnyCast_42() const { return ___TaskWhenAnyCast_42; } inline Func_2_t2C94CFD55C2E528DE57128CD2A37F45F9E914E5C ** get_address_of_TaskWhenAnyCast_42() { return &___TaskWhenAnyCast_42; } inline void set_TaskWhenAnyCast_42(Func_2_t2C94CFD55C2E528DE57128CD2A37F45F9E914E5C * value) { ___TaskWhenAnyCast_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_42), (void*)value); } }; // System.Threading.Tasks.Task`1 // System.Xml.Schema.DatatypeImplementation struct DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields { public: // System.Collections.Hashtable System.Xml.Schema.DatatypeImplementation::builtinTypes Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___builtinTypes_5; // System.Xml.Schema.XmlSchemaSimpleType[] System.Xml.Schema.DatatypeImplementation::enumToTypeCode XmlSchemaSimpleTypeU5BU5D_t862CBDAFFEF794FFBD20DDF16B3DC2803B848F21* ___enumToTypeCode_6; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.DatatypeImplementation::anySimpleType XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * ___anySimpleType_7; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.DatatypeImplementation::anyAtomicType XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * ___anyAtomicType_8; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.DatatypeImplementation::untypedAtomicType XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * ___untypedAtomicType_9; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.DatatypeImplementation::yearMonthDurationType XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * ___yearMonthDurationType_10; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.DatatypeImplementation::dayTimeDurationType XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * ___dayTimeDurationType_11; // System.Xml.XmlQualifiedName System.Xml.Schema.DatatypeImplementation::QnAnySimpleType XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___QnAnySimpleType_12; // System.Xml.XmlQualifiedName System.Xml.Schema.DatatypeImplementation::QnAnyType XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___QnAnyType_13; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::stringFacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___stringFacetsChecker_14; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::miscFacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___miscFacetsChecker_15; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::numeric2FacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___numeric2FacetsChecker_16; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::binaryFacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___binaryFacetsChecker_17; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::dateTimeFacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___dateTimeFacetsChecker_18; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::durationFacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___durationFacetsChecker_19; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::listFacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___listFacetsChecker_20; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::qnameFacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___qnameFacetsChecker_21; // System.Xml.Schema.FacetsChecker System.Xml.Schema.DatatypeImplementation::unionFacetsChecker FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * ___unionFacetsChecker_22; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_anySimpleType DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_anySimpleType_23; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_anyURI DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_anyURI_24; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_base64Binary DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_base64Binary_25; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_boolean DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_boolean_26; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_byte DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_byte_27; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_char DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_char_28; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_date DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_date_29; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_dateTime DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_dateTime_30; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_dateTimeNoTz DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_dateTimeNoTz_31; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_dateTimeTz DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_dateTimeTz_32; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_day DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_day_33; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_decimal DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_decimal_34; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_double DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_double_35; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_doubleXdr DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_doubleXdr_36; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_duration DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_duration_37; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_ENTITY DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_ENTITY_38; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_ENTITIES DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_ENTITIES_39; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_ENUMERATION DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_ENUMERATION_40; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_fixed DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_fixed_41; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_float DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_float_42; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_floatXdr DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_floatXdr_43; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_hexBinary DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_hexBinary_44; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_ID DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_ID_45; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_IDREF DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_IDREF_46; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_IDREFS DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_IDREFS_47; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_int DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_int_48; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_integer DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_integer_49; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_language DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_language_50; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_long DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_long_51; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_month DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_month_52; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_monthDay DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_monthDay_53; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_Name DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_Name_54; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_NCName DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_NCName_55; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_negativeInteger DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_negativeInteger_56; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_NMTOKEN DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_NMTOKEN_57; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_NMTOKENS DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_NMTOKENS_58; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_nonNegativeInteger DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_nonNegativeInteger_59; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_nonPositiveInteger DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_nonPositiveInteger_60; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_normalizedString DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_normalizedString_61; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_NOTATION DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_NOTATION_62; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_positiveInteger DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_positiveInteger_63; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_QName DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_QName_64; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_QNameXdr DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_QNameXdr_65; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_short DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_short_66; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_string DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_string_67; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_time DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_time_68; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_timeNoTz DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_timeNoTz_69; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_timeTz DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_timeTz_70; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_token DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_token_71; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_unsignedByte DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_unsignedByte_72; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_unsignedInt DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_unsignedInt_73; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_unsignedLong DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_unsignedLong_74; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_unsignedShort DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_unsignedShort_75; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_uuid DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_uuid_76; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_year DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_year_77; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_yearMonth DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_yearMonth_78; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_normalizedStringV1Compat DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_normalizedStringV1Compat_79; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_tokenV1Compat DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_tokenV1Compat_80; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_anyAtomicType DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_anyAtomicType_81; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_dayTimeDuration DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_dayTimeDuration_82; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_untypedAtomicType DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_untypedAtomicType_83; // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation::c_yearMonthDuration DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___c_yearMonthDuration_84; // System.Xml.Schema.DatatypeImplementation[] System.Xml.Schema.DatatypeImplementation::c_tokenizedTypes DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D* ___c_tokenizedTypes_85; // System.Xml.Schema.DatatypeImplementation[] System.Xml.Schema.DatatypeImplementation::c_tokenizedTypesXsd DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D* ___c_tokenizedTypesXsd_86; // System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap[] System.Xml.Schema.DatatypeImplementation::c_XdrTypes SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA* ___c_XdrTypes_87; // System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap[] System.Xml.Schema.DatatypeImplementation::c_XsdTypes SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA* ___c_XsdTypes_88; public: inline static int32_t get_offset_of_builtinTypes_5() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___builtinTypes_5)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_builtinTypes_5() const { return ___builtinTypes_5; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_builtinTypes_5() { return &___builtinTypes_5; } inline void set_builtinTypes_5(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___builtinTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___builtinTypes_5), (void*)value); } inline static int32_t get_offset_of_enumToTypeCode_6() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___enumToTypeCode_6)); } inline XmlSchemaSimpleTypeU5BU5D_t862CBDAFFEF794FFBD20DDF16B3DC2803B848F21* get_enumToTypeCode_6() const { return ___enumToTypeCode_6; } inline XmlSchemaSimpleTypeU5BU5D_t862CBDAFFEF794FFBD20DDF16B3DC2803B848F21** get_address_of_enumToTypeCode_6() { return &___enumToTypeCode_6; } inline void set_enumToTypeCode_6(XmlSchemaSimpleTypeU5BU5D_t862CBDAFFEF794FFBD20DDF16B3DC2803B848F21* value) { ___enumToTypeCode_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumToTypeCode_6), (void*)value); } inline static int32_t get_offset_of_anySimpleType_7() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___anySimpleType_7)); } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * get_anySimpleType_7() const { return ___anySimpleType_7; } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C ** get_address_of_anySimpleType_7() { return &___anySimpleType_7; } inline void set_anySimpleType_7(XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * value) { ___anySimpleType_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___anySimpleType_7), (void*)value); } inline static int32_t get_offset_of_anyAtomicType_8() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___anyAtomicType_8)); } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * get_anyAtomicType_8() const { return ___anyAtomicType_8; } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C ** get_address_of_anyAtomicType_8() { return &___anyAtomicType_8; } inline void set_anyAtomicType_8(XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * value) { ___anyAtomicType_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___anyAtomicType_8), (void*)value); } inline static int32_t get_offset_of_untypedAtomicType_9() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___untypedAtomicType_9)); } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * get_untypedAtomicType_9() const { return ___untypedAtomicType_9; } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C ** get_address_of_untypedAtomicType_9() { return &___untypedAtomicType_9; } inline void set_untypedAtomicType_9(XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * value) { ___untypedAtomicType_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___untypedAtomicType_9), (void*)value); } inline static int32_t get_offset_of_yearMonthDurationType_10() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___yearMonthDurationType_10)); } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * get_yearMonthDurationType_10() const { return ___yearMonthDurationType_10; } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C ** get_address_of_yearMonthDurationType_10() { return &___yearMonthDurationType_10; } inline void set_yearMonthDurationType_10(XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * value) { ___yearMonthDurationType_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___yearMonthDurationType_10), (void*)value); } inline static int32_t get_offset_of_dayTimeDurationType_11() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___dayTimeDurationType_11)); } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * get_dayTimeDurationType_11() const { return ___dayTimeDurationType_11; } inline XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C ** get_address_of_dayTimeDurationType_11() { return &___dayTimeDurationType_11; } inline void set_dayTimeDurationType_11(XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * value) { ___dayTimeDurationType_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___dayTimeDurationType_11), (void*)value); } inline static int32_t get_offset_of_QnAnySimpleType_12() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___QnAnySimpleType_12)); } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * get_QnAnySimpleType_12() const { return ___QnAnySimpleType_12; } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 ** get_address_of_QnAnySimpleType_12() { return &___QnAnySimpleType_12; } inline void set_QnAnySimpleType_12(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * value) { ___QnAnySimpleType_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___QnAnySimpleType_12), (void*)value); } inline static int32_t get_offset_of_QnAnyType_13() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___QnAnyType_13)); } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * get_QnAnyType_13() const { return ___QnAnyType_13; } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 ** get_address_of_QnAnyType_13() { return &___QnAnyType_13; } inline void set_QnAnyType_13(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * value) { ___QnAnyType_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___QnAnyType_13), (void*)value); } inline static int32_t get_offset_of_stringFacetsChecker_14() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___stringFacetsChecker_14)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_stringFacetsChecker_14() const { return ___stringFacetsChecker_14; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_stringFacetsChecker_14() { return &___stringFacetsChecker_14; } inline void set_stringFacetsChecker_14(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___stringFacetsChecker_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___stringFacetsChecker_14), (void*)value); } inline static int32_t get_offset_of_miscFacetsChecker_15() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___miscFacetsChecker_15)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_miscFacetsChecker_15() const { return ___miscFacetsChecker_15; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_miscFacetsChecker_15() { return &___miscFacetsChecker_15; } inline void set_miscFacetsChecker_15(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___miscFacetsChecker_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___miscFacetsChecker_15), (void*)value); } inline static int32_t get_offset_of_numeric2FacetsChecker_16() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___numeric2FacetsChecker_16)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_numeric2FacetsChecker_16() const { return ___numeric2FacetsChecker_16; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_numeric2FacetsChecker_16() { return &___numeric2FacetsChecker_16; } inline void set_numeric2FacetsChecker_16(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___numeric2FacetsChecker_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___numeric2FacetsChecker_16), (void*)value); } inline static int32_t get_offset_of_binaryFacetsChecker_17() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___binaryFacetsChecker_17)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_binaryFacetsChecker_17() const { return ___binaryFacetsChecker_17; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_binaryFacetsChecker_17() { return &___binaryFacetsChecker_17; } inline void set_binaryFacetsChecker_17(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___binaryFacetsChecker_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___binaryFacetsChecker_17), (void*)value); } inline static int32_t get_offset_of_dateTimeFacetsChecker_18() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___dateTimeFacetsChecker_18)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_dateTimeFacetsChecker_18() const { return ___dateTimeFacetsChecker_18; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_dateTimeFacetsChecker_18() { return &___dateTimeFacetsChecker_18; } inline void set_dateTimeFacetsChecker_18(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___dateTimeFacetsChecker_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___dateTimeFacetsChecker_18), (void*)value); } inline static int32_t get_offset_of_durationFacetsChecker_19() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___durationFacetsChecker_19)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_durationFacetsChecker_19() const { return ___durationFacetsChecker_19; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_durationFacetsChecker_19() { return &___durationFacetsChecker_19; } inline void set_durationFacetsChecker_19(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___durationFacetsChecker_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___durationFacetsChecker_19), (void*)value); } inline static int32_t get_offset_of_listFacetsChecker_20() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___listFacetsChecker_20)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_listFacetsChecker_20() const { return ___listFacetsChecker_20; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_listFacetsChecker_20() { return &___listFacetsChecker_20; } inline void set_listFacetsChecker_20(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___listFacetsChecker_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___listFacetsChecker_20), (void*)value); } inline static int32_t get_offset_of_qnameFacetsChecker_21() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___qnameFacetsChecker_21)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_qnameFacetsChecker_21() const { return ___qnameFacetsChecker_21; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_qnameFacetsChecker_21() { return &___qnameFacetsChecker_21; } inline void set_qnameFacetsChecker_21(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___qnameFacetsChecker_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___qnameFacetsChecker_21), (void*)value); } inline static int32_t get_offset_of_unionFacetsChecker_22() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___unionFacetsChecker_22)); } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * get_unionFacetsChecker_22() const { return ___unionFacetsChecker_22; } inline FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 ** get_address_of_unionFacetsChecker_22() { return &___unionFacetsChecker_22; } inline void set_unionFacetsChecker_22(FacetsChecker_t7E7724953E7F8DD59B86B4EE87387120395C7DF8 * value) { ___unionFacetsChecker_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___unionFacetsChecker_22), (void*)value); } inline static int32_t get_offset_of_c_anySimpleType_23() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_anySimpleType_23)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_anySimpleType_23() const { return ___c_anySimpleType_23; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_anySimpleType_23() { return &___c_anySimpleType_23; } inline void set_c_anySimpleType_23(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_anySimpleType_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_anySimpleType_23), (void*)value); } inline static int32_t get_offset_of_c_anyURI_24() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_anyURI_24)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_anyURI_24() const { return ___c_anyURI_24; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_anyURI_24() { return &___c_anyURI_24; } inline void set_c_anyURI_24(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_anyURI_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_anyURI_24), (void*)value); } inline static int32_t get_offset_of_c_base64Binary_25() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_base64Binary_25)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_base64Binary_25() const { return ___c_base64Binary_25; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_base64Binary_25() { return &___c_base64Binary_25; } inline void set_c_base64Binary_25(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_base64Binary_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_base64Binary_25), (void*)value); } inline static int32_t get_offset_of_c_boolean_26() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_boolean_26)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_boolean_26() const { return ___c_boolean_26; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_boolean_26() { return &___c_boolean_26; } inline void set_c_boolean_26(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_boolean_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_boolean_26), (void*)value); } inline static int32_t get_offset_of_c_byte_27() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_byte_27)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_byte_27() const { return ___c_byte_27; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_byte_27() { return &___c_byte_27; } inline void set_c_byte_27(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_byte_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_byte_27), (void*)value); } inline static int32_t get_offset_of_c_char_28() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_char_28)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_char_28() const { return ___c_char_28; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_char_28() { return &___c_char_28; } inline void set_c_char_28(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_char_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_char_28), (void*)value); } inline static int32_t get_offset_of_c_date_29() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_date_29)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_date_29() const { return ___c_date_29; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_date_29() { return &___c_date_29; } inline void set_c_date_29(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_date_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_date_29), (void*)value); } inline static int32_t get_offset_of_c_dateTime_30() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_dateTime_30)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_dateTime_30() const { return ___c_dateTime_30; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_dateTime_30() { return &___c_dateTime_30; } inline void set_c_dateTime_30(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_dateTime_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_dateTime_30), (void*)value); } inline static int32_t get_offset_of_c_dateTimeNoTz_31() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_dateTimeNoTz_31)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_dateTimeNoTz_31() const { return ___c_dateTimeNoTz_31; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_dateTimeNoTz_31() { return &___c_dateTimeNoTz_31; } inline void set_c_dateTimeNoTz_31(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_dateTimeNoTz_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_dateTimeNoTz_31), (void*)value); } inline static int32_t get_offset_of_c_dateTimeTz_32() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_dateTimeTz_32)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_dateTimeTz_32() const { return ___c_dateTimeTz_32; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_dateTimeTz_32() { return &___c_dateTimeTz_32; } inline void set_c_dateTimeTz_32(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_dateTimeTz_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_dateTimeTz_32), (void*)value); } inline static int32_t get_offset_of_c_day_33() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_day_33)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_day_33() const { return ___c_day_33; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_day_33() { return &___c_day_33; } inline void set_c_day_33(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_day_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_day_33), (void*)value); } inline static int32_t get_offset_of_c_decimal_34() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_decimal_34)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_decimal_34() const { return ___c_decimal_34; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_decimal_34() { return &___c_decimal_34; } inline void set_c_decimal_34(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_decimal_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_decimal_34), (void*)value); } inline static int32_t get_offset_of_c_double_35() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_double_35)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_double_35() const { return ___c_double_35; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_double_35() { return &___c_double_35; } inline void set_c_double_35(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_double_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_double_35), (void*)value); } inline static int32_t get_offset_of_c_doubleXdr_36() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_doubleXdr_36)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_doubleXdr_36() const { return ___c_doubleXdr_36; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_doubleXdr_36() { return &___c_doubleXdr_36; } inline void set_c_doubleXdr_36(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_doubleXdr_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_doubleXdr_36), (void*)value); } inline static int32_t get_offset_of_c_duration_37() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_duration_37)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_duration_37() const { return ___c_duration_37; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_duration_37() { return &___c_duration_37; } inline void set_c_duration_37(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_duration_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_duration_37), (void*)value); } inline static int32_t get_offset_of_c_ENTITY_38() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_ENTITY_38)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_ENTITY_38() const { return ___c_ENTITY_38; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_ENTITY_38() { return &___c_ENTITY_38; } inline void set_c_ENTITY_38(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_ENTITY_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_ENTITY_38), (void*)value); } inline static int32_t get_offset_of_c_ENTITIES_39() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_ENTITIES_39)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_ENTITIES_39() const { return ___c_ENTITIES_39; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_ENTITIES_39() { return &___c_ENTITIES_39; } inline void set_c_ENTITIES_39(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_ENTITIES_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_ENTITIES_39), (void*)value); } inline static int32_t get_offset_of_c_ENUMERATION_40() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_ENUMERATION_40)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_ENUMERATION_40() const { return ___c_ENUMERATION_40; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_ENUMERATION_40() { return &___c_ENUMERATION_40; } inline void set_c_ENUMERATION_40(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_ENUMERATION_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_ENUMERATION_40), (void*)value); } inline static int32_t get_offset_of_c_fixed_41() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_fixed_41)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_fixed_41() const { return ___c_fixed_41; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_fixed_41() { return &___c_fixed_41; } inline void set_c_fixed_41(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_fixed_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_fixed_41), (void*)value); } inline static int32_t get_offset_of_c_float_42() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_float_42)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_float_42() const { return ___c_float_42; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_float_42() { return &___c_float_42; } inline void set_c_float_42(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_float_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_float_42), (void*)value); } inline static int32_t get_offset_of_c_floatXdr_43() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_floatXdr_43)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_floatXdr_43() const { return ___c_floatXdr_43; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_floatXdr_43() { return &___c_floatXdr_43; } inline void set_c_floatXdr_43(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_floatXdr_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_floatXdr_43), (void*)value); } inline static int32_t get_offset_of_c_hexBinary_44() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_hexBinary_44)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_hexBinary_44() const { return ___c_hexBinary_44; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_hexBinary_44() { return &___c_hexBinary_44; } inline void set_c_hexBinary_44(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_hexBinary_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_hexBinary_44), (void*)value); } inline static int32_t get_offset_of_c_ID_45() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_ID_45)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_ID_45() const { return ___c_ID_45; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_ID_45() { return &___c_ID_45; } inline void set_c_ID_45(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_ID_45 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_ID_45), (void*)value); } inline static int32_t get_offset_of_c_IDREF_46() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_IDREF_46)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_IDREF_46() const { return ___c_IDREF_46; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_IDREF_46() { return &___c_IDREF_46; } inline void set_c_IDREF_46(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_IDREF_46 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_IDREF_46), (void*)value); } inline static int32_t get_offset_of_c_IDREFS_47() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_IDREFS_47)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_IDREFS_47() const { return ___c_IDREFS_47; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_IDREFS_47() { return &___c_IDREFS_47; } inline void set_c_IDREFS_47(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_IDREFS_47 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_IDREFS_47), (void*)value); } inline static int32_t get_offset_of_c_int_48() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_int_48)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_int_48() const { return ___c_int_48; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_int_48() { return &___c_int_48; } inline void set_c_int_48(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_int_48 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_int_48), (void*)value); } inline static int32_t get_offset_of_c_integer_49() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_integer_49)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_integer_49() const { return ___c_integer_49; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_integer_49() { return &___c_integer_49; } inline void set_c_integer_49(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_integer_49 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_integer_49), (void*)value); } inline static int32_t get_offset_of_c_language_50() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_language_50)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_language_50() const { return ___c_language_50; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_language_50() { return &___c_language_50; } inline void set_c_language_50(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_language_50 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_language_50), (void*)value); } inline static int32_t get_offset_of_c_long_51() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_long_51)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_long_51() const { return ___c_long_51; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_long_51() { return &___c_long_51; } inline void set_c_long_51(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_long_51 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_long_51), (void*)value); } inline static int32_t get_offset_of_c_month_52() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_month_52)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_month_52() const { return ___c_month_52; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_month_52() { return &___c_month_52; } inline void set_c_month_52(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_month_52 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_month_52), (void*)value); } inline static int32_t get_offset_of_c_monthDay_53() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_monthDay_53)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_monthDay_53() const { return ___c_monthDay_53; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_monthDay_53() { return &___c_monthDay_53; } inline void set_c_monthDay_53(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_monthDay_53 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_monthDay_53), (void*)value); } inline static int32_t get_offset_of_c_Name_54() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_Name_54)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_Name_54() const { return ___c_Name_54; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_Name_54() { return &___c_Name_54; } inline void set_c_Name_54(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_Name_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_Name_54), (void*)value); } inline static int32_t get_offset_of_c_NCName_55() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_NCName_55)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_NCName_55() const { return ___c_NCName_55; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_NCName_55() { return &___c_NCName_55; } inline void set_c_NCName_55(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_NCName_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_NCName_55), (void*)value); } inline static int32_t get_offset_of_c_negativeInteger_56() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_negativeInteger_56)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_negativeInteger_56() const { return ___c_negativeInteger_56; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_negativeInteger_56() { return &___c_negativeInteger_56; } inline void set_c_negativeInteger_56(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_negativeInteger_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_negativeInteger_56), (void*)value); } inline static int32_t get_offset_of_c_NMTOKEN_57() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_NMTOKEN_57)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_NMTOKEN_57() const { return ___c_NMTOKEN_57; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_NMTOKEN_57() { return &___c_NMTOKEN_57; } inline void set_c_NMTOKEN_57(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_NMTOKEN_57 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_NMTOKEN_57), (void*)value); } inline static int32_t get_offset_of_c_NMTOKENS_58() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_NMTOKENS_58)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_NMTOKENS_58() const { return ___c_NMTOKENS_58; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_NMTOKENS_58() { return &___c_NMTOKENS_58; } inline void set_c_NMTOKENS_58(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_NMTOKENS_58 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_NMTOKENS_58), (void*)value); } inline static int32_t get_offset_of_c_nonNegativeInteger_59() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_nonNegativeInteger_59)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_nonNegativeInteger_59() const { return ___c_nonNegativeInteger_59; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_nonNegativeInteger_59() { return &___c_nonNegativeInteger_59; } inline void set_c_nonNegativeInteger_59(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_nonNegativeInteger_59 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_nonNegativeInteger_59), (void*)value); } inline static int32_t get_offset_of_c_nonPositiveInteger_60() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_nonPositiveInteger_60)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_nonPositiveInteger_60() const { return ___c_nonPositiveInteger_60; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_nonPositiveInteger_60() { return &___c_nonPositiveInteger_60; } inline void set_c_nonPositiveInteger_60(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_nonPositiveInteger_60 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_nonPositiveInteger_60), (void*)value); } inline static int32_t get_offset_of_c_normalizedString_61() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_normalizedString_61)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_normalizedString_61() const { return ___c_normalizedString_61; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_normalizedString_61() { return &___c_normalizedString_61; } inline void set_c_normalizedString_61(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_normalizedString_61 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_normalizedString_61), (void*)value); } inline static int32_t get_offset_of_c_NOTATION_62() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_NOTATION_62)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_NOTATION_62() const { return ___c_NOTATION_62; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_NOTATION_62() { return &___c_NOTATION_62; } inline void set_c_NOTATION_62(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_NOTATION_62 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_NOTATION_62), (void*)value); } inline static int32_t get_offset_of_c_positiveInteger_63() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_positiveInteger_63)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_positiveInteger_63() const { return ___c_positiveInteger_63; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_positiveInteger_63() { return &___c_positiveInteger_63; } inline void set_c_positiveInteger_63(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_positiveInteger_63 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_positiveInteger_63), (void*)value); } inline static int32_t get_offset_of_c_QName_64() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_QName_64)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_QName_64() const { return ___c_QName_64; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_QName_64() { return &___c_QName_64; } inline void set_c_QName_64(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_QName_64 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_QName_64), (void*)value); } inline static int32_t get_offset_of_c_QNameXdr_65() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_QNameXdr_65)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_QNameXdr_65() const { return ___c_QNameXdr_65; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_QNameXdr_65() { return &___c_QNameXdr_65; } inline void set_c_QNameXdr_65(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_QNameXdr_65 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_QNameXdr_65), (void*)value); } inline static int32_t get_offset_of_c_short_66() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_short_66)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_short_66() const { return ___c_short_66; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_short_66() { return &___c_short_66; } inline void set_c_short_66(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_short_66 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_short_66), (void*)value); } inline static int32_t get_offset_of_c_string_67() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_string_67)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_string_67() const { return ___c_string_67; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_string_67() { return &___c_string_67; } inline void set_c_string_67(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_string_67 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_string_67), (void*)value); } inline static int32_t get_offset_of_c_time_68() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_time_68)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_time_68() const { return ___c_time_68; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_time_68() { return &___c_time_68; } inline void set_c_time_68(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_time_68 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_time_68), (void*)value); } inline static int32_t get_offset_of_c_timeNoTz_69() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_timeNoTz_69)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_timeNoTz_69() const { return ___c_timeNoTz_69; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_timeNoTz_69() { return &___c_timeNoTz_69; } inline void set_c_timeNoTz_69(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_timeNoTz_69 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_timeNoTz_69), (void*)value); } inline static int32_t get_offset_of_c_timeTz_70() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_timeTz_70)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_timeTz_70() const { return ___c_timeTz_70; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_timeTz_70() { return &___c_timeTz_70; } inline void set_c_timeTz_70(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_timeTz_70 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_timeTz_70), (void*)value); } inline static int32_t get_offset_of_c_token_71() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_token_71)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_token_71() const { return ___c_token_71; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_token_71() { return &___c_token_71; } inline void set_c_token_71(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_token_71 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_token_71), (void*)value); } inline static int32_t get_offset_of_c_unsignedByte_72() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_unsignedByte_72)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_unsignedByte_72() const { return ___c_unsignedByte_72; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_unsignedByte_72() { return &___c_unsignedByte_72; } inline void set_c_unsignedByte_72(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_unsignedByte_72 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_unsignedByte_72), (void*)value); } inline static int32_t get_offset_of_c_unsignedInt_73() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_unsignedInt_73)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_unsignedInt_73() const { return ___c_unsignedInt_73; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_unsignedInt_73() { return &___c_unsignedInt_73; } inline void set_c_unsignedInt_73(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_unsignedInt_73 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_unsignedInt_73), (void*)value); } inline static int32_t get_offset_of_c_unsignedLong_74() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_unsignedLong_74)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_unsignedLong_74() const { return ___c_unsignedLong_74; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_unsignedLong_74() { return &___c_unsignedLong_74; } inline void set_c_unsignedLong_74(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_unsignedLong_74 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_unsignedLong_74), (void*)value); } inline static int32_t get_offset_of_c_unsignedShort_75() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_unsignedShort_75)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_unsignedShort_75() const { return ___c_unsignedShort_75; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_unsignedShort_75() { return &___c_unsignedShort_75; } inline void set_c_unsignedShort_75(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_unsignedShort_75 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_unsignedShort_75), (void*)value); } inline static int32_t get_offset_of_c_uuid_76() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_uuid_76)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_uuid_76() const { return ___c_uuid_76; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_uuid_76() { return &___c_uuid_76; } inline void set_c_uuid_76(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_uuid_76 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_uuid_76), (void*)value); } inline static int32_t get_offset_of_c_year_77() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_year_77)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_year_77() const { return ___c_year_77; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_year_77() { return &___c_year_77; } inline void set_c_year_77(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_year_77 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_year_77), (void*)value); } inline static int32_t get_offset_of_c_yearMonth_78() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_yearMonth_78)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_yearMonth_78() const { return ___c_yearMonth_78; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_yearMonth_78() { return &___c_yearMonth_78; } inline void set_c_yearMonth_78(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_yearMonth_78 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_yearMonth_78), (void*)value); } inline static int32_t get_offset_of_c_normalizedStringV1Compat_79() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_normalizedStringV1Compat_79)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_normalizedStringV1Compat_79() const { return ___c_normalizedStringV1Compat_79; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_normalizedStringV1Compat_79() { return &___c_normalizedStringV1Compat_79; } inline void set_c_normalizedStringV1Compat_79(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_normalizedStringV1Compat_79 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_normalizedStringV1Compat_79), (void*)value); } inline static int32_t get_offset_of_c_tokenV1Compat_80() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_tokenV1Compat_80)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_tokenV1Compat_80() const { return ___c_tokenV1Compat_80; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_tokenV1Compat_80() { return &___c_tokenV1Compat_80; } inline void set_c_tokenV1Compat_80(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_tokenV1Compat_80 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_tokenV1Compat_80), (void*)value); } inline static int32_t get_offset_of_c_anyAtomicType_81() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_anyAtomicType_81)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_anyAtomicType_81() const { return ___c_anyAtomicType_81; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_anyAtomicType_81() { return &___c_anyAtomicType_81; } inline void set_c_anyAtomicType_81(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_anyAtomicType_81 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_anyAtomicType_81), (void*)value); } inline static int32_t get_offset_of_c_dayTimeDuration_82() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_dayTimeDuration_82)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_dayTimeDuration_82() const { return ___c_dayTimeDuration_82; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_dayTimeDuration_82() { return &___c_dayTimeDuration_82; } inline void set_c_dayTimeDuration_82(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_dayTimeDuration_82 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_dayTimeDuration_82), (void*)value); } inline static int32_t get_offset_of_c_untypedAtomicType_83() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_untypedAtomicType_83)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_untypedAtomicType_83() const { return ___c_untypedAtomicType_83; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_untypedAtomicType_83() { return &___c_untypedAtomicType_83; } inline void set_c_untypedAtomicType_83(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_untypedAtomicType_83 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_untypedAtomicType_83), (void*)value); } inline static int32_t get_offset_of_c_yearMonthDuration_84() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_yearMonthDuration_84)); } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * get_c_yearMonthDuration_84() const { return ___c_yearMonthDuration_84; } inline DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 ** get_address_of_c_yearMonthDuration_84() { return &___c_yearMonthDuration_84; } inline void set_c_yearMonthDuration_84(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * value) { ___c_yearMonthDuration_84 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_yearMonthDuration_84), (void*)value); } inline static int32_t get_offset_of_c_tokenizedTypes_85() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_tokenizedTypes_85)); } inline DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D* get_c_tokenizedTypes_85() const { return ___c_tokenizedTypes_85; } inline DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D** get_address_of_c_tokenizedTypes_85() { return &___c_tokenizedTypes_85; } inline void set_c_tokenizedTypes_85(DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D* value) { ___c_tokenizedTypes_85 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_tokenizedTypes_85), (void*)value); } inline static int32_t get_offset_of_c_tokenizedTypesXsd_86() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_tokenizedTypesXsd_86)); } inline DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D* get_c_tokenizedTypesXsd_86() const { return ___c_tokenizedTypesXsd_86; } inline DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D** get_address_of_c_tokenizedTypesXsd_86() { return &___c_tokenizedTypesXsd_86; } inline void set_c_tokenizedTypesXsd_86(DatatypeImplementationU5BU5D_t1ECE71BA72FBF60D10F2706390619E7E51202B2D* value) { ___c_tokenizedTypesXsd_86 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_tokenizedTypesXsd_86), (void*)value); } inline static int32_t get_offset_of_c_XdrTypes_87() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_XdrTypes_87)); } inline SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA* get_c_XdrTypes_87() const { return ___c_XdrTypes_87; } inline SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA** get_address_of_c_XdrTypes_87() { return &___c_XdrTypes_87; } inline void set_c_XdrTypes_87(SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA* value) { ___c_XdrTypes_87 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_XdrTypes_87), (void*)value); } inline static int32_t get_offset_of_c_XsdTypes_88() { return static_cast(offsetof(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields, ___c_XsdTypes_88)); } inline SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA* get_c_XsdTypes_88() const { return ___c_XsdTypes_88; } inline SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA** get_address_of_c_XsdTypes_88() { return &___c_XsdTypes_88; } inline void set_c_XsdTypes_88(SchemaDatatypeMapU5BU5D_t7856FBF2902E516E9BAC4B53C80C181CE4B619DA* value) { ___c_XsdTypes_88 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_XsdTypes_88), (void*)value); } }; // System.Xml.Schema.DatatypeImplementation // System.IO.FileStream struct FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26_StaticFields { public: // System.Byte[] System.IO.FileStream::buf_recycle ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf_recycle_5; // System.Object System.IO.FileStream::buf_recycle_lock RuntimeObject * ___buf_recycle_lock_6; public: inline static int32_t get_offset_of_buf_recycle_5() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26_StaticFields, ___buf_recycle_5)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_buf_recycle_5() const { return ___buf_recycle_5; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_buf_recycle_5() { return &___buf_recycle_5; } inline void set_buf_recycle_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___buf_recycle_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf_recycle_5), (void*)value); } inline static int32_t get_offset_of_buf_recycle_lock_6() { return static_cast(offsetof(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26_StaticFields, ___buf_recycle_lock_6)); } inline RuntimeObject * get_buf_recycle_lock_6() const { return ___buf_recycle_lock_6; } inline RuntimeObject ** get_address_of_buf_recycle_lock_6() { return &___buf_recycle_lock_6; } inline void set_buf_recycle_lock_6(RuntimeObject * value) { ___buf_recycle_lock_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf_recycle_lock_6), (void*)value); } }; // System.IO.FileStream // System.MulticastDelegate // System.MulticastDelegate // System.Net.Cache.RequestCachePolicy // System.Net.Cache.RequestCachePolicy // System.SystemException // System.SystemException // System.TimeZoneInfo struct TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074_StaticFields { public: // System.TimeZoneInfo System.TimeZoneInfo::local TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074 * ___local_4; // System.Boolean System.TimeZoneInfo::readlinkNotFound bool ___readlinkNotFound_6; // System.TimeZoneInfo System.TimeZoneInfo::utc TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074 * ___utc_9; // System.String System.TimeZoneInfo::timeZoneDirectory String_t* ___timeZoneDirectory_10; // Microsoft.Win32.RegistryKey System.TimeZoneInfo::timeZoneKey RegistryKey_t1EF11DB6AC49AC065AF744487033109254215268 * ___timeZoneKey_12; // Microsoft.Win32.RegistryKey System.TimeZoneInfo::localZoneKey RegistryKey_t1EF11DB6AC49AC065AF744487033109254215268 * ___localZoneKey_13; // System.Collections.ObjectModel.ReadOnlyCollection`1 System.TimeZoneInfo::systemTimeZones ReadOnlyCollection_1_t52C38CE86D68A2D1C8C94E240170756F47476FB0 * ___systemTimeZones_14; public: inline static int32_t get_offset_of_local_4() { return static_cast(offsetof(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074_StaticFields, ___local_4)); } inline TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074 * get_local_4() const { return ___local_4; } inline TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074 ** get_address_of_local_4() { return &___local_4; } inline void set_local_4(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074 * value) { ___local_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___local_4), (void*)value); } inline static int32_t get_offset_of_readlinkNotFound_6() { return static_cast(offsetof(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074_StaticFields, ___readlinkNotFound_6)); } inline bool get_readlinkNotFound_6() const { return ___readlinkNotFound_6; } inline bool* get_address_of_readlinkNotFound_6() { return &___readlinkNotFound_6; } inline void set_readlinkNotFound_6(bool value) { ___readlinkNotFound_6 = value; } inline static int32_t get_offset_of_utc_9() { return static_cast(offsetof(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074_StaticFields, ___utc_9)); } inline TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074 * get_utc_9() const { return ___utc_9; } inline TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074 ** get_address_of_utc_9() { return &___utc_9; } inline void set_utc_9(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074 * value) { ___utc_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___utc_9), (void*)value); } inline static int32_t get_offset_of_timeZoneDirectory_10() { return static_cast(offsetof(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074_StaticFields, ___timeZoneDirectory_10)); } inline String_t* get_timeZoneDirectory_10() const { return ___timeZoneDirectory_10; } inline String_t** get_address_of_timeZoneDirectory_10() { return &___timeZoneDirectory_10; } inline void set_timeZoneDirectory_10(String_t* value) { ___timeZoneDirectory_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___timeZoneDirectory_10), (void*)value); } inline static int32_t get_offset_of_timeZoneKey_12() { return static_cast(offsetof(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074_StaticFields, ___timeZoneKey_12)); } inline RegistryKey_t1EF11DB6AC49AC065AF744487033109254215268 * get_timeZoneKey_12() const { return ___timeZoneKey_12; } inline RegistryKey_t1EF11DB6AC49AC065AF744487033109254215268 ** get_address_of_timeZoneKey_12() { return &___timeZoneKey_12; } inline void set_timeZoneKey_12(RegistryKey_t1EF11DB6AC49AC065AF744487033109254215268 * value) { ___timeZoneKey_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___timeZoneKey_12), (void*)value); } inline static int32_t get_offset_of_localZoneKey_13() { return static_cast(offsetof(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074_StaticFields, ___localZoneKey_13)); } inline RegistryKey_t1EF11DB6AC49AC065AF744487033109254215268 * get_localZoneKey_13() const { return ___localZoneKey_13; } inline RegistryKey_t1EF11DB6AC49AC065AF744487033109254215268 ** get_address_of_localZoneKey_13() { return &___localZoneKey_13; } inline void set_localZoneKey_13(RegistryKey_t1EF11DB6AC49AC065AF744487033109254215268 * value) { ___localZoneKey_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___localZoneKey_13), (void*)value); } inline static int32_t get_offset_of_systemTimeZones_14() { return static_cast(offsetof(TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074_StaticFields, ___systemTimeZones_14)); } inline ReadOnlyCollection_1_t52C38CE86D68A2D1C8C94E240170756F47476FB0 * get_systemTimeZones_14() const { return ___systemTimeZones_14; } inline ReadOnlyCollection_1_t52C38CE86D68A2D1C8C94E240170756F47476FB0 ** get_address_of_systemTimeZones_14() { return &___systemTimeZones_14; } inline void set_systemTimeZones_14(ReadOnlyCollection_1_t52C38CE86D68A2D1C8C94E240170756F47476FB0 * value) { ___systemTimeZones_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___systemTimeZones_14), (void*)value); } }; // System.TimeZoneInfo // System.Type 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(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(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(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(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(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(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(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); } }; // System.Type // System.Xml.Serialization.TypeData struct TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_StaticFields { public: // System.String[] System.Xml.Serialization.TypeData::keywords StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___keywords_12; public: inline static int32_t get_offset_of_keywords_12() { return static_cast(offsetof(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2_StaticFields, ___keywords_12)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_keywords_12() const { return ___keywords_12; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_keywords_12() { return &___keywords_12; } inline void set_keywords_12(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___keywords_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___keywords_12), (void*)value); } }; // System.Xml.Serialization.TypeData // System.Uri struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields { public: // System.String System.Uri::UriSchemeFile String_t* ___UriSchemeFile_0; // System.String System.Uri::UriSchemeFtp String_t* ___UriSchemeFtp_1; // System.String System.Uri::UriSchemeGopher String_t* ___UriSchemeGopher_2; // System.String System.Uri::UriSchemeHttp String_t* ___UriSchemeHttp_3; // System.String System.Uri::UriSchemeHttps String_t* ___UriSchemeHttps_4; // System.String System.Uri::UriSchemeWs String_t* ___UriSchemeWs_5; // System.String System.Uri::UriSchemeWss String_t* ___UriSchemeWss_6; // System.String System.Uri::UriSchemeMailto String_t* ___UriSchemeMailto_7; // System.String System.Uri::UriSchemeNews String_t* ___UriSchemeNews_8; // System.String System.Uri::UriSchemeNntp String_t* ___UriSchemeNntp_9; // System.String System.Uri::UriSchemeNetTcp String_t* ___UriSchemeNetTcp_10; // System.String System.Uri::UriSchemeNetPipe String_t* ___UriSchemeNetPipe_11; // System.String System.Uri::SchemeDelimiter String_t* ___SchemeDelimiter_12; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized bool ___s_ConfigInitialized_20; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing bool ___s_ConfigInitializing_21; // System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope int32_t ___s_IdnScope_22; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing bool ___s_IriParsing_23; // System.Boolean System.Uri::useDotNetRelativeOrAbsolute bool ___useDotNetRelativeOrAbsolute_24; // System.Boolean System.Uri::IsWindowsFileSystem bool ___IsWindowsFileSystem_25; // System.Object System.Uri::s_initLock RuntimeObject * ___s_initLock_26; // System.Char[] System.Uri::HexLowerChars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___HexLowerChars_27; // System.Char[] System.Uri::_WSchars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ____WSchars_28; public: inline static int32_t get_offset_of_UriSchemeFile_0() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFile_0)); } inline String_t* get_UriSchemeFile_0() const { return ___UriSchemeFile_0; } inline String_t** get_address_of_UriSchemeFile_0() { return &___UriSchemeFile_0; } inline void set_UriSchemeFile_0(String_t* value) { ___UriSchemeFile_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFile_0), (void*)value); } inline static int32_t get_offset_of_UriSchemeFtp_1() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFtp_1)); } inline String_t* get_UriSchemeFtp_1() const { return ___UriSchemeFtp_1; } inline String_t** get_address_of_UriSchemeFtp_1() { return &___UriSchemeFtp_1; } inline void set_UriSchemeFtp_1(String_t* value) { ___UriSchemeFtp_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFtp_1), (void*)value); } inline static int32_t get_offset_of_UriSchemeGopher_2() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeGopher_2)); } inline String_t* get_UriSchemeGopher_2() const { return ___UriSchemeGopher_2; } inline String_t** get_address_of_UriSchemeGopher_2() { return &___UriSchemeGopher_2; } inline void set_UriSchemeGopher_2(String_t* value) { ___UriSchemeGopher_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeGopher_2), (void*)value); } inline static int32_t get_offset_of_UriSchemeHttp_3() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttp_3)); } inline String_t* get_UriSchemeHttp_3() const { return ___UriSchemeHttp_3; } inline String_t** get_address_of_UriSchemeHttp_3() { return &___UriSchemeHttp_3; } inline void set_UriSchemeHttp_3(String_t* value) { ___UriSchemeHttp_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttp_3), (void*)value); } inline static int32_t get_offset_of_UriSchemeHttps_4() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttps_4)); } inline String_t* get_UriSchemeHttps_4() const { return ___UriSchemeHttps_4; } inline String_t** get_address_of_UriSchemeHttps_4() { return &___UriSchemeHttps_4; } inline void set_UriSchemeHttps_4(String_t* value) { ___UriSchemeHttps_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttps_4), (void*)value); } inline static int32_t get_offset_of_UriSchemeWs_5() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWs_5)); } inline String_t* get_UriSchemeWs_5() const { return ___UriSchemeWs_5; } inline String_t** get_address_of_UriSchemeWs_5() { return &___UriSchemeWs_5; } inline void set_UriSchemeWs_5(String_t* value) { ___UriSchemeWs_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWs_5), (void*)value); } inline static int32_t get_offset_of_UriSchemeWss_6() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWss_6)); } inline String_t* get_UriSchemeWss_6() const { return ___UriSchemeWss_6; } inline String_t** get_address_of_UriSchemeWss_6() { return &___UriSchemeWss_6; } inline void set_UriSchemeWss_6(String_t* value) { ___UriSchemeWss_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWss_6), (void*)value); } inline static int32_t get_offset_of_UriSchemeMailto_7() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeMailto_7)); } inline String_t* get_UriSchemeMailto_7() const { return ___UriSchemeMailto_7; } inline String_t** get_address_of_UriSchemeMailto_7() { return &___UriSchemeMailto_7; } inline void set_UriSchemeMailto_7(String_t* value) { ___UriSchemeMailto_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeMailto_7), (void*)value); } inline static int32_t get_offset_of_UriSchemeNews_8() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNews_8)); } inline String_t* get_UriSchemeNews_8() const { return ___UriSchemeNews_8; } inline String_t** get_address_of_UriSchemeNews_8() { return &___UriSchemeNews_8; } inline void set_UriSchemeNews_8(String_t* value) { ___UriSchemeNews_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNews_8), (void*)value); } inline static int32_t get_offset_of_UriSchemeNntp_9() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNntp_9)); } inline String_t* get_UriSchemeNntp_9() const { return ___UriSchemeNntp_9; } inline String_t** get_address_of_UriSchemeNntp_9() { return &___UriSchemeNntp_9; } inline void set_UriSchemeNntp_9(String_t* value) { ___UriSchemeNntp_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNntp_9), (void*)value); } inline static int32_t get_offset_of_UriSchemeNetTcp_10() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetTcp_10)); } inline String_t* get_UriSchemeNetTcp_10() const { return ___UriSchemeNetTcp_10; } inline String_t** get_address_of_UriSchemeNetTcp_10() { return &___UriSchemeNetTcp_10; } inline void set_UriSchemeNetTcp_10(String_t* value) { ___UriSchemeNetTcp_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetTcp_10), (void*)value); } inline static int32_t get_offset_of_UriSchemeNetPipe_11() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetPipe_11)); } inline String_t* get_UriSchemeNetPipe_11() const { return ___UriSchemeNetPipe_11; } inline String_t** get_address_of_UriSchemeNetPipe_11() { return &___UriSchemeNetPipe_11; } inline void set_UriSchemeNetPipe_11(String_t* value) { ___UriSchemeNetPipe_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetPipe_11), (void*)value); } inline static int32_t get_offset_of_SchemeDelimiter_12() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___SchemeDelimiter_12)); } inline String_t* get_SchemeDelimiter_12() const { return ___SchemeDelimiter_12; } inline String_t** get_address_of_SchemeDelimiter_12() { return &___SchemeDelimiter_12; } inline void set_SchemeDelimiter_12(String_t* value) { ___SchemeDelimiter_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___SchemeDelimiter_12), (void*)value); } inline static int32_t get_offset_of_s_ConfigInitialized_20() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitialized_20)); } inline bool get_s_ConfigInitialized_20() const { return ___s_ConfigInitialized_20; } inline bool* get_address_of_s_ConfigInitialized_20() { return &___s_ConfigInitialized_20; } inline void set_s_ConfigInitialized_20(bool value) { ___s_ConfigInitialized_20 = value; } inline static int32_t get_offset_of_s_ConfigInitializing_21() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitializing_21)); } inline bool get_s_ConfigInitializing_21() const { return ___s_ConfigInitializing_21; } inline bool* get_address_of_s_ConfigInitializing_21() { return &___s_ConfigInitializing_21; } inline void set_s_ConfigInitializing_21(bool value) { ___s_ConfigInitializing_21 = value; } inline static int32_t get_offset_of_s_IdnScope_22() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IdnScope_22)); } inline int32_t get_s_IdnScope_22() const { return ___s_IdnScope_22; } inline int32_t* get_address_of_s_IdnScope_22() { return &___s_IdnScope_22; } inline void set_s_IdnScope_22(int32_t value) { ___s_IdnScope_22 = value; } inline static int32_t get_offset_of_s_IriParsing_23() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IriParsing_23)); } inline bool get_s_IriParsing_23() const { return ___s_IriParsing_23; } inline bool* get_address_of_s_IriParsing_23() { return &___s_IriParsing_23; } inline void set_s_IriParsing_23(bool value) { ___s_IriParsing_23 = value; } inline static int32_t get_offset_of_useDotNetRelativeOrAbsolute_24() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___useDotNetRelativeOrAbsolute_24)); } inline bool get_useDotNetRelativeOrAbsolute_24() const { return ___useDotNetRelativeOrAbsolute_24; } inline bool* get_address_of_useDotNetRelativeOrAbsolute_24() { return &___useDotNetRelativeOrAbsolute_24; } inline void set_useDotNetRelativeOrAbsolute_24(bool value) { ___useDotNetRelativeOrAbsolute_24 = value; } inline static int32_t get_offset_of_IsWindowsFileSystem_25() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___IsWindowsFileSystem_25)); } inline bool get_IsWindowsFileSystem_25() const { return ___IsWindowsFileSystem_25; } inline bool* get_address_of_IsWindowsFileSystem_25() { return &___IsWindowsFileSystem_25; } inline void set_IsWindowsFileSystem_25(bool value) { ___IsWindowsFileSystem_25 = value; } inline static int32_t get_offset_of_s_initLock_26() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_initLock_26)); } inline RuntimeObject * get_s_initLock_26() const { return ___s_initLock_26; } inline RuntimeObject ** get_address_of_s_initLock_26() { return &___s_initLock_26; } inline void set_s_initLock_26(RuntimeObject * value) { ___s_initLock_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_initLock_26), (void*)value); } inline static int32_t get_offset_of_HexLowerChars_27() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___HexLowerChars_27)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_HexLowerChars_27() const { return ___HexLowerChars_27; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_HexLowerChars_27() { return &___HexLowerChars_27; } inline void set_HexLowerChars_27(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___HexLowerChars_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___HexLowerChars_27), (void*)value); } inline static int32_t get_offset_of__WSchars_28() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ____WSchars_28)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get__WSchars_28() const { return ____WSchars_28; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of__WSchars_28() { return &____WSchars_28; } inline void set__WSchars_28(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ____WSchars_28 = value; Il2CppCodeGenWriteBarrier((void**)(&____WSchars_28), (void*)value); } }; // System.Uri // System.Net.WebRequest struct WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_StaticFields { public: // System.Collections.ArrayList modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.WebRequest::s_PrefixList ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___s_PrefixList_1; // System.Object System.Net.WebRequest::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_2; // System.Net.TimerThread/Queue System.Net.WebRequest::s_DefaultTimerQueue Queue_tBA613BE3643BDEB5F58ACBD9BD6499402CA178BB * ___s_DefaultTimerQueue_3; // System.Net.WebRequest/DesignerWebRequestCreate System.Net.WebRequest::webRequestCreate DesignerWebRequestCreate_tC9CEDD13174469ABB2A24A158F14669B05BA262A * ___webRequestCreate_9; // System.Net.IWebProxy modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.WebRequest::s_DefaultWebProxy RuntimeObject* ___s_DefaultWebProxy_10; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.WebRequest::s_DefaultWebProxyInitialized bool ___s_DefaultWebProxyInitialized_11; public: inline static int32_t get_offset_of_s_PrefixList_1() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_StaticFields, ___s_PrefixList_1)); } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_s_PrefixList_1() const { return ___s_PrefixList_1; } inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_s_PrefixList_1() { return &___s_PrefixList_1; } inline void set_s_PrefixList_1(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value) { ___s_PrefixList_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_PrefixList_1), (void*)value); } inline static int32_t get_offset_of_s_InternalSyncObject_2() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_StaticFields, ___s_InternalSyncObject_2)); } inline RuntimeObject * get_s_InternalSyncObject_2() const { return ___s_InternalSyncObject_2; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_2() { return &___s_InternalSyncObject_2; } inline void set_s_InternalSyncObject_2(RuntimeObject * value) { ___s_InternalSyncObject_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_2), (void*)value); } inline static int32_t get_offset_of_s_DefaultTimerQueue_3() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_StaticFields, ___s_DefaultTimerQueue_3)); } inline Queue_tBA613BE3643BDEB5F58ACBD9BD6499402CA178BB * get_s_DefaultTimerQueue_3() const { return ___s_DefaultTimerQueue_3; } inline Queue_tBA613BE3643BDEB5F58ACBD9BD6499402CA178BB ** get_address_of_s_DefaultTimerQueue_3() { return &___s_DefaultTimerQueue_3; } inline void set_s_DefaultTimerQueue_3(Queue_tBA613BE3643BDEB5F58ACBD9BD6499402CA178BB * value) { ___s_DefaultTimerQueue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultTimerQueue_3), (void*)value); } inline static int32_t get_offset_of_webRequestCreate_9() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_StaticFields, ___webRequestCreate_9)); } inline DesignerWebRequestCreate_tC9CEDD13174469ABB2A24A158F14669B05BA262A * get_webRequestCreate_9() const { return ___webRequestCreate_9; } inline DesignerWebRequestCreate_tC9CEDD13174469ABB2A24A158F14669B05BA262A ** get_address_of_webRequestCreate_9() { return &___webRequestCreate_9; } inline void set_webRequestCreate_9(DesignerWebRequestCreate_tC9CEDD13174469ABB2A24A158F14669B05BA262A * value) { ___webRequestCreate_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___webRequestCreate_9), (void*)value); } inline static int32_t get_offset_of_s_DefaultWebProxy_10() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_StaticFields, ___s_DefaultWebProxy_10)); } inline RuntimeObject* get_s_DefaultWebProxy_10() const { return ___s_DefaultWebProxy_10; } inline RuntimeObject** get_address_of_s_DefaultWebProxy_10() { return &___s_DefaultWebProxy_10; } inline void set_s_DefaultWebProxy_10(RuntimeObject* value) { ___s_DefaultWebProxy_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultWebProxy_10), (void*)value); } inline static int32_t get_offset_of_s_DefaultWebProxyInitialized_11() { return static_cast(offsetof(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_StaticFields, ___s_DefaultWebProxyInitialized_11)); } inline bool get_s_DefaultWebProxyInitialized_11() const { return ___s_DefaultWebProxyInitialized_11; } inline bool* get_address_of_s_DefaultWebProxyInitialized_11() { return &___s_DefaultWebProxyInitialized_11; } inline void set_s_DefaultWebProxyInitialized_11(bool value) { ___s_DefaultWebProxyInitialized_11 = value; } }; // System.Net.WebRequest // System.Xml.Schema.XmlAtomicValue // System.Xml.Schema.XmlAtomicValue // System.Xml.Schema.XmlBaseConverter struct XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields { public: // System.Type System.Xml.Schema.XmlBaseConverter::ICollectionType Type_t * ___ICollectionType_3; // System.Type System.Xml.Schema.XmlBaseConverter::IEnumerableType Type_t * ___IEnumerableType_4; // System.Type System.Xml.Schema.XmlBaseConverter::IListType Type_t * ___IListType_5; // System.Type System.Xml.Schema.XmlBaseConverter::ObjectArrayType Type_t * ___ObjectArrayType_6; // System.Type System.Xml.Schema.XmlBaseConverter::StringArrayType Type_t * ___StringArrayType_7; // System.Type System.Xml.Schema.XmlBaseConverter::XmlAtomicValueArrayType Type_t * ___XmlAtomicValueArrayType_8; // System.Type System.Xml.Schema.XmlBaseConverter::DecimalType Type_t * ___DecimalType_9; // System.Type System.Xml.Schema.XmlBaseConverter::Int32Type Type_t * ___Int32Type_10; // System.Type System.Xml.Schema.XmlBaseConverter::Int64Type Type_t * ___Int64Type_11; // System.Type System.Xml.Schema.XmlBaseConverter::StringType Type_t * ___StringType_12; // System.Type System.Xml.Schema.XmlBaseConverter::XmlAtomicValueType Type_t * ___XmlAtomicValueType_13; // System.Type System.Xml.Schema.XmlBaseConverter::ObjectType Type_t * ___ObjectType_14; // System.Type System.Xml.Schema.XmlBaseConverter::ByteType Type_t * ___ByteType_15; // System.Type System.Xml.Schema.XmlBaseConverter::Int16Type Type_t * ___Int16Type_16; // System.Type System.Xml.Schema.XmlBaseConverter::SByteType Type_t * ___SByteType_17; // System.Type System.Xml.Schema.XmlBaseConverter::UInt16Type Type_t * ___UInt16Type_18; // System.Type System.Xml.Schema.XmlBaseConverter::UInt32Type Type_t * ___UInt32Type_19; // System.Type System.Xml.Schema.XmlBaseConverter::UInt64Type Type_t * ___UInt64Type_20; // System.Type System.Xml.Schema.XmlBaseConverter::XPathItemType Type_t * ___XPathItemType_21; // System.Type System.Xml.Schema.XmlBaseConverter::DoubleType Type_t * ___DoubleType_22; // System.Type System.Xml.Schema.XmlBaseConverter::SingleType Type_t * ___SingleType_23; // System.Type System.Xml.Schema.XmlBaseConverter::DateTimeType Type_t * ___DateTimeType_24; // System.Type System.Xml.Schema.XmlBaseConverter::DateTimeOffsetType Type_t * ___DateTimeOffsetType_25; // System.Type System.Xml.Schema.XmlBaseConverter::BooleanType Type_t * ___BooleanType_26; // System.Type System.Xml.Schema.XmlBaseConverter::ByteArrayType Type_t * ___ByteArrayType_27; // System.Type System.Xml.Schema.XmlBaseConverter::XmlQualifiedNameType Type_t * ___XmlQualifiedNameType_28; // System.Type System.Xml.Schema.XmlBaseConverter::UriType Type_t * ___UriType_29; // System.Type System.Xml.Schema.XmlBaseConverter::TimeSpanType Type_t * ___TimeSpanType_30; // System.Type System.Xml.Schema.XmlBaseConverter::XPathNavigatorType Type_t * ___XPathNavigatorType_31; public: inline static int32_t get_offset_of_ICollectionType_3() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___ICollectionType_3)); } inline Type_t * get_ICollectionType_3() const { return ___ICollectionType_3; } inline Type_t ** get_address_of_ICollectionType_3() { return &___ICollectionType_3; } inline void set_ICollectionType_3(Type_t * value) { ___ICollectionType_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___ICollectionType_3), (void*)value); } inline static int32_t get_offset_of_IEnumerableType_4() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___IEnumerableType_4)); } inline Type_t * get_IEnumerableType_4() const { return ___IEnumerableType_4; } inline Type_t ** get_address_of_IEnumerableType_4() { return &___IEnumerableType_4; } inline void set_IEnumerableType_4(Type_t * value) { ___IEnumerableType_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___IEnumerableType_4), (void*)value); } inline static int32_t get_offset_of_IListType_5() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___IListType_5)); } inline Type_t * get_IListType_5() const { return ___IListType_5; } inline Type_t ** get_address_of_IListType_5() { return &___IListType_5; } inline void set_IListType_5(Type_t * value) { ___IListType_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___IListType_5), (void*)value); } inline static int32_t get_offset_of_ObjectArrayType_6() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___ObjectArrayType_6)); } inline Type_t * get_ObjectArrayType_6() const { return ___ObjectArrayType_6; } inline Type_t ** get_address_of_ObjectArrayType_6() { return &___ObjectArrayType_6; } inline void set_ObjectArrayType_6(Type_t * value) { ___ObjectArrayType_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___ObjectArrayType_6), (void*)value); } inline static int32_t get_offset_of_StringArrayType_7() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___StringArrayType_7)); } inline Type_t * get_StringArrayType_7() const { return ___StringArrayType_7; } inline Type_t ** get_address_of_StringArrayType_7() { return &___StringArrayType_7; } inline void set_StringArrayType_7(Type_t * value) { ___StringArrayType_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___StringArrayType_7), (void*)value); } inline static int32_t get_offset_of_XmlAtomicValueArrayType_8() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___XmlAtomicValueArrayType_8)); } inline Type_t * get_XmlAtomicValueArrayType_8() const { return ___XmlAtomicValueArrayType_8; } inline Type_t ** get_address_of_XmlAtomicValueArrayType_8() { return &___XmlAtomicValueArrayType_8; } inline void set_XmlAtomicValueArrayType_8(Type_t * value) { ___XmlAtomicValueArrayType_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___XmlAtomicValueArrayType_8), (void*)value); } inline static int32_t get_offset_of_DecimalType_9() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___DecimalType_9)); } inline Type_t * get_DecimalType_9() const { return ___DecimalType_9; } inline Type_t ** get_address_of_DecimalType_9() { return &___DecimalType_9; } inline void set_DecimalType_9(Type_t * value) { ___DecimalType_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___DecimalType_9), (void*)value); } inline static int32_t get_offset_of_Int32Type_10() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___Int32Type_10)); } inline Type_t * get_Int32Type_10() const { return ___Int32Type_10; } inline Type_t ** get_address_of_Int32Type_10() { return &___Int32Type_10; } inline void set_Int32Type_10(Type_t * value) { ___Int32Type_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___Int32Type_10), (void*)value); } inline static int32_t get_offset_of_Int64Type_11() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___Int64Type_11)); } inline Type_t * get_Int64Type_11() const { return ___Int64Type_11; } inline Type_t ** get_address_of_Int64Type_11() { return &___Int64Type_11; } inline void set_Int64Type_11(Type_t * value) { ___Int64Type_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___Int64Type_11), (void*)value); } inline static int32_t get_offset_of_StringType_12() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___StringType_12)); } inline Type_t * get_StringType_12() const { return ___StringType_12; } inline Type_t ** get_address_of_StringType_12() { return &___StringType_12; } inline void set_StringType_12(Type_t * value) { ___StringType_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___StringType_12), (void*)value); } inline static int32_t get_offset_of_XmlAtomicValueType_13() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___XmlAtomicValueType_13)); } inline Type_t * get_XmlAtomicValueType_13() const { return ___XmlAtomicValueType_13; } inline Type_t ** get_address_of_XmlAtomicValueType_13() { return &___XmlAtomicValueType_13; } inline void set_XmlAtomicValueType_13(Type_t * value) { ___XmlAtomicValueType_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___XmlAtomicValueType_13), (void*)value); } inline static int32_t get_offset_of_ObjectType_14() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___ObjectType_14)); } inline Type_t * get_ObjectType_14() const { return ___ObjectType_14; } inline Type_t ** get_address_of_ObjectType_14() { return &___ObjectType_14; } inline void set_ObjectType_14(Type_t * value) { ___ObjectType_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___ObjectType_14), (void*)value); } inline static int32_t get_offset_of_ByteType_15() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___ByteType_15)); } inline Type_t * get_ByteType_15() const { return ___ByteType_15; } inline Type_t ** get_address_of_ByteType_15() { return &___ByteType_15; } inline void set_ByteType_15(Type_t * value) { ___ByteType_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___ByteType_15), (void*)value); } inline static int32_t get_offset_of_Int16Type_16() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___Int16Type_16)); } inline Type_t * get_Int16Type_16() const { return ___Int16Type_16; } inline Type_t ** get_address_of_Int16Type_16() { return &___Int16Type_16; } inline void set_Int16Type_16(Type_t * value) { ___Int16Type_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___Int16Type_16), (void*)value); } inline static int32_t get_offset_of_SByteType_17() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___SByteType_17)); } inline Type_t * get_SByteType_17() const { return ___SByteType_17; } inline Type_t ** get_address_of_SByteType_17() { return &___SByteType_17; } inline void set_SByteType_17(Type_t * value) { ___SByteType_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___SByteType_17), (void*)value); } inline static int32_t get_offset_of_UInt16Type_18() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___UInt16Type_18)); } inline Type_t * get_UInt16Type_18() const { return ___UInt16Type_18; } inline Type_t ** get_address_of_UInt16Type_18() { return &___UInt16Type_18; } inline void set_UInt16Type_18(Type_t * value) { ___UInt16Type_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___UInt16Type_18), (void*)value); } inline static int32_t get_offset_of_UInt32Type_19() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___UInt32Type_19)); } inline Type_t * get_UInt32Type_19() const { return ___UInt32Type_19; } inline Type_t ** get_address_of_UInt32Type_19() { return &___UInt32Type_19; } inline void set_UInt32Type_19(Type_t * value) { ___UInt32Type_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___UInt32Type_19), (void*)value); } inline static int32_t get_offset_of_UInt64Type_20() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___UInt64Type_20)); } inline Type_t * get_UInt64Type_20() const { return ___UInt64Type_20; } inline Type_t ** get_address_of_UInt64Type_20() { return &___UInt64Type_20; } inline void set_UInt64Type_20(Type_t * value) { ___UInt64Type_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___UInt64Type_20), (void*)value); } inline static int32_t get_offset_of_XPathItemType_21() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___XPathItemType_21)); } inline Type_t * get_XPathItemType_21() const { return ___XPathItemType_21; } inline Type_t ** get_address_of_XPathItemType_21() { return &___XPathItemType_21; } inline void set_XPathItemType_21(Type_t * value) { ___XPathItemType_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___XPathItemType_21), (void*)value); } inline static int32_t get_offset_of_DoubleType_22() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___DoubleType_22)); } inline Type_t * get_DoubleType_22() const { return ___DoubleType_22; } inline Type_t ** get_address_of_DoubleType_22() { return &___DoubleType_22; } inline void set_DoubleType_22(Type_t * value) { ___DoubleType_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___DoubleType_22), (void*)value); } inline static int32_t get_offset_of_SingleType_23() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___SingleType_23)); } inline Type_t * get_SingleType_23() const { return ___SingleType_23; } inline Type_t ** get_address_of_SingleType_23() { return &___SingleType_23; } inline void set_SingleType_23(Type_t * value) { ___SingleType_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___SingleType_23), (void*)value); } inline static int32_t get_offset_of_DateTimeType_24() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___DateTimeType_24)); } inline Type_t * get_DateTimeType_24() const { return ___DateTimeType_24; } inline Type_t ** get_address_of_DateTimeType_24() { return &___DateTimeType_24; } inline void set_DateTimeType_24(Type_t * value) { ___DateTimeType_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___DateTimeType_24), (void*)value); } inline static int32_t get_offset_of_DateTimeOffsetType_25() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___DateTimeOffsetType_25)); } inline Type_t * get_DateTimeOffsetType_25() const { return ___DateTimeOffsetType_25; } inline Type_t ** get_address_of_DateTimeOffsetType_25() { return &___DateTimeOffsetType_25; } inline void set_DateTimeOffsetType_25(Type_t * value) { ___DateTimeOffsetType_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___DateTimeOffsetType_25), (void*)value); } inline static int32_t get_offset_of_BooleanType_26() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___BooleanType_26)); } inline Type_t * get_BooleanType_26() const { return ___BooleanType_26; } inline Type_t ** get_address_of_BooleanType_26() { return &___BooleanType_26; } inline void set_BooleanType_26(Type_t * value) { ___BooleanType_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___BooleanType_26), (void*)value); } inline static int32_t get_offset_of_ByteArrayType_27() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___ByteArrayType_27)); } inline Type_t * get_ByteArrayType_27() const { return ___ByteArrayType_27; } inline Type_t ** get_address_of_ByteArrayType_27() { return &___ByteArrayType_27; } inline void set_ByteArrayType_27(Type_t * value) { ___ByteArrayType_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___ByteArrayType_27), (void*)value); } inline static int32_t get_offset_of_XmlQualifiedNameType_28() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___XmlQualifiedNameType_28)); } inline Type_t * get_XmlQualifiedNameType_28() const { return ___XmlQualifiedNameType_28; } inline Type_t ** get_address_of_XmlQualifiedNameType_28() { return &___XmlQualifiedNameType_28; } inline void set_XmlQualifiedNameType_28(Type_t * value) { ___XmlQualifiedNameType_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___XmlQualifiedNameType_28), (void*)value); } inline static int32_t get_offset_of_UriType_29() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___UriType_29)); } inline Type_t * get_UriType_29() const { return ___UriType_29; } inline Type_t ** get_address_of_UriType_29() { return &___UriType_29; } inline void set_UriType_29(Type_t * value) { ___UriType_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriType_29), (void*)value); } inline static int32_t get_offset_of_TimeSpanType_30() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___TimeSpanType_30)); } inline Type_t * get_TimeSpanType_30() const { return ___TimeSpanType_30; } inline Type_t ** get_address_of_TimeSpanType_30() { return &___TimeSpanType_30; } inline void set_TimeSpanType_30(Type_t * value) { ___TimeSpanType_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___TimeSpanType_30), (void*)value); } inline static int32_t get_offset_of_XPathNavigatorType_31() { return static_cast(offsetof(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields, ___XPathNavigatorType_31)); } inline Type_t * get_XPathNavigatorType_31() const { return ___XPathNavigatorType_31; } inline Type_t ** get_address_of_XPathNavigatorType_31() { return &___XPathNavigatorType_31; } inline void set_XPathNavigatorType_31(Type_t * value) { ___XPathNavigatorType_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___XPathNavigatorType_31), (void*)value); } }; // System.Xml.Schema.XmlBaseConverter // System.Xml.XmlCachedStream // System.Xml.XmlCachedStream // System.Xml.Serialization.XmlMapping // System.Xml.Serialization.XmlMapping // System.Xml.Schema.XmlSchemaParticle struct XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789_StaticFields { public: // System.Xml.Schema.XmlSchemaParticle System.Xml.Schema.XmlSchemaParticle::Empty XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789 * ___Empty_3; public: inline static int32_t get_offset_of_Empty_3() { return static_cast(offsetof(XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789_StaticFields, ___Empty_3)); } inline XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789 * get_Empty_3() const { return ___Empty_3; } inline XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789 ** get_address_of_Empty_3() { return &___Empty_3; } inline void set_Empty_3(XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789 * value) { ___Empty_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_3), (void*)value); } }; // System.Xml.Schema.XmlSchemaParticle // System.Xml.Schema.XmlSchemaType // System.Xml.Schema.XmlSchemaType // System.Xml.Serialization.XmlSerializationReaderInterpreter struct XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26_StaticFields { public: // System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReaderInterpreter::AnyType XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___AnyType_27; // System.Object[] System.Xml.Serialization.XmlSerializationReaderInterpreter::empty_array ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___empty_array_28; public: inline static int32_t get_offset_of_AnyType_27() { return static_cast(offsetof(XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26_StaticFields, ___AnyType_27)); } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * get_AnyType_27() const { return ___AnyType_27; } inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 ** get_address_of_AnyType_27() { return &___AnyType_27; } inline void set_AnyType_27(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * value) { ___AnyType_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___AnyType_27), (void*)value); } inline static int32_t get_offset_of_empty_array_28() { return static_cast(offsetof(XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26_StaticFields, ___empty_array_28)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_empty_array_28() const { return ___empty_array_28; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_empty_array_28() { return &___empty_array_28; } inline void set_empty_array_28(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___empty_array_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___empty_array_28), (void*)value); } }; // System.Xml.Serialization.XmlSerializationReaderInterpreter // System.Xml.Serialization.XmlSerializationWriterInterpreter // System.Xml.Serialization.XmlSerializationWriterInterpreter // System.Xml.XmlTextReaderImpl // System.Xml.XmlTextReaderImpl // System.Xml.XmlTextWriter struct XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields { public: // System.String[] System.Xml.XmlTextWriter::stateName StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___stateName_24; // System.String[] System.Xml.XmlTextWriter::tokenName StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___tokenName_25; // System.Xml.XmlTextWriter/State[] System.Xml.XmlTextWriter::stateTableDefault StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* ___stateTableDefault_26; // System.Xml.XmlTextWriter/State[] System.Xml.XmlTextWriter::stateTableDocument StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* ___stateTableDocument_27; public: inline static int32_t get_offset_of_stateName_24() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields, ___stateName_24)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_stateName_24() const { return ___stateName_24; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_stateName_24() { return &___stateName_24; } inline void set_stateName_24(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___stateName_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___stateName_24), (void*)value); } inline static int32_t get_offset_of_tokenName_25() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields, ___tokenName_25)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_tokenName_25() const { return ___tokenName_25; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_tokenName_25() { return &___tokenName_25; } inline void set_tokenName_25(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___tokenName_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___tokenName_25), (void*)value); } inline static int32_t get_offset_of_stateTableDefault_26() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields, ___stateTableDefault_26)); } inline StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* get_stateTableDefault_26() const { return ___stateTableDefault_26; } inline StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A** get_address_of_stateTableDefault_26() { return &___stateTableDefault_26; } inline void set_stateTableDefault_26(StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* value) { ___stateTableDefault_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___stateTableDefault_26), (void*)value); } inline static int32_t get_offset_of_stateTableDocument_27() { return static_cast(offsetof(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields, ___stateTableDocument_27)); } inline StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* get_stateTableDocument_27() const { return ___stateTableDocument_27; } inline StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A** get_address_of_stateTableDocument_27() { return &___stateTableDocument_27; } inline void set_stateTableDocument_27(StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* value) { ___stateTableDocument_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___stateTableDocument_27), (void*)value); } }; // System.Xml.XmlTextWriter // System.Xml.Serialization.XmlTypeMapElementInfo // System.Xml.Serialization.XmlTypeMapElementInfo // System.Xml.Serialization.XmlTypeMapMemberAnyElement // System.Xml.Serialization.XmlTypeMapMemberAnyElement // System.Xml.Serialization.XmlTypeMapMemberAttribute // System.Xml.Serialization.XmlTypeMapMemberAttribute // System.Xml.Serialization.XmlTypeMapMemberFlatList // System.Xml.Serialization.XmlTypeMapMemberFlatList // System.Xml.XmlWhitespace // System.Xml.XmlWhitespace // System.Xml.DtdParser/ParseElementOnlyContent_LocalFrame // System.Xml.DtdParser/ParseElementOnlyContent_LocalFrame // System.Net.HttpWebRequest/AuthorizationState // System.Net.HttpWebRequest/AuthorizationState // System.Xml.XmlDownloadManager/d__5 // System.Xml.XmlDownloadManager/d__5 // System.Xml.XmlTextReaderImpl/LaterInitParam // System.Xml.XmlTextReaderImpl/LaterInitParam // System.Xml.XmlTextReaderImpl/NodeData struct NodeData_tD504C5A621E7DD546954D87282438662327280EA_StaticFields { public: // System.Xml.XmlTextReaderImpl/NodeData modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.XmlTextReaderImpl/NodeData::s_None NodeData_tD504C5A621E7DD546954D87282438662327280EA * ___s_None_0; public: inline static int32_t get_offset_of_s_None_0() { return static_cast(offsetof(NodeData_tD504C5A621E7DD546954D87282438662327280EA_StaticFields, ___s_None_0)); } inline NodeData_tD504C5A621E7DD546954D87282438662327280EA * get_s_None_0() const { return ___s_None_0; } inline NodeData_tD504C5A621E7DD546954D87282438662327280EA ** get_address_of_s_None_0() { return &___s_None_0; } inline void set_s_None_0(NodeData_tD504C5A621E7DD546954D87282438662327280EA * value) { ___s_None_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_None_0), (void*)value); } }; // System.Xml.XmlTextReaderImpl/NodeData // System.Xml.XmlTextReaderImpl/XmlContext // System.Xml.XmlTextReaderImpl/XmlContext // System.Xml.XmlTextWriter/TagInfo // System.Xml.XmlTextWriter/TagInfo // System.Xml.XmlUrlResolver/d__15 // System.Xml.XmlUrlResolver/d__15 // System.Xml.Schema.XsdDateTime/Parser struct Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_StaticFields { public: // System.Int32[] System.Xml.Schema.XsdDateTime/Parser::Power10 Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___Power10_13; public: inline static int32_t get_offset_of_Power10_13() { return static_cast(offsetof(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_StaticFields, ___Power10_13)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_Power10_13() const { return ___Power10_13; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_Power10_13() { return &___Power10_13; } inline void set_Power10_13(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___Power10_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___Power10_13), (void*)value); } }; // System.Xml.Schema.XsdDateTime/Parser // System.Func`2 // System.Func`2 // System.Func`3 // System.Func`3 // System.ArgumentException // System.ArgumentException // System.ArithmeticException // System.ArithmeticException // System.AsyncCallback // System.AsyncCallback // System.FormatException // System.FormatException // System.Net.HttpWebRequest struct HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_StaticFields { public: // System.Int32 System.Net.HttpWebRequest::defaultMaxResponseHeadersLength int32_t ___defaultMaxResponseHeadersLength_54; public: inline static int32_t get_offset_of_defaultMaxResponseHeadersLength_54() { return static_cast(offsetof(HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_StaticFields, ___defaultMaxResponseHeadersLength_54)); } inline int32_t get_defaultMaxResponseHeadersLength_54() const { return ___defaultMaxResponseHeadersLength_54; } inline int32_t* get_address_of_defaultMaxResponseHeadersLength_54() { return &___defaultMaxResponseHeadersLength_54; } inline void set_defaultMaxResponseHeadersLength_54(int32_t value) { ___defaultMaxResponseHeadersLength_54 = value; } }; // System.Net.HttpWebRequest // System.InvalidCastException // System.InvalidCastException // System.InvalidOperationException // System.InvalidOperationException // System.Xml.XmlException // System.Xml.XmlException // System.Xml.Schema.XmlListConverter // System.Xml.Schema.XmlListConverter // System.Xml.Schema.XmlSchemaSimpleType // System.Xml.Schema.XmlSchemaSimpleType // System.Xml.Serialization.XmlSerializationCollectionFixupCallback // System.Xml.Serialization.XmlSerializationCollectionFixupCallback // System.Xml.Serialization.XmlSerializationFixupCallback // System.Xml.Serialization.XmlSerializationFixupCallback // System.Xml.Serialization.XmlTypeMapping // System.Xml.Serialization.XmlTypeMapping // System.Xml.SecureStringHasher/HashCodeOfStringDelegate // System.Xml.SecureStringHasher/HashCodeOfStringDelegate // System.Xml.XmlQualifiedName/HashCodeOfStringDelegate // System.Xml.XmlQualifiedName/HashCodeOfStringDelegate // System.Xml.Schema.XmlSchemaParticle/EmptyParticle // System.Xml.Schema.XmlSchemaParticle/EmptyParticle // System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate // System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate // System.ArgumentNullException // System.ArgumentNullException // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields { public: // System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage String_t* ____rangeMessage_18; public: inline static int32_t get_offset_of__rangeMessage_18() { return static_cast(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields, ____rangeMessage_18)); } inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; } inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; } inline void set__rangeMessage_18(String_t* value) { ____rangeMessage_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value); } }; // System.ArgumentOutOfRangeException // System.OverflowException // System.OverflowException // System.Xml.Schema.XmlUntypedConverter struct XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_StaticFields { public: // System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlUntypedConverter::Untyped XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * ___Untyped_34; // System.Xml.Schema.XmlValueConverter System.Xml.Schema.XmlUntypedConverter::UntypedList XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * ___UntypedList_35; public: inline static int32_t get_offset_of_Untyped_34() { return static_cast(offsetof(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_StaticFields, ___Untyped_34)); } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * get_Untyped_34() const { return ___Untyped_34; } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 ** get_address_of_Untyped_34() { return &___Untyped_34; } inline void set_Untyped_34(XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * value) { ___Untyped_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___Untyped_34), (void*)value); } inline static int32_t get_offset_of_UntypedList_35() { return static_cast(offsetof(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_StaticFields, ___UntypedList_35)); } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * get_UntypedList_35() const { return ___UntypedList_35; } inline XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 ** get_address_of_UntypedList_35() { return &___UntypedList_35; } inline void set_UntypedList_35(XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * value) { ___UntypedList_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___UntypedList_35), (void*)value); } }; // System.Xml.Schema.XmlUntypedConverter #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Xml.XmlTextWriter/Namespace[] struct NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6 : public RuntimeArray { public: ALIGN_FIELD (8) Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB m_Items[1]; public: inline Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___prefix_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___ns_1), (void*)NULL); #endif } inline Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___prefix_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___ns_1), (void*)NULL); #endif } }; // System.Xml.XmlTextWriter/TagInfo[] struct TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637 : public RuntimeArray { public: ALIGN_FIELD (8) TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 m_Items[1]; public: inline TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___name_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___prefix_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___defaultNs_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___xmlLang_5), (void*)NULL); #endif } inline TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___name_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___prefix_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___defaultNs_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___xmlLang_5), (void*)NULL); #endif } }; // System.Xml.XmlTextWriter/State[] struct StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: inline String_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline String_t** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, String_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34 : public RuntimeArray { public: ALIGN_FIELD (8) Il2CppChar m_Items[1]; public: inline Il2CppChar GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Il2CppChar value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value) { m_Items[index] = value; } }; // System.Reflection.MemberInfo[] struct MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E : public RuntimeArray { public: ALIGN_FIELD (8) MemberInfo_t * m_Items[1]; public: inline MemberInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline MemberInfo_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, MemberInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline MemberInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline MemberInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, MemberInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755 : public RuntimeArray { public: ALIGN_FIELD (8) Type_t * m_Items[1]; public: inline Type_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Type_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Type_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B : public RuntimeArray { public: ALIGN_FIELD (8) ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA m_Items[1]; public: inline ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL); } inline ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL); } }; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.Xml.Schema.XmlTypeCode[] struct XmlTypeCodeU5BU5D_t4B53622F8096A3BE4E235382465B2E0FF7B85D6B : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8 : public RuntimeArray { public: ALIGN_FIELD (8) Delegate_t * m_Items[1]; public: inline Delegate_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Delegate_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Delegate_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.Void System.Collections.Generic.Dictionary`2::.ctor(System.Collections.Generic.IEqualityComparer`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2F6EEA5A421346472B973CEC54962959F5A7A7E9_gshared (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(!0,!1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mD30FE5F3EA63CD6831E4AA9E6901323436D6F9A4_gshared (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * __this, RuntimeObject * ___key0, int32_t* ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::set_Item(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m9BDED5248054C2E86ECBA732FE7BCDAA32D0A118_gshared (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::Remove(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m1E56E91A9BB341EE54712AF20BAF2ADC09D267A0_gshared (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * __this, RuntimeObject * ___key0, const RuntimeMethod* method); // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::Create() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 AsyncTaskMethodBuilder_1_Create_mE593F9E703EBA7EF294FAC0F5C20F69AF4D08C26_gshared (const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::Startd__15>(!!0&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_mC3D06AB96938D18EA8788B4122A214E34FCE9679_gshared (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * __this, U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 * ___stateMachine0, const RuntimeMethod* method); // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::get_Task() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * AsyncTaskMethodBuilder_1_get_Task_m61DEC300353320E428E17DA0D59D61974F4415BB_gshared (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * __this, const RuntimeMethod* method); // System.Threading.Tasks.TaskFactory`1 System.Threading.Tasks.Task`1::get_Factory() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * Task_1_get_Factory_mB06FBCCE06A35CB0562F526C870C8071ADEEC8F3_gshared_inline (const RuntimeMethod* method); // System.Void System.Func`3::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_3__ctor_mD14F35586915F2F8014526C264BEA9D1FFAB667D_gshared (Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`2::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_mA7F3C5A0612B84E910DE92E77BA95101FD68EEDB_gshared (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Threading.Tasks.Task`1 System.Threading.Tasks.TaskFactory`1::FromAsync(System.Func`3,System.Func`2,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * TaskFactory_1_FromAsync_m472554AF393770AE0FD5D892C11D42D4E11DBB5F_gshared (TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * __this, Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * ___beginMethod0, Func_2_tA1AE73C8EA06E0496989AFDA0F8A2F0AD995A8ED * ___endMethod1, RuntimeObject * ___state2, const RuntimeMethod* method); // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1 System.Threading.Tasks.Task`1::ConfigureAwait(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t226372B9DEDA3AA0FC1B43D6C03CEC9111045F18 Task_1_ConfigureAwait_m0C99499DCC096AEE2A6AD075391C61037CC3DAA1_gshared (Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method); // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::GetAwaiter() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED ConfiguredTaskAwaitable_1_GetAwaiter_mFCE2327CEE19607ABB1CDCC8A6B145BDCF9820BC_gshared_inline (ConfiguredTaskAwaitable_1_t226372B9DEDA3AA0FC1B43D6C03CEC9111045F18 * __this, const RuntimeMethod* method); // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::get_IsCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m5E3746D1B0661A5BCD45816E83766F228A077D20_gshared (ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::AwaitUnsafeOnCompleted,System.Xml.XmlDownloadManager/d__5>(!!0&,!!1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED_TisU3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_mA8EB7BA8E6EA6B8013DA05920BC34EE617565BBD_gshared (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * __this, ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED * ___awaiter0, U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782 * ___stateMachine1, const RuntimeMethod* method); // !0 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ConfiguredTaskAwaiter_GetResult_mD385ED6B1C12DC6353D50409731FB1729FFD9FA5_gshared (ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::SetException(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m29521EB618E38AF72FF0C4094070C1489F4129B3_gshared (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * __this, Exception_t * ___exception0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::SetResult(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m3E4AB12877D4FE377F26708CF6899C49360007FA_gshared (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * __this, RuntimeObject * ___result0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m736C84D61B4AB2FCD150BD3945C6874471A9224D_gshared (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::AwaitUnsafeOnCompleted,System.Xml.XmlUrlResolver/d__15>(!!0&,!!1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED_TisU3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_mDAE57A4AFAD3B1106D854AC150240C2D1A344D57_gshared (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * __this, ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED * ___awaiter0, U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 * ___stateMachine1, const RuntimeMethod* method); // System.Xml.XmlCharType System.Xml.XmlCharType::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA XmlCharType_get_Instance_mEF3C732F10BE7095CF1A5B7A4CD44D9553184DEB (const RuntimeMethod* method); // System.Void System.Xml.XmlWriter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter__ctor_mAA10A026AD230D064314D2AE472A144D18418A01 (XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter/TagInfo::Init(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TagInfo_Init_mFC65CB7C7A7D7852E3A2825365F1BD35CC38F8CF (TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 * __this, int32_t ___nsTop0, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter__ctor_m99C6F457368131185E3DF47E3339A20D2C076357 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method); // System.Void System.IO.StreamWriter::.ctor(System.IO.Stream,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter__ctor_m4D0D93D2ED2D49AFB992D38F2102D5A72DD94D2E (StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding1, const RuntimeMethod* method); // System.Void System.IO.StreamWriter::.ctor(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter__ctor_m3D516CFFEDAC2849A8C3E997FD0233A61A482762 (StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, const RuntimeMethod* method); // System.Void System.Xml.XmlTextEncoder::.ctor(System.IO.TextWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder__ctor_m8142AA059B3675FE89F48542A7F013098FCDBCBC (XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * __this, TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * ___textWriter0, const RuntimeMethod* method); // System.Void System.Xml.XmlTextEncoder::set_QuoteChar(System.Char) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTextEncoder_set_QuoteChar_m1897FBEC0EAB4616C3FD961A12AFC0F7ED771824_inline (XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::StartDocument(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_StartDocument_mA79CE2624637971D48599CD491BE1BC587D6D364 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, int32_t ___standalone0, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::ValidateName(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_ValidateName_mBE854955EEA2F287F37611C7E4FE14E0C10A988B (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___name0, bool ___isNCName1, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::AutoComplete(System.Xml.XmlTextWriter/Token) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, int32_t ___token0, const RuntimeMethod* method); // System.String System.Char::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8 (Il2CppChar* __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::PushStack() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_PushStack_m446EA2C48B17B5C8B7044816EDEEC835F0283523 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method); // System.Int32 System.String::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method); // System.Int32 System.Xml.XmlTextWriter::LookupNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextWriter_LookupNamespace_mB4568061673EFBC795A43BB701ABE3335AFCE9A2 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___prefix0, const RuntimeMethod* method); // System.String System.Xml.Res::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3 (String_t* ___name0, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, const RuntimeMethod* method); // System.String System.Xml.XmlTextWriter::FindPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextWriter_FindPrefix_m51D5E641757962E17B432ADC03DB8537E0159FD8 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___ns0, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::PushNamespace(System.String,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_PushNamespace_mFAE3B22D92E1EE3EB61C94917C3E9A955D9CD5C2 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___prefix0, String_t* ___ns1, bool ___declared2, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::VerifyPrefixXml(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_VerifyPrefixXml_m7729FF5CEA9F697C2B498B672D02C4C895A287FB (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::InternalWriteEndElement(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_InternalWriteEndElement_mF39D8CB533A512D50269E722957BA39D259B7D9C (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, bool ___longFormat0, const RuntimeMethod* method); // System.Boolean System.String::op_Equality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Boolean System.String::op_Inequality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m45BEBD9C59D474454BD0F4AB6C9A8A2D05D40DBE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Int32 System.Xml.XmlTextWriter::LookupNamespaceInCurrentScope(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextWriter_LookupNamespaceInCurrentScope_m766D00D4AD47B6367237EF4F0926F9290F12A6C8 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___prefix0, const RuntimeMethod* method); // System.String System.Xml.XmlTextWriter::GeneratePrefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextWriter_GeneratePrefix_mDAA81F9152B833563172CDCAF7B19E9687335116 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlTextEncoder::StartAttribute(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_StartAttribute_m154B2203CF4424F0E8A6D1D80AC68B2E05FB7B32 (XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * __this, bool ___cacheAttrValue0, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mD99F5378A4220A0DA0D5097007417E777722ABDA (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method); // System.Void System.Xml.XmlTextEncoder::WriteRawWithSurrogateChecking(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteRawWithSurrogateChecking_mF667913FB3946B4C4AD6A88D2DD2065CFD0CC4A4 (XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * __this, String_t* ___text0, const RuntimeMethod* method); // System.Char System.String::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70 (String_t* __this, int32_t ___index0, const RuntimeMethod* method); // System.Int32 System.String::Compare(System.String,System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_m573A1F97B15F82C9AC7DC0BB1B381EEDCD2759CD (String_t* ___strA0, String_t* ___strB1, int32_t ___comparisonType2, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::InternalWriteProcessingInstruction(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_InternalWriteProcessingInstruction_m660B24A183CE1CD6B40DE25961036AA2786E8EB5 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method); // System.Void System.Xml.XmlTextEncoder::WriteEntityRef(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteEntityRef_mFF2D182F02D4066A4A835DE99DF7A5AF376A58B1 (XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * __this, String_t* ___name0, const RuntimeMethod* method); // System.Boolean System.Xml.XmlCharType::IsOnlyWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsOnlyWhitespace_m67C7128F455445CCB117BF101F75E69F41D1DBE5 (XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA * __this, String_t* ___str0, const RuntimeMethod* method); // System.Void System.Xml.XmlTextEncoder::Write(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_Write_m3D15126BEF6FE4BE6AA1FA9A25860A11649C8E3B (XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * __this, String_t* ___text0, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::AutoCompleteAll() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_AutoCompleteAll_m84FCFD43E3ECAE77234E1DA140AB15AE75F7E4DC (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Text.StringBuilder::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mEDFFE2D378A15F6DAB54D52661C84C1B52E7BA2E (StringBuilder_t * __this, int32_t ___capacity0, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m5D784E6CEEBE99ED8749AA4B9491D926273FD749 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.String System.Xml.Res::GetString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17 (String_t* ___name0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::Indent(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_Indent_m79DEE82659DC5B5F0C4E1E8E3E30C76E7F869851 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, bool ___beforeEndElement0, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::WriteEndAttributeQuote() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteEndAttributeQuote_m98AC4165AD8A683AE52D3683F2719E1C8CC578CD (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::WriteEndStartTag(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteEndStartTag_mBA4796BAC09CD5B25F711E65D61BC2BE8375D2F0 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, bool ___empty0, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::FlushEncoders() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_FlushEncoders_m6D7554550029EE5407C9149A740B03B138B44C1B (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::PopNamespaces(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_PopNamespaces_mB647C786975F9BB3ADE2301184F8206D816EAFA6 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, int32_t ___indexFrom0, int32_t ___indexTo1, const RuntimeMethod* method); // System.Void System.Xml.XmlTextEncoder::EndAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_EndAttribute_mEBAE3ABA120AF2728E56ADDB2BE2A5B313093C12 (XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::HandleSpecialAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_HandleSpecialAttribute_m743156B9137FC8E43B2E697605AAE9C225A2166E (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::AddNamespace(System.String,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_AddNamespace_mD3E28DCB8C014B090EB3FFA4C6F0A71702135E5B (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___prefix0, String_t* ___ns1, bool ___declared2, const RuntimeMethod* method); // System.Void System.Array::Copy(System.Array,System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mDB95A273EF4E8A4BC2F5D25236E21AF6584F5F5D (RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int32_t ___length2, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter/Namespace::Set(System.String,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Namespace_Set_m56A8063D5B2E5989807DF3472D0266CF828BBDA8 (Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB * __this, String_t* ___prefix0, String_t* ___ns1, bool ___declared2, const RuntimeMethod* method); // System.Void System.Xml.XmlTextWriter::AddToNamespaceHashtable(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_AddToNamespaceHashtable_m35841EE9201BDF774311ED96E3D3DEDB174D24A6 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, int32_t ___namespaceIndex0, const RuntimeMethod* method); // System.Void System.Xml.SecureStringHasher::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecureStringHasher__ctor_mEF97616B6D20B8D66A01B2B833C677BF356A1145 (SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor(System.Collections.Generic.IEqualityComparer`1) inline void Dictionary_2__ctor_mAC2C8559F9E6A16FAD5BA5017E6A0A1EF3429867 (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 *, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_m2F6EEA5A421346472B973CEC54962959F5A7A7E9_gshared)(__this, ___comparer0, method); } // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_m8E06A6DF244254BF419D7EC23A9A6809E19A544D (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * __this, String_t* ___key0, int32_t* ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 *, String_t*, int32_t*, const RuntimeMethod*))Dictionary_2_TryGetValue_mD30FE5F3EA63CD6831E4AA9E6901323436D6F9A4_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2::set_Item(!0,!1) inline void Dictionary_2_set_Item_mBC85AF861FB031847847F0B30707EC7AC252D572 (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * __this, String_t* ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 *, String_t*, int32_t, const RuntimeMethod*))Dictionary_2_set_Item_m9BDED5248054C2E86ECBA732FE7BCDAA32D0A118_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2::Remove(!0) inline bool Dictionary_2_Remove_m105F8AD7F5E827D6F95768BD6C922EB155E5A7EF (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * __this, String_t* ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 *, String_t*, const RuntimeMethod*))Dictionary_2_Remove_m1E56E91A9BB341EE54712AF20BAF2ADC09D267A0_gshared)(__this, ___key0, method); } // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * CultureInfo_get_InvariantCulture_m27F344B7A1A5F9CAA493D82A5406DAC005C30205 (const RuntimeMethod* method); // System.String System.Int32::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m246774E1922012AE787EB97743F42CB798B70CD8 (int32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Int32 System.Xml.ValidateNames::ParseNCName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidateNames_ParseNCName_m1B3BBA8EBBF31FF07CD3264FCDB0D54D09566254 (String_t* ___s0, const RuntimeMethod* method); // System.Int32 System.Xml.ValidateNames::ParseNmtoken(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidateNames_ParseNmtoken_m38061EA2885294FBE43A1A710886DC056C087C3C (String_t* ___s0, int32_t ___offset1, const RuntimeMethod* method); // System.Boolean System.Xml.ValidateNames::IsNameNoNamespaces(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValidateNames_IsNameNoNamespaces_m0E5C3C48B349B347C805319034944414B1AE6581 (String_t* ___s0, const RuntimeMethod* method); // System.String System.Xml.XmlTextEncoder::get_AttributeValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextEncoder_get_AttributeValue_m9E57BB8D3D0C4BBA526DFAEC0064BD1C3F3BA38D (XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * __this, const RuntimeMethod* method); // System.String System.Xml.XmlConvert::TrimString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_TrimString_m6FC9AD045BD030BD80D5D7451D79192E9FC881B8 (String_t* ___value0, const RuntimeMethod* method); // System.Void System.Xml.Base64Encoder::Flush() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Base64Encoder_Flush_m7C096C39FD6F6EB5AAEBB7C5ED816DD8F24CA5B0 (Base64Encoder_tF36936300CC9B84076C8F16EE4AF8074ACA40CE9 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_m37345890E8136134556D27E57315B584AC51D53F (RuntimeArray * ___array0, RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 ___fldHandle1, const RuntimeMethod* method); // System.Void System.Xml.XmlTextEncoder::WriteRaw(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextEncoder_WriteRaw_m5B4E690DB11115A1A2EBF4228182024DD5BB8434 (XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___array0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method); // System.Boolean System.Xml.Serialization.TypeData::get_IsValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsValueType_m859872378938A6201F2AAB9A905069D0BCB564FC (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method); // System.Boolean System.Xml.Serialization.TypeData::get_IsNullable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsNullable_mD24CD1E465C07ADBA559890CC8DB5FD2100BEADF (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method); // System.String System.Xml.Serialization.XmlTypeMapping::get_XmlTypeNamespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_XmlTypeNamespace_m84FB57272C654790B04BCCA3901AA92AF1C8EDA6 (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method); // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapElementInfo::get_TypeData() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * XmlTypeMapElementInfo_get_TypeData_m926B6BA45030F83BEB77AE80F065E79A8558B415_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method); // System.String System.Xml.Serialization.TypeData::get_XmlType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method); // System.String System.Xml.Serialization.XmlTypeMapping::get_XmlType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_XmlType_m97D3C310989DEA0D8C5DDE2A74BA1866DA7E5C99_inline (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method); // System.Boolean System.Xml.Serialization.XmlTypeMapping::get_MultiReferenceType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_MultiReferenceType_m1CC9E9FBF8E50725CD969D26D3547A600E274079_inline (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method); // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_ElementName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_ElementName_m1B5D0CAFCC6513CBCFCF1BD3977A519B21C4BFFC_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method); // System.Void System.Exception::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_ElementName(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_ElementName_mD96BF1649FA7885FA25FE2144CB7DC116B194FAB_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, String_t* ___value0, const RuntimeMethod* method); // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_Namespace(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_Namespace_m428970C4B7182555B6636BF9AC3945F634705F69_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, String_t* ___value0, const RuntimeMethod* method); // System.Int32 System.Object::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Object_GetHashCode_m29972277898725CF5403FB9765F335F0FAEA8162 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.Collections.ArrayList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * __this, const RuntimeMethod* method); // System.Boolean System.Reflection.MemberInfo::op_Equality(System.Reflection.MemberInfo,System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberInfo_op_Equality_mC92D2D7DC0824BC567A1500B3161BDCFC9A63178 (MemberInfo_t * ___left0, MemberInfo_t * ___right1, const RuntimeMethod* method); // System.Void System.Xml.Serialization.XmlTypeMapMember::InitMember(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_InitMember_m3316187208C11D719EB2A3F2AB282FBF3EAD87A4 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, Type_t * ___type0, const RuntimeMethod* method); // System.Type System.Object::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.Xml.Serialization.TypeData::ConvertForAssignment(System.Object&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeData_ConvertForAssignment_mC99B467E9BA7AF52487538303C17505F2B2DA655 (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, RuntimeObject ** ___value0, const RuntimeMethod* method); // System.Void System.Reflection.FieldInfo::SetValue(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldInfo_SetValue_mA1EFB5DA5E4B930A617744E29E909FE9DEAA663C (FieldInfo_t * __this, RuntimeObject * ___obj0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m69EE86B5A87244C925333CCF1B6D6B9BCFED8A89 (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___binder2, TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___types3, ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B* ___modifiers4, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodInfo::op_Inequality(System.Reflection.MethodInfo,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Inequality_m36E5F5CEC053740C69E67E46BEDA47F9794BC94D (MethodInfo_t * ___left0, MethodInfo_t * ___right1, const RuntimeMethod* method); // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method); // System.Boolean System.Type::op_Equality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Boolean System.Reflection.MemberInfo::op_Inequality(System.Reflection.MemberInfo,System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberInfo_op_Inequality_m21B392CB74F4997C35A09A328817D7176355B178 (MemberInfo_t * ___left0, MemberInfo_t * ___right1, const RuntimeMethod* method); // System.Void System.Xml.Serialization.XmlTypeMapMember::set_IsOptionalValueType(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_IsOptionalValueType_m0525AE8AD19B262EB65870D5229AB0639F45E0CF (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, bool ___value0, const RuntimeMethod* method); // System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MethodBase_Invoke_m5DA5E74F34F8FFA8133445BAE0266FD54F7D4EB3 (MethodBase_t * __this, RuntimeObject * ___obj0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___parameters1, const RuntimeMethod* method); // System.Void System.Xml.Serialization.XmlTypeMapMember::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember__ctor_m8BF0A0B39F542D09883F8250653F2E9157018975 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, const RuntimeMethod* method); // System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.XmlTypeMapMemberElement::get_ElementInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * XmlTypeMapMemberElement_get_ElementInfo_m6C24B41268D415B81089124ED86D6427FE3D998C (XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747 * __this, const RuntimeMethod* method); // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_IsUnnamedAnyElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_IsUnnamedAnyElement_mDE18DB057E08D950C70F86CD22FFE50F174DF78D (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method); // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_Namespace() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_Namespace_mC9E436A358B8900AFDB3C7E5E91002873ACF84B2_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method); // System.Void System.Xml.Serialization.XmlTypeMapMemberExpandable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberExpandable__ctor_m88BB7EB4767417DDE7216C97C5E189C52C129114 (XmlTypeMapMemberExpandable_t4AB3E2327627775BEDBA72B187C19F446C6DF2E7 * __this, const RuntimeMethod* method); // System.Void System.Xml.Serialization.XmlTypeMapElementInfoList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfoList__ctor_m61B67EDC5797D896962B7B503260F69FEA1E2B97 (XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * __this, const RuntimeMethod* method); // System.Object System.Xml.Serialization.XmlTypeMapMember::GetValue(System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlTypeMapMember_GetValue_m4D9079E71F9B6B38B2FEB2FA9E181F0600A6985E (RuntimeObject * ___ob0, String_t* ___name1, const RuntimeMethod* method); // System.Object System.Xml.Serialization.XmlTypeMapElementInfo::get_ChoiceValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * XmlTypeMapElementInfo_get_ChoiceValue_m76212C3475099487DB1A4BF6AFB9FE3E2C04D8B1_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method); // System.Type System.Xml.Serialization.TypeData::get_Type() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method); // System.Void System.Xml.Serialization.XmlTypeMapMember::SetValue(System.Object,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_SetValue_m39B0FC2316327F214E7B734BA49FBBED70BB1235 (RuntimeObject * ___ob0, String_t* ___name1, RuntimeObject * ___value2, const RuntimeMethod* method); // System.Void System.Xml.Serialization.XmlTypeMapMemberElement::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement__ctor_m1414569E82ADB1E785739BD9784256B165C9EB70 (XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747 * __this, const RuntimeMethod* method); // System.Void System.Xml.Serialization.XmlMapping::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlMapping__ctor_mAE0C9F2C02CF5529CEA261B6DD0DA8F550B830E7 (XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 * __this, String_t* ___elementName0, String_t* ___ns1, const RuntimeMethod* method); // System.String System.Xml.Serialization.TypeData::get_FullTypeName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeData_get_FullTypeName_mFFCC7D2CB2D25AB7EB9FB3B395515A52B19D9A29_inline (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method); // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapping::get_TypeData() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * XmlTypeMapping_get_TypeData_m4087973CAFF6B74AACEDCFF8FCA51E7CD183FD11_inline (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method); // System.Xml.Serialization.SchemaTypes System.Xml.Serialization.TypeData::get_SchemaType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TypeData_get_SchemaType_m1E1859E6B8F79B692587EB29D4E8E2917F8112D4_inline (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method); // System.Boolean System.Xml.XmlQualifiedName::op_Inequality(System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlQualifiedName_op_Inequality_m41E46D4716F1168DF9152C551CD2F79231750271 (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___a0, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___b1, const RuntimeMethod* method); // System.String System.Xml.XmlQualifiedName::get_Name() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Name_m919683334C36B7677143103C12A051FACD698095_inline (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * __this, const RuntimeMethod* method); // System.String System.Xml.XmlQualifiedName::get_Namespace() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Namespace_m2693E9023068C90F95C47FDB5685F1563ECE0025_inline (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlAttribute::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute__ctor_m1CC4421CFD643E837A80EBD7C725CB0DD5E6F036 (XmlAttribute_t3F58A4BDFB486D0E610E4003E54A89BCCB65AB6D * __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * ___doc3, const RuntimeMethod* method); // System.Void System.Xml.XmlAttribute::set_InnerText(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_set_InnerText_m3B5C78D374ACDD3A8B6163CCB4CD5584518D946A (XmlAttribute_t3F58A4BDFB486D0E610E4003E54A89BCCB65AB6D * __this, String_t* ___value0, const RuntimeMethod* method); // System.Xml.XmlNode System.Xml.XmlAttribute::RemoveChild(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * XmlAttribute_RemoveChild_mAA100C2F00FB0346E1656C6463DBC02C736C0734 (XmlAttribute_t3F58A4BDFB486D0E610E4003E54A89BCCB65AB6D * __this, XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * ___oldChild0, const RuntimeMethod* method); // System.Xml.XmlNode System.Xml.XmlAttribute::AppendChild(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * XmlAttribute_AppendChild_mAF324AA7DBB29DC1BEC6A3CBA82F03AB11D5DFC5 (XmlAttribute_t3F58A4BDFB486D0E610E4003E54A89BCCB65AB6D * __this, XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * ___newChild0, const RuntimeMethod* method); // System.Void System.Xml.XmlAttribute::WriteTo(System.Xml.XmlWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_WriteTo_m614100A1167F5EC449779C1BD90C8CFAEE4AA32E (XmlAttribute_t3F58A4BDFB486D0E610E4003E54A89BCCB65AB6D * __this, XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * ___w0, const RuntimeMethod* method); // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.DatatypeImplementation::get_UntypedAtomicType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * DatatypeImplementation_get_UntypedAtomicType_mB4B8AE5E88DC7A38C2D2232D533992B225A61AC7_inline (const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlListConverter::.ctor(System.Xml.Schema.XmlSchemaType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlListConverter__ctor_mA57F3038784C8BB10CA694189E558202B6C71747 (XmlListConverter_t58F692567B1B34BF5171B647F1BE66EC017D4F4D * __this, XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___schemaType0, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlListConverter::.ctor(System.Xml.Schema.XmlBaseConverter,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlListConverter__ctor_m5D0251EF7A3D3B8B7B87CE950382C8C1054F2476 (XmlListConverter_t58F692567B1B34BF5171B647F1BE66EC017D4F4D * __this, XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 * ___atomicConverter0, Type_t * ___clrTypeDefault1, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Boolean System.Xml.XmlConvert::ToBoolean(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlConvert_ToBoolean_mECF9DFB8C60A88BCA1EDCA69B1D6C87F2F129F73 (String_t* ___s0, const RuntimeMethod* method); // System.Object System.Xml.Schema.XmlUntypedConverter::ChangeTypeWildcardDestination(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlUntypedConverter_ChangeTypeWildcardDestination_mC288C4D35198B9E88DF96F1253A54D418E881E73 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, RuntimeObject* ___nsResolver2, const RuntimeMethod* method); // System.DateTime System.Xml.Schema.XmlBaseConverter::UntypedAtomicToDateTime(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 XmlBaseConverter_UntypedAtomicToDateTime_mB558915768336FAD70FB9F79312F006324844FD9 (String_t* ___value0, const RuntimeMethod* method); // System.DateTimeOffset System.Xml.Schema.XmlBaseConverter::UntypedAtomicToDateTimeOffset(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 XmlBaseConverter_UntypedAtomicToDateTimeOffset_mF2EBD6A497F70013AFDBC362C41C7FB4F016A5B2 (String_t* ___value0, const RuntimeMethod* method); // System.Decimal System.Xml.XmlConvert::ToDecimal(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 XmlConvert_ToDecimal_m927342742687C6D8947928EB67FD4751149007D2 (String_t* ___s0, const RuntimeMethod* method); // System.Double System.Xml.XmlConvert::ToDouble(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double XmlConvert_ToDouble_mF7E9690E7C181E6A7227DB85229167C13E883E95 (String_t* ___s0, const RuntimeMethod* method); // System.Int32 System.Xml.XmlConvert::ToInt32(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlConvert_ToInt32_m84811669F130BF79DE56045FA574E87CF4BDC7C7 (String_t* ___s0, const RuntimeMethod* method); // System.Int64 System.Xml.XmlConvert::ToInt64(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t XmlConvert_ToInt64_m0B22AC6F9DAF2F3C1DA04647121C4F3BFCD2DA3A (String_t* ___s0, const RuntimeMethod* method); // System.Single System.Xml.XmlConvert::ToSingle(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XmlConvert_ToSingle_mB7AA6B41029E834E22E8F08FA2668F03D0984793 (String_t* ___s0, const RuntimeMethod* method); // System.String System.Xml.XmlConvert::ToString(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_mC3ADC626DDAB44248A868B0563DF5E9D636625B2 (bool ___value0, const RuntimeMethod* method); // System.String System.Xml.Schema.XmlBaseConverter::DateTimeToString(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlBaseConverter_DateTimeToString_mA5CA6F4539126A06CC75688D89995886C9758AE3 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, const RuntimeMethod* method); // System.String System.Xml.Schema.XmlBaseConverter::DateTimeOffsetToString(System.DateTimeOffset) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlBaseConverter_DateTimeOffsetToString_m17D782548BC66E0DCFB00419B2D910D7F64839D9 (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___value0, const RuntimeMethod* method); // System.String System.Xml.XmlConvert::ToString(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_m55749B7D5111B0C5B22E39B0B72390EB68991C8F (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, const RuntimeMethod* method); // System.String System.Xml.XmlConvert::ToString(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_mFA18F44AD286528699A2C1FC6579F4DB0B6F53A5 (double ___value0, const RuntimeMethod* method); // System.String System.Xml.XmlConvert::ToString(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_mB1817B679C751F091D03EF8627AFF6CDEB507254 (int32_t ___value0, const RuntimeMethod* method); // System.String System.Xml.XmlConvert::ToString(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_m40C359814CAB573400B51484C02BF1F745377F7C (int64_t ___value0, const RuntimeMethod* method); // System.String System.Xml.XmlConvert::ToString(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_mDE8DC693C63F09BC26ACD1C4A9FFAA17141D0D84 (float ___value0, const RuntimeMethod* method); // System.String System.Xml.XmlConvert::ToString(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_m3CDF916C3AB064D0D0DF9201C46BD1EB67596608 (uint8_t ___value0, const RuntimeMethod* method); // System.String System.Xml.Schema.XmlBaseConverter::Base64BinaryToString(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlBaseConverter_Base64BinaryToString_m684175ECDA2A0C16615B5E685D636245DBFE9050 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, const RuntimeMethod* method); // System.String System.Xml.XmlConvert::ToString(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_mF91A0FCA83F7DDDB96426EA363FE293AD4BE26DB (int16_t ___value0, const RuntimeMethod* method); // System.String System.Xml.XmlConvert::ToString(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_mCFAFEB1E1058D0061258C245960DE7D5AD695FA4 (int8_t ___value0, const RuntimeMethod* method); // System.String System.Xml.Schema.XmlBaseConverter::DurationToString(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlBaseConverter_DurationToString_mBA49E955CD7C7909932D2A45D123EF7D3EE70CD5 (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method); // System.String System.Xml.XmlConvert::ToString(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_m2404A963C90269D4E7DE8A4C0F7E43AA73713B08 (uint16_t ___value0, const RuntimeMethod* method); // System.String System.Xml.XmlConvert::ToString(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_mF3C31729988D42BA610C48C73B6724F34D920C41 (uint32_t ___value0, const RuntimeMethod* method); // System.String System.Xml.XmlConvert::ToString(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_ToString_m7188F1ADA25A6885A90F8C58EF59891DC265D678 (uint64_t ___value0, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.XmlBaseConverter::IsDerivedFrom(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlBaseConverter_IsDerivedFrom_m3E8446D6F251C9F30D877A6082523ABE7BF840FA (Type_t * ___derivedType0, Type_t * ___baseType1, const RuntimeMethod* method); // System.String System.Xml.Schema.XmlBaseConverter::AnyUriToString(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlBaseConverter_AnyUriToString_mA187798F0E39D6725196A0B18C37F4CDED94FDE8 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___value0, const RuntimeMethod* method); // System.String System.Xml.Schema.XmlBaseConverter::QNameToString(System.Xml.XmlQualifiedName,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlBaseConverter_QNameToString_mDE5302DA70D4FC255DA3DF0D0E0ADC7006BAAD87 (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___qname0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method); // System.Type System.Xml.Schema.XmlBaseConverter::get_DefaultClrType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline (XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 * __this, const RuntimeMethod* method); // System.Object System.Xml.Schema.XmlUntypedConverter::ChangeTypeWildcardSource(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlUntypedConverter_ChangeTypeWildcardSource_m0997A4ACCA87E6BCD2BCCEAA0582A1CD49427743 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, RuntimeObject* ___nsResolver2, const RuntimeMethod* method); // System.Byte System.Xml.Schema.XmlBaseConverter::Int32ToByte(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t XmlBaseConverter_Int32ToByte_mEC5B44F18543F9996EA7F7072346BBB96A86EE3A (int32_t ___value0, const RuntimeMethod* method); // System.Byte[] System.Xml.Schema.XmlBaseConverter::StringToBase64Binary(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* XmlBaseConverter_StringToBase64Binary_mCCCBA9FC9D7E0A86960753D43C4EA99E53566EF8 (String_t* ___value0, const RuntimeMethod* method); // System.Int16 System.Xml.Schema.XmlBaseConverter::Int32ToInt16(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t XmlBaseConverter_Int32ToInt16_mA713BB9EEA6547153CB68C76EF3834F9E96390F1 (int32_t ___value0, const RuntimeMethod* method); // System.SByte System.Xml.Schema.XmlBaseConverter::Int32ToSByte(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t XmlBaseConverter_Int32ToSByte_mB3E8C72064F9E1A16A6DA69B262C53C9BE60B6E7 (int32_t ___value0, const RuntimeMethod* method); // System.TimeSpan System.Xml.Schema.XmlBaseConverter::StringToDuration(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 XmlBaseConverter_StringToDuration_m252592A9442B15E00691A93CD2EDAEB294168507 (String_t* ___value0, const RuntimeMethod* method); // System.UInt16 System.Xml.Schema.XmlBaseConverter::Int32ToUInt16(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t XmlBaseConverter_Int32ToUInt16_mAF53764E8E5919438C02D6A732F4614286742F65 (int32_t ___value0, const RuntimeMethod* method); // System.UInt32 System.Xml.Schema.XmlBaseConverter::Int64ToUInt32(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t XmlBaseConverter_Int64ToUInt32_m320A72164309688C9D131AB70F810F5DC08EA4A3 (int64_t ___value0, const RuntimeMethod* method); // System.UInt64 System.Xml.Schema.XmlBaseConverter::DecimalToUInt64(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t XmlBaseConverter_DecimalToUInt64_m333E4C11DFB15FD0E9AC1CE10E0417D99FA1AC7B (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, const RuntimeMethod* method); // System.Uri System.Xml.XmlConvert::ToUri(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * XmlConvert_ToUri_m70145E949FD362A0D446630B25B00B1D000786AE (String_t* ___s0, const RuntimeMethod* method); // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlBaseConverter::get_SchemaType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * XmlBaseConverter_get_SchemaType_mD3A5F0E824179488B3DF92C29A26D06956B869FE_inline (XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlAtomicValue::.ctor(System.Xml.Schema.XmlSchemaType,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAtomicValue__ctor_m10A1B0B8D03D6C25152C24904A561B1C20243863 (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * __this, XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * ___xmlType0, String_t* ___value1, const RuntimeMethod* method); // System.Xml.XmlQualifiedName System.Xml.Schema.XmlBaseConverter::StringToQName(System.String,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * XmlBaseConverter_StringToQName_mB62CC01A6A545A469104BC75778060A4BA3007CB (String_t* ___value0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method); // System.Boolean System.Type::op_Inequality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.XmlUntypedConverter::SupportsType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlUntypedConverter_SupportsType_mB775768BC127D72D0A2B7B4A3D506961788E03A5 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, Type_t * ___clrType0, const RuntimeMethod* method); // System.String System.Xml.Schema.XmlBaseConverter::get_XmlTypeName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlBaseConverter_get_XmlTypeName_mB8B4B81BF250AB15E908A1FD1414B7261DE8F4D3 (XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 * __this, const RuntimeMethod* method); // System.Void System.InvalidCastException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_m50103CBF0C211B93BF46697875413A10B5A5C5A3 (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Exception System.Xml.Schema.XmlBaseConverter::CreateInvalidClrMappingException(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * XmlBaseConverter_CreateInvalidClrMappingException_mF6EE65AEAEFD2FE80F2829D69A6C9178C2287270 (XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 * __this, Type_t * ___sourceType0, Type_t * ___destinationType1, const RuntimeMethod* method); // System.Object System.Xml.Schema.XmlListConverter::ChangeListType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlListConverter_ChangeListType_mB826BBF0AE270EE1D3FDE44AAA08CBD7336214FE (XmlListConverter_t58F692567B1B34BF5171B647F1BE66EC017D4F4D * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, RuntimeObject* ___nsResolver2, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlUntypedConverter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUntypedConverter__ctor_m2BF429F05F4086DB2620F3EBFA8E73974F14D90A (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlUntypedConverter::.ctor(System.Xml.Schema.XmlUntypedConverter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUntypedConverter__ctor_m723EDD7AC7CAADC784E4DA7CBAC18134B998C497 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * ___atomicConverter0, bool ___allowListToList1, const RuntimeMethod* method); // System.Void System.Xml.XmlDownloadManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDownloadManager__ctor_m20609FF8F46937FB1891AF0C30E939299056B1AF (XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlResolver::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlResolver__ctor_m0217F0BCC79A4C9BD944BF30D5E7C0F1A1218D1C (XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A * __this, const RuntimeMethod* method); // System.Xml.XmlDownloadManager System.Xml.XmlUrlResolver::get_DownloadManager() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * XmlUrlResolver_get_DownloadManager_m9EFD2C40A944C579EE8487E7FC194B44412D5001 (const RuntimeMethod* method); // System.IO.Stream System.Xml.XmlDownloadManager::GetStream(System.Uri,System.Net.ICredentials,System.Net.IWebProxy,System.Net.Cache.RequestCachePolicy) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * XmlDownloadManager_GetStream_m927E7BBEDB3F068C01794E13C36CE5A34062662E (XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, RuntimeObject* ___credentials1, RuntimeObject* ___proxy2, RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * ___cachePolicy3, const RuntimeMethod* method); // System.Void System.Xml.XmlException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_m113008AE4B646E85154C99B3CBB55D536CBEFEB9 (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * __this, String_t* ___res0, String_t* ___arg1, const RuntimeMethod* method); // System.Uri System.Xml.XmlResolver::ResolveUri(System.Uri,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * XmlResolver_ResolveUri_m5FE50956C12775E8976F132919176759040E8C53 (XmlResolver_t7666FB44FF30D5CE53CC8DD913B2A8D2BD74343A * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___baseUri0, String_t* ___relativeUri1, const RuntimeMethod* method); // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::Create() inline AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 AsyncTaskMethodBuilder_1_Create_mE593F9E703EBA7EF294FAC0F5C20F69AF4D08C26 (const RuntimeMethod* method) { return (( AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 (*) (const RuntimeMethod*))AsyncTaskMethodBuilder_1_Create_mE593F9E703EBA7EF294FAC0F5C20F69AF4D08C26_gshared)(method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::Startd__15>(!!0&) inline void AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_mC3D06AB96938D18EA8788B4122A214E34FCE9679 (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * __this, U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 * ___stateMachine0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 *, U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_mC3D06AB96938D18EA8788B4122A214E34FCE9679_gshared)(__this, ___stateMachine0, method); } // System.Threading.Tasks.Task`1 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::get_Task() inline Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * AsyncTaskMethodBuilder_1_get_Task_m61DEC300353320E428E17DA0D59D61974F4415BB (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * __this, const RuntimeMethod* method) { return (( Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * (*) (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_m61DEC300353320E428E17DA0D59D61974F4415BB_gshared)(__this, method); } // System.Void System.Xml.XmlCharacterData::.ctor(System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCharacterData__ctor_m92DACE6F1470B2FABC19CE1DB3B8170BC346AA30 (XmlCharacterData_tDE362DEBB89559C552E40DB1346331A259C9205B * __this, String_t* ___data0, XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * ___doc1, const RuntimeMethod* method); // System.Boolean System.Xml.XmlDocument::get_IsLoading() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocument_get_IsLoading_m3B73B787E62F30F277275598CF50D1258706E681_inline (XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * __this, const RuntimeMethod* method); // System.Boolean System.Xml.XmlCharacterData::CheckOnData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharacterData_CheckOnData_m9A57001C001BA5EB4524F44562C20D27E79A3B81 (XmlCharacterData_tDE362DEBB89559C552E40DB1346331A259C9205B * __this, String_t* ___data0, const RuntimeMethod* method); // System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * XmlNode_get_ParentNode_mAE5BBA15BE0FF8FE4869BFCA1ECB6740C969B7A8 (XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteStartElement_m9544AB2F6A67D4A37BA258CA661DD10A356DEA8D (XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * __this, String_t* ___localName0, String_t* ___ns1, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.XsdDateTime/Parser::Parse(System.String,System.Xml.Schema.XsdDateTimeFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_Parse_m4967C6E2F360C1BCAAEDC78816BBADE6F5A6C297 (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, String_t* ___text0, int32_t ___kinds1, const RuntimeMethod* method); // System.Void System.FormatException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mB8F9A26F985EF9A6C0C082F7D70CFDF2DBDBB23B (FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Xml.Schema.XsdDateTime::InitiateXsdDateTime(System.Xml.Schema.XsdDateTime/Parser) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime_InitiateXsdDateTime_m90AD9DA9F7C15FF2103F4753755918360F20AEDE (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 ___parser0, const RuntimeMethod* method); // System.Void System.Xml.Schema.XsdDateTime::.ctor(System.String,System.Xml.Schema.XsdDateTimeFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime__ctor_mB09134F0278390F7BEDE6F47A6BE015C64140C52 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, String_t* ___text0, int32_t ___kinds1, const RuntimeMethod* method); // System.Void System.Xml.Schema.XsdDateTime::.ctor(System.Xml.Schema.XsdDateTime/Parser) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime__ctor_m1C7A4AD53CE8C6D855E72C51DDBB186774C7BC35 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 ___parser0, const RuntimeMethod* method); // System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m4DA8AA49E6923EDCFB8927D588AE3D79B218545D (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___hour3, int32_t ___minute4, int32_t ___second5, const RuntimeMethod* method); // System.DateTime System.DateTime::AddTicks(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 DateTime_AddTicks_m62906BA32DF3F1031061042F5F1B15125F2673EB (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, int64_t ___value0, const RuntimeMethod* method); // System.Int32 System.Xml.Bits::LeastPosition(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bits_LeastPosition_m30448C3BD027BDE6E29E56C739E99A23660A21F4 (uint32_t ___num0, const RuntimeMethod* method); // System.DateTimeKind System.DateTime::get_Kind() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Kind_mC7EC1A788CC9A875094117214C5A0C153A39F496 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, const RuntimeMethod* method); // System.TimeZoneInfo System.TimeZoneInfo::get_Local() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074 * TimeZoneInfo_get_Local_m3C0852D46BC4C5F244359204C1A14904E5C68690 (const RuntimeMethod* method); // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 TimeZoneInfo_GetUtcOffset_m141D157CBED31EEB89D133955485874F235DAACA (TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dateTime0, const RuntimeMethod* method); // System.Int64 System.TimeSpan::get_Ticks() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_mE4C9E1F27DC794028CEDCF7CB5BD092D16DBACD4_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, const RuntimeMethod* method); // System.Int32 System.TimeSpan::get_Hours() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Hours_m39AFD957DF1247125409ADD8525550863D08AB6E (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, const RuntimeMethod* method); // System.Int32 System.TimeSpan::get_Minutes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Minutes_mF5A78108FEB64953C298CEC19637378380881202 (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.XsdDateTime::.ctor(System.DateTime,System.Xml.Schema.XsdDateTimeFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime__ctor_mC4E844B452F4D01B3773FFA73749AD2A0FF595CF (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dateTime0, int32_t ___kinds1, const RuntimeMethod* method); // System.DateTime System.DateTimeOffset::get_DateTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 DateTimeOffset_get_DateTime_m4A77B8033E9824033156BE13362AC202590A4370 (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * __this, const RuntimeMethod* method); // System.TimeSpan System.DateTimeOffset::get_Offset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 DateTimeOffset_get_Offset_mD7CD6BE8256492AAF195B631CE3DCA7B47860065 (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * __this, const RuntimeMethod* method); // System.Double System.TimeSpan::get_TotalMinutes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalMinutes_m96E1D555D4663771C703D7F9A5D8F775E27853C3 (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, const RuntimeMethod* method); // System.TimeSpan System.TimeSpan::Negate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 TimeSpan_Negate_mD19FC9B8BCD075EFF67AE2AE9A8CB749F03F6897 (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.XsdDateTime::.ctor(System.DateTimeOffset,System.Xml.Schema.XsdDateTimeFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime__ctor_m33C8E56623F643FD67D14AE01A9AB14CB8DD238A (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___dateTimeOffset0, int32_t ___kinds1, const RuntimeMethod* method); // System.Xml.Schema.XsdDateTime/DateTimeTypeCode System.Xml.Schema.XsdDateTime::get_InternalTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_InternalTypeCode_m5ABF7CF00F320084E4A88B378A6F67628282ED8B (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method); // System.Xml.Schema.XsdDateTime/XsdDateTimeKind System.Xml.Schema.XsdDateTime::get_InternalKind() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_InternalKind_m4E6428AB9D5F833A2A114B2795792397E2F05280 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method); // System.Int32 System.DateTime::get_Year() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Year_m977F96B53C996797BFBDCAA5679B8DCBA61AC185 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.XsdDateTime::get_Year() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_Year_mBE1BB90D4667D6094E2D94CA3325363843FB9E13 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method); // System.Int32 System.DateTime::get_Month() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Month_m46CC2AED3F24A91104919B1F6B5103DD1F8BBAE8 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.XsdDateTime::get_Month() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_Month_m3729FF3784EF3AB1899CF6BD192C8604201F2A88 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method); // System.Int32 System.DateTime::get_Day() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Day_m9D698CA2A7D1FBEE7BEC0A982A119239F513CBA8 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.XsdDateTime::get_Day() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_Day_m0D5FEF4127CE4266C59B7C93C8AD490DB31749E1 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method); // System.Int32 System.DateTime::get_Hour() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Hour_m6AC78B553639A108EA00728498FA037E52CC425E (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.XsdDateTime::get_Hour() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_Hour_m9D96549A87FDF157F9A3625AF03B2C5B905F2246 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method); // System.Int32 System.DateTime::get_Minute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Minute_m1BBE1AABAAFE39019ED26585D12E67A1F9D5A4AA (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.XsdDateTime::get_Minute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_Minute_mBA23AB4303F2F82EA8842790C897BC47AF7B40DB (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method); // System.Int32 System.DateTime::get_Second() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Second_m6E1FEADC4E62BCC99846934C0761F0AF67DFE17A (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.XsdDateTime::get_Second() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_Second_m079C8C99439D580CB2DAB6B27D14F02C12DB27D6 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method); // System.Int64 System.DateTime::get_Ticks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_get_Ticks_m175EDB41A50DB06872CC48CAB603FEBD1DFF46A9 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.XsdDateTime::get_Fraction() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_Fraction_mD3F56C4BDE5975B49102003499A9F77E0AC59E09 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.XsdDateTime::get_ZoneHour() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_ZoneHour_m0F48E533A69259BB60EF8BCB3817582799E7759C (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.XsdDateTime::get_ZoneMinute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_ZoneMinute_m15233BB7C7F4EE3DC4A81E4CCC5EF81E4E8CBB06 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method); // System.DateTime System.DateTime::get_Now() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 DateTime_get_Now_mDC71803EA6776DD66EA7477CDCCD62191726B478 (const RuntimeMethod* method); // System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m1AD9E79A671864DFB1AABDB75D207C688B868D88 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, const RuntimeMethod* method); // System.TimeSpan System.DateTime::op_Subtraction(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 DateTime_op_Subtraction_m6ED0E9FA2961769C03E515F244D0A68DC1C402B5 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___d10, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___d21, const RuntimeMethod* method); // System.DateTime System.DateTime::Add(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 DateTime_Add_m317E517C3818A7EF09BB4D0E5547FF791814777D (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method); // System.Void System.DateTime::.ctor(System.Int64,System.DateTimeKind) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_mD17BC147184B06220C3FD44EBF50238A3894ADD7 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, int64_t ___ticks0, int32_t ___kind1, const RuntimeMethod* method); // System.Void System.TimeSpan::.ctor(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpan__ctor_m809B4E761E68A974DCE454C30595ADE72DCE3A91 (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, int32_t ___hours0, int32_t ___minutes1, int32_t ___seconds2, const RuntimeMethod* method); // System.DateTime System.DateTime::ToLocalTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 DateTime_ToLocalTime_mCE92C270822E0C13C7C849BDE5DDC852A4CF0A08 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, const RuntimeMethod* method); // System.Void System.DateTimeOffset::.ctor(System.DateTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTimeOffset__ctor_m8A11F564555A7592D65E8012FD98CDEDD2913B9F (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dateTime0, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___offset1, const RuntimeMethod* method); // System.Void System.TimeSpan::.ctor(System.Int64) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimeSpan__ctor_mC80FA729ECA3A7AF31D9F517A95E60FC23EB86B0_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, int64_t ___ticks0, const RuntimeMethod* method); // System.Void System.Xml.Schema.XsdDateTime::PrintDate(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime_PrintDate_mBF71F4E59FCB563EC5C269D581EFB588577378DB (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method); // System.Void System.Xml.Schema.XsdDateTime::PrintTime(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime_PrintTime_mC39D27CA85F75F2A602D103FA901276F6E7B50F4 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method); // System.Void System.Xml.Schema.XsdDateTime::IntToCharArray(System.Char[],System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime_IntToCharArray_mA917EC8646F4F6DA14C2E4601C885EA7A5B3CE5F (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___text0, int32_t ___start1, int32_t ___value2, int32_t ___digits3, const RuntimeMethod* method); // System.Void System.Xml.Schema.XsdDateTime::ShortToCharArray(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___text0, int32_t ___start1, int32_t ___value2, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m3BE4C94FB7DDD0AB42515FC321FBD03B81A03A1C (StringBuilder_t * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___value0, const RuntimeMethod* method); // System.Void System.Xml.Schema.XsdDateTime::PrintZone(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime_PrintZone_mC03C8E9E1E8D2CA0AAE0319385338B18AC23C974 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method); // System.String System.Xml.Schema.XsdDateTime::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdDateTime_ToString_m56E4A768E3F99F119FE62DA25E1E24690ECAAB4E (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Void System.Xml.Schema.XsdDuration::.ctor(System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDuration__ctor_mAF5DC027A1A37B5D9379CC9E200C733FB643F075 (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, bool ___isNegative0, int32_t ___years1, int32_t ___months2, int32_t ___days3, int32_t ___hours4, int32_t ___minutes5, int32_t ___seconds6, int32_t ___nanoseconds7, const RuntimeMethod* method); // System.Void System.Xml.Schema.XsdDuration::.ctor(System.TimeSpan,System.Xml.Schema.XsdDuration/DurationType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDuration__ctor_m87C4EF2E2EF7D4C8DDF37B1DC7C5ED849E052A70 (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___timeSpan0, int32_t ___durationType1, const RuntimeMethod* method); // System.Exception System.Xml.Schema.XsdDuration::TryParse(System.String,System.Xml.Schema.XsdDuration/DurationType,System.Xml.Schema.XsdDuration&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * XsdDuration_TryParse_m62A437341C407CDF92149A7FE1C851FF2C53041F (String_t* ___s0, int32_t ___durationType1, XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * ___result2, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.XsdDuration::get_Years() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Years_mDA4C69E8DB55C1DD412741A0F47176E4021E2911_inline (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.XsdDuration::get_Months() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Months_mAF5B74D40485298A0D9DF45A1FA40E781A40D66F_inline (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.XsdDuration::get_Days() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Days_mD221ED31E12AA2286AE4E7E049001EB46067C5DB_inline (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.XsdDuration::get_Hours() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Hours_m278484E3214644ADD6FA059E2F00CBFB005BE2EC_inline (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.XsdDuration::get_Minutes() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Minutes_mC7D59F3CB2623050C9F10A98AA485102BAD7B2B5_inline (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.XsdDuration::get_Seconds() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Seconds_mBE0DB463333CF0BD75A8671FE51F019760F91D7F_inline (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Schema.XsdDuration::get_Nanoseconds() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Nanoseconds_m104732C347A41F215169633979BEFB0BDD5A37CF (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.XsdDuration::get_IsNegative() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdDuration_get_IsNegative_mF30C7670FC14BA4DE8E4BD6E9833E4EF339F3748 (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.XsdDuration::.ctor(System.String,System.Xml.Schema.XsdDuration/DurationType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDuration__ctor_m8E776FD3A70A21A2EFC6ACADF87056EA2430895C (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, String_t* ___s0, int32_t ___durationType1, const RuntimeMethod* method); // System.Exception System.Xml.Schema.XsdDuration::TryToTimeSpan(System.Xml.Schema.XsdDuration/DurationType,System.TimeSpan&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, int32_t ___durationType0, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * ___result1, const RuntimeMethod* method); // System.TimeSpan System.Xml.Schema.XsdDuration::ToTimeSpan(System.Xml.Schema.XsdDuration/DurationType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 XsdDuration_ToTimeSpan_m8E384990FA1D2AF1323B326E5987018872A6322F (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, int32_t ___durationType0, const RuntimeMethod* method); // System.Exception System.Xml.Schema.XsdDuration::TryToTimeSpan(System.TimeSpan&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * XsdDuration_TryToTimeSpan_m674C9BCA350E49E1FB6A1B70231262636E9DBE48 (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * ___result0, const RuntimeMethod* method); // System.Void System.OverflowException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverflowException__ctor_m93384109E3514E1EB7F97A50893B1B617D21F91E (OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 * __this, String_t* ___message0, const RuntimeMethod* method); // System.String System.Xml.Schema.XsdDuration::ToString(System.Xml.Schema.XsdDuration/DurationType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdDuration_ToString_m95549BAD76E17A3055C31F3C0BD214885982B74C (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, int32_t ___durationType0, const RuntimeMethod* method); // System.String System.Xml.Schema.XsdDuration::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdDuration_ToString_mA4A2C3C6AE4FFD7EE69DF611035623000A6592EB (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method); // System.Int32 System.Text.StringBuilder::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0 (StringBuilder_t * __this, const RuntimeMethod* method); // System.Void System.Text.StringBuilder::set_Length(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Length_m7C1756193B05DCA5A23C5DC98EE90A9FC685A27A (StringBuilder_t * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void System.Text.StringBuilder::set_Chars(System.Int32,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Chars_m57ED3E11363F83AC84E9B833E62D7D16DB4B4733 (StringBuilder_t * __this, int32_t ___index0, Il2CppChar ___value1, const RuntimeMethod* method); // System.Char System.Text.StringBuilder::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar StringBuilder_get_Chars_m5961A0987EEF0A0F8C335048A33EC4584B53F1E3 (StringBuilder_t * __this, int32_t ___index0, const RuntimeMethod* method); // System.String System.String::Trim() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2 (String_t* __this, const RuntimeMethod* method); // System.String System.Xml.Schema.XsdDuration::TryParseDigits(System.String,System.Int32&,System.Boolean,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdDuration_TryParseDigits_mCC9206BCD1B6A8DE51B9D43460C049018A1A0968 (String_t* ___s0, int32_t* ___offset1, bool ___eatDigits2, int32_t* ___result3, int32_t* ___numDigits4, const RuntimeMethod* method); // System.Void System.Xml.XmlNamespaceManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNamespaceManager__ctor_mA04CAB0559468548EC72C74A2188AB3ACF892D0E (XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465 * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.SequenceNode/SequenceConstructPosContext::.ctor(System.Xml.Schema.SequenceNode,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SequenceConstructPosContext__ctor_m838797312070C2B9C77F9E03543949D27009E4D3 (SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED * __this, SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * ___node0, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos1, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos2, const RuntimeMethod* method); // System.String System.Uri::get_LocalPath() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_LocalPath_mED5287A7F9ADF1CCBAFD77221135A37C133F067E (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Void System.IO.FileStream::.ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileStream__ctor_m446168E332C8770748277DC4E83A92DFEFECCCFA (FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * __this, String_t* ___path0, int32_t ___mode1, int32_t ___access2, int32_t ___share3, int32_t ___bufferSize4, bool ___useAsync5, const RuntimeMethod* method); // System.Net.WebRequest System.Net.WebRequest::Create(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E * WebRequest_Create_m7495BFDB572824A5A54210D88A2EE70DEA104E2D (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___requestUri0, const RuntimeMethod* method); // System.Threading.Tasks.TaskFactory`1 System.Threading.Tasks.Task`1::get_Factory() inline TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406 * Task_1_get_Factory_m283742BB5C1426112B31A7531F634300838AC04B_inline (const RuntimeMethod* method) { return (( TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406 * (*) (const RuntimeMethod*))Task_1_get_Factory_mB06FBCCE06A35CB0562F526C870C8071ADEEC8F3_gshared_inline)(method); } // System.Void System.Func`3::.ctor(System.Object,System.IntPtr) inline void Func_3__ctor_m71A92851122BC354AAFF28F73273C76A963701B6 (Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_3__ctor_mD14F35586915F2F8014526C264BEA9D1FFAB667D_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Func`2::.ctor(System.Object,System.IntPtr) inline void Func_2__ctor_mA163EA96264A8D2042CC9BF314E218CC271B444F (Func_2_tAC7EF348160054EFB6A83AC44C3A19A395DA47E2 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_2_tAC7EF348160054EFB6A83AC44C3A19A395DA47E2 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_mA7F3C5A0612B84E910DE92E77BA95101FD68EEDB_gshared)(__this, ___object0, ___method1, method); } // System.Threading.Tasks.Task`1 System.Threading.Tasks.TaskFactory`1::FromAsync(System.Func`3,System.Func`2,System.Object) inline Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765 * TaskFactory_1_FromAsync_m196FA20CD6C49C10C77C43F3DE597A6CFB928740 (TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406 * __this, Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * ___beginMethod0, Func_2_tAC7EF348160054EFB6A83AC44C3A19A395DA47E2 * ___endMethod1, RuntimeObject * ___state2, const RuntimeMethod* method) { return (( Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765 * (*) (TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406 *, Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *, Func_2_tAC7EF348160054EFB6A83AC44C3A19A395DA47E2 *, RuntimeObject *, const RuntimeMethod*))TaskFactory_1_FromAsync_m472554AF393770AE0FD5D892C11D42D4E11DBB5F_gshared)(__this, ___beginMethod0, ___endMethod1, ___state2, method); } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1 System.Threading.Tasks.Task`1::ConfigureAwait(System.Boolean) inline ConfiguredTaskAwaitable_1_tF9BD196482DCC94DF3512B16C854E051395A348A Task_1_ConfigureAwait_m958847894F96659D65916785756B6FB2FA80D851 (Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765 * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) { return (( ConfiguredTaskAwaitable_1_tF9BD196482DCC94DF3512B16C854E051395A348A (*) (Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765 *, bool, const RuntimeMethod*))Task_1_ConfigureAwait_m0C99499DCC096AEE2A6AD075391C61037CC3DAA1_gshared)(__this, ___continueOnCapturedContext0, method); } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::GetAwaiter() inline ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 ConfiguredTaskAwaitable_1_GetAwaiter_m9966FFF0D41B23D5CA024C291811DF5A6F80D3B4_inline (ConfiguredTaskAwaitable_1_tF9BD196482DCC94DF3512B16C854E051395A348A * __this, const RuntimeMethod* method) { return (( ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 (*) (ConfiguredTaskAwaitable_1_tF9BD196482DCC94DF3512B16C854E051395A348A *, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_mFCE2327CEE19607ABB1CDCC8A6B145BDCF9820BC_gshared_inline)(__this, method); } // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::get_IsCompleted() inline bool ConfiguredTaskAwaiter_get_IsCompleted_mB157381B77839BF4D4F6781E9984D087C5D1E9BB (ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 * __this, const RuntimeMethod* method) { return (( bool (*) (ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 *, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_m5E3746D1B0661A5BCD45816E83766F228A077D20_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::AwaitUnsafeOnCompleted,System.Xml.XmlDownloadManager/d__5>(!!0&,!!1&) inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2_TisU3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_mB8CEDA29E42C6466FBD723FD3A77ADF8EA0D0AF7 (AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F * __this, ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 * ___awaiter0, U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782 * ___stateMachine1, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F *, ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 *, U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED_TisU3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_mA8EB7BA8E6EA6B8013DA05920BC34EE617565BBD_gshared)(__this, ___awaiter0, ___stateMachine1, method); } // !0 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::GetResult() inline WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * ConfiguredTaskAwaiter_GetResult_mD225F9BD6B8ABB67A9113177FA6014A0A749353D (ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 * __this, const RuntimeMethod* method) { return (( WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * (*) (ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 *, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_mD385ED6B1C12DC6353D50409731FB1729FFD9FA5_gshared)(__this, method); } // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m588C16057E70F436C528A800D32546E987CAF1BD (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method); // System.Void System.Collections.Hashtable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91 (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * __this, const RuntimeMethod* method); // System.Uri System.Net.HttpWebRequest::get_Address() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * HttpWebRequest_get_Address_m8B4240A8AD46F12716B28F8549750BA30D2E368B_inline (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method); // System.String System.Uri::get_Host() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Host_m05E1D82C4E6B14A2369AEDED218F9089DE336E64 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Void System.Xml.OpenedHost::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OpenedHost__ctor_m0FB08FD979C96E5E83286C9879ECDCC2F4F217AB (OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D * __this, const RuntimeMethod* method); // System.Net.ServicePoint System.Net.HttpWebRequest::get_ServicePoint() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * HttpWebRequest_get_ServicePoint_m87CA558F0C7B4A6D585F42616771173F75DE2567 (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method); // System.Int32 System.Net.ServicePoint::get_ConnectionLimit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ServicePoint_get_ConnectionLimit_mDF34A9CA341979EF0E5A547DC0E3281BBBEE72FF (ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlRegisteredNonCachedStream::.ctor(System.IO.Stream,System.Xml.XmlDownloadManager,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlRegisteredNonCachedStream__ctor_m081041EA73D3FC8BC1859DA296084E29DD94C19F (XmlRegisteredNonCachedStream_t34366F50733A8D122E74F0C51EAD411FF827BCC1 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * ___downloadManager1, String_t* ___host2, const RuntimeMethod* method); // System.Void System.Xml.XmlCachedStream::.ctor(System.Uri,System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCachedStream__ctor_m07A18788CA9C71ED5B4718F29D34B94406703F0F (XmlCachedStream_t16365C843A7DEB2CD28A1C6550229581A2913D83 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream1, const RuntimeMethod* method); // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m62365CE1CF6AD0E7396CEEB926F7B0C3FA8CABA1 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::SetException(System.Exception) inline void AsyncTaskMethodBuilder_1_SetException_m69431078822E6A677A8F7CEC526C9D6DE1247251 (AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F * __this, Exception_t * ___exception0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F *, Exception_t *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetException_m29521EB618E38AF72FF0C4094070C1489F4129B3_gshared)(__this, ___exception0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::SetResult(!0) inline void AsyncTaskMethodBuilder_1_SetResult_mD3A30E77DF6510CE14800E799D4A0EFA09BAFEFD (AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___result0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F *, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_m3E4AB12877D4FE377F26708CF6899C49360007FA_gshared)(__this, ___result0, method); } // System.Void System.Xml.XmlDownloadManager/d__5::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetNonFileStreamAsyncU3Ed__5_MoveNext_m395DECA15FA59099D34DC4CBDAA0125307690CF7 (U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) inline void AsyncTaskMethodBuilder_1_SetStateMachine_mFF03AB561D1FC60E613247F020EFD7D420A1BECF (AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F *, RuntimeObject*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetStateMachine_m736C84D61B4AB2FCD150BD3945C6874471A9224D_gshared)(__this, ___stateMachine0, method); } // System.Void System.Xml.XmlDownloadManager/d__5::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetNonFileStreamAsyncU3Ed__5_SetStateMachine_m6269B8FD1CE46B7955D5D2F90AB7D5F2BE407777 (U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method); // System.Int32 System.Xml.XmlNamedNodeMap/SmallXmlNodeList::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SmallXmlNodeList_get_Count_m531CBC894FC78314798ED52A184AB776B4C1E482 (SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * __this, const RuntimeMethod* method); // System.Object System.Xml.XmlNamedNodeMap/SmallXmlNodeList::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SmallXmlNodeList_get_Item_mB9359FC058C97EE9AD78BB1131A921616814A90E (SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList::Add(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlNodeList_Add_m23AA92A77C388F16C324B3DABE2FB17E3DA5DCF6 (SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlNodeList_RemoveAt_mA3D7ACC3756E6109DBA4F77F83E2AF9A639A0FCE (SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList::Insert(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlNodeList_Insert_m746B9DDFD7B78894075135B2902335F4E6B4465B (SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator::.ctor(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleObjectEnumerator__ctor_m604B995B6FF07963B203415E5DD1284159E65BA2 (SingleObjectEnumerator_t00B492D3B841924569E3EB466D5675163D6EF62E * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Collections.IEnumerator System.Xml.XmlNamedNodeMap/SmallXmlNodeList::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SmallXmlNodeList_GetEnumerator_mB22BFB1AD52DA04FA5D10B8C62D996894DF967C8 (SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlNamespaceManager/NamespaceDeclaration::Set(System.String,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceDeclaration_Set_mE6E6F7B98C17F9565B0EF691EA013D0A0CED2A1C (NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48 * __this, String_t* ___prefix0, String_t* ___uri1, int32_t ___scopeId2, int32_t ___previousNsIndex3, const RuntimeMethod* method); // System.Void System.Xml.Serialization.XmlReflectionImporter/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m82577CED5A4420DBD26D37EDC5EB6918E237B233 (U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE * __this, const RuntimeMethod* method); // System.Xml.Serialization.XmlAttributes System.Xml.Serialization.XmlReflectionMember::get_XmlAttributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46 * XmlReflectionMember_get_XmlAttributes_m55C4166601EDBC0C7ABB07EC926485C010F888D1 (XmlReflectionMember_t2DB532740F4159245F707469F68AEA9BFBDA55CD * __this, const RuntimeMethod* method); // System.Int32 System.Xml.Serialization.XmlAttributes::get_SortableOrder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAttributes_get_SortableOrder_m5853D2240F94BC8416A2AA5DA313E05A2AF45EF6 (XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46 * __this, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlSchemaParticle::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaParticle__ctor_m64085D4FE99BD7935AE3E23F5C3BF7EDB5BC1B79 (XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789 * __this, const RuntimeMethod* method); // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::FixupMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_FixupMembers_mB6792FEAA5D621FE8789D4F1F8D45BB1F9BDE067 (XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26 * __this, ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB * ___map0, RuntimeObject * ___obfixup1, bool ___isValueList2, const RuntimeMethod* method); // System.String System.Xml.Serialization.XmlMapping::get_ElementName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlMapping_get_ElementName_m325D48DC1385A3577E5B4948F1F116861A215CEF_inline (XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 * __this, const RuntimeMethod* method); // System.String System.Xml.Serialization.XmlMapping::get_Namespace() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlMapping_get_Namespace_mC81A8F368DA39CCD355792888D951BE2A8B21835_inline (XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 * __this, const RuntimeMethod* method); // System.Object System.Activator::CreateInstance(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_m8D0BDBD446BBCB24F702D8678A57E4594919C8BD (Type_t * ___type0, const RuntimeMethod* method); // System.Void System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdDefaultAttributeInfoToNodeDataComparer__ctor_m327CBD841F71F8D23F89F4BDB1C324CB870DA2D5 (DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC * __this, const RuntimeMethod* method); // System.Xml.XmlNameTable System.Xml.XmlTextReaderImpl::get_DtdParserProxy_NameTable() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * XmlTextReaderImpl_get_DtdParserProxy_NameTable_mA567221B0BD05C6BF365121EF52549079FF67D9B_inline (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Xml.IXmlNamespaceResolver System.Xml.XmlTextReaderImpl::get_DtdParserProxy_NamespaceResolver() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReaderImpl_get_DtdParserProxy_NamespaceResolver_m6A9BA136D735089A09CEB096E0D839AAC7E281FC_inline (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Uri System.Xml.XmlTextReaderImpl::get_DtdParserProxy_BaseUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * XmlTextReaderImpl_get_DtdParserProxy_BaseUri_mCE10049FE4A8821152EE99B73D10A209742392CA (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_IsEof() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_IsEof_m13733FCF75EDC19FD816AC51941CB8FB962A486B (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Char[] System.Xml.XmlTextReaderImpl::get_DtdParserProxy_ParsingBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* XmlTextReaderImpl_get_DtdParserProxy_ParsingBuffer_mB70D61FBA9AA7A5E313613ACD8B30DCA2B6D2FEB (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.XmlTextReaderImpl::get_DtdParserProxy_ParsingBufferLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_DtdParserProxy_ParsingBufferLength_mD5613762191E3EEEA23DA5DE0EF2C8FB21577D0C (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.XmlTextReaderImpl::get_DtdParserProxy_CurrentPosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_DtdParserProxy_CurrentPosition_m28456EAF24A02277AAF87AB79D712105F244D707 (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlTextReaderImpl::set_DtdParserProxy_CurrentPosition(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_DtdParserProxy_CurrentPosition_m995C56DBAC314FB044B1E49933065BF154D02E9F (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Int32 System.Xml.XmlTextReaderImpl::get_DtdParserProxy_EntityStackLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_DtdParserProxy_EntityStackLength_m61FA991027E1A9A410B30BBC69180D6427FE05B0 (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_IsEntityEolNormalized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_IsEntityEolNormalized_m11F429D654706C17F9A22ED2FAE2041F98EB8DE1 (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_OnNewLine(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_OnNewLine_mBFF6E843E6C26A7B60FB1D36E0CAD2F4FB835A00 (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, int32_t ___pos0, const RuntimeMethod* method); // System.Int32 System.Xml.XmlTextReaderImpl::get_DtdParserProxy_LineNo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_DtdParserProxy_LineNo_m129EADD0F6CD778B3DF123FFBC898D3D58D63FCD (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.XmlTextReaderImpl::get_DtdParserProxy_LineStartPosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_DtdParserProxy_LineStartPosition_m951C51E2CFE3F3C9AB7C3680D3212798DF74BBA9 (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.XmlTextReaderImpl::DtdParserProxy_ReadData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_DtdParserProxy_ReadData_m66EB3594B25D28E431F99AC7D95EC6634F7DC526 (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Int32 System.Xml.XmlTextReaderImpl::DtdParserProxy_ParseNumericCharRef(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_DtdParserProxy_ParseNumericCharRef_m39D4CD5F94D141D336EFF548AE1BE5ADB56D078D (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, StringBuilder_t * ___internalSubsetBuilder0, const RuntimeMethod* method); // System.Int32 System.Xml.XmlTextReaderImpl::DtdParserProxy_ParseNamedCharRef(System.Boolean,System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_DtdParserProxy_ParseNamedCharRef_m6534D46BB2CD419139F69B5F11F26B862568DDFB (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, bool ___expand0, StringBuilder_t * ___internalSubsetBuilder1, const RuntimeMethod* method); // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_ParsePI(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_ParsePI_mAE961B995AF007A4B3FF2401D8E162097C76631F (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method); // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_ParseComment(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_ParseComment_mDEE3956D7D181C76831CE94E946E5925659026E6 (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method); // System.Boolean System.Xml.XmlTextReaderImpl::DtdParserProxy_PushEntity(System.Xml.IDtdEntityInfo,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_DtdParserProxy_PushEntity_m1FE85F4F9604C6B97780EC6DCF42D29C53EE63D7 (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, RuntimeObject* ___entity0, int32_t* ___entityId1, const RuntimeMethod* method); // System.Boolean System.Xml.XmlTextReaderImpl::DtdParserProxy_PopEntity(System.Xml.IDtdEntityInfo&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_DtdParserProxy_PopEntity_m9E4CC26F8E9B3575B383F54E0B9007894C955122 (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, RuntimeObject** ___oldEntity0, int32_t* ___newEntityId1, const RuntimeMethod* method); // System.Boolean System.Xml.XmlTextReaderImpl::DtdParserProxy_PushExternalSubset(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_DtdParserProxy_PushExternalSubset_mAC0206AAEC281D0D29148A1064BE53400E0E916D (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, String_t* ___systemId0, String_t* ___publicId1, const RuntimeMethod* method); // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_PushInternalDtd(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_PushInternalDtd_mF9CDFC87D8E8D1136B0E5723E6A6F6F64116A7E4 (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, String_t* ___baseUri0, String_t* ___internalDtd1, const RuntimeMethod* method); // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_Throw(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_Throw_m89A969A79E65E0700AEED33390E179E1CB506DBB (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, Exception_t * ___e0, const RuntimeMethod* method); // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_OnSystemId(System.String,System.Xml.LineInfo,System.Xml.LineInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_OnSystemId_m67D9C87D1E7E5465BA7C9CA6C579599F85850886 (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, String_t* ___systemId0, LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE ___keywordLineInfo1, LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE ___systemLiteralLineInfo2, const RuntimeMethod* method); // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_OnPublicId(System.String,System.Xml.LineInfo,System.Xml.LineInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_OnPublicId_m92D1DB1D7F1B15CD6B2452E68F3BDD8A262F8D4D (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, String_t* ___publicId0, LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE ___keywordLineInfo1, LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE ___publicLiteralLineInfo2, const RuntimeMethod* method); // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_DtdValidation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_DtdValidation_m7D47BC9FB2D5F45ADF4BE7F253AEC4AB943D49F1 (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Xml.IValidationEventHandling System.Xml.XmlTextReaderImpl::get_DtdParserProxy_ValidationEventHandling() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReaderImpl_get_DtdParserProxy_ValidationEventHandling_m86F807BDC2BEF934D72F2A65FC7F97262735A219_inline (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_Normalization() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_Normalization_m114C15F2776A94727A5992DB26D65BDC1D670543_inline (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_Namespaces() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_Namespaces_m8D805DAFFE1332B0E23F2D3AE2959A29C8190FD3_inline (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_V1CompatibilityMode() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_V1CompatibilityMode_m1B3ACC4435FE2768144414FF216E145916403325_inline (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlTextReaderImpl/NodeData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData__ctor_m98A61DC61B90E41B17BC4B4ECC19E93DEE2C49D1 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlTextReaderImpl/NodeData::Clear(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_Clear_mA1DC123EFEF100E0BAE5D5860DED5C0AC83EAB94 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, int32_t ___type0, const RuntimeMethod* method); // System.String System.String::CreateString(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E (String_t* __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___val0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method); // System.Boolean System.Xml.XmlTextReaderImpl/NodeData::get_ValueBuffered() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NodeData_get_ValueBuffered_mE5170B30D387085171C045FDAC10C67D4554D39D (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlTextReaderImpl::StripSpaces(System.Char[],System.Int32,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_StripSpaces_m659698EB952B836C56AD50F29FA30174CAB136BE (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___value0, int32_t ___index1, int32_t* ___len2, const RuntimeMethod* method); // System.String System.Xml.XmlTextReaderImpl::StripSpaces(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_StripSpaces_mC8550477864159A835ECE6D53E6976324CA87CD9 (String_t* ___value0, const RuntimeMethod* method); // System.Void System.Xml.XmlTextReaderImpl/NodeData::ClearName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_ClearName_mC3A98BBF65ABAE00AFE65E1942BB348021D1D0C9 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, const RuntimeMethod* method); // System.Void System.Xml.LineInfo::Set(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineInfo_Set_mAA6F06BA4463E64A24070063EE26BF665EC28B99 (LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE * __this, int32_t ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method); // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetNamedNode(System.Xml.XmlNodeType,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetNamedNode_mFE5340CD2CF846E5AADCE3F7D8925BB1780683F9 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, int32_t ___type0, String_t* ___localName1, String_t* ___prefix2, String_t* ___nameWPrefix3, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m4B771D7BFE8A65C9A504EC5847A699EB678B02DB (StringBuilder_t * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___value0, int32_t ___startIndex1, int32_t ___charCount2, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mB0253AA6494BFCC6EA6E5FA343D0DAE6F58CBD17 (StringBuilder_t * __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method); // System.String System.Xml.XmlTextReaderImpl/NodeData::CreateNameWPrefix(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NodeData_CreateNameWPrefix_mE5F2F6096757CECF6F0C49FB0542EFBF15A9C7C3 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * ___nt0, const RuntimeMethod* method); // System.Boolean System.Xml.Ref::Equal(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Ref_Equal_mC7446C03C6E7E8A136230B02A6B4F9FA6B389242 (String_t* ___strA0, String_t* ___strB1, const RuntimeMethod* method); // System.Int32 System.String::CompareOrdinal(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareOrdinal_mFDCC5702BF15DBA49C5E89677B7BCBA827284B07 (String_t* ___strA0, String_t* ___strB1, const RuntimeMethod* method); // System.Void System.Xml.XmlTextReaderImpl/ParsingState::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParsingState_Clear_m23A1DD27BCE9143D4C4E6D5A45C0F4AA1FECA004 (ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF * __this, const RuntimeMethod* method); // System.Void System.Xml.XmlTextReaderImpl/ParsingState::Close(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParsingState_Close_m689F0D29DA61913B5406B7E42E675DED08CEC10F (ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF * __this, bool ___closeInput0, const RuntimeMethod* method); // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::get_LineNo() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ParsingState_get_LineNo_m9C32240CFE61AE19697B7C9EFA5DE9B44D3C9610_inline (ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF * __this, const RuntimeMethod* method); // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::get_LinePos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ParsingState_get_LinePos_mB937EA68EFFA791C24EDC7C1DFFE45732EBFFD5C (ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF * __this, const RuntimeMethod* method); // System.Threading.Tasks.Task`1 System.Xml.XmlDownloadManager::GetStreamAsync(System.Uri,System.Net.ICredentials,System.Net.IWebProxy,System.Net.Cache.RequestCachePolicy) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 * XmlDownloadManager_GetStreamAsync_m8651CC7437004016BCBB9742D71972CBAAB94E62 (XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, RuntimeObject* ___credentials1, RuntimeObject* ___proxy2, RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * ___cachePolicy3, const RuntimeMethod* method); // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1 System.Threading.Tasks.Task`1::ConfigureAwait(System.Boolean) inline ConfiguredTaskAwaitable_1_t7EA81BB95AB4DBB79ADF06E9518D55B0721DC03C Task_1_ConfigureAwait_m4A6D2565EE9545645B9418B3B2CC34B6A3D260A8 (Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) { return (( ConfiguredTaskAwaitable_1_t7EA81BB95AB4DBB79ADF06E9518D55B0721DC03C (*) (Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 *, bool, const RuntimeMethod*))Task_1_ConfigureAwait_m0C99499DCC096AEE2A6AD075391C61037CC3DAA1_gshared)(__this, ___continueOnCapturedContext0, method); } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::GetAwaiter() inline ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC ConfiguredTaskAwaitable_1_GetAwaiter_m4F1ED70E3551027C342566D331FE99EB40F7C076_inline (ConfiguredTaskAwaitable_1_t7EA81BB95AB4DBB79ADF06E9518D55B0721DC03C * __this, const RuntimeMethod* method) { return (( ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC (*) (ConfiguredTaskAwaitable_1_t7EA81BB95AB4DBB79ADF06E9518D55B0721DC03C *, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_mFCE2327CEE19607ABB1CDCC8A6B145BDCF9820BC_gshared_inline)(__this, method); } // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::get_IsCompleted() inline bool ConfiguredTaskAwaiter_get_IsCompleted_mB7A99A944FAEF631A2EC109FADBF428D6A12FC0F (ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC * __this, const RuntimeMethod* method) { return (( bool (*) (ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC *, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_m5E3746D1B0661A5BCD45816E83766F228A077D20_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::AwaitUnsafeOnCompleted,System.Xml.XmlUrlResolver/d__15>(!!0&,!!1&) inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC_TisU3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_m3B21BB85DA84F2172127634BA0CCA9EF4FFE865F (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * __this, ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC * ___awaiter0, U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 * ___stateMachine1, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 *, ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC *, U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED_TisU3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_mDAE57A4AFAD3B1106D854AC150240C2D1A344D57_gshared)(__this, ___awaiter0, ___stateMachine1, method); } // !0 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::GetResult() inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ConfiguredTaskAwaiter_GetResult_mAD154326007808FFD2047A47BD8C312B91A05FCD (ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC * __this, const RuntimeMethod* method) { return (( Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * (*) (ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC *, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_mD385ED6B1C12DC6353D50409731FB1729FFD9FA5_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::SetException(System.Exception) inline void AsyncTaskMethodBuilder_1_SetException_m29521EB618E38AF72FF0C4094070C1489F4129B3 (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * __this, Exception_t * ___exception0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 *, Exception_t *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetException_m29521EB618E38AF72FF0C4094070C1489F4129B3_gshared)(__this, ___exception0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::SetResult(!0) inline void AsyncTaskMethodBuilder_1_SetResult_m3E4AB12877D4FE377F26708CF6899C49360007FA (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * __this, RuntimeObject * ___result0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 *, RuntimeObject *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_m3E4AB12877D4FE377F26708CF6899C49360007FA_gshared)(__this, ___result0, method); } // System.Void System.Xml.XmlUrlResolver/d__15::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEntityAsyncU3Ed__15_MoveNext_m6F75ADBC40411959ECD71C921F282AB4102D208E (U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) inline void AsyncTaskMethodBuilder_1_SetStateMachine_m736C84D61B4AB2FCD150BD3945C6874471A9224D (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 *, RuntimeObject*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetStateMachine_m736C84D61B4AB2FCD150BD3945C6874471A9224D_gshared)(__this, ___stateMachine0, method); } // System.Void System.Xml.XmlUrlResolver/d__15::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEntityAsyncU3Ed__15_SetStateMachine_m9A31F8EDD492D50FFA4F9FCC8F0FBAD9DD1D3E93 (U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method); // System.Boolean System.Char::IsWhiteSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_mA78B7CA7BF0CA022525EA150EB6028F45E33C775 (Il2CppChar ___c0, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.XsdDateTime/Parser::Test(System.Xml.Schema.XsdDateTimeFlags,System.Xml.Schema.XsdDateTimeFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_Test_m7A3240669F6CEFAF3FF82E446591DB268BC86E38 (int32_t ___left0, int32_t ___right1, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.XsdDateTime/Parser::ParseDate(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_ParseDate_m23E3A2F31DFAA15C290E80E7D32F8981686A515F (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, int32_t ___start0, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.XsdDateTime/Parser::ParseChar(System.Int32,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, int32_t ___start0, Il2CppChar ___ch1, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.XsdDateTime/Parser::ParseTimeAndZoneAndWhitespace(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_ParseTimeAndZoneAndWhitespace_mD3C814A74159B2A1D9833D62B387855AA750A7D7 (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, int32_t ___start0, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.XsdDateTime/Parser::ParseZoneAndWhitespace(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_ParseZoneAndWhitespace_m8AE1CD0249E328AD018311B36D4D7C8145B1F7FD (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, int32_t ___start0, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.XsdDateTime/Parser::ParseTimeAndWhitespace(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_ParseTimeAndWhitespace_mBCF164792A47E16B97330955841DCE66BC3EE76F (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, int32_t ___start0, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.XsdDateTime/Parser::Parse4Dig(System.Int32,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_Parse4Dig_m65BF5864AF2DAF8C2C5C4986EF5033E430211E85 (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, int32_t ___start0, int32_t* ___num1, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.XsdDateTime/Parser::Parse2Dig(System.Int32,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_Parse2Dig_mDC407DA9C1765B371244EEE11A43CF233F655581 (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, int32_t ___start0, int32_t* ___num1, const RuntimeMethod* method); // System.Int32 System.DateTime::DaysInMonth(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_DaysInMonth_m1437F1BDAA8ABA8AD85F30E58238F92974B6533B (int32_t ___year0, int32_t ___month1, const RuntimeMethod* method); // System.Boolean System.Xml.Schema.XsdDateTime/Parser::ParseTime(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_ParseTime_m8B8F8087006D4BDFE3FF8E239ACE293C68A41339 (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, int32_t* ___start0, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m26BD2B620B5FBFA4376C16011C60E18A2EDC8E96 (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlTextWriter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter__ctor_m99C6F457368131185E3DF47E3339A20D2C076357 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA L_0; L_0 = XmlCharType_get_Instance_mEF3C732F10BE7095CF1A5B7A4CD44D9553184DEB(/*hidden argument*/NULL); __this->set_xmlCharType_23(L_0); XmlWriter__ctor_mAA10A026AD230D064314D2AE472A144D18418A01(__this, /*hidden argument*/NULL); __this->set_namespaces_15((bool)1); __this->set_formatting_3(0); __this->set_indentation_5(2); __this->set_indentChar_6(((int32_t)32)); NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_1 = (NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6*)(NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6*)SZArrayNew(NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6_il2cpp_TypeInfo_var, (uint32_t)8); __this->set_nsStack_19(L_1); __this->set_nsTop_20((-1)); TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_2 = (TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637*)(TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637*)SZArrayNew(TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10)); __this->set_stack_7(L_2); __this->set_top_8(0); TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_3 = __this->get_stack_7(); int32_t L_4 = __this->get_top_8(); NullCheck(L_3); TagInfo_Init_mFC65CB7C7A7D7852E3A2825365F1BD35CC38F8CF((TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 *)((L_3)->GetAddressAt(static_cast(L_4))), (-1), /*hidden argument*/NULL); __this->set_quoteChar_13(((int32_t)34)); IL2CPP_RUNTIME_CLASS_INIT(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var); StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* L_5 = ((XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var))->get_stateTableDefault_26(); __this->set_stateTable_9(L_5); __this->set_currentState_10(0); __this->set_lastToken_11(((int32_t)13)); return; } } // System.Void System.Xml.XmlTextWriter::.ctor(System.IO.Stream,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter__ctor_mF857BB581940BC82DC4E13AF5DCECEA4A7849BE6 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___w0, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlTextWriter__ctor_m99C6F457368131185E3DF47E3339A20D2C076357(__this, /*hidden argument*/NULL); Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_0 = ___encoding1; __this->set_encoding_2(L_0); Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_1 = ___encoding1; if (!L_1) { goto IL_001f; } } { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_2 = ___w0; Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_3 = ___encoding1; StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 * L_4 = (StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 *)il2cpp_codegen_object_new(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6_il2cpp_TypeInfo_var); StreamWriter__ctor_m4D0D93D2ED2D49AFB992D38F2102D5A72DD94D2E(L_4, L_2, L_3, /*hidden argument*/NULL); __this->set_textWriter_0(L_4); goto IL_002b; } IL_001f: { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_5 = ___w0; StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 * L_6 = (StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 *)il2cpp_codegen_object_new(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6_il2cpp_TypeInfo_var); StreamWriter__ctor_m3D516CFFEDAC2849A8C3E997FD0233A61A482762(L_6, L_5, /*hidden argument*/NULL); __this->set_textWriter_0(L_6); } IL_002b: { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_7 = __this->get_textWriter_0(); XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_8 = (XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E *)il2cpp_codegen_object_new(XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E_il2cpp_TypeInfo_var); XmlTextEncoder__ctor_m8142AA059B3675FE89F48542A7F013098FCDBCBC(L_8, L_7, /*hidden argument*/NULL); __this->set_xmlEncoder_1(L_8); XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_9 = __this->get_xmlEncoder_1(); Il2CppChar L_10 = __this->get_quoteChar_13(); NullCheck(L_9); XmlTextEncoder_set_QuoteChar_m1897FBEC0EAB4616C3FD961A12AFC0F7ED771824_inline(L_9, L_10, /*hidden argument*/NULL); return; } } // System.Void System.Xml.XmlTextWriter::set_Formatting(System.Xml.Formatting) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_set_Formatting_mC5BE36CD4C51436259E6506B7282E975BB287089 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_formatting_3(L_0); int32_t L_1 = ___value0; __this->set_indented_4((bool)((((int32_t)L_1) == ((int32_t)1))? 1 : 0)); return; } } // System.Void System.Xml.XmlTextWriter::WriteStartDocument() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteStartDocument_m7365972D8E6CD33206F6FCEF3D8F3CF762FA1445 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method) { { XmlTextWriter_StartDocument_mA79CE2624637971D48599CD491BE1BC587D6D364(__this, (-1), /*hidden argument*/NULL); return; } } // System.Void System.Xml.XmlTextWriter::WriteDocType(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteDocType_m296AC97F2191BCF0BB2B1422C6BB849A6FD7B81C (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___name0, String_t* ___pubid1, String_t* ___sysid2, String_t* ___subset3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBD1D701FC46063485DFFAB6888F3C74B6DC48DD8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC7C776080FBFB5F15E2EAAE9A4C65AE2C17FE00B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD80F08699EED587529ABC38BC3513F5D6C7016A7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC); s_Il2CppMethodInitialized = true; } il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try { // begin try (depth: 1) { String_t* L_0 = ___name0; XmlTextWriter_ValidateName_mBE854955EEA2F287F37611C7E4FE14E0C10A988B(__this, L_0, (bool)0, /*hidden argument*/NULL); XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2(__this, 1, /*hidden argument*/NULL); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_1 = __this->get_textWriter_0(); NullCheck(L_1); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_1, _stringLiteralC7C776080FBFB5F15E2EAAE9A4C65AE2C17FE00B); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_2 = __this->get_textWriter_0(); String_t* L_3 = ___name0; NullCheck(L_2); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_2, L_3); String_t* L_4 = ___pubid1; if (!L_4) { goto IL_00a4; } } IL_002e: { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_5 = __this->get_textWriter_0(); Il2CppChar* L_6 = __this->get_address_of_quoteChar_13(); String_t* L_7; L_7 = Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8((Il2CppChar*)L_6, /*hidden argument*/NULL); String_t* L_8; L_8 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(_stringLiteralD80F08699EED587529ABC38BC3513F5D6C7016A7, L_7, /*hidden argument*/NULL); NullCheck(L_5); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_5, L_8); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_9 = __this->get_textWriter_0(); String_t* L_10 = ___pubid1; NullCheck(L_9); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_9, L_10); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_11 = __this->get_textWriter_0(); Il2CppChar* L_12 = __this->get_address_of_quoteChar_13(); String_t* L_13; L_13 = Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8((Il2CppChar*)L_12, /*hidden argument*/NULL); Il2CppChar* L_14 = __this->get_address_of_quoteChar_13(); String_t* L_15; L_15 = Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8((Il2CppChar*)L_14, /*hidden argument*/NULL); String_t* L_16; L_16 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(L_13, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, L_15, /*hidden argument*/NULL); NullCheck(L_11); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_11, L_16); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_17 = __this->get_textWriter_0(); String_t* L_18 = ___sysid2; NullCheck(L_17); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_17, L_18); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_19 = __this->get_textWriter_0(); Il2CppChar L_20 = __this->get_quoteChar_13(); NullCheck(L_19); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_19, L_20); goto IL_00e4; } IL_00a4: { String_t* L_21 = ___sysid2; if (!L_21) { goto IL_00e4; } } IL_00a7: { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_22 = __this->get_textWriter_0(); Il2CppChar* L_23 = __this->get_address_of_quoteChar_13(); String_t* L_24; L_24 = Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8((Il2CppChar*)L_23, /*hidden argument*/NULL); String_t* L_25; L_25 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(_stringLiteralBD1D701FC46063485DFFAB6888F3C74B6DC48DD8, L_24, /*hidden argument*/NULL); NullCheck(L_22); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_22, L_25); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_26 = __this->get_textWriter_0(); String_t* L_27 = ___sysid2; NullCheck(L_26); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_26, L_27); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_28 = __this->get_textWriter_0(); Il2CppChar L_29 = __this->get_quoteChar_13(); NullCheck(L_28); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_28, L_29); } IL_00e4: { String_t* L_30 = ___subset3; if (!L_30) { goto IL_0115; } } IL_00e8: { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_31 = __this->get_textWriter_0(); NullCheck(L_31); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_31, _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_32 = __this->get_textWriter_0(); String_t* L_33 = ___subset3; NullCheck(L_32); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_32, L_33); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_34 = __this->get_textWriter_0(); NullCheck(L_34); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_34, _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC); } IL_0115: { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_35 = __this->get_textWriter_0(); NullCheck(L_35); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_35, ((int32_t)62)); goto IL_012e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0124; } throw e; } CATCH_0124: { // begin catch(System.Object) __this->set_currentState_10(8); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteDocType_m296AC97F2191BCF0BB2B1422C6BB849A6FD7B81C_RuntimeMethod_var))); } // end catch (depth: 1) IL_012e: { return; } } // System.Void System.Xml.XmlTextWriter::WriteStartElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteStartElement_mE943510001C0B54690AC902611BFF5A10CA412F0 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { String_t* V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try { // begin try (depth: 1) { XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2(__this, 4, /*hidden argument*/NULL); XmlTextWriter_PushStack_m446EA2C48B17B5C8B7044816EDEEC835F0283523(__this, /*hidden argument*/NULL); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_0 = __this->get_textWriter_0(); NullCheck(L_0); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_0, ((int32_t)60)); bool L_1 = __this->get_namespaces_15(); if (!L_1) { goto IL_017b; } } IL_0025: { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_2 = __this->get_stack_7(); int32_t L_3 = __this->get_top_8(); NullCheck(L_2); TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_4 = __this->get_stack_7(); int32_t L_5 = __this->get_top_8(); NullCheck(L_4); String_t* L_6 = ((L_4)->GetAddressAt(static_cast(((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)))))->get_defaultNs_2(); ((L_2)->GetAddressAt(static_cast(L_3)))->set_defaultNs_2(L_6); TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_7 = __this->get_stack_7(); int32_t L_8 = __this->get_top_8(); NullCheck(L_7); int32_t L_9 = ((L_7)->GetAddressAt(static_cast(((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1)))))->get_defaultNsState_3(); if (!L_9) { goto IL_0084; } } IL_006d: { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_10 = __this->get_stack_7(); int32_t L_11 = __this->get_top_8(); NullCheck(L_10); ((L_10)->GetAddressAt(static_cast(L_11)))->set_defaultNsState_3(1); } IL_0084: { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_12 = __this->get_stack_7(); int32_t L_13 = __this->get_top_8(); NullCheck(L_12); TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_14 = __this->get_stack_7(); int32_t L_15 = __this->get_top_8(); NullCheck(L_14); bool L_16 = ((L_14)->GetAddressAt(static_cast(((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)1)))))->get_mixed_8(); ((L_12)->GetAddressAt(static_cast(L_13)))->set_mixed_8(L_16); String_t* L_17 = ___ns2; if (L_17) { goto IL_00da; } } IL_00b5: { String_t* L_18 = ___prefix0; if (!L_18) { goto IL_0127; } } IL_00b8: { String_t* L_19 = ___prefix0; NullCheck(L_19); int32_t L_20; L_20 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_19, /*hidden argument*/NULL); if (!L_20) { goto IL_0127; } } IL_00c0: { String_t* L_21 = ___prefix0; int32_t L_22; L_22 = XmlTextWriter_LookupNamespace_mB4568061673EFBC795A43BB701ABE3335AFCE9A2(__this, L_21, /*hidden argument*/NULL); if ((!(((uint32_t)L_22) == ((uint32_t)(-1))))) { goto IL_0127; } } IL_00ca: { String_t* L_23; L_23 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA6A4D769FFC4529F0963FE55F3BE08E56AB8438E)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_24 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_24, L_23, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteStartElement_mE943510001C0B54690AC902611BFF5A10CA412F0_RuntimeMethod_var))); } IL_00da: { String_t* L_25 = ___prefix0; if (L_25) { goto IL_00f8; } } IL_00dd: { String_t* L_26 = ___ns2; String_t* L_27; L_27 = XmlTextWriter_FindPrefix_m51D5E641757962E17B432ADC03DB8537E0159FD8(__this, L_26, /*hidden argument*/NULL); V_0 = L_27; String_t* L_28 = V_0; if (!L_28) { goto IL_00ed; } } IL_00e8: { String_t* L_29 = V_0; ___prefix0 = L_29; goto IL_0127; } IL_00ed: { String_t* L_30 = ___ns2; XmlTextWriter_PushNamespace_mFAE3B22D92E1EE3EB61C94917C3E9A955D9CD5C2(__this, (String_t*)NULL, L_30, (bool)0, /*hidden argument*/NULL); goto IL_0127; } IL_00f8: { String_t* L_31 = ___prefix0; NullCheck(L_31); int32_t L_32; L_32 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_31, /*hidden argument*/NULL); if (L_32) { goto IL_010b; } } IL_0100: { String_t* L_33 = ___ns2; XmlTextWriter_PushNamespace_mFAE3B22D92E1EE3EB61C94917C3E9A955D9CD5C2(__this, (String_t*)NULL, L_33, (bool)0, /*hidden argument*/NULL); goto IL_0127; } IL_010b: { String_t* L_34 = ___ns2; NullCheck(L_34); int32_t L_35; L_35 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_34, /*hidden argument*/NULL); if (L_35) { goto IL_0116; } } IL_0113: { ___prefix0 = (String_t*)NULL; } IL_0116: { String_t* L_36 = ___prefix0; String_t* L_37 = ___ns2; XmlTextWriter_VerifyPrefixXml_m7729FF5CEA9F697C2B498B672D02C4C895A287FB(__this, L_36, L_37, /*hidden argument*/NULL); String_t* L_38 = ___prefix0; String_t* L_39 = ___ns2; XmlTextWriter_PushNamespace_mFAE3B22D92E1EE3EB61C94917C3E9A955D9CD5C2(__this, L_38, L_39, (bool)0, /*hidden argument*/NULL); } IL_0127: { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_40 = __this->get_stack_7(); int32_t L_41 = __this->get_top_8(); NullCheck(L_40); ((L_40)->GetAddressAt(static_cast(L_41)))->set_prefix_1((String_t*)NULL); String_t* L_42 = ___prefix0; if (!L_42) { goto IL_01a1; } } IL_0141: { String_t* L_43 = ___prefix0; NullCheck(L_43); int32_t L_44; L_44 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_43, /*hidden argument*/NULL); if (!L_44) { goto IL_01a1; } } IL_0149: { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_45 = __this->get_stack_7(); int32_t L_46 = __this->get_top_8(); NullCheck(L_45); String_t* L_47 = ___prefix0; ((L_45)->GetAddressAt(static_cast(L_46)))->set_prefix_1(L_47); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_48 = __this->get_textWriter_0(); String_t* L_49 = ___prefix0; NullCheck(L_48); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_48, L_49); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_50 = __this->get_textWriter_0(); NullCheck(L_50); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_50, ((int32_t)58)); goto IL_01a1; } IL_017b: { String_t* L_51 = ___ns2; if (!L_51) { goto IL_0186; } } IL_017e: { String_t* L_52 = ___ns2; NullCheck(L_52); int32_t L_53; L_53 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_52, /*hidden argument*/NULL); if (L_53) { goto IL_0191; } } IL_0186: { String_t* L_54 = ___prefix0; if (!L_54) { goto IL_01a1; } } IL_0189: { String_t* L_55 = ___prefix0; NullCheck(L_55); int32_t L_56; L_56 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_55, /*hidden argument*/NULL); if (!L_56) { goto IL_01a1; } } IL_0191: { String_t* L_57; L_57 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAC9E93CEA17C181E0B0046090BD8FBFE6027E465)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_58 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_58, L_57, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_58, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteStartElement_mE943510001C0B54690AC902611BFF5A10CA412F0_RuntimeMethod_var))); } IL_01a1: { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_59 = __this->get_stack_7(); int32_t L_60 = __this->get_top_8(); NullCheck(L_59); String_t* L_61 = ___localName1; ((L_59)->GetAddressAt(static_cast(L_60)))->set_name_0(L_61); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_62 = __this->get_textWriter_0(); String_t* L_63 = ___localName1; NullCheck(L_62); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_62, L_63); goto IL_01d0; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_01c6; } throw e; } CATCH_01c6: { // begin catch(System.Object) __this->set_currentState_10(8); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteStartElement_mE943510001C0B54690AC902611BFF5A10CA412F0_RuntimeMethod_var))); } // end catch (depth: 1) IL_01d0: { return; } } // System.Void System.Xml.XmlTextWriter::WriteEndElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteEndElement_mE604C4B85C4996180C7EA5C45DFDC06F5FC173BD (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method) { { XmlTextWriter_InternalWriteEndElement_mF39D8CB533A512D50269E722957BA39D259B7D9C(__this, (bool)0, /*hidden argument*/NULL); return; } } // System.Void System.Xml.XmlTextWriter::WriteFullEndElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteFullEndElement_mE72E6EE67DA14E359365561C0AA1720A204A05ED (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method) { { XmlTextWriter_InternalWriteEndElement_mF39D8CB533A512D50269E722957BA39D259B7D9C(__this, (bool)1, /*hidden argument*/NULL); return; } } // System.Void System.Xml.XmlTextWriter::WriteStartAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteStartAttribute_mB1EE3993D9434186A16E51753700650831D3C5E1 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5E5E0B42C7CA8BCA40E77FC8AC4FC4B3C6D556A0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA0BA8D0495A770319CD6FF4DCD0C01BCCC30A901); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try { // begin try (depth: 1) { XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2(__this, 7, /*hidden argument*/NULL); __this->set_specialAttr_16(0); bool L_0 = __this->get_namespaces_15(); if (!L_0) { goto IL_01c6; } } IL_0019: { String_t* L_1 = ___prefix0; if (!L_1) { goto IL_0027; } } IL_001c: { String_t* L_2 = ___prefix0; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0027; } } IL_0024: { ___prefix0 = (String_t*)NULL; } IL_0027: { String_t* L_4 = ___ns2; bool L_5; L_5 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_4, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, /*hidden argument*/NULL); if (!L_5) { goto IL_004b; } } IL_0034: { String_t* L_6 = ___prefix0; if (L_6) { goto IL_004b; } } IL_0037: { String_t* L_7 = ___localName1; bool L_8; L_8 = String_op_Inequality_m45BEBD9C59D474454BD0F4AB6C9A8A2D05D40DBE(L_7, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, /*hidden argument*/NULL); if (!L_8) { goto IL_004b; } } IL_0044: { ___prefix0 = _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3; } IL_004b: { String_t* L_9 = ___prefix0; bool L_10; L_10 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_9, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, /*hidden argument*/NULL); if (!L_10) { goto IL_008d; } } IL_0058: { String_t* L_11 = ___localName1; bool L_12; L_12 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_11, _stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29, /*hidden argument*/NULL); if (!L_12) { goto IL_0071; } } IL_0065: { __this->set_specialAttr_16(2); goto IL_01a0; } IL_0071: { String_t* L_13 = ___localName1; bool L_14; L_14 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_13, _stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2, /*hidden argument*/NULL); if (!L_14) { goto IL_01a0; } } IL_0081: { __this->set_specialAttr_16(1); goto IL_01a0; } IL_008d: { String_t* L_15 = ___prefix0; bool L_16; L_16 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_15, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, /*hidden argument*/NULL); if (!L_16) { goto IL_00e7; } } IL_009a: { String_t* L_17 = ___ns2; bool L_18; L_18 = String_op_Inequality_m45BEBD9C59D474454BD0F4AB6C9A8A2D05D40DBE(_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, L_17, /*hidden argument*/NULL); if (!L_18) { goto IL_00ba; } } IL_00a7: { String_t* L_19 = ___ns2; if (!L_19) { goto IL_00ba; } } IL_00aa: { String_t* L_20; L_20 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEA398BF072FD34DE9A70413411E9B2DE140B1383)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteStartAttribute_mB1EE3993D9434186A16E51753700650831D3C5E1_RuntimeMethod_var))); } IL_00ba: { String_t* L_22 = ___localName1; if (!L_22) { goto IL_00c5; } } IL_00bd: { String_t* L_23 = ___localName1; NullCheck(L_23); int32_t L_24; L_24 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_23, /*hidden argument*/NULL); if (L_24) { goto IL_00d4; } } IL_00c5: { String_t* L_25 = ___prefix0; ___localName1 = L_25; ___prefix0 = (String_t*)NULL; __this->set_prefixForXmlNs_17((String_t*)NULL); goto IL_00db; } IL_00d4: { String_t* L_26 = ___localName1; __this->set_prefixForXmlNs_17(L_26); } IL_00db: { __this->set_specialAttr_16(3); goto IL_01a0; } IL_00e7: { String_t* L_27 = ___prefix0; if (L_27) { goto IL_0127; } } IL_00ea: { String_t* L_28 = ___localName1; bool L_29; L_29 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_28, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, /*hidden argument*/NULL); if (!L_29) { goto IL_0127; } } IL_00f7: { String_t* L_30 = ___ns2; bool L_31; L_31 = String_op_Inequality_m45BEBD9C59D474454BD0F4AB6C9A8A2D05D40DBE(_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, L_30, /*hidden argument*/NULL); if (!L_31) { goto IL_0117; } } IL_0104: { String_t* L_32 = ___ns2; if (!L_32) { goto IL_0117; } } IL_0107: { String_t* L_33; L_33 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEA398BF072FD34DE9A70413411E9B2DE140B1383)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_34 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_34, L_33, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteStartAttribute_mB1EE3993D9434186A16E51753700650831D3C5E1_RuntimeMethod_var))); } IL_0117: { __this->set_specialAttr_16(3); __this->set_prefixForXmlNs_17((String_t*)NULL); goto IL_01a0; } IL_0127: { String_t* L_35 = ___ns2; if (L_35) { goto IL_0147; } } IL_012a: { String_t* L_36 = ___prefix0; if (!L_36) { goto IL_01a0; } } IL_012d: { String_t* L_37 = ___prefix0; int32_t L_38; L_38 = XmlTextWriter_LookupNamespace_mB4568061673EFBC795A43BB701ABE3335AFCE9A2(__this, L_37, /*hidden argument*/NULL); if ((!(((uint32_t)L_38) == ((uint32_t)(-1))))) { goto IL_01a0; } } IL_0137: { String_t* L_39; L_39 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA6A4D769FFC4529F0963FE55F3BE08E56AB8438E)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_40 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_40, L_39, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteStartAttribute_mB1EE3993D9434186A16E51753700650831D3C5E1_RuntimeMethod_var))); } IL_0147: { String_t* L_41 = ___ns2; NullCheck(L_41); int32_t L_42; L_42 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_41, /*hidden argument*/NULL); if (L_42) { goto IL_0158; } } IL_014f: { String_t* L_43 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); ___prefix0 = L_43; goto IL_01a0; } IL_0158: { String_t* L_44 = ___prefix0; String_t* L_45 = ___ns2; XmlTextWriter_VerifyPrefixXml_m7729FF5CEA9F697C2B498B672D02C4C895A287FB(__this, L_44, L_45, /*hidden argument*/NULL); String_t* L_46 = ___prefix0; if (!L_46) { goto IL_0170; } } IL_0163: { String_t* L_47 = ___prefix0; int32_t L_48; L_48 = XmlTextWriter_LookupNamespaceInCurrentScope_m766D00D4AD47B6367237EF4F0926F9290F12A6C8(__this, L_47, /*hidden argument*/NULL); if ((((int32_t)L_48) == ((int32_t)(-1)))) { goto IL_0170; } } IL_016d: { ___prefix0 = (String_t*)NULL; } IL_0170: { String_t* L_49 = ___ns2; String_t* L_50; L_50 = XmlTextWriter_FindPrefix_m51D5E641757962E17B432ADC03DB8537E0159FD8(__this, L_49, /*hidden argument*/NULL); V_0 = L_50; String_t* L_51 = V_0; if (!L_51) { goto IL_018c; } } IL_017b: { String_t* L_52 = ___prefix0; if (!L_52) { goto IL_0187; } } IL_017e: { String_t* L_53 = ___prefix0; String_t* L_54 = V_0; bool L_55; L_55 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_53, L_54, /*hidden argument*/NULL); if (!L_55) { goto IL_018c; } } IL_0187: { String_t* L_56 = V_0; ___prefix0 = L_56; goto IL_01a0; } IL_018c: { String_t* L_57 = ___prefix0; if (L_57) { goto IL_0197; } } IL_018f: { String_t* L_58; L_58 = XmlTextWriter_GeneratePrefix_mDAA81F9152B833563172CDCAF7B19E9687335116(__this, /*hidden argument*/NULL); ___prefix0 = L_58; } IL_0197: { String_t* L_59 = ___prefix0; String_t* L_60 = ___ns2; XmlTextWriter_PushNamespace_mFAE3B22D92E1EE3EB61C94917C3E9A955D9CD5C2(__this, L_59, L_60, (bool)0, /*hidden argument*/NULL); } IL_01a0: { String_t* L_61 = ___prefix0; if (!L_61) { goto IL_0216; } } IL_01a3: { String_t* L_62 = ___prefix0; NullCheck(L_62); int32_t L_63; L_63 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_62, /*hidden argument*/NULL); if (!L_63) { goto IL_0216; } } IL_01ab: { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_64 = __this->get_textWriter_0(); String_t* L_65 = ___prefix0; NullCheck(L_64); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_64, L_65); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_66 = __this->get_textWriter_0(); NullCheck(L_66); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_66, ((int32_t)58)); goto IL_0216; } IL_01c6: { String_t* L_67 = ___ns2; if (!L_67) { goto IL_01d1; } } IL_01c9: { String_t* L_68 = ___ns2; NullCheck(L_68); int32_t L_69; L_69 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_68, /*hidden argument*/NULL); if (L_69) { goto IL_01dc; } } IL_01d1: { String_t* L_70 = ___prefix0; if (!L_70) { goto IL_01ec; } } IL_01d4: { String_t* L_71 = ___prefix0; NullCheck(L_71); int32_t L_72; L_72 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_71, /*hidden argument*/NULL); if (!L_72) { goto IL_01ec; } } IL_01dc: { String_t* L_73; L_73 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAC9E93CEA17C181E0B0046090BD8FBFE6027E465)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_74 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_74, L_73, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_74, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteStartAttribute_mB1EE3993D9434186A16E51753700650831D3C5E1_RuntimeMethod_var))); } IL_01ec: { String_t* L_75 = ___localName1; bool L_76; L_76 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_75, _stringLiteral5E5E0B42C7CA8BCA40E77FC8AC4FC4B3C6D556A0, /*hidden argument*/NULL); if (!L_76) { goto IL_0202; } } IL_01f9: { __this->set_specialAttr_16(2); goto IL_0216; } IL_0202: { String_t* L_77 = ___localName1; bool L_78; L_78 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_77, _stringLiteralA0BA8D0495A770319CD6FF4DCD0C01BCCC30A901, /*hidden argument*/NULL); if (!L_78) { goto IL_0216; } } IL_020f: { __this->set_specialAttr_16(1); } IL_0216: { XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_79 = __this->get_xmlEncoder_1(); int32_t L_80 = __this->get_specialAttr_16(); NullCheck(L_79); XmlTextEncoder_StartAttribute_m154B2203CF4424F0E8A6D1D80AC68B2E05FB7B32(L_79, (bool)((!(((uint32_t)L_80) <= ((uint32_t)0)))? 1 : 0), /*hidden argument*/NULL); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_81 = __this->get_textWriter_0(); String_t* L_82 = ___localName1; NullCheck(L_81); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_81, L_82); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_83 = __this->get_textWriter_0(); NullCheck(L_83); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_83, ((int32_t)61)); Il2CppChar L_84 = __this->get_curQuoteChar_14(); Il2CppChar L_85 = __this->get_quoteChar_13(); if ((((int32_t)L_84) == ((int32_t)L_85))) { goto IL_026e; } } IL_0251: { Il2CppChar L_86 = __this->get_quoteChar_13(); __this->set_curQuoteChar_14(L_86); XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_87 = __this->get_xmlEncoder_1(); Il2CppChar L_88 = __this->get_quoteChar_13(); NullCheck(L_87); XmlTextEncoder_set_QuoteChar_m1897FBEC0EAB4616C3FD961A12AFC0F7ED771824_inline(L_87, L_88, /*hidden argument*/NULL); } IL_026e: { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_89 = __this->get_textWriter_0(); Il2CppChar L_90 = __this->get_curQuoteChar_14(); NullCheck(L_89); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_89, L_90); goto IL_028b; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0281; } throw e; } CATCH_0281: { // begin catch(System.Object) __this->set_currentState_10(8); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteStartAttribute_mB1EE3993D9434186A16E51753700650831D3C5E1_RuntimeMethod_var))); } // end catch (depth: 1) IL_028b: { return; } } // System.Void System.Xml.XmlTextWriter::WriteEndAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteEndAttribute_m0852B03145FD7F894154397EFA5EF618F38D13A4 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method) { il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try { // begin try (depth: 1) XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2(__this, 8, /*hidden argument*/NULL); goto IL_0013; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0009; } throw e; } CATCH_0009: { // begin catch(System.Object) __this->set_currentState_10(8); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteEndAttribute_m0852B03145FD7F894154397EFA5EF618F38D13A4_RuntimeMethod_var))); } // end catch (depth: 1) IL_0013: { return; } } // System.Void System.Xml.XmlTextWriter::WriteCData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteCData_m37E19ED393221530E3701BFE8B13D51F359F370C (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___text0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral651F3DD8CA1557E5BD9B2873C319D3BC64D3128C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral801E316126435DC3E90554FCF745B368C9D874FC); s_Il2CppMethodInitialized = true; } il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try { // begin try (depth: 1) { XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2(__this, 3, /*hidden argument*/NULL); String_t* L_0 = ___text0; if (!L_0) { goto IL_0029; } } IL_000a: { String_t* L_1 = ___text0; NullCheck(L_1); int32_t L_2; L_2 = String_IndexOf_mD99F5378A4220A0DA0D5097007417E777722ABDA(L_1, _stringLiteral801E316126435DC3E90554FCF745B368C9D874FC, 4, /*hidden argument*/NULL); if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0029; } } IL_0019: { String_t* L_3; L_3 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral18088F3052A13DFCCA929557EFBEC73F51E56A7D)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteCData_m37E19ED393221530E3701BFE8B13D51F359F370C_RuntimeMethod_var))); } IL_0029: { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_5 = __this->get_textWriter_0(); NullCheck(L_5); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_5, _stringLiteral651F3DD8CA1557E5BD9B2873C319D3BC64D3128C); String_t* L_6 = ___text0; if (!L_6) { goto IL_0048; } } IL_003c: { XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_7 = __this->get_xmlEncoder_1(); String_t* L_8 = ___text0; NullCheck(L_7); XmlTextEncoder_WriteRawWithSurrogateChecking_mF667913FB3946B4C4AD6A88D2DD2065CFD0CC4A4(L_7, L_8, /*hidden argument*/NULL); } IL_0048: { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_9 = __this->get_textWriter_0(); NullCheck(L_9); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_9, _stringLiteral801E316126435DC3E90554FCF745B368C9D874FC); goto IL_0064; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_005a; } throw e; } CATCH_005a: { // begin catch(System.Object) __this->set_currentState_10(8); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteCData_m37E19ED393221530E3701BFE8B13D51F359F370C_RuntimeMethod_var))); } // end catch (depth: 1) IL_0064: { return; } } // System.Void System.Xml.XmlTextWriter::WriteComment(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteComment_mFCA7CCC50523A809A8F29BA7ACBA9DBABEE44D14 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___text0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0EE5C75C762D2925310D5C8C6DE4A72136C79CC4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB0AADDDCB10777660C04FFF62EE090971E9CB5CA); s_Il2CppMethodInitialized = true; } il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try { // begin try (depth: 1) { String_t* L_0 = ___text0; if (!L_0) { goto IL_003c; } } IL_0003: { String_t* L_1 = ___text0; NullCheck(L_1); int32_t L_2; L_2 = String_IndexOf_mD99F5378A4220A0DA0D5097007417E777722ABDA(L_1, _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA, 4, /*hidden argument*/NULL); if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_002c; } } IL_0012: { String_t* L_3 = ___text0; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_003c; } } IL_001a: { String_t* L_5 = ___text0; String_t* L_6 = ___text0; NullCheck(L_6); int32_t L_7; L_7 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_6, /*hidden argument*/NULL); NullCheck(L_5); Il2CppChar L_8; L_8 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_5, ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)45))))) { goto IL_003c; } } IL_002c: { String_t* L_9; L_9 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB55DD8F11DBEB2311310B75BD326FABA8DD6E4B9)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_10 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_10, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteComment_mFCA7CCC50523A809A8F29BA7ACBA9DBABEE44D14_RuntimeMethod_var))); } IL_003c: { XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2(__this, 2, /*hidden argument*/NULL); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_11 = __this->get_textWriter_0(); NullCheck(L_11); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_11, _stringLiteral0EE5C75C762D2925310D5C8C6DE4A72136C79CC4); String_t* L_12 = ___text0; if (!L_12) { goto IL_0062; } } IL_0056: { XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_13 = __this->get_xmlEncoder_1(); String_t* L_14 = ___text0; NullCheck(L_13); XmlTextEncoder_WriteRawWithSurrogateChecking_mF667913FB3946B4C4AD6A88D2DD2065CFD0CC4A4(L_13, L_14, /*hidden argument*/NULL); } IL_0062: { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_15 = __this->get_textWriter_0(); NullCheck(L_15); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_15, _stringLiteralB0AADDDCB10777660C04FFF62EE090971E9CB5CA); goto IL_007e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0074; } throw e; } CATCH_0074: { // begin catch(System.Object) __this->set_currentState_10(8); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteComment_mFCA7CCC50523A809A8F29BA7ACBA9DBABEE44D14_RuntimeMethod_var))); } // end catch (depth: 1) IL_007e: { return; } } // System.Void System.Xml.XmlTextWriter::WriteProcessingInstruction(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteProcessingInstruction_mEE2AB27CC649C61BEC7FB44E47F7ED1163DC0777 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); s_Il2CppMethodInitialized = true; } il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try { // begin try (depth: 1) { String_t* L_0 = ___text1; if (!L_0) { goto IL_0022; } } IL_0003: { String_t* L_1 = ___text1; NullCheck(L_1); int32_t L_2; L_2 = String_IndexOf_mD99F5378A4220A0DA0D5097007417E777722ABDA(L_1, _stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB, 4, /*hidden argument*/NULL); if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0022; } } IL_0012: { String_t* L_3; L_3 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral193D7E74E7B91DC8A81DF6A1542CDA8A06B2D2C1)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteProcessingInstruction_mEE2AB27CC649C61BEC7FB44E47F7ED1163DC0777_RuntimeMethod_var))); } IL_0022: { String_t* L_5 = ___name0; int32_t L_6; L_6 = String_Compare_m573A1F97B15F82C9AC7DC0BB1B381EEDCD2759CD(L_5, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, 5, /*hidden argument*/NULL); if (L_6) { goto IL_004d; } } IL_0030: { StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* L_7 = __this->get_stateTable_9(); IL2CPP_RUNTIME_CLASS_INIT(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var); StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* L_8 = ((XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var))->get_stateTableDocument_27(); if ((!(((RuntimeObject*)(StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A*)L_7) == ((RuntimeObject*)(StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A*)L_8)))) { goto IL_004d; } } IL_003d: { String_t* L_9; L_9 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2A5DB3F00E0A45A734A36392B86940BEE1159FC8)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_10 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_10, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteProcessingInstruction_mEE2AB27CC649C61BEC7FB44E47F7ED1163DC0777_RuntimeMethod_var))); } IL_004d: { XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2(__this, 0, /*hidden argument*/NULL); String_t* L_11 = ___name0; String_t* L_12 = ___text1; XmlTextWriter_InternalWriteProcessingInstruction_m660B24A183CE1CD6B40DE25961036AA2786E8EB5(__this, L_11, L_12, /*hidden argument*/NULL); goto IL_0068; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_005e; } throw e; } CATCH_005e: { // begin catch(System.Object) __this->set_currentState_10(8); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteProcessingInstruction_mEE2AB27CC649C61BEC7FB44E47F7ED1163DC0777_RuntimeMethod_var))); } // end catch (depth: 1) IL_0068: { return; } } // System.Void System.Xml.XmlTextWriter::WriteEntityRef(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteEntityRef_m3235DD54C0086C3F1946BF274862058CF8B9E71E (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___name0, const RuntimeMethod* method) { il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try { // begin try (depth: 1) String_t* L_0 = ___name0; XmlTextWriter_ValidateName_mBE854955EEA2F287F37611C7E4FE14E0C10A988B(__this, L_0, (bool)0, /*hidden argument*/NULL); XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2(__this, ((int32_t)9), /*hidden argument*/NULL); XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_1 = __this->get_xmlEncoder_1(); String_t* L_2 = ___name0; NullCheck(L_1); XmlTextEncoder_WriteEntityRef_mFF2D182F02D4066A4A835DE99DF7A5AF376A58B1(L_1, L_2, /*hidden argument*/NULL); goto IL_0028; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_001e; } throw e; } CATCH_001e: { // begin catch(System.Object) __this->set_currentState_10(8); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteEntityRef_m3235DD54C0086C3F1946BF274862058CF8B9E71E_RuntimeMethod_var))); } // end catch (depth: 1) IL_0028: { return; } } // System.Void System.Xml.XmlTextWriter::WriteWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteWhitespace_mBFACDC2BD41CC80B5396BC0742AEDE04C1D53603 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___ws0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try { // begin try (depth: 1) { String_t* L_0 = ___ws0; if (L_0) { goto IL_000a; } } IL_0003: { String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); ___ws0 = L_1; } IL_000a: { XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA * L_2 = __this->get_address_of_xmlCharType_23(); String_t* L_3 = ___ws0; bool L_4; L_4 = XmlCharType_IsOnlyWhitespace_m67C7128F455445CCB117BF101F75E69F41D1DBE5((XmlCharType_t0B35CAE2B2E20F28A418270966E9989BBDB004BA *)L_2, L_3, /*hidden argument*/NULL); if (L_4) { goto IL_0028; } } IL_0018: { String_t* L_5; L_5 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral36C331EB963AAABADAA628EA959A95F64ED7976C)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_6, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteWhitespace_mBFACDC2BD41CC80B5396BC0742AEDE04C1D53603_RuntimeMethod_var))); } IL_0028: { XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2(__this, ((int32_t)12), /*hidden argument*/NULL); XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_7 = __this->get_xmlEncoder_1(); String_t* L_8 = ___ws0; NullCheck(L_7); XmlTextEncoder_Write_m3D15126BEF6FE4BE6AA1FA9A25860A11649C8E3B(L_7, L_8, /*hidden argument*/NULL); goto IL_0048; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_003e; } throw e; } CATCH_003e: { // begin catch(System.Object) __this->set_currentState_10(8); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteWhitespace_mBFACDC2BD41CC80B5396BC0742AEDE04C1D53603_RuntimeMethod_var))); } // end catch (depth: 1) IL_0048: { return; } } // System.Void System.Xml.XmlTextWriter::WriteString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteString_m470D8E31F7858181E7BB8FD6C629D0207446725E (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___text0, const RuntimeMethod* method) { il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try { // begin try (depth: 1) { String_t* L_0 = ___text0; if (!L_0) { goto IL_001f; } } IL_0003: { String_t* L_1 = ___text0; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001f; } } IL_000b: { XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2(__this, ((int32_t)9), /*hidden argument*/NULL); XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_3 = __this->get_xmlEncoder_1(); String_t* L_4 = ___text0; NullCheck(L_3); XmlTextEncoder_Write_m3D15126BEF6FE4BE6AA1FA9A25860A11649C8E3B(L_3, L_4, /*hidden argument*/NULL); } IL_001f: { goto IL_002b; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0021; } throw e; } CATCH_0021: { // begin catch(System.Object) __this->set_currentState_10(8); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_WriteString_m470D8E31F7858181E7BB8FD6C629D0207446725E_RuntimeMethod_var))); } // end catch (depth: 1) IL_002b: { return; } } // System.Xml.WriteState System.Xml.XmlTextWriter::get_WriteState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextWriter_get_WriteState_m5E47A02EFB1E27927A179424960D1FD5EA86D879 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_currentState_10(); V_0 = L_0; int32_t L_1 = V_0; switch (L_1) { case 0: { goto IL_0037; } case 1: { goto IL_0039; } case 2: { goto IL_0039; } case 3: { goto IL_003b; } case 4: { goto IL_003d; } case 5: { goto IL_003f; } case 6: { goto IL_003d; } case 7: { goto IL_003f; } case 8: { goto IL_0041; } case 9: { goto IL_0043; } } } { goto IL_0045; } IL_0037: { return (int32_t)(0); } IL_0039: { return (int32_t)(1); } IL_003b: { return (int32_t)(2); } IL_003d: { return (int32_t)(3); } IL_003f: { return (int32_t)(4); } IL_0041: { return (int32_t)(6); } IL_0043: { return (int32_t)(5); } IL_0045: { return (int32_t)(6); } } // System.Void System.Xml.XmlTextWriter::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_Close_mCE05D92C3D65682E40B0A95F579EA2EF84F432B7 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method) { Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try { // begin try (depth: 1) try { // begin try (depth: 2) XmlTextWriter_AutoCompleteAll_m84FCFD43E3ECAE77234E1DA140AB15AE75F7E4DC(__this, /*hidden argument*/NULL); IL2CPP_LEAVE(0x1F, FINALLY_000b); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0008; } throw e; } CATCH_0008: { // begin catch(System.Object) IL2CPP_POP_ACTIVE_EXCEPTION(); IL2CPP_LEAVE(0x1F, FINALLY_000b); } // end catch (depth: 2) } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_000b; } FINALLY_000b: { // begin finally (depth: 1) __this->set_currentState_10(((int32_t)9)); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_0 = __this->get_textWriter_0(); NullCheck(L_0); VirtActionInvoker0::Invoke(8 /* System.Void System.IO.TextWriter::Close() */, L_0); IL2CPP_END_FINALLY(11) } // end finally (depth: 1) IL2CPP_CLEANUP(11) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x1F, IL_001f) } IL_001f: { return; } } // System.Void System.Xml.XmlTextWriter::Flush() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_Flush_m4D5A1F70ABDE2ADDABECADD60F589F60310B6D89 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method) { { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_0 = __this->get_textWriter_0(); NullCheck(L_0); VirtActionInvoker0::Invoke(10 /* System.Void System.IO.TextWriter::Flush() */, L_0); return; } } // System.String System.Xml.XmlTextWriter::LookupPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextWriter_LookupPrefix_m178125CC8E9138CF209A446517E3AB4B0C010FFF (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___ns0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { String_t* L_0 = ___ns0; if (!L_0) { goto IL_000b; } } { String_t* L_1 = ___ns0; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_001b; } } IL_000b: { String_t* L_3; L_3 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4F463628A5B55C40369849BC669644FDA7E2FD4E)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_LookupPrefix_m178125CC8E9138CF209A446517E3AB4B0C010FFF_RuntimeMethod_var))); } IL_001b: { String_t* L_5 = ___ns0; String_t* L_6; L_6 = XmlTextWriter_FindPrefix_m51D5E641757962E17B432ADC03DB8537E0159FD8(__this, L_5, /*hidden argument*/NULL); V_0 = L_6; String_t* L_7 = V_0; if (L_7) { goto IL_004a; } } { String_t* L_8 = ___ns0; TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_9 = __this->get_stack_7(); int32_t L_10 = __this->get_top_8(); NullCheck(L_9); String_t* L_11 = ((L_9)->GetAddressAt(static_cast(L_10)))->get_defaultNs_2(); bool L_12; L_12 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_8, L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_004a; } } { String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); V_0 = L_13; } IL_004a: { String_t* L_14 = V_0; return L_14; } } // System.Void System.Xml.XmlTextWriter::StartDocument(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_StartDocument_mA79CE2624637971D48599CD491BE1BC587D6D364 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, int32_t ___standalone0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11AC5E2BD66016383281878F99D761B6B9AB5F11); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral80320AA84C189C1C7B90FE923851A42C57CE615C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAE3A78C82F0ADEB13A1EA569DE4A0A436C7CED3D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCEB92A42478C96055FB865CE097903AF4512BD10); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; StringBuilder_t * G_B7_0 = NULL; StringBuilder_t * G_B6_0 = NULL; String_t* G_B8_0 = NULL; StringBuilder_t * G_B8_1 = NULL; IL_0000: try { // begin try (depth: 1) { int32_t L_0 = __this->get_currentState_10(); if (!L_0) { goto IL_0018; } } IL_0008: { String_t* L_1; L_1 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB92045191B4D9A7E7E55F5BE6BF1823D09F9CA9F)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_StartDocument_mA79CE2624637971D48599CD491BE1BC587D6D364_RuntimeMethod_var))); } IL_0018: { IL2CPP_RUNTIME_CLASS_INIT(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var); StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* L_3 = ((XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var))->get_stateTableDocument_27(); __this->set_stateTable_9(L_3); __this->set_currentState_10(1); StringBuilder_t * L_4 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mEDFFE2D378A15F6DAB54D52661C84C1B52E7BA2E(L_4, ((int32_t)128), /*hidden argument*/NULL); V_0 = L_4; StringBuilder_t * L_5 = V_0; Il2CppChar* L_6 = __this->get_address_of_quoteChar_13(); String_t* L_7; L_7 = Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8((Il2CppChar*)L_6, /*hidden argument*/NULL); Il2CppChar* L_8 = __this->get_address_of_quoteChar_13(); String_t* L_9; L_9 = Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8((Il2CppChar*)L_8, /*hidden argument*/NULL); String_t* L_10; L_10 = String_Concat_m5D784E6CEEBE99ED8749AA4B9491D926273FD749(_stringLiteralCEB92A42478C96055FB865CE097903AF4512BD10, L_7, _stringLiteral11AC5E2BD66016383281878F99D761B6B9AB5F11, L_9, /*hidden argument*/NULL); NullCheck(L_5); StringBuilder_t * L_11; L_11 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_5, L_10, /*hidden argument*/NULL); Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_12 = __this->get_encoding_2(); if (!L_12) { goto IL_00a1; } } IL_0069: { StringBuilder_t * L_13 = V_0; NullCheck(L_13); StringBuilder_t * L_14; L_14 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_13, _stringLiteral80320AA84C189C1C7B90FE923851A42C57CE615C, /*hidden argument*/NULL); StringBuilder_t * L_15 = V_0; Il2CppChar L_16 = __this->get_quoteChar_13(); NullCheck(L_15); StringBuilder_t * L_17; L_17 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_15, L_16, /*hidden argument*/NULL); StringBuilder_t * L_18 = V_0; Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_19 = __this->get_encoding_2(); NullCheck(L_19); String_t* L_20; L_20 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Text.Encoding::get_WebName() */, L_19); NullCheck(L_18); StringBuilder_t * L_21; L_21 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_18, L_20, /*hidden argument*/NULL); StringBuilder_t * L_22 = V_0; Il2CppChar L_23 = __this->get_quoteChar_13(); NullCheck(L_22); StringBuilder_t * L_24; L_24 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_22, L_23, /*hidden argument*/NULL); } IL_00a1: { int32_t L_25 = ___standalone0; if ((((int32_t)L_25) < ((int32_t)0))) { goto IL_00e1; } } IL_00a5: { StringBuilder_t * L_26 = V_0; NullCheck(L_26); StringBuilder_t * L_27; L_27 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_26, _stringLiteralAE3A78C82F0ADEB13A1EA569DE4A0A436C7CED3D, /*hidden argument*/NULL); StringBuilder_t * L_28 = V_0; Il2CppChar L_29 = __this->get_quoteChar_13(); NullCheck(L_28); StringBuilder_t * L_30; L_30 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_28, L_29, /*hidden argument*/NULL); StringBuilder_t * L_31 = V_0; int32_t L_32 = ___standalone0; G_B6_0 = L_31; if (!L_32) { G_B7_0 = L_31; goto IL_00c9; } } IL_00c2: { G_B8_0 = _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331; G_B8_1 = G_B6_0; goto IL_00ce; } IL_00c9: { G_B8_0 = _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49; G_B8_1 = G_B7_0; } IL_00ce: { NullCheck(G_B8_1); StringBuilder_t * L_33; L_33 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(G_B8_1, G_B8_0, /*hidden argument*/NULL); StringBuilder_t * L_34 = V_0; Il2CppChar L_35 = __this->get_quoteChar_13(); NullCheck(L_34); StringBuilder_t * L_36; L_36 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_34, L_35, /*hidden argument*/NULL); } IL_00e1: { StringBuilder_t * L_37 = V_0; NullCheck(L_37); String_t* L_38; L_38 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_37); XmlTextWriter_InternalWriteProcessingInstruction_m660B24A183CE1CD6B40DE25961036AA2786E8EB5(__this, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, L_38, /*hidden argument*/NULL); goto IL_00fe; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00f4; } throw e; } CATCH_00f4: { // begin catch(System.Object) __this->set_currentState_10(8); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_StartDocument_mA79CE2624637971D48599CD491BE1BC587D6D364_RuntimeMethod_var))); } // end catch (depth: 1) IL_00fe: { return; } } // System.Void System.Xml.XmlTextWriter::AutoComplete(System.Xml.XmlTextWriter/Token) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, int32_t ___token0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = __this->get_currentState_10(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)9))))) { goto IL_001a; } } { String_t* L_1; L_1 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral952F621460E9250177F13FF0BEAD9E00E2B86302)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2_RuntimeMethod_var))); } IL_001a: { int32_t L_3 = __this->get_currentState_10(); if ((!(((uint32_t)L_3) == ((uint32_t)8)))) { goto IL_004d; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)2); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_4; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var))); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_6 = ((XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var))))->get_tokenName_25(); int32_t L_7 = ___token0; NullCheck(L_6); int32_t L_8 = L_7; String_t* L_9 = (L_6)->GetAt(static_cast(L_8)); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_9); (L_5)->SetAt(static_cast(0), (RuntimeObject *)L_9); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = L_5; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_11 = ((XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var))))->get_stateName_24(); NullCheck(L_11); int32_t L_12 = 8; String_t* L_13 = (L_11)->GetAt(static_cast(L_12)); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_13); (L_10)->SetAt(static_cast(1), (RuntimeObject *)L_13); String_t* L_14; L_14 = Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral23E65142459FB1BF5009AD8736318547A5DFE850)), L_10, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_15 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_15, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2_RuntimeMethod_var))); } IL_004d: { StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* L_16 = __this->get_stateTable_9(); int32_t L_17 = ___token0; int32_t L_18 = __this->get_currentState_10(); NullCheck(L_16); int32_t L_19 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_17, (int32_t)8)), (int32_t)L_18)); int32_t L_20 = (int32_t)(L_16)->GetAt(static_cast(L_19)); V_0 = L_20; int32_t L_21 = V_0; if ((!(((uint32_t)L_21) == ((uint32_t)8)))) { goto IL_0092; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_22 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)2); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = L_22; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var))); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_24 = ((XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var))))->get_tokenName_25(); int32_t L_25 = ___token0; NullCheck(L_24); int32_t L_26 = L_25; String_t* L_27 = (L_24)->GetAt(static_cast(L_26)); NullCheck(L_23); ArrayElementTypeCheck (L_23, L_27); (L_23)->SetAt(static_cast(0), (RuntimeObject *)L_27); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_28 = L_23; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_29 = ((XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var))))->get_stateName_24(); int32_t L_30 = __this->get_currentState_10(); NullCheck(L_29); int32_t L_31 = L_30; String_t* L_32 = (L_29)->GetAt(static_cast(L_31)); NullCheck(L_28); ArrayElementTypeCheck (L_28, L_32); (L_28)->SetAt(static_cast(1), (RuntimeObject *)L_32); String_t* L_33; L_33 = Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral23E65142459FB1BF5009AD8736318547A5DFE850)), L_28, /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_34 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_34, L_33, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2_RuntimeMethod_var))); } IL_0092: { int32_t L_35 = ___token0; switch (L_35) { case 0: { goto IL_00f3; } case 1: { goto IL_00d1; } case 2: { goto IL_00f3; } case 3: { goto IL_00f3; } case 4: { goto IL_00f3; } case 5: { goto IL_015d; } case 6: { goto IL_015d; } case 7: { goto IL_01b5; } case 8: { goto IL_01fc; } case 9: { goto IL_0212; } case 10: { goto IL_0212; } case 11: { goto IL_0212; } case 12: { goto IL_0212; } } } { goto IL_025c; } IL_00d1: { bool L_36 = __this->get_indented_4(); if (!L_36) { goto IL_026c; } } { int32_t L_37 = __this->get_currentState_10(); if (!L_37) { goto IL_026c; } } { XmlTextWriter_Indent_m79DEE82659DC5B5F0C4E1E8E3E30C76E7F869851(__this, (bool)0, /*hidden argument*/NULL); goto IL_026c; } IL_00f3: { int32_t L_38 = __this->get_currentState_10(); if ((!(((uint32_t)L_38) == ((uint32_t)4)))) { goto IL_010b; } } { XmlTextWriter_WriteEndAttributeQuote_m98AC4165AD8A683AE52D3683F2719E1C8CC578CD(__this, /*hidden argument*/NULL); XmlTextWriter_WriteEndStartTag_mBA4796BAC09CD5B25F711E65D61BC2BE8375D2F0(__this, (bool)0, /*hidden argument*/NULL); goto IL_011b; } IL_010b: { int32_t L_39 = __this->get_currentState_10(); if ((!(((uint32_t)L_39) == ((uint32_t)3)))) { goto IL_011b; } } { XmlTextWriter_WriteEndStartTag_mBA4796BAC09CD5B25F711E65D61BC2BE8375D2F0(__this, (bool)0, /*hidden argument*/NULL); } IL_011b: { int32_t L_40 = ___token0; if ((!(((uint32_t)L_40) == ((uint32_t)3)))) { goto IL_013b; } } { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_41 = __this->get_stack_7(); int32_t L_42 = __this->get_top_8(); NullCheck(L_41); ((L_41)->GetAddressAt(static_cast(L_42)))->set_mixed_8((bool)1); goto IL_026c; } IL_013b: { bool L_43 = __this->get_indented_4(); if (!L_43) { goto IL_026c; } } { int32_t L_44 = __this->get_currentState_10(); if (!L_44) { goto IL_026c; } } { XmlTextWriter_Indent_m79DEE82659DC5B5F0C4E1E8E3E30C76E7F869851(__this, (bool)0, /*hidden argument*/NULL); goto IL_026c; } IL_015d: { bool L_45 = __this->get_flush_18(); if (!L_45) { goto IL_016b; } } { XmlTextWriter_FlushEncoders_m6D7554550029EE5407C9149A740B03B138B44C1B(__this, /*hidden argument*/NULL); } IL_016b: { int32_t L_46 = __this->get_currentState_10(); if ((!(((uint32_t)L_46) == ((uint32_t)4)))) { goto IL_017a; } } { XmlTextWriter_WriteEndAttributeQuote_m98AC4165AD8A683AE52D3683F2719E1C8CC578CD(__this, /*hidden argument*/NULL); } IL_017a: { int32_t L_47 = __this->get_currentState_10(); if ((!(((uint32_t)L_47) == ((uint32_t)5)))) { goto IL_0188; } } { ___token0 = 6; goto IL_0192; } IL_0188: { int32_t L_48 = ___token0; XmlTextWriter_WriteEndStartTag_mBA4796BAC09CD5B25F711E65D61BC2BE8375D2F0(__this, (bool)((((int32_t)L_48) == ((int32_t)5))? 1 : 0), /*hidden argument*/NULL); } IL_0192: { IL2CPP_RUNTIME_CLASS_INIT(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var); StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* L_49 = ((XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var))->get_stateTableDocument_27(); StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* L_50 = __this->get_stateTable_9(); if ((!(((RuntimeObject*)(StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A*)L_49) == ((RuntimeObject*)(StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A*)L_50)))) { goto IL_026c; } } { int32_t L_51 = __this->get_top_8(); if ((!(((uint32_t)L_51) == ((uint32_t)1)))) { goto IL_026c; } } { V_0 = 7; goto IL_026c; } IL_01b5: { bool L_52 = __this->get_flush_18(); if (!L_52) { goto IL_01c3; } } { XmlTextWriter_FlushEncoders_m6D7554550029EE5407C9149A740B03B138B44C1B(__this, /*hidden argument*/NULL); } IL_01c3: { int32_t L_53 = __this->get_currentState_10(); if ((!(((uint32_t)L_53) == ((uint32_t)4)))) { goto IL_01e4; } } { XmlTextWriter_WriteEndAttributeQuote_m98AC4165AD8A683AE52D3683F2719E1C8CC578CD(__this, /*hidden argument*/NULL); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_54 = __this->get_textWriter_0(); NullCheck(L_54); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_54, ((int32_t)32)); goto IL_026c; } IL_01e4: { int32_t L_55 = __this->get_currentState_10(); if ((!(((uint32_t)L_55) == ((uint32_t)3)))) { goto IL_026c; } } { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_56 = __this->get_textWriter_0(); NullCheck(L_56); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_56, ((int32_t)32)); goto IL_026c; } IL_01fc: { bool L_57 = __this->get_flush_18(); if (!L_57) { goto IL_020a; } } { XmlTextWriter_FlushEncoders_m6D7554550029EE5407C9149A740B03B138B44C1B(__this, /*hidden argument*/NULL); } IL_020a: { XmlTextWriter_WriteEndAttributeQuote_m98AC4165AD8A683AE52D3683F2719E1C8CC578CD(__this, /*hidden argument*/NULL); goto IL_026c; } IL_0212: { int32_t L_58 = ___token0; if ((((int32_t)L_58) == ((int32_t)((int32_t)10)))) { goto IL_0225; } } { bool L_59 = __this->get_flush_18(); if (!L_59) { goto IL_0225; } } { XmlTextWriter_FlushEncoders_m6D7554550029EE5407C9149A740B03B138B44C1B(__this, /*hidden argument*/NULL); } IL_0225: { int32_t L_60 = __this->get_currentState_10(); if ((!(((uint32_t)L_60) == ((uint32_t)3)))) { goto IL_023f; } } { int32_t L_61 = __this->get_lastToken_11(); if ((((int32_t)L_61) == ((int32_t)((int32_t)9)))) { goto IL_023f; } } { XmlTextWriter_WriteEndStartTag_mBA4796BAC09CD5B25F711E65D61BC2BE8375D2F0(__this, (bool)0, /*hidden argument*/NULL); } IL_023f: { int32_t L_62 = V_0; if ((!(((uint32_t)L_62) == ((uint32_t)5)))) { goto IL_026c; } } { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_63 = __this->get_stack_7(); int32_t L_64 = __this->get_top_8(); NullCheck(L_63); ((L_63)->GetAddressAt(static_cast(L_64)))->set_mixed_8((bool)1); goto IL_026c; } IL_025c: { String_t* L_65; L_65 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_66 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_66, L_65, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_66, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2_RuntimeMethod_var))); } IL_026c: { int32_t L_67 = V_0; __this->set_currentState_10(L_67); int32_t L_68 = ___token0; __this->set_lastToken_11(L_68); return; } } // System.Void System.Xml.XmlTextWriter::AutoCompleteAll() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_AutoCompleteAll_m84FCFD43E3ECAE77234E1DA140AB15AE75F7E4DC (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_flush_18(); if (!L_0) { goto IL_0016; } } { XmlTextWriter_FlushEncoders_m6D7554550029EE5407C9149A740B03B138B44C1B(__this, /*hidden argument*/NULL); goto IL_0016; } IL_0010: { VirtActionInvoker0::Invoke(8 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, __this); } IL_0016: { int32_t L_1 = __this->get_top_8(); if ((((int32_t)L_1) > ((int32_t)0))) { goto IL_0010; } } { return; } } // System.Void System.Xml.XmlTextWriter::InternalWriteEndElement(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_InternalWriteEndElement_mF39D8CB533A512D50269E722957BA39D259B7D9C (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, bool ___longFormat0, const RuntimeMethod* method) { int32_t V_0 = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * G_B4_0 = NULL; XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * G_B3_0 = NULL; int32_t G_B5_0 = 0; XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * G_B5_1 = NULL; IL_0000: try { // begin try (depth: 1) { int32_t L_0 = __this->get_top_8(); if ((((int32_t)L_0) > ((int32_t)0))) { goto IL_0019; } } IL_0009: { String_t* L_1; L_1 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral67171AD8B6817F7CF25B89C98234BCDA36D476FC)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_InternalWriteEndElement_mF39D8CB533A512D50269E722957BA39D259B7D9C_RuntimeMethod_var))); } IL_0019: { bool L_3 = ___longFormat0; G_B3_0 = __this; if (L_3) { G_B4_0 = __this; goto IL_0020; } } IL_001d: { G_B5_0 = 5; G_B5_1 = G_B3_0; goto IL_0021; } IL_0020: { G_B5_0 = 6; G_B5_1 = G_B4_0; } IL_0021: { NullCheck(G_B5_1); XmlTextWriter_AutoComplete_mC90A57781E031A2E18047CAF6BF09199323B48D2(G_B5_1, G_B5_0, /*hidden argument*/NULL); int32_t L_4 = __this->get_lastToken_11(); if ((!(((uint32_t)L_4) == ((uint32_t)6)))) { goto IL_00d7; } } IL_0032: { bool L_5 = __this->get_indented_4(); if (!L_5) { goto IL_0041; } } IL_003a: { XmlTextWriter_Indent_m79DEE82659DC5B5F0C4E1E8E3E30C76E7F869851(__this, (bool)1, /*hidden argument*/NULL); } IL_0041: { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_6 = __this->get_textWriter_0(); NullCheck(L_6); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_6, ((int32_t)60)); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_7 = __this->get_textWriter_0(); NullCheck(L_7); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_7, ((int32_t)47)); bool L_8 = __this->get_namespaces_15(); if (!L_8) { goto IL_00a9; } } IL_0063: { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_9 = __this->get_stack_7(); int32_t L_10 = __this->get_top_8(); NullCheck(L_9); String_t* L_11 = ((L_9)->GetAddressAt(static_cast(L_10)))->get_prefix_1(); if (!L_11) { goto IL_00a9; } } IL_007b: { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_12 = __this->get_textWriter_0(); TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_13 = __this->get_stack_7(); int32_t L_14 = __this->get_top_8(); NullCheck(L_13); String_t* L_15 = ((L_13)->GetAddressAt(static_cast(L_14)))->get_prefix_1(); NullCheck(L_12); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_12, L_15); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_16 = __this->get_textWriter_0(); NullCheck(L_16); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_16, ((int32_t)58)); } IL_00a9: { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_17 = __this->get_textWriter_0(); TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_18 = __this->get_stack_7(); int32_t L_19 = __this->get_top_8(); NullCheck(L_18); String_t* L_20 = ((L_18)->GetAddressAt(static_cast(L_19)))->get_name_0(); NullCheck(L_17); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_17, L_20); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_21 = __this->get_textWriter_0(); NullCheck(L_21); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_21, ((int32_t)62)); } IL_00d7: { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_22 = __this->get_stack_7(); int32_t L_23 = __this->get_top_8(); NullCheck(L_22); int32_t L_24 = ((L_22)->GetAddressAt(static_cast(L_23)))->get_prevNsTop_6(); V_0 = L_24; bool L_25 = __this->get_useNsHashtable_22(); if (!L_25) { goto IL_010e; } } IL_00f6: { int32_t L_26 = V_0; int32_t L_27 = __this->get_nsTop_20(); if ((((int32_t)L_26) >= ((int32_t)L_27))) { goto IL_010e; } } IL_00ff: { int32_t L_28 = V_0; int32_t L_29 = __this->get_nsTop_20(); XmlTextWriter_PopNamespaces_mB647C786975F9BB3ADE2301184F8206D816EAFA6(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)), L_29, /*hidden argument*/NULL); } IL_010e: { int32_t L_30 = V_0; __this->set_nsTop_20(L_30); int32_t L_31 = __this->get_top_8(); __this->set_top_8(((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)1))); goto IL_012f; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0125; } throw e; } CATCH_0125: { // begin catch(System.Object) __this->set_currentState_10(8); IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_InternalWriteEndElement_mF39D8CB533A512D50269E722957BA39D259B7D9C_RuntimeMethod_var))); } // end catch (depth: 1) IL_012f: { return; } } // System.Void System.Xml.XmlTextWriter::WriteEndStartTag(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteEndStartTag_mBA4796BAC09CD5B25F711E65D61BC2BE8375D2F0 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, bool ___empty0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5C7DA3CBD254CB3BB9FCC98E58CF1A56E605861E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE63895ACF2B7A447477491E6E010B297DD75B0D); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_0 = __this->get_xmlEncoder_1(); NullCheck(L_0); XmlTextEncoder_StartAttribute_m154B2203CF4424F0E8A6D1D80AC68B2E05FB7B32(L_0, (bool)0, /*hidden argument*/NULL); int32_t L_1 = __this->get_nsTop_20(); V_0 = L_1; goto IL_00b6; } IL_0018: { NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_2 = __this->get_nsStack_19(); int32_t L_3 = V_0; NullCheck(L_2); bool L_4 = ((L_2)->GetAddressAt(static_cast(L_3)))->get_declared_2(); if (L_4) { goto IL_00b2; } } { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_5 = __this->get_textWriter_0(); NullCheck(L_5); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_5, _stringLiteral5C7DA3CBD254CB3BB9FCC98E58CF1A56E605861E); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_6 = __this->get_textWriter_0(); NullCheck(L_6); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_6, ((int32_t)58)); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_7 = __this->get_textWriter_0(); NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_8 = __this->get_nsStack_19(); int32_t L_9 = V_0; NullCheck(L_8); String_t* L_10 = ((L_8)->GetAddressAt(static_cast(L_9)))->get_prefix_0(); NullCheck(L_7); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_7, L_10); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_11 = __this->get_textWriter_0(); NullCheck(L_11); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_11, ((int32_t)61)); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_12 = __this->get_textWriter_0(); Il2CppChar L_13 = __this->get_quoteChar_13(); NullCheck(L_12); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_12, L_13); XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_14 = __this->get_xmlEncoder_1(); NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_15 = __this->get_nsStack_19(); int32_t L_16 = V_0; NullCheck(L_15); String_t* L_17 = ((L_15)->GetAddressAt(static_cast(L_16)))->get_ns_1(); NullCheck(L_14); XmlTextEncoder_Write_m3D15126BEF6FE4BE6AA1FA9A25860A11649C8E3B(L_14, L_17, /*hidden argument*/NULL); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_18 = __this->get_textWriter_0(); Il2CppChar L_19 = __this->get_quoteChar_13(); NullCheck(L_18); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_18, L_19); } IL_00b2: { int32_t L_20 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1)); } IL_00b6: { int32_t L_21 = V_0; TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_22 = __this->get_stack_7(); int32_t L_23 = __this->get_top_8(); NullCheck(L_22); int32_t L_24 = ((L_22)->GetAddressAt(static_cast(L_23)))->get_prevNsTop_6(); if ((((int32_t)L_21) > ((int32_t)L_24))) { goto IL_0018; } } { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_25 = __this->get_stack_7(); int32_t L_26 = __this->get_top_8(); NullCheck(L_25); String_t* L_27 = ((L_25)->GetAddressAt(static_cast(L_26)))->get_defaultNs_2(); TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_28 = __this->get_stack_7(); int32_t L_29 = __this->get_top_8(); NullCheck(L_28); String_t* L_30 = ((L_28)->GetAddressAt(static_cast(((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)1)))))->get_defaultNs_2(); bool L_31; L_31 = String_op_Inequality_m45BEBD9C59D474454BD0F4AB6C9A8A2D05D40DBE(L_27, L_30, /*hidden argument*/NULL); if (!L_31) { goto IL_019a; } } { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_32 = __this->get_stack_7(); int32_t L_33 = __this->get_top_8(); NullCheck(L_32); int32_t L_34 = ((L_32)->GetAddressAt(static_cast(L_33)))->get_defaultNsState_3(); if ((!(((uint32_t)L_34) == ((uint32_t)2)))) { goto IL_019a; } } { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_35 = __this->get_textWriter_0(); NullCheck(L_35); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_35, _stringLiteral5C7DA3CBD254CB3BB9FCC98E58CF1A56E605861E); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_36 = __this->get_textWriter_0(); NullCheck(L_36); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_36, ((int32_t)61)); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_37 = __this->get_textWriter_0(); Il2CppChar L_38 = __this->get_quoteChar_13(); NullCheck(L_37); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_37, L_38); XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_39 = __this->get_xmlEncoder_1(); TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_40 = __this->get_stack_7(); int32_t L_41 = __this->get_top_8(); NullCheck(L_40); String_t* L_42 = ((L_40)->GetAddressAt(static_cast(L_41)))->get_defaultNs_2(); NullCheck(L_39); XmlTextEncoder_Write_m3D15126BEF6FE4BE6AA1FA9A25860A11649C8E3B(L_39, L_42, /*hidden argument*/NULL); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_43 = __this->get_textWriter_0(); Il2CppChar L_44 = __this->get_quoteChar_13(); NullCheck(L_43); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_43, L_44); TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_45 = __this->get_stack_7(); int32_t L_46 = __this->get_top_8(); NullCheck(L_45); ((L_45)->GetAddressAt(static_cast(L_46)))->set_defaultNsState_3(3); } IL_019a: { XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_47 = __this->get_xmlEncoder_1(); NullCheck(L_47); XmlTextEncoder_EndAttribute_mEBAE3ABA120AF2728E56ADDB2BE2A5B313093C12(L_47, /*hidden argument*/NULL); bool L_48 = ___empty0; if (!L_48) { goto IL_01b8; } } { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_49 = __this->get_textWriter_0(); NullCheck(L_49); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_49, _stringLiteralCE63895ACF2B7A447477491E6E010B297DD75B0D); } IL_01b8: { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_50 = __this->get_textWriter_0(); NullCheck(L_50); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_50, ((int32_t)62)); return; } } // System.Void System.Xml.XmlTextWriter::WriteEndAttributeQuote() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_WriteEndAttributeQuote_m98AC4165AD8A683AE52D3683F2719E1C8CC578CD (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_specialAttr_16(); if (!L_0) { goto IL_000e; } } { XmlTextWriter_HandleSpecialAttribute_m743156B9137FC8E43B2E697605AAE9C225A2166E(__this, /*hidden argument*/NULL); } IL_000e: { XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_1 = __this->get_xmlEncoder_1(); NullCheck(L_1); XmlTextEncoder_EndAttribute_mEBAE3ABA120AF2728E56ADDB2BE2A5B313093C12(L_1, /*hidden argument*/NULL); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_2 = __this->get_textWriter_0(); Il2CppChar L_3 = __this->get_curQuoteChar_14(); NullCheck(L_2); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_2, L_3); return; } } // System.Void System.Xml.XmlTextWriter::Indent(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_Indent_m79DEE82659DC5B5F0C4E1E8E3E30C76E7F869851 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, bool ___beforeEndElement0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B6_0 = 0; { int32_t L_0 = __this->get_top_8(); if (L_0) { goto IL_0014; } } { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_1 = __this->get_textWriter_0(); NullCheck(L_1); VirtActionInvoker0::Invoke(15 /* System.Void System.IO.TextWriter::WriteLine() */, L_1); return; } IL_0014: { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_2 = __this->get_stack_7(); int32_t L_3 = __this->get_top_8(); NullCheck(L_2); bool L_4 = ((L_2)->GetAddressAt(static_cast(L_3)))->get_mixed_8(); if (L_4) { goto IL_006f; } } { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_5 = __this->get_textWriter_0(); NullCheck(L_5); VirtActionInvoker0::Invoke(15 /* System.Void System.IO.TextWriter::WriteLine() */, L_5); bool L_6 = ___beforeEndElement0; if (L_6) { goto IL_0042; } } { int32_t L_7 = __this->get_top_8(); G_B6_0 = L_7; goto IL_004a; } IL_0042: { int32_t L_8 = __this->get_top_8(); G_B6_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1)); } IL_004a: { V_0 = G_B6_0; int32_t L_9 = V_0; int32_t L_10 = __this->get_indentation_5(); V_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_9, (int32_t)L_10)); goto IL_006b; } IL_0056: { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_11 = __this->get_textWriter_0(); Il2CppChar L_12 = __this->get_indentChar_6(); NullCheck(L_11); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_11, L_12); int32_t L_13 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1)); } IL_006b: { int32_t L_14 = V_0; if ((((int32_t)L_14) > ((int32_t)0))) { goto IL_0056; } } IL_006f: { return; } } // System.Void System.Xml.XmlTextWriter::PushNamespace(System.String,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_PushNamespace_mFAE3B22D92E1EE3EB61C94917C3E9A955D9CD5C2 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___prefix0, String_t* ___ns1, bool ___declared2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 * G_B9_0 = NULL; TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 * G_B8_0 = NULL; int32_t G_B10_0 = 0; TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 * G_B10_1 = NULL; { String_t* L_0 = ___ns1; bool L_1; L_1 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_001d; } } { String_t* L_2; L_2 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral197DB4D12C3F8F844439AC8086D04A7E9906FD24)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_PushNamespace_mFAE3B22D92E1EE3EB61C94917C3E9A955D9CD5C2_RuntimeMethod_var))); } IL_001d: { String_t* L_4 = ___prefix0; if (L_4) { goto IL_0075; } } { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_5 = __this->get_stack_7(); int32_t L_6 = __this->get_top_8(); NullCheck(L_5); int32_t L_7 = ((L_5)->GetAddressAt(static_cast(L_6)))->get_defaultNsState_3(); V_0 = L_7; int32_t L_8 = V_0; if ((!(((uint32_t)L_8) > ((uint32_t)1)))) { goto IL_0040; } } { int32_t L_9 = V_0; if ((((int32_t)L_9) == ((int32_t)2))) { goto IL_0057; } } { return; } IL_0040: { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_10 = __this->get_stack_7(); int32_t L_11 = __this->get_top_8(); NullCheck(L_10); String_t* L_12 = ___ns1; ((L_10)->GetAddressAt(static_cast(L_11)))->set_defaultNs_2(L_12); } IL_0057: { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_13 = __this->get_stack_7(); int32_t L_14 = __this->get_top_8(); NullCheck(L_13); bool L_15 = ___declared2; G_B8_0 = ((L_13)->GetAddressAt(static_cast(L_14))); if (L_15) { G_B9_0 = ((L_13)->GetAddressAt(static_cast(L_14))); goto IL_006e; } } { G_B10_0 = 2; G_B10_1 = G_B8_0; goto IL_006f; } IL_006e: { G_B10_0 = 3; G_B10_1 = G_B9_0; } IL_006f: { G_B10_1->set_defaultNsState_3(G_B10_0); return; } IL_0075: { String_t* L_16 = ___prefix0; NullCheck(L_16); int32_t L_17; L_17 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_0095; } } { String_t* L_18 = ___ns1; NullCheck(L_18); int32_t L_19; L_19 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_18, /*hidden argument*/NULL); if (L_19) { goto IL_0095; } } { String_t* L_20; L_20 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB63A1A23B65582B8791AA4E655E90AA5647D7298)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_PushNamespace_mFAE3B22D92E1EE3EB61C94917C3E9A955D9CD5C2_RuntimeMethod_var))); } IL_0095: { String_t* L_22 = ___prefix0; int32_t L_23; L_23 = XmlTextWriter_LookupNamespace_mB4568061673EFBC795A43BB701ABE3335AFCE9A2(__this, L_22, /*hidden argument*/NULL); V_1 = L_23; int32_t L_24 = V_1; if ((((int32_t)L_24) == ((int32_t)(-1)))) { goto IL_00d0; } } { NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_25 = __this->get_nsStack_19(); int32_t L_26 = V_1; NullCheck(L_25); String_t* L_27 = ((L_25)->GetAddressAt(static_cast(L_26)))->get_ns_1(); String_t* L_28 = ___ns1; bool L_29; L_29 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_27, L_28, /*hidden argument*/NULL); if (!L_29) { goto IL_00d0; } } { bool L_30 = ___declared2; if (!L_30) { goto IL_010b; } } { NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_31 = __this->get_nsStack_19(); int32_t L_32 = V_1; NullCheck(L_31); ((L_31)->GetAddressAt(static_cast(L_32)))->set_declared_2((bool)1); return; } IL_00d0: { bool L_33 = ___declared2; if (!L_33) { goto IL_0102; } } { int32_t L_34 = V_1; if ((((int32_t)L_34) == ((int32_t)(-1)))) { goto IL_0102; } } { int32_t L_35 = V_1; TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_36 = __this->get_stack_7(); int32_t L_37 = __this->get_top_8(); NullCheck(L_36); int32_t L_38 = ((L_36)->GetAddressAt(static_cast(L_37)))->get_prevNsTop_6(); if ((((int32_t)L_35) <= ((int32_t)L_38))) { goto IL_0102; } } { NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_39 = __this->get_nsStack_19(); int32_t L_40 = V_1; NullCheck(L_39); ((L_39)->GetAddressAt(static_cast(L_40)))->set_declared_2((bool)1); } IL_0102: { String_t* L_41 = ___prefix0; String_t* L_42 = ___ns1; bool L_43 = ___declared2; XmlTextWriter_AddNamespace_mD3E28DCB8C014B090EB3FFA4C6F0A71702135E5B(__this, L_41, L_42, L_43, /*hidden argument*/NULL); } IL_010b: { return; } } // System.Void System.Xml.XmlTextWriter::AddNamespace(System.String,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_AddNamespace_mD3E28DCB8C014B090EB3FFA4C6F0A71702135E5B (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___prefix0, String_t* ___ns1, bool ___declared2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mAC2C8559F9E6A16FAD5BA5017E6A0A1EF3429867_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* V_2 = NULL; int32_t V_3 = 0; { int32_t L_0 = __this->get_nsTop_20(); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)); int32_t L_1 = V_1; __this->set_nsTop_20(L_1); int32_t L_2 = V_1; V_0 = L_2; int32_t L_3 = V_0; NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_4 = __this->get_nsStack_19(); NullCheck(L_4); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_003a; } } { int32_t L_5 = V_0; NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_6 = (NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6*)(NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6*)SZArrayNew(NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_5, (int32_t)2))); V_2 = L_6; NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_7 = __this->get_nsStack_19(); NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_8 = V_2; int32_t L_9 = V_0; Array_Copy_mDB95A273EF4E8A4BC2F5D25236E21AF6584F5F5D((RuntimeArray *)(RuntimeArray *)L_7, (RuntimeArray *)(RuntimeArray *)L_8, L_9, /*hidden argument*/NULL); NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_10 = V_2; __this->set_nsStack_19(L_10); } IL_003a: { NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_11 = __this->get_nsStack_19(); int32_t L_12 = V_0; NullCheck(L_11); String_t* L_13 = ___prefix0; String_t* L_14 = ___ns1; bool L_15 = ___declared2; Namespace_Set_m56A8063D5B2E5989807DF3472D0266CF828BBDA8((Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB *)((L_11)->GetAddressAt(static_cast(L_12))), L_13, L_14, L_15, /*hidden argument*/NULL); bool L_16 = __this->get_useNsHashtable_22(); if (!L_16) { goto IL_005e; } } { int32_t L_17 = V_0; XmlTextWriter_AddToNamespaceHashtable_m35841EE9201BDF774311ED96E3D3DEDB174D24A6(__this, L_17, /*hidden argument*/NULL); return; } IL_005e: { int32_t L_18 = V_0; if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)16))))) { goto IL_008d; } } { SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A * L_19 = (SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A *)il2cpp_codegen_object_new(SecureStringHasher_t5F3BC4AE212133FAD80F39ED81D0338B8A21A87A_il2cpp_TypeInfo_var); SecureStringHasher__ctor_mEF97616B6D20B8D66A01B2B833C677BF356A1145(L_19, /*hidden argument*/NULL); Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * L_20 = (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 *)il2cpp_codegen_object_new(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162_il2cpp_TypeInfo_var); Dictionary_2__ctor_mAC2C8559F9E6A16FAD5BA5017E6A0A1EF3429867(L_20, L_19, /*hidden argument*/Dictionary_2__ctor_mAC2C8559F9E6A16FAD5BA5017E6A0A1EF3429867_RuntimeMethod_var); __this->set_nsHashtable_21(L_20); V_3 = 0; goto IL_0082; } IL_0077: { int32_t L_21 = V_3; XmlTextWriter_AddToNamespaceHashtable_m35841EE9201BDF774311ED96E3D3DEDB174D24A6(__this, L_21, /*hidden argument*/NULL); int32_t L_22 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1)); } IL_0082: { int32_t L_23 = V_3; int32_t L_24 = V_0; if ((((int32_t)L_23) <= ((int32_t)L_24))) { goto IL_0077; } } { __this->set_useNsHashtable_22((bool)1); } IL_008d: { return; } } // System.Void System.Xml.XmlTextWriter::AddToNamespaceHashtable(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_AddToNamespaceHashtable_m35841EE9201BDF774311ED96E3D3DEDB174D24A6 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, int32_t ___namespaceIndex0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m8E06A6DF244254BF419D7EC23A9A6809E19A544D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_mBC85AF861FB031847847F0B30707EC7AC252D572_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; int32_t V_1 = 0; { NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_0 = __this->get_nsStack_19(); int32_t L_1 = ___namespaceIndex0; NullCheck(L_0); String_t* L_2 = ((L_0)->GetAddressAt(static_cast(L_1)))->get_prefix_0(); V_0 = L_2; Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * L_3 = __this->get_nsHashtable_21(); String_t* L_4 = V_0; NullCheck(L_3); bool L_5; L_5 = Dictionary_2_TryGetValue_m8E06A6DF244254BF419D7EC23A9A6809E19A544D(L_3, L_4, (int32_t*)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_m8E06A6DF244254BF419D7EC23A9A6809E19A544D_RuntimeMethod_var); if (!L_5) { goto IL_0034; } } { NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_6 = __this->get_nsStack_19(); int32_t L_7 = ___namespaceIndex0; NullCheck(L_6); int32_t L_8 = V_1; ((L_6)->GetAddressAt(static_cast(L_7)))->set_prevNsIndex_3(L_8); } IL_0034: { Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * L_9 = __this->get_nsHashtable_21(); String_t* L_10 = V_0; int32_t L_11 = ___namespaceIndex0; NullCheck(L_9); Dictionary_2_set_Item_mBC85AF861FB031847847F0B30707EC7AC252D572(L_9, L_10, L_11, /*hidden argument*/Dictionary_2_set_Item_mBC85AF861FB031847847F0B30707EC7AC252D572_RuntimeMethod_var); return; } } // System.Void System.Xml.XmlTextWriter::PopNamespaces(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_PopNamespaces_mB647C786975F9BB3ADE2301184F8206D816EAFA6 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, int32_t ___indexFrom0, int32_t ___indexTo1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m105F8AD7F5E827D6F95768BD6C922EB155E5A7EF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_mBC85AF861FB031847847F0B30707EC7AC252D572_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___indexTo1; V_0 = L_0; goto IL_0068; } IL_0004: { NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_1 = __this->get_nsStack_19(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = ((L_1)->GetAddressAt(static_cast(L_2)))->get_prevNsIndex_3(); if ((!(((uint32_t)L_3) == ((uint32_t)(-1))))) { goto IL_0037; } } { Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * L_4 = __this->get_nsHashtable_21(); NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_5 = __this->get_nsStack_19(); int32_t L_6 = V_0; NullCheck(L_5); String_t* L_7 = ((L_5)->GetAddressAt(static_cast(L_6)))->get_prefix_0(); NullCheck(L_4); bool L_8; L_8 = Dictionary_2_Remove_m105F8AD7F5E827D6F95768BD6C922EB155E5A7EF(L_4, L_7, /*hidden argument*/Dictionary_2_Remove_m105F8AD7F5E827D6F95768BD6C922EB155E5A7EF_RuntimeMethod_var); goto IL_0064; } IL_0037: { Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * L_9 = __this->get_nsHashtable_21(); NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_10 = __this->get_nsStack_19(); int32_t L_11 = V_0; NullCheck(L_10); String_t* L_12 = ((L_10)->GetAddressAt(static_cast(L_11)))->get_prefix_0(); NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_13 = __this->get_nsStack_19(); int32_t L_14 = V_0; NullCheck(L_13); int32_t L_15 = ((L_13)->GetAddressAt(static_cast(L_14)))->get_prevNsIndex_3(); NullCheck(L_9); Dictionary_2_set_Item_mBC85AF861FB031847847F0B30707EC7AC252D572(L_9, L_12, L_15, /*hidden argument*/Dictionary_2_set_Item_mBC85AF861FB031847847F0B30707EC7AC252D572_RuntimeMethod_var); } IL_0064: { int32_t L_16 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)); } IL_0068: { int32_t L_17 = V_0; int32_t L_18 = ___indexFrom0; if ((((int32_t)L_17) >= ((int32_t)L_18))) { goto IL_0004; } } { return; } } // System.String System.Xml.XmlTextWriter::GeneratePrefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextWriter_GeneratePrefix_mDAA81F9152B833563172CDCAF7B19E9687335116 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral198AA065BF0F912BD6F5F93869BD5C361671F98B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_0 = __this->get_stack_7(); int32_t L_1 = __this->get_top_8(); NullCheck(L_0); int32_t* L_2 = ((L_0)->GetAddressAt(static_cast(L_1)))->get_address_of_prefixCount_7(); int32_t* L_3 = L_2; int32_t L_4 = *((int32_t*)L_3); V_1 = L_4; int32_t L_5 = V_1; *((int32_t*)L_3) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); int32_t L_6 = V_1; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); int32_t* L_7 = __this->get_address_of_top_8(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_8; L_8 = CultureInfo_get_InvariantCulture_m27F344B7A1A5F9CAA493D82A5406DAC005C30205(/*hidden argument*/NULL); String_t* L_9; L_9 = Int32_ToString_m246774E1922012AE787EB97743F42CB798B70CD8((int32_t*)L_7, _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03, L_8, /*hidden argument*/NULL); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_10; L_10 = CultureInfo_get_InvariantCulture_m27F344B7A1A5F9CAA493D82A5406DAC005C30205(/*hidden argument*/NULL); String_t* L_11; L_11 = Int32_ToString_m246774E1922012AE787EB97743F42CB798B70CD8((int32_t*)(&V_0), _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03, L_10, /*hidden argument*/NULL); String_t* L_12; L_12 = String_Concat_m5D784E6CEEBE99ED8749AA4B9491D926273FD749(_stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03, L_9, _stringLiteral198AA065BF0F912BD6F5F93869BD5C361671F98B, L_11, /*hidden argument*/NULL); return L_12; } } // System.Void System.Xml.XmlTextWriter::InternalWriteProcessingInstruction(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_InternalWriteProcessingInstruction_m660B24A183CE1CD6B40DE25961036AA2786E8EB5 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD6B20E18FAA3BB0018B8BA0CFA581E711100C554); s_Il2CppMethodInitialized = true; } { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_0 = __this->get_textWriter_0(); NullCheck(L_0); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_0, _stringLiteralD6B20E18FAA3BB0018B8BA0CFA581E711100C554); String_t* L_1 = ___name0; XmlTextWriter_ValidateName_mBE854955EEA2F287F37611C7E4FE14E0C10A988B(__this, L_1, (bool)0, /*hidden argument*/NULL); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_2 = __this->get_textWriter_0(); String_t* L_3 = ___name0; NullCheck(L_2); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_2, L_3); TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_4 = __this->get_textWriter_0(); NullCheck(L_4); VirtActionInvoker1< Il2CppChar >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char) */, L_4, ((int32_t)32)); String_t* L_5 = ___text1; if (!L_5) { goto IL_0040; } } { XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_6 = __this->get_xmlEncoder_1(); String_t* L_7 = ___text1; NullCheck(L_6); XmlTextEncoder_WriteRawWithSurrogateChecking_mF667913FB3946B4C4AD6A88D2DD2065CFD0CC4A4(L_6, L_7, /*hidden argument*/NULL); } IL_0040: { TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * L_8 = __this->get_textWriter_0(); NullCheck(L_8); VirtActionInvoker1< String_t* >::Invoke(14 /* System.Void System.IO.TextWriter::Write(System.String) */, L_8, _stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB); return; } } // System.Int32 System.Xml.XmlTextWriter::LookupNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextWriter_LookupNamespace_mB4568061673EFBC795A43BB701ABE3335AFCE9A2 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___prefix0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m8E06A6DF244254BF419D7EC23A9A6809E19A544D_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { bool L_0 = __this->get_useNsHashtable_22(); if (!L_0) { goto IL_001a; } } { Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * L_1 = __this->get_nsHashtable_21(); String_t* L_2 = ___prefix0; NullCheck(L_1); bool L_3; L_3 = Dictionary_2_TryGetValue_m8E06A6DF244254BF419D7EC23A9A6809E19A544D(L_1, L_2, (int32_t*)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m8E06A6DF244254BF419D7EC23A9A6809E19A544D_RuntimeMethod_var); if (!L_3) { goto IL_0046; } } { int32_t L_4 = V_0; return L_4; } IL_001a: { int32_t L_5 = __this->get_nsTop_20(); V_1 = L_5; goto IL_0042; } IL_0023: { NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_6 = __this->get_nsStack_19(); int32_t L_7 = V_1; NullCheck(L_6); String_t* L_8 = ((L_6)->GetAddressAt(static_cast(L_7)))->get_prefix_0(); String_t* L_9 = ___prefix0; bool L_10; L_10 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_8, L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_003e; } } { int32_t L_11 = V_1; return L_11; } IL_003e: { int32_t L_12 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)); } IL_0042: { int32_t L_13 = V_1; if ((((int32_t)L_13) >= ((int32_t)0))) { goto IL_0023; } } IL_0046: { return (-1); } } // System.Int32 System.Xml.XmlTextWriter::LookupNamespaceInCurrentScope(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextWriter_LookupNamespaceInCurrentScope_m766D00D4AD47B6367237EF4F0926F9290F12A6C8 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___prefix0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m8E06A6DF244254BF419D7EC23A9A6809E19A544D_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { bool L_0 = __this->get_useNsHashtable_22(); if (!L_0) { goto IL_0033; } } { Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * L_1 = __this->get_nsHashtable_21(); String_t* L_2 = ___prefix0; NullCheck(L_1); bool L_3; L_3 = Dictionary_2_TryGetValue_m8E06A6DF244254BF419D7EC23A9A6809E19A544D(L_1, L_2, (int32_t*)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m8E06A6DF244254BF419D7EC23A9A6809E19A544D_RuntimeMethod_var); if (!L_3) { goto IL_0074; } } { int32_t L_4 = V_0; TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_5 = __this->get_stack_7(); int32_t L_6 = __this->get_top_8(); NullCheck(L_5); int32_t L_7 = ((L_5)->GetAddressAt(static_cast(L_6)))->get_prevNsTop_6(); if ((((int32_t)L_4) <= ((int32_t)L_7))) { goto IL_0074; } } { int32_t L_8 = V_0; return L_8; } IL_0033: { int32_t L_9 = __this->get_nsTop_20(); V_1 = L_9; goto IL_005b; } IL_003c: { NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_10 = __this->get_nsStack_19(); int32_t L_11 = V_1; NullCheck(L_10); String_t* L_12 = ((L_10)->GetAddressAt(static_cast(L_11)))->get_prefix_0(); String_t* L_13 = ___prefix0; bool L_14; L_14 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_12, L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_0057; } } { int32_t L_15 = V_1; return L_15; } IL_0057: { int32_t L_16 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)); } IL_005b: { int32_t L_17 = V_1; TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_18 = __this->get_stack_7(); int32_t L_19 = __this->get_top_8(); NullCheck(L_18); int32_t L_20 = ((L_18)->GetAddressAt(static_cast(L_19)))->get_prevNsTop_6(); if ((((int32_t)L_17) > ((int32_t)L_20))) { goto IL_003c; } } IL_0074: { return (-1); } } // System.String System.Xml.XmlTextWriter::FindPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextWriter_FindPrefix_m51D5E641757962E17B432ADC03DB8537E0159FD8 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___ns0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_nsTop_20(); V_0 = L_0; goto IL_0052; } IL_0009: { NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_1 = __this->get_nsStack_19(); int32_t L_2 = V_0; NullCheck(L_1); String_t* L_3 = ((L_1)->GetAddressAt(static_cast(L_2)))->get_ns_1(); String_t* L_4 = ___ns0; bool L_5; L_5 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_004e; } } { NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_6 = __this->get_nsStack_19(); int32_t L_7 = V_0; NullCheck(L_6); String_t* L_8 = ((L_6)->GetAddressAt(static_cast(L_7)))->get_prefix_0(); int32_t L_9; L_9 = XmlTextWriter_LookupNamespace_mB4568061673EFBC795A43BB701ABE3335AFCE9A2(__this, L_8, /*hidden argument*/NULL); int32_t L_10 = V_0; if ((!(((uint32_t)L_9) == ((uint32_t)L_10)))) { goto IL_004e; } } { NamespaceU5BU5D_tD2B59E106C73A8DCA543AC2E02889F4A200F63F6* L_11 = __this->get_nsStack_19(); int32_t L_12 = V_0; NullCheck(L_11); String_t* L_13 = ((L_11)->GetAddressAt(static_cast(L_12)))->get_prefix_0(); return L_13; } IL_004e: { int32_t L_14 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1)); } IL_0052: { int32_t L_15 = V_0; if ((((int32_t)L_15) >= ((int32_t)0))) { goto IL_0009; } } { return (String_t*)NULL; } } // System.Void System.Xml.XmlTextWriter::ValidateName(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_ValidateName_mBE854955EEA2F287F37611C7E4FE14E0C10A988B (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___name0, bool ___isNCName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { String_t* L_0 = ___name0; if (!L_0) { goto IL_000b; } } { String_t* L_1 = ___name0; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_001b; } } IL_000b: { String_t* L_3; L_3 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4F463628A5B55C40369849BC669644FDA7E2FD4E)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_ValidateName_mBE854955EEA2F287F37611C7E4FE14E0C10A988B_RuntimeMethod_var))); } IL_001b: { String_t* L_5 = ___name0; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_5, /*hidden argument*/NULL); V_0 = L_6; bool L_7 = __this->get_namespaces_15(); if (!L_7) { goto IL_0066; } } { V_1 = (-1); String_t* L_8 = ___name0; IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); int32_t L_9; L_9 = ValidateNames_ParseNCName_m1B3BBA8EBBF31FF07CD3264FCDB0D54D09566254(L_8, /*hidden argument*/NULL); V_2 = L_9; } IL_0033: { int32_t L_10 = V_2; int32_t L_11 = V_0; if ((!(((uint32_t)L_10) == ((uint32_t)L_11)))) { goto IL_0038; } } { return; } IL_0038: { String_t* L_12 = ___name0; int32_t L_13 = V_2; NullCheck(L_12); Il2CppChar L_14; L_14 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_12, L_13, /*hidden argument*/NULL); if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)58))))) { goto IL_006f; } } { bool L_15 = ___isNCName1; if (L_15) { goto IL_006f; } } { int32_t L_16 = V_1; if ((!(((uint32_t)L_16) == ((uint32_t)(-1))))) { goto IL_006f; } } { int32_t L_17 = V_2; if ((((int32_t)L_17) <= ((int32_t)0))) { goto IL_006f; } } { int32_t L_18 = V_2; int32_t L_19 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))) >= ((int32_t)L_19))) { goto IL_006f; } } { int32_t L_20 = V_2; V_1 = L_20; int32_t L_21 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)); int32_t L_22 = V_2; String_t* L_23 = ___name0; int32_t L_24 = V_2; IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); int32_t L_25; L_25 = ValidateNames_ParseNmtoken_m38061EA2885294FBE43A1A710886DC056C087C3C(L_23, L_24, /*hidden argument*/NULL); V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)L_25)); goto IL_0033; } IL_0066: { String_t* L_26 = ___name0; IL2CPP_RUNTIME_CLASS_INIT(ValidateNames_t08DBB4C2A616E0425A90E2E5B0A7DBA943787E17_il2cpp_TypeInfo_var); bool L_27; L_27 = ValidateNames_IsNameNoNamespaces_m0E5C3C48B349B347C805319034944414B1AE6581(L_26, /*hidden argument*/NULL); if (!L_27) { goto IL_006f; } } { return; } IL_006f: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_28 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_29 = L_28; String_t* L_30 = ___name0; NullCheck(L_29); ArrayElementTypeCheck (L_29, L_30); (L_29)->SetAt(static_cast(0), (RuntimeObject *)L_30); String_t* L_31; L_31 = Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral56F31E8137B998C532779DA5D2ACDD6E3B715C1E)), L_29, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_32 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_32, L_31, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_ValidateName_mBE854955EEA2F287F37611C7E4FE14E0C10A988B_RuntimeMethod_var))); } } // System.Void System.Xml.XmlTextWriter::HandleSpecialAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_HandleSpecialAttribute_m743156B9137FC8E43B2E697605AAE9C225A2166E (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; int32_t V_1 = 0; { XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_0 = __this->get_xmlEncoder_1(); NullCheck(L_0); String_t* L_1; L_1 = XmlTextEncoder_get_AttributeValue_m9E57BB8D3D0C4BBA526DFAEC0064BD1C3F3BA38D(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = __this->get_specialAttr_16(); V_1 = L_2; int32_t L_3 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1))) { case 0: { goto IL_0040; } case 1: { goto IL_0028; } case 2: { goto IL_00ab; } } } { return; } IL_0028: { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_4 = __this->get_stack_7(); int32_t L_5 = __this->get_top_8(); NullCheck(L_4); String_t* L_6 = V_0; ((L_4)->GetAddressAt(static_cast(L_5)))->set_xmlLang_5(L_6); return; } IL_0040: { String_t* L_7 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_8; L_8 = XmlConvert_TrimString_m6FC9AD045BD030BD80D5D7451D79192E9FC881B8(L_7, /*hidden argument*/NULL); V_0 = L_8; String_t* L_9 = V_0; bool L_10; L_10 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_9, _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044, /*hidden argument*/NULL); if (!L_10) { goto IL_006c; } } { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_11 = __this->get_stack_7(); int32_t L_12 = __this->get_top_8(); NullCheck(L_11); ((L_11)->GetAddressAt(static_cast(L_12)))->set_xmlSpace_4(1); return; } IL_006c: { String_t* L_13 = V_0; bool L_14; L_14 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_13, _stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48, /*hidden argument*/NULL); if (!L_14) { goto IL_0091; } } { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_15 = __this->get_stack_7(); int32_t L_16 = __this->get_top_8(); NullCheck(L_15); ((L_15)->GetAddressAt(static_cast(L_16)))->set_xmlSpace_4(2); return; } IL_0091: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_18 = L_17; String_t* L_19 = V_0; NullCheck(L_18); ArrayElementTypeCheck (L_18, L_19); (L_18)->SetAt(static_cast(0), (RuntimeObject *)L_19); String_t* L_20; L_20 = Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB76F93064E827FE764713C55F705D2E388DF17D7)), L_18, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_21, L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_HandleSpecialAttribute_m743156B9137FC8E43B2E697605AAE9C225A2166E_RuntimeMethod_var))); } IL_00ab: { String_t* L_22 = __this->get_prefixForXmlNs_17(); String_t* L_23 = V_0; XmlTextWriter_VerifyPrefixXml_m7729FF5CEA9F697C2B498B672D02C4C895A287FB(__this, L_22, L_23, /*hidden argument*/NULL); String_t* L_24 = __this->get_prefixForXmlNs_17(); String_t* L_25 = V_0; XmlTextWriter_PushNamespace_mFAE3B22D92E1EE3EB61C94917C3E9A955D9CD5C2(__this, L_24, L_25, (bool)1, /*hidden argument*/NULL); return; } } // System.Void System.Xml.XmlTextWriter::VerifyPrefixXml(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_VerifyPrefixXml_m7729FF5CEA9F697C2B498B672D02C4C895A287FB (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___prefix0; if (!L_0) { goto IL_006b; } } { String_t* L_1 = ___prefix0; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_1, /*hidden argument*/NULL); if ((!(((uint32_t)L_2) == ((uint32_t)3)))) { goto IL_006b; } } { String_t* L_3 = ___prefix0; NullCheck(L_3); Il2CppChar L_4; L_4 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_3, 0, /*hidden argument*/NULL); if ((((int32_t)L_4) == ((int32_t)((int32_t)120)))) { goto IL_0022; } } { String_t* L_5 = ___prefix0; NullCheck(L_5); Il2CppChar L_6; L_6 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_5, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)88))))) { goto IL_006b; } } IL_0022: { String_t* L_7 = ___prefix0; NullCheck(L_7); Il2CppChar L_8; L_8 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_7, 1, /*hidden argument*/NULL); if ((((int32_t)L_8) == ((int32_t)((int32_t)109)))) { goto IL_0038; } } { String_t* L_9 = ___prefix0; NullCheck(L_9); Il2CppChar L_10; L_10 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_9, 1, /*hidden argument*/NULL); if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)77))))) { goto IL_006b; } } IL_0038: { String_t* L_11 = ___prefix0; NullCheck(L_11); Il2CppChar L_12; L_12 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_11, 2, /*hidden argument*/NULL); if ((((int32_t)L_12) == ((int32_t)((int32_t)108)))) { goto IL_004e; } } { String_t* L_13 = ___prefix0; NullCheck(L_13); Il2CppChar L_14; L_14 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_13, 2, /*hidden argument*/NULL); if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)76))))) { goto IL_006b; } } IL_004e: { String_t* L_15 = ___ns1; bool L_16; L_16 = String_op_Inequality_m45BEBD9C59D474454BD0F4AB6C9A8A2D05D40DBE(_stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917, L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_006b; } } { String_t* L_17; L_17 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC3FBA6155AE85E3CB81F8437A6F1C503BB7D09B7)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_18 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_18, L_17, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTextWriter_VerifyPrefixXml_m7729FF5CEA9F697C2B498B672D02C4C895A287FB_RuntimeMethod_var))); } IL_006b: { return; } } // System.Void System.Xml.XmlTextWriter::PushStack() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_PushStack_m446EA2C48B17B5C8B7044816EDEEC835F0283523 (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* V_0 = NULL; { int32_t L_0 = __this->get_top_8(); TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_1 = __this->get_stack_7(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))), (int32_t)1)))))) { goto IL_0047; } } { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_2 = __this->get_stack_7(); NullCheck(L_2); TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_3 = (TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637*)(TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637*)SZArrayNew(TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))), (int32_t)((int32_t)10)))); V_0 = L_3; int32_t L_4 = __this->get_top_8(); if ((((int32_t)L_4) <= ((int32_t)0))) { goto IL_0040; } } { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_5 = __this->get_stack_7(); TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_6 = V_0; int32_t L_7 = __this->get_top_8(); Array_Copy_mDB95A273EF4E8A4BC2F5D25236E21AF6584F5F5D((RuntimeArray *)(RuntimeArray *)L_5, (RuntimeArray *)(RuntimeArray *)L_6, ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)), /*hidden argument*/NULL); } IL_0040: { TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_8 = V_0; __this->set_stack_7(L_8); } IL_0047: { int32_t L_9 = __this->get_top_8(); __this->set_top_8(((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1))); TagInfoU5BU5D_t363419634609512E208D2FC275865D41A9CFF637* L_10 = __this->get_stack_7(); int32_t L_11 = __this->get_top_8(); NullCheck(L_10); int32_t L_12 = __this->get_nsTop_20(); TagInfo_Init_mFC65CB7C7A7D7852E3A2825365F1BD35CC38F8CF((TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 *)((L_10)->GetAddressAt(static_cast(L_11))), L_12, /*hidden argument*/NULL); return; } } // System.Void System.Xml.XmlTextWriter::FlushEncoders() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_FlushEncoders_m6D7554550029EE5407C9149A740B03B138B44C1B (XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2 * __this, const RuntimeMethod* method) { { XmlTextWriterBase64Encoder_t6C566B592DFF5C0E5108670EB19BA06D35F0213B * L_0 = __this->get_base64Encoder_12(); if (!L_0) { goto IL_0013; } } { XmlTextWriterBase64Encoder_t6C566B592DFF5C0E5108670EB19BA06D35F0213B * L_1 = __this->get_base64Encoder_12(); NullCheck(L_1); Base64Encoder_Flush_m7C096C39FD6F6EB5AAEBB7C5ED816DD8F24CA5B0(L_1, /*hidden argument*/NULL); } IL_0013: { __this->set_flush_18((bool)0); return; } } // System.Void System.Xml.XmlTextWriter::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter__cctor_m0CEA4EC715E03AB96FD76F1EDE89870590AB50EB (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____6A0D50D692745A6663128CD315B71079584F3E59_1_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____B368804F0C6DAB083B253A6B106D0783D5C32E90_4_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0FD08B3C99047786420F2D9A7AC37D5DC351C9C8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1E1DB32AFA986C58B9ACC9C146BF83E67C0DCE66); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2343901946DDD83EFBB8B93C33F01CBD394063B2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral23A6BF321FC205420788A7F2E1A1334F6C712C89); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral32189949CB1CA4A6EBB1A643EBE2DB69713D5407); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3D9E33C04AB4A0A0E8E88B74BB9D5F9003E15C78); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral41477B187466178A05A136C12F806B3EDCAB6349); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral45B9464D208C0A900770E5F7A95E5FE067CD4CCC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B4906CA939816C30A7D9C9A911CF6A9F506CCE3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5296173AB8D4E282E989F7B0B7B7C9A3ACF26E18); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral56EF1F2751B48DAA3EC7F762F420920B8E40757A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BBD8C0287448D34297B233D6604618390BA9C38); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8243A16D425F93AF62CAAB2BFAE01A2D6246A5FE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9932973D4B6AA1AA193C06D8D34B58B677685003); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6F0795DD4F409C92875D0327F58FDEA357047F1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBBC1106D65ACC9B0DB541F4FAF5DBAF5B7F7BA1F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCD347E1307036F9337DFB643A0DA73051573F178); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2B699E6F0658A4364F9D1A0F5A4EB7C94F6F656); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1C34BAD815D8104249A053C9455FA539CDF5036); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF41760006700B346FE970834ED6436CD21A1330F); s_Il2CppMethodInitialized = true; } { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10)); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral8243A16D425F93AF62CAAB2BFAE01A2D6246A5FE); (L_1)->SetAt(static_cast(0), (String_t*)_stringLiteral8243A16D425F93AF62CAAB2BFAE01A2D6246A5FE); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteralD2B699E6F0658A4364F9D1A0F5A4EB7C94F6F656); (L_2)->SetAt(static_cast(1), (String_t*)_stringLiteralD2B699E6F0658A4364F9D1A0F5A4EB7C94F6F656); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_3 = L_2; NullCheck(L_3); ArrayElementTypeCheck (L_3, _stringLiteralE1C34BAD815D8104249A053C9455FA539CDF5036); (L_3)->SetAt(static_cast(2), (String_t*)_stringLiteralE1C34BAD815D8104249A053C9455FA539CDF5036); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_4 = L_3; NullCheck(L_4); ArrayElementTypeCheck (L_4, _stringLiteral9932973D4B6AA1AA193C06D8D34B58B677685003); (L_4)->SetAt(static_cast(3), (String_t*)_stringLiteral9932973D4B6AA1AA193C06D8D34B58B677685003); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_5 = L_4; NullCheck(L_5); ArrayElementTypeCheck (L_5, _stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6); (L_5)->SetAt(static_cast(4), (String_t*)_stringLiteral120472D8D40924F6F8355A94DB677A8F142E2EB6); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_6 = L_5; NullCheck(L_6); ArrayElementTypeCheck (L_6, _stringLiteralB6F0795DD4F409C92875D0327F58FDEA357047F1); (L_6)->SetAt(static_cast(5), (String_t*)_stringLiteralB6F0795DD4F409C92875D0327F58FDEA357047F1); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_7 = L_6; NullCheck(L_7); ArrayElementTypeCheck (L_7, _stringLiteral41477B187466178A05A136C12F806B3EDCAB6349); (L_7)->SetAt(static_cast(6), (String_t*)_stringLiteral41477B187466178A05A136C12F806B3EDCAB6349); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = L_7; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteralCD347E1307036F9337DFB643A0DA73051573F178); (L_8)->SetAt(static_cast(7), (String_t*)_stringLiteralCD347E1307036F9337DFB643A0DA73051573F178); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = L_8; NullCheck(L_9); ArrayElementTypeCheck (L_9, _stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7); (L_9)->SetAt(static_cast(8), (String_t*)_stringLiteralD6DCC897C02A857315752249765CB47ADDF4E5C7); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_10 = L_9; NullCheck(L_10); ArrayElementTypeCheck (L_10, _stringLiteralBBC1106D65ACC9B0DB541F4FAF5DBAF5B7F7BA1F); (L_10)->SetAt(static_cast(((int32_t)9)), (String_t*)_stringLiteralBBC1106D65ACC9B0DB541F4FAF5DBAF5B7F7BA1F); ((XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var))->set_stateName_24(L_10); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_11 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)14)); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_12 = L_11; NullCheck(L_12); ArrayElementTypeCheck (L_12, _stringLiteral5296173AB8D4E282E989F7B0B7B7C9A3ACF26E18); (L_12)->SetAt(static_cast(0), (String_t*)_stringLiteral5296173AB8D4E282E989F7B0B7B7C9A3ACF26E18); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_13 = L_12; NullCheck(L_13); ArrayElementTypeCheck (L_13, _stringLiteral3D9E33C04AB4A0A0E8E88B74BB9D5F9003E15C78); (L_13)->SetAt(static_cast(1), (String_t*)_stringLiteral3D9E33C04AB4A0A0E8E88B74BB9D5F9003E15C78); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_14 = L_13; NullCheck(L_14); ArrayElementTypeCheck (L_14, _stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F); (L_14)->SetAt(static_cast(2), (String_t*)_stringLiteral3EBF7CFEC7929F196835D5D12FBBE2F845BF2A5F); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = L_14; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteral4B4906CA939816C30A7D9C9A911CF6A9F506CCE3); (L_15)->SetAt(static_cast(3), (String_t*)_stringLiteral4B4906CA939816C30A7D9C9A911CF6A9F506CCE3); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_16 = L_15; NullCheck(L_16); ArrayElementTypeCheck (L_16, _stringLiteral56EF1F2751B48DAA3EC7F762F420920B8E40757A); (L_16)->SetAt(static_cast(4), (String_t*)_stringLiteral56EF1F2751B48DAA3EC7F762F420920B8E40757A); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_17 = L_16; NullCheck(L_17); ArrayElementTypeCheck (L_17, _stringLiteral7BBD8C0287448D34297B233D6604618390BA9C38); (L_17)->SetAt(static_cast(5), (String_t*)_stringLiteral7BBD8C0287448D34297B233D6604618390BA9C38); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_18 = L_17; NullCheck(L_18); ArrayElementTypeCheck (L_18, _stringLiteral0FD08B3C99047786420F2D9A7AC37D5DC351C9C8); (L_18)->SetAt(static_cast(6), (String_t*)_stringLiteral0FD08B3C99047786420F2D9A7AC37D5DC351C9C8); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_19 = L_18; NullCheck(L_19); ArrayElementTypeCheck (L_19, _stringLiteral23A6BF321FC205420788A7F2E1A1334F6C712C89); (L_19)->SetAt(static_cast(7), (String_t*)_stringLiteral23A6BF321FC205420788A7F2E1A1334F6C712C89); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_20 = L_19; NullCheck(L_20); ArrayElementTypeCheck (L_20, _stringLiteral2343901946DDD83EFBB8B93C33F01CBD394063B2); (L_20)->SetAt(static_cast(8), (String_t*)_stringLiteral2343901946DDD83EFBB8B93C33F01CBD394063B2); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_21 = L_20; NullCheck(L_21); ArrayElementTypeCheck (L_21, _stringLiteralB6F0795DD4F409C92875D0327F58FDEA357047F1); (L_21)->SetAt(static_cast(((int32_t)9)), (String_t*)_stringLiteralB6F0795DD4F409C92875D0327F58FDEA357047F1); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_22 = L_21; NullCheck(L_22); ArrayElementTypeCheck (L_22, _stringLiteral45B9464D208C0A900770E5F7A95E5FE067CD4CCC); (L_22)->SetAt(static_cast(((int32_t)10)), (String_t*)_stringLiteral45B9464D208C0A900770E5F7A95E5FE067CD4CCC); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_23 = L_22; NullCheck(L_23); ArrayElementTypeCheck (L_23, _stringLiteralF41760006700B346FE970834ED6436CD21A1330F); (L_23)->SetAt(static_cast(((int32_t)11)), (String_t*)_stringLiteralF41760006700B346FE970834ED6436CD21A1330F); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_24 = L_23; NullCheck(L_24); ArrayElementTypeCheck (L_24, _stringLiteral1E1DB32AFA986C58B9ACC9C146BF83E67C0DCE66); (L_24)->SetAt(static_cast(((int32_t)12)), (String_t*)_stringLiteral1E1DB32AFA986C58B9ACC9C146BF83E67C0DCE66); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_25 = L_24; NullCheck(L_25); ArrayElementTypeCheck (L_25, _stringLiteral32189949CB1CA4A6EBB1A643EBE2DB69713D5407); (L_25)->SetAt(static_cast(((int32_t)13)), (String_t*)_stringLiteral32189949CB1CA4A6EBB1A643EBE2DB69713D5407); ((XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var))->set_tokenName_25(L_25); StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* L_26 = (StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A*)(StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A*)SZArrayNew(StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)104)); StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* L_27 = L_26; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_28 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____B368804F0C6DAB083B253A6B106D0783D5C32E90_4_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m37345890E8136134556D27E57315B584AC51D53F((RuntimeArray *)(RuntimeArray *)L_27, L_28, /*hidden argument*/NULL); ((XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var))->set_stateTableDefault_26(L_27); StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* L_29 = (StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A*)(StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A*)SZArrayNew(StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)104)); StateU5BU5D_tB7B678399A1D27FF20B86135AC6A0FBFA9564F3A* L_30 = L_29; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_31 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____6A0D50D692745A6663128CD315B71079584F3E59_1_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m37345890E8136134556D27E57315B584AC51D53F((RuntimeArray *)(RuntimeArray *)L_30, L_31, /*hidden argument*/NULL); ((XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_StaticFields*)il2cpp_codegen_static_fields_for(XmlTextWriter_t2CC07B7AAF1DF89CE65E7782EBC8CA1BB179DAD2_il2cpp_TypeInfo_var))->set_stateTableDocument_27(L_30); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlTextWriterBase64Encoder::WriteChars(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriterBase64Encoder_WriteChars_m7BCA7FB4E1B8A1A320D13E122D15C504D8EA3EF9 (XmlTextWriterBase64Encoder_t6C566B592DFF5C0E5108670EB19BA06D35F0213B * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { { XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * L_0 = __this->get_xmlTextEncoder_3(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_1 = ___chars0; int32_t L_2 = ___index1; int32_t L_3 = ___count2; NullCheck(L_0); XmlTextEncoder_WriteRaw_m5B4E690DB11115A1A2EBF4228182024DD5BB8434(L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean System.Xml.Serialization.XmlTypeAttribute::get_IncludeInSchema() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeAttribute_get_IncludeInSchema_m0A9657E25F040E13B36BEE03E860040BA626C926 (XmlTypeAttribute_t8CF0FDD3A7F093717D676F94868FE9ABFB689800 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_includeInSchema_0(); return L_0; } } // System.String System.Xml.Serialization.XmlTypeAttribute::get_Namespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeAttribute_get_Namespace_m71B386CC850B097BD069DACA436AE0D4A459C858 (XmlTypeAttribute_t8CF0FDD3A7F093717D676F94868FE9ABFB689800 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_ns_1(); return L_0; } } // System.String System.Xml.Serialization.XmlTypeAttribute::get_TypeName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeAttribute_get_TypeName_m4F990247967405BF066CC73DE42EF5B33002474D (XmlTypeAttribute_t8CF0FDD3A7F093717D676F94868FE9ABFB689800 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_typeName_2(); if (L_0) { goto IL_000e; } } { String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_1; } IL_000e: { String_t* L_2 = __this->get_typeName_2(); return L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String System.Xml.Serialization.XmlTypeConvertorAttribute::get_Method() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeConvertorAttribute_get_Method_mE95367532E96E4E4709DEFE87C3DA2985255BCED (XmlTypeConvertorAttribute_t9C029CB7A95EE9E3BAFFCB8DA5174C0364DA1D4E * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_U3CMethodU3Ek__BackingField_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::.ctor(System.Xml.Serialization.XmlTypeMapMember,System.Xml.Serialization.TypeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo__ctor_mF6007B11354DB3416455EA0AE568C6FF92542B04 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * ___member0, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * ___type1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } { __this->set__namespace_1(_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); __this->set__wrappedElement_9((bool)1); __this->set__explicitOrder_10((-1)); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * L_0 = ___member0; __this->set__member_3(L_0); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_1 = ___type1; __this->set__type_8(L_1); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_2 = ___type1; NullCheck(L_2); bool L_3; L_3 = TypeData_get_IsValueType_m859872378938A6201F2AAB9A905069D0BCB564FC(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0044; } } { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_4 = ___type1; NullCheck(L_4); bool L_5; L_5 = TypeData_get_IsNullable_mD24CD1E465C07ADBA559890CC8DB5FD2100BEADF(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0044; } } { __this->set__isNullable_5((bool)1); } IL_0044: { return; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapElementInfo::get_TypeData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * XmlTypeMapElementInfo_get_TypeData_m926B6BA45030F83BEB77AE80F065E79A8558B415 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_0 = __this->get__type_8(); return L_0; } } // System.Object System.Xml.Serialization.XmlTypeMapElementInfo::get_ChoiceValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlTypeMapElementInfo_get_ChoiceValue_m76212C3475099487DB1A4BF6AFB9FE3E2C04D8B1 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get__choiceValue_4(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_ChoiceValue(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_ChoiceValue_mDF1E5216A38F7911327D731FD8DBEAD93CB48CAA (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; __this->set__choiceValue_4(L_0); return; } } // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_ElementName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_ElementName_m1B5D0CAFCC6513CBCFCF1BD3977A519B21C4BFFC (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__elementName_0(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_ElementName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_ElementName_mD96BF1649FA7885FA25FE2144CB7DC116B194FAB (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set__elementName_0(L_0); return; } } // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_Namespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_Namespace_mC9E436A358B8900AFDB3C7E5E91002873ACF84B2 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__namespace_1(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_Namespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_Namespace_m428970C4B7182555B6636BF9AC3945F634705F69 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set__namespace_1(L_0); return; } } // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_DataTypeNamespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_DataTypeNamespace_m873F8E6FE5227A791696AC43A260E0F47AAD5BCA (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF); s_Il2CppMethodInitialized = true; } { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_0 = __this->get__mappedType_7(); if (L_0) { goto IL_000e; } } { return _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF; } IL_000e: { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_1 = __this->get__mappedType_7(); NullCheck(L_1); String_t* L_2; L_2 = XmlTypeMapping_get_XmlTypeNamespace_m84FB57272C654790B04BCCA3901AA92AF1C8EDA6(L_1, /*hidden argument*/NULL); return L_2; } } // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_DataTypeName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_DataTypeName_mA325DC5EF7C366F1AB9AE8D310518AD6D1CA7001 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_0 = __this->get__mappedType_7(); if (L_0) { goto IL_0014; } } { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_1; L_1 = XmlTypeMapElementInfo_get_TypeData_m926B6BA45030F83BEB77AE80F065E79A8558B415_inline(__this, /*hidden argument*/NULL); NullCheck(L_1); String_t* L_2; L_2 = TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline(L_1, /*hidden argument*/NULL); return L_2; } IL_0014: { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_3 = __this->get__mappedType_7(); NullCheck(L_3); String_t* L_4; L_4 = XmlTypeMapping_get_XmlType_m97D3C310989DEA0D8C5DDE2A74BA1866DA7E5C99_inline(L_3, /*hidden argument*/NULL); return L_4; } } // System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlTypeMapElementInfo::get_Form() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTypeMapElementInfo_get_Form_m294ACF0C0C2CD53DC9A5F4435810866396DDFCC3 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__form_2(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_Form(System.Xml.Schema.XmlSchemaForm) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_Form_m85F81039CF7C52FAA0B57F5B151F15EB37954EBF (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set__form_2(L_0); return; } } // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapElementInfo::get_MappedType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * XmlTypeMapElementInfo_get_MappedType_mD59C3A969497DCD13A7FFDF6C36899E1CB64CA14 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_0 = __this->get__mappedType_7(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_MappedType(System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_MappedType_m7DFC1FE2449F33CCB76C521EA95669DFDE4FB620 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * ___value0, const RuntimeMethod* method) { { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_0 = ___value0; __this->set__mappedType_7(L_0); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_IsNullable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_IsNullable_mB063B0F861F54D1DD176FCB66B4FF532D8E8C402 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { bool L_0 = __this->get__isNullable_5(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_IsNullable(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_IsNullable_m041AC6E38489107B983C09E52E0FC5ABC52DF6C7 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set__isNullable_5(L_0); return; } } // System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.XmlTypeMapElementInfo::get_Member() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * XmlTypeMapElementInfo_get_Member_mC047543E3D4931DD2947B6C9191D6F3A821A5BFB (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * L_0 = __this->get__member_3(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_NestingLevel(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_NestingLevel_mBE87E71FD314CFDDE13BABCB6018D3C6178709AD (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set__nestingLevel_6(L_0); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_MultiReferenceType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_MultiReferenceType_m4EC86D7579437AF72568467B57FF90CDA452AE63 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_0 = __this->get__mappedType_7(); if (!L_0) { goto IL_0014; } } { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_1 = __this->get__mappedType_7(); NullCheck(L_1); bool L_2; L_2 = XmlTypeMapping_get_MultiReferenceType_m1CC9E9FBF8E50725CD969D26D3547A600E274079_inline(L_1, /*hidden argument*/NULL); return L_2; } IL_0014: { return (bool)0; } } // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_WrappedElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_WrappedElement_m4485CE891C26213E758BD6D74ADF07C17C9450F3 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { bool L_0 = __this->get__wrappedElement_9(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_WrappedElement(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_WrappedElement_m47E5F5A0432D44A66827AC669A742C28587AFABF (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set__wrappedElement_9(L_0); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_IsTextElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_IsTextElement_mA0787B243D97A4CEDC943B679D10CE2C37944766 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral299A91A94BC12579A25B9F1508F87ACC3282548C); s_Il2CppMethodInitialized = true; } { String_t* L_0; L_0 = XmlTypeMapElementInfo_get_ElementName_m1B5D0CAFCC6513CBCFCF1BD3977A519B21C4BFFC_inline(__this, /*hidden argument*/NULL); bool L_1; L_1 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_0, _stringLiteral299A91A94BC12579A25B9F1508F87ACC3282548C, /*hidden argument*/NULL); return L_1; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_IsTextElement(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_IsTextElement_m7BB3A8B86D0FD4C9622BF60850DFD94E689B039C (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral299A91A94BC12579A25B9F1508F87ACC3282548C); s_Il2CppMethodInitialized = true; } { bool L_0 = ___value0; if (L_0) { goto IL_000e; } } { Exception_t * L_1 = (Exception_t *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var))); Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC4E721B999A0498B0D3E99AFADED5BDAD3296EC8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTypeMapElementInfo_set_IsTextElement_m7BB3A8B86D0FD4C9622BF60850DFD94E689B039C_RuntimeMethod_var))); } IL_000e: { XmlTypeMapElementInfo_set_ElementName_mD96BF1649FA7885FA25FE2144CB7DC116B194FAB_inline(__this, _stringLiteral299A91A94BC12579A25B9F1508F87ACC3282548C, /*hidden argument*/NULL); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlTypeMapElementInfo_set_Namespace_m428970C4B7182555B6636BF9AC3945F634705F69_inline(__this, L_2, /*hidden argument*/NULL); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_IsUnnamedAnyElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_IsUnnamedAnyElement_mDE18DB057E08D950C70F86CD22FFE50F174DF78D (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0; L_0 = XmlTypeMapElementInfo_get_ElementName_m1B5D0CAFCC6513CBCFCF1BD3977A519B21C4BFFC_inline(__this, /*hidden argument*/NULL); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); bool L_2; L_2 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_IsUnnamedAnyElement(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_IsUnnamedAnyElement_mD4F5E05C761B584F531A0C8DF8DDD95ED3C9FCE0 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = ___value0; if (L_0) { goto IL_000e; } } { Exception_t * L_1 = (Exception_t *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var))); Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC4E721B999A0498B0D3E99AFADED5BDAD3296EC8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTypeMapElementInfo_set_IsUnnamedAnyElement_mD4F5E05C761B584F531A0C8DF8DDD95ED3C9FCE0_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlTypeMapElementInfo_set_ElementName_mD96BF1649FA7885FA25FE2144CB7DC116B194FAB_inline(__this, L_2, /*hidden argument*/NULL); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); XmlTypeMapElementInfo_set_Namespace_m428970C4B7182555B6636BF9AC3945F634705F69_inline(__this, L_3, /*hidden argument*/NULL); return; } } // System.Int32 System.Xml.Serialization.XmlTypeMapElementInfo::get_ExplicitOrder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTypeMapElementInfo_get_ExplicitOrder_m9A9825D9DF0149E8280C06E9C42F94FC066B613B (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__explicitOrder_10(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_ExplicitOrder(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_ExplicitOrder_m031CAF15B3BCFBF63B2DE6D71EAC9DDCE04B4130 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set__explicitOrder_10(L_0); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_Equals_m7F9C3D316038AB5A0669711317BD4D27AFF42E41 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * V_0 = NULL; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { RuntimeObject * L_1 = ___other0; V_0 = ((XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)CastclassClass((RuntimeObject*)L_1, XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var)); String_t* L_2 = __this->get__elementName_0(); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_3 = V_0; NullCheck(L_3); String_t* L_4 = L_3->get__elementName_0(); bool L_5; L_5 = String_op_Inequality_m45BEBD9C59D474454BD0F4AB6C9A8A2D05D40DBE(L_2, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0021; } } { return (bool)0; } IL_0021: { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_6 = __this->get__type_8(); NullCheck(L_6); String_t* L_7; L_7 = TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline(L_6, /*hidden argument*/NULL); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_8 = V_0; NullCheck(L_8); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_9 = L_8->get__type_8(); NullCheck(L_9); String_t* L_10; L_10 = TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline(L_9, /*hidden argument*/NULL); bool L_11; L_11 = String_op_Inequality_m45BEBD9C59D474454BD0F4AB6C9A8A2D05D40DBE(L_7, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0040; } } { return (bool)0; } IL_0040: { String_t* L_12 = __this->get__namespace_1(); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_13 = V_0; NullCheck(L_13); String_t* L_14 = L_13->get__namespace_1(); bool L_15; L_15 = String_op_Inequality_m45BEBD9C59D474454BD0F4AB6C9A8A2D05D40DBE(L_12, L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_0055; } } { return (bool)0; } IL_0055: { int32_t L_16 = __this->get__form_2(); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_17 = V_0; NullCheck(L_17); int32_t L_18 = L_17->get__form_2(); if ((((int32_t)L_16) == ((int32_t)L_18))) { goto IL_0065; } } { return (bool)0; } IL_0065: { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_19 = __this->get__type_8(); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_20 = V_0; NullCheck(L_20); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_21 = L_20->get__type_8(); if ((((RuntimeObject*)(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)L_19) == ((RuntimeObject*)(TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 *)L_21))) { goto IL_0075; } } { return (bool)0; } IL_0075: { bool L_22 = __this->get__isNullable_5(); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_23 = V_0; NullCheck(L_23); bool L_24 = L_23->get__isNullable_5(); if ((((int32_t)L_22) == ((int32_t)L_24))) { goto IL_0085; } } { return (bool)0; } IL_0085: { RuntimeObject * L_25 = __this->get__choiceValue_4(); if (!L_25) { goto IL_00a2; } } { RuntimeObject * L_26 = __this->get__choiceValue_4(); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_27 = V_0; NullCheck(L_27); RuntimeObject * L_28 = L_27->get__choiceValue_4(); NullCheck(L_26); bool L_29; L_29 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_26, L_28); if (L_29) { goto IL_00a2; } } { return (bool)0; } IL_00a2: { RuntimeObject * L_30 = __this->get__choiceValue_4(); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_31 = V_0; NullCheck(L_31); RuntimeObject * L_32 = L_31->get__choiceValue_4(); if ((((RuntimeObject*)(RuntimeObject *)L_30) == ((RuntimeObject*)(RuntimeObject *)L_32))) { goto IL_00b2; } } { return (bool)0; } IL_00b2: { return (bool)1; } } // System.Int32 System.Xml.Serialization.XmlTypeMapElementInfo::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTypeMapElementInfo_GetHashCode_mA5E2C2D2F7F634889AC8CC62BE184C64D9B84AE8 (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = Object_GetHashCode_m29972277898725CF5403FB9765F335F0FAEA8162(__this, /*hidden argument*/NULL); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlTypeMapElementInfoList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfoList__ctor_m61B67EDC5797D896962B7B503260F69FEA1E2B97 (XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlTypeMapMember::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember__ctor_m8BF0A0B39F542D09883F8250653F2E9157018975 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { __this->set__globalIndex_2((-1)); __this->set__specifiedGlobalIndex_3((-1)); IL2CPP_RUNTIME_CLASS_INIT(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_il2cpp_TypeInfo_var); DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28 * L_0 = ((DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t0CFB3A03916C4AE0938C140E6A5487CEC8169C28_il2cpp_TypeInfo_var))->get_Value_0(); __this->set__defaultValue_8(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.String System.Xml.Serialization.XmlTypeMapMember::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapMember_get_Name_mF4296DFD6FB56C6F2592A975362C5187FAD5F036 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__name_0(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::set_Name(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_Name_mBF5742A0132103DE37987D9EA6F3678F80D77AB0 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set__name_0(L_0); return; } } // System.Object System.Xml.Serialization.XmlTypeMapMember::get_DefaultValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlTypeMapMember_get_DefaultValue_mF04F8459DD9A29473CF44E0C714FBED229BB2088 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get__defaultValue_8(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::set_DefaultValue(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_DefaultValue_mA77C8EA2DCDE1EEA87AE9D72D5E76F589DD3DAE6 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; __this->set__defaultValue_8(L_0); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapMember::IsReadOnly(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMember_IsReadOnly_mB4FDABDC462847E2BFB82BC946C8F5D772A414BF (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { MemberInfo_t * L_0 = __this->get__member_5(); bool L_1; L_1 = MemberInfo_op_Equality_mC92D2D7DC0824BC567A1500B3161BDCFC9A63178(L_0, (MemberInfo_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0015; } } { Type_t * L_2 = ___type0; XmlTypeMapMember_InitMember_m3316187208C11D719EB2A3F2AB282FBF3EAD87A4(__this, L_2, /*hidden argument*/NULL); } IL_0015: { MemberInfo_t * L_3 = __this->get__member_5(); if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_3, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0036; } } { MemberInfo_t * L_4 = __this->get__member_5(); NullCheck(((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_4, PropertyInfo_t_il2cpp_TypeInfo_var))); bool L_5; L_5 = VirtFuncInvoker0< bool >::Invoke(19 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, ((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_4, PropertyInfo_t_il2cpp_TypeInfo_var))); return (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0); } IL_0036: { return (bool)0; } } // System.Object System.Xml.Serialization.XmlTypeMapMember::GetValue(System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlTypeMapMember_GetValue_m4D9079E71F9B6B38B2FEB2FA9E181F0600A6985E (RuntimeObject * ___ob0, String_t* ___name1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* V_0 = NULL; { RuntimeObject * L_0 = ___ob0; NullCheck(L_0); Type_t * L_1; L_1 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_0, /*hidden argument*/NULL); String_t* L_2 = ___name1; NullCheck(L_1); MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_3; L_3 = VirtFuncInvoker2< MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E*, String_t*, int32_t >::Invoke(60 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_1, L_2, ((int32_t)20)); V_0 = L_3; MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_4 = V_0; NullCheck(L_4); int32_t L_5 = 0; MemberInfo_t * L_6 = (L_4)->GetAt(static_cast(L_5)); if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_6, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0029; } } { MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_7 = V_0; NullCheck(L_7); int32_t L_8 = 0; MemberInfo_t * L_9 = (L_7)->GetAt(static_cast(L_8)); RuntimeObject * L_10 = ___ob0; NullCheck(((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_9, PropertyInfo_t_il2cpp_TypeInfo_var))); RuntimeObject * L_11; L_11 = VirtFuncInvoker2< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(26 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, ((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_9, PropertyInfo_t_il2cpp_TypeInfo_var)), L_10, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL); return L_11; } IL_0029: { MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_12 = V_0; NullCheck(L_12); int32_t L_13 = 0; MemberInfo_t * L_14 = (L_12)->GetAt(static_cast(L_13)); RuntimeObject * L_15 = ___ob0; NullCheck(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_14, FieldInfo_t_il2cpp_TypeInfo_var))); RuntimeObject * L_16; L_16 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, ((FieldInfo_t *)CastclassClass((RuntimeObject*)L_14, FieldInfo_t_il2cpp_TypeInfo_var)), L_15); return L_16; } } // System.Object System.Xml.Serialization.XmlTypeMapMember::GetValue(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlTypeMapMember_GetValue_m3117E4885354E3DB8D4B3471ECE9DB05ECD56883 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, RuntimeObject * ___ob0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { MemberInfo_t * L_0 = __this->get__member_5(); bool L_1; L_1 = MemberInfo_op_Equality_mC92D2D7DC0824BC567A1500B3161BDCFC9A63178(L_0, (MemberInfo_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_001a; } } { RuntimeObject * L_2 = ___ob0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); XmlTypeMapMember_InitMember_m3316187208C11D719EB2A3F2AB282FBF3EAD87A4(__this, L_3, /*hidden argument*/NULL); } IL_001a: { MemberInfo_t * L_4 = __this->get__member_5(); if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_4, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_003a; } } { MemberInfo_t * L_5 = __this->get__member_5(); RuntimeObject * L_6 = ___ob0; NullCheck(((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_5, PropertyInfo_t_il2cpp_TypeInfo_var))); RuntimeObject * L_7; L_7 = VirtFuncInvoker2< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(26 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, ((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_5, PropertyInfo_t_il2cpp_TypeInfo_var)), L_6, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL); return L_7; } IL_003a: { MemberInfo_t * L_8 = __this->get__member_5(); RuntimeObject * L_9 = ___ob0; NullCheck(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_8, FieldInfo_t_il2cpp_TypeInfo_var))); RuntimeObject * L_10; L_10 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, ((FieldInfo_t *)CastclassClass((RuntimeObject*)L_8, FieldInfo_t_il2cpp_TypeInfo_var)), L_9); return L_10; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::SetValue(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_SetValue_mF98A024D4F268A178D4AC362B829D2FC08C381C3 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, RuntimeObject * ___ob0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { MemberInfo_t * L_0 = __this->get__member_5(); bool L_1; L_1 = MemberInfo_op_Equality_mC92D2D7DC0824BC567A1500B3161BDCFC9A63178(L_0, (MemberInfo_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_001a; } } { RuntimeObject * L_2 = ___ob0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); XmlTypeMapMember_InitMember_m3316187208C11D719EB2A3F2AB282FBF3EAD87A4(__this, L_3, /*hidden argument*/NULL); } IL_001a: { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_4 = __this->get__typeData_4(); NullCheck(L_4); TypeData_ConvertForAssignment_mC99B467E9BA7AF52487538303C17505F2B2DA655(L_4, (RuntimeObject **)(&___value1), /*hidden argument*/NULL); MemberInfo_t * L_5 = __this->get__member_5(); if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_5, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0048; } } { MemberInfo_t * L_6 = __this->get__member_5(); RuntimeObject * L_7 = ___ob0; RuntimeObject * L_8 = ___value1; NullCheck(((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_6, PropertyInfo_t_il2cpp_TypeInfo_var))); VirtActionInvoker3< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(28 /* System.Void System.Reflection.PropertyInfo::SetValue(System.Object,System.Object,System.Object[]) */, ((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_6, PropertyInfo_t_il2cpp_TypeInfo_var)), L_7, L_8, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL); return; } IL_0048: { MemberInfo_t * L_9 = __this->get__member_5(); RuntimeObject * L_10 = ___ob0; RuntimeObject * L_11 = ___value1; NullCheck(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_9, FieldInfo_t_il2cpp_TypeInfo_var))); FieldInfo_SetValue_mA1EFB5DA5E4B930A617744E29E909FE9DEAA663C(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_9, FieldInfo_t_il2cpp_TypeInfo_var)), L_10, L_11, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::SetValue(System.Object,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_SetValue_m39B0FC2316327F214E7B734BA49FBBED70BB1235 (RuntimeObject * ___ob0, String_t* ___name1, RuntimeObject * ___value2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* V_0 = NULL; { RuntimeObject * L_0 = ___ob0; NullCheck(L_0); Type_t * L_1; L_1 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_0, /*hidden argument*/NULL); String_t* L_2 = ___name1; NullCheck(L_1); MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_3; L_3 = VirtFuncInvoker2< MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E*, String_t*, int32_t >::Invoke(60 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_1, L_2, ((int32_t)20)); V_0 = L_3; MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_4 = V_0; NullCheck(L_4); int32_t L_5 = 0; MemberInfo_t * L_6 = (L_4)->GetAt(static_cast(L_5)); if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_6, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_002a; } } { MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_7 = V_0; NullCheck(L_7); int32_t L_8 = 0; MemberInfo_t * L_9 = (L_7)->GetAt(static_cast(L_8)); RuntimeObject * L_10 = ___ob0; RuntimeObject * L_11 = ___value2; NullCheck(((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_9, PropertyInfo_t_il2cpp_TypeInfo_var))); VirtActionInvoker3< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(28 /* System.Void System.Reflection.PropertyInfo::SetValue(System.Object,System.Object,System.Object[]) */, ((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_9, PropertyInfo_t_il2cpp_TypeInfo_var)), L_10, L_11, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL); return; } IL_002a: { MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_12 = V_0; NullCheck(L_12); int32_t L_13 = 0; MemberInfo_t * L_14 = (L_12)->GetAt(static_cast(L_13)); RuntimeObject * L_15 = ___ob0; RuntimeObject * L_16 = ___value2; NullCheck(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_14, FieldInfo_t_il2cpp_TypeInfo_var))); FieldInfo_SetValue_mA1EFB5DA5E4B930A617744E29E909FE9DEAA663C(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_14, FieldInfo_t_il2cpp_TypeInfo_var)), L_15, L_16, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::InitMember(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_InitMember_m3316187208C11D719EB2A3F2AB282FBF3EAD87A4 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A846A225A3909AB39CFF23BE13DACF54C540FEC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral87C858E345116CE7C4123AF185CDD74EFDD94384); s_Il2CppMethodInitialized = true; } MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* V_0 = NULL; MethodInfo_t * V_1 = NULL; { Type_t * L_0 = ___type0; String_t* L_1 = __this->get__name_0(); NullCheck(L_0); MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_2; L_2 = VirtFuncInvoker2< MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E*, String_t*, int32_t >::Invoke(60 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_0, L_1, ((int32_t)20)); V_0 = L_2; MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_3 = V_0; NullCheck(L_3); int32_t L_4 = 0; MemberInfo_t * L_5 = (L_3)->GetAt(static_cast(L_4)); __this->set__member_5(L_5); Type_t * L_6 = ___type0; String_t* L_7 = __this->get__name_0(); String_t* L_8; L_8 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(L_7, _stringLiteral87C858E345116CE7C4123AF185CDD74EFDD94384, /*hidden argument*/NULL); NullCheck(L_6); MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_9; L_9 = VirtFuncInvoker2< MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E*, String_t*, int32_t >::Invoke(60 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_6, L_8, ((int32_t)20)); V_0 = L_9; MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_10 = V_0; NullCheck(L_10); if (!(((RuntimeArray*)L_10)->max_length)) { goto IL_003e; } } { MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_11 = V_0; NullCheck(L_11); int32_t L_12 = 0; MemberInfo_t * L_13 = (L_11)->GetAt(static_cast(L_12)); __this->set__specifiedMember_6(L_13); } IL_003e: { MemberInfo_t * L_14 = __this->get__specifiedMember_6(); if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_14, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0064; } } { MemberInfo_t * L_15 = __this->get__specifiedMember_6(); NullCheck(((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_15, PropertyInfo_t_il2cpp_TypeInfo_var))); bool L_16; L_16 = VirtFuncInvoker0< bool >::Invoke(18 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, ((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_15, PropertyInfo_t_il2cpp_TypeInfo_var))); if (L_16) { goto IL_0064; } } { __this->set__specifiedMember_6((MemberInfo_t *)NULL); } IL_0064: { Type_t * L_17 = ___type0; String_t* L_18 = __this->get__name_0(); String_t* L_19; L_19 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(_stringLiteral7A846A225A3909AB39CFF23BE13DACF54C540FEC, L_18, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_20 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_EmptyTypes_5(); NullCheck(L_17); MethodInfo_t * L_21; L_21 = Type_GetMethod_m69EE86B5A87244C925333CCF1B6D6B9BCFED8A89(L_17, L_19, ((int32_t)20), (Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 *)NULL, L_20, (ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B*)(ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B*)NULL, /*hidden argument*/NULL); V_1 = L_21; MethodInfo_t * L_22 = V_1; bool L_23; L_23 = MethodInfo_op_Inequality_m36E5F5CEC053740C69E67E46BEDA47F9794BC94D(L_22, (MethodInfo_t *)NULL, /*hidden argument*/NULL); if (!L_23) { goto IL_00b3; } } { MethodInfo_t * L_24 = V_1; NullCheck(L_24); Type_t * L_25; L_25 = VirtFuncInvoker0< Type_t * >::Invoke(40 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_24); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_26 = { reinterpret_cast (Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_27; L_27 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_26, /*hidden argument*/NULL); bool L_28; L_28 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_25, L_27, /*hidden argument*/NULL); if (!L_28) { goto IL_00b3; } } { MethodInfo_t * L_29 = V_1; NullCheck(L_29); bool L_30; L_30 = VirtFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Reflection.MethodBase::get_IsGenericMethod() */, L_29); if (L_30) { goto IL_00b3; } } { MethodInfo_t * L_31 = V_1; __this->set__shouldSerialize_7(L_31); } IL_00b3: { return; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapMember::get_TypeData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * XmlTypeMapMember_get_TypeData_m2B29917C2E90691B93125369A14EE6EFB3F80656 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, const RuntimeMethod* method) { { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_0 = __this->get__typeData_4(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::set_TypeData(System.Xml.Serialization.TypeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_TypeData_m9102126647C26867085D1350E1EDC183CF502BD9 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * ___value0, const RuntimeMethod* method) { { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_0 = ___value0; __this->set__typeData_4(L_0); return; } } // System.Int32 System.Xml.Serialization.XmlTypeMapMember::get_Index() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTypeMapMember_get_Index_mDCBAA3BBAA60FD1947693FE47D2D96E844FEFB0F (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__index_1(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::set_Index(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_Index_mD14E30BAF45DD7EA4430143B8D0F16A71FEF943E (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set__index_1(L_0); return; } } // System.Int32 System.Xml.Serialization.XmlTypeMapMember::get_GlobalIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTypeMapMember_get_GlobalIndex_mF1D72247C11FD8473853C825689B2AB199133557 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__globalIndex_2(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::set_GlobalIndex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_GlobalIndex_mE33D218A8DC3E3CC7C7897C767F2D16DAD0BB436 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set__globalIndex_2(L_0); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapMember::get_IsOptionalValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMember_get_IsOptionalValueType_m64B60ED1EB3ACFECE806E1643B44FE66862E5628 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__flags_9(); return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)1))) <= ((uint32_t)0)))? 1 : 0); } } // System.Void System.Xml.Serialization.XmlTypeMapMember::set_IsOptionalValueType(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_IsOptionalValueType_m0525AE8AD19B262EB65870D5229AB0639F45E0CF (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, bool ___value0, const RuntimeMethod* method) { XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * G_B2_0 = NULL; XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * G_B1_0 = NULL; int32_t G_B3_0 = 0; XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * G_B3_1 = NULL; { bool L_0 = ___value0; G_B1_0 = __this; if (L_0) { G_B2_0 = __this; goto IL_000f; } } { int32_t L_1 = __this->get__flags_9(); G_B3_0 = ((int32_t)((int32_t)L_1&(int32_t)((int32_t)-2))); G_B3_1 = G_B1_0; goto IL_0017; } IL_000f: { int32_t L_2 = __this->get__flags_9(); G_B3_0 = ((int32_t)((int32_t)L_2|(int32_t)1)); G_B3_1 = G_B2_0; } IL_0017: { NullCheck(G_B3_1); G_B3_1->set__flags_9(G_B3_0); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapMember::get_IsReturnValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMember_get_IsReturnValue_mC94AFCFABC3D02281C32D01A210C78FBB3B7B0A0 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__flags_9(); return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)2))) <= ((uint32_t)0)))? 1 : 0); } } // System.Void System.Xml.Serialization.XmlTypeMapMember::set_IsReturnValue(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_IsReturnValue_mAB0F6902B832F1D3A7242B2A58B04B1A12113B1F (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, bool ___value0, const RuntimeMethod* method) { XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * G_B2_0 = NULL; XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * G_B1_0 = NULL; int32_t G_B3_0 = 0; XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * G_B3_1 = NULL; { bool L_0 = ___value0; G_B1_0 = __this; if (L_0) { G_B2_0 = __this; goto IL_000f; } } { int32_t L_1 = __this->get__flags_9(); G_B3_0 = ((int32_t)((int32_t)L_1&(int32_t)((int32_t)-3))); G_B3_1 = G_B1_0; goto IL_0017; } IL_000f: { int32_t L_2 = __this->get__flags_9(); G_B3_0 = ((int32_t)((int32_t)L_2|(int32_t)2)); G_B3_1 = G_B2_0; } IL_0017: { NullCheck(G_B3_1); G_B3_1->set__flags_9(G_B3_0); return; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::CheckOptionalValueType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_CheckOptionalValueType_m0ACA5E71F135BBE0BEFDFEE7D7B12BFFA21CAB49 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, Type_t * ___type0, const RuntimeMethod* method) { XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * G_B4_0 = NULL; XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * G_B3_0 = NULL; int32_t G_B5_0 = 0; XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * G_B5_1 = NULL; { MemberInfo_t * L_0 = __this->get__member_5(); bool L_1; L_1 = MemberInfo_op_Equality_mC92D2D7DC0824BC567A1500B3161BDCFC9A63178(L_0, (MemberInfo_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0015; } } { Type_t * L_2 = ___type0; XmlTypeMapMember_InitMember_m3316187208C11D719EB2A3F2AB282FBF3EAD87A4(__this, L_2, /*hidden argument*/NULL); } IL_0015: { MemberInfo_t * L_3 = __this->get__specifiedMember_6(); bool L_4; L_4 = MemberInfo_op_Inequality_m21B392CB74F4997C35A09A328817D7176355B178(L_3, (MemberInfo_t *)NULL, /*hidden argument*/NULL); G_B3_0 = __this; if (L_4) { G_B4_0 = __this; goto IL_0032; } } { MethodInfo_t * L_5 = __this->get__shouldSerialize_7(); bool L_6; L_6 = MethodInfo_op_Inequality_m36E5F5CEC053740C69E67E46BEDA47F9794BC94D(L_5, (MethodInfo_t *)NULL, /*hidden argument*/NULL); G_B5_0 = ((int32_t)(L_6)); G_B5_1 = G_B3_0; goto IL_0033; } IL_0032: { G_B5_0 = 1; G_B5_1 = G_B4_0; } IL_0033: { NullCheck(G_B5_1); XmlTypeMapMember_set_IsOptionalValueType_m0525AE8AD19B262EB65870D5229AB0639F45E0CF(G_B5_1, (bool)G_B5_0, /*hidden argument*/NULL); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapMember::GetValueSpecified(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMember_GetValueSpecified_m90456D12954B4D5A65A8DB1446A1E1A3C075288C (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, RuntimeObject * ___ob0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL; int32_t G_B12_0 = 0; { int32_t L_0 = __this->get__specifiedGlobalIndex_3(); if ((((int32_t)L_0) == ((int32_t)(-1)))) { goto IL_002b; } } { RuntimeObject * L_1 = ___ob0; V_1 = ((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)Castclass((RuntimeObject*)L_1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)); int32_t L_2 = __this->get__specifiedGlobalIndex_3(); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = V_1; NullCheck(L_3); if ((((int32_t)L_2) >= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))) { goto IL_0029; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = V_1; int32_t L_5 = __this->get__specifiedGlobalIndex_3(); NullCheck(L_4); int32_t L_6 = L_5; RuntimeObject * L_7 = (L_4)->GetAt(static_cast(L_6)); return ((*(bool*)((bool*)UnBox(L_7, Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var)))); } IL_0029: { return (bool)0; } IL_002b: { V_0 = (bool)1; MemberInfo_t * L_8 = __this->get__specifiedMember_6(); bool L_9; L_9 = MemberInfo_op_Inequality_m21B392CB74F4997C35A09A328817D7176355B178(L_8, (MemberInfo_t *)NULL, /*hidden argument*/NULL); if (!L_9) { goto IL_0079; } } { MemberInfo_t * L_10 = __this->get__specifiedMember_6(); if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_10, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0062; } } { MemberInfo_t * L_11 = __this->get__specifiedMember_6(); RuntimeObject * L_12 = ___ob0; NullCheck(((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_11, PropertyInfo_t_il2cpp_TypeInfo_var))); RuntimeObject * L_13; L_13 = VirtFuncInvoker2< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(26 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, ((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_11, PropertyInfo_t_il2cpp_TypeInfo_var)), L_12, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL); V_0 = ((*(bool*)((bool*)UnBox(L_13, Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var)))); goto IL_0079; } IL_0062: { MemberInfo_t * L_14 = __this->get__specifiedMember_6(); RuntimeObject * L_15 = ___ob0; NullCheck(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_14, FieldInfo_t_il2cpp_TypeInfo_var))); RuntimeObject * L_16; L_16 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, ((FieldInfo_t *)CastclassClass((RuntimeObject*)L_14, FieldInfo_t_il2cpp_TypeInfo_var)), L_15); V_0 = ((*(bool*)((bool*)UnBox(L_16, Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var)))); } IL_0079: { MethodInfo_t * L_17 = __this->get__shouldSerialize_7(); bool L_18; L_18 = MethodInfo_op_Inequality_m36E5F5CEC053740C69E67E46BEDA47F9794BC94D(L_17, (MethodInfo_t *)NULL, /*hidden argument*/NULL); if (!L_18) { goto IL_00a5; } } { bool L_19 = V_0; if (!L_19) { goto IL_00a3; } } { MethodInfo_t * L_20 = __this->get__shouldSerialize_7(); RuntimeObject * L_21 = ___ob0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_22 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)0); NullCheck(L_20); RuntimeObject * L_23; L_23 = MethodBase_Invoke_m5DA5E74F34F8FFA8133445BAE0266FD54F7D4EB3(L_20, L_21, L_22, /*hidden argument*/NULL); G_B12_0 = ((int32_t)(((*(bool*)((bool*)UnBox(L_23, Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var)))))); goto IL_00a4; } IL_00a3: { G_B12_0 = 0; } IL_00a4: { V_0 = (bool)G_B12_0; } IL_00a5: { bool L_24 = V_0; return L_24; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::SetValueSpecified(System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_SetValueSpecified_mE5034B876675A4FE4EDD454C4F0B31FADF3E09C5 (XmlTypeMapMember_t41AE3864E379A8FD098C2BFE538CC27990836AFC * __this, RuntimeObject * ___ob0, bool ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get__specifiedGlobalIndex_3(); if ((((int32_t)L_0) == ((int32_t)(-1)))) { goto IL_001d; } } { RuntimeObject * L_1 = ___ob0; int32_t L_2 = __this->get__specifiedGlobalIndex_3(); bool L_3 = ___value1; bool L_4 = L_3; RuntimeObject * L_5 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_4); NullCheck(((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)Castclass((RuntimeObject*)L_1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var))); ArrayElementTypeCheck (((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)Castclass((RuntimeObject*)L_1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), L_5); (((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)Castclass((RuntimeObject*)L_1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)))->SetAt(static_cast(L_2), (RuntimeObject *)L_5); return; } IL_001d: { MemberInfo_t * L_6 = __this->get__specifiedMember_6(); if (!((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_6, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0056; } } { MemberInfo_t * L_7 = __this->get__specifiedMember_6(); NullCheck(((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_7, PropertyInfo_t_il2cpp_TypeInfo_var))); bool L_8; L_8 = VirtFuncInvoker0< bool >::Invoke(19 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, ((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_7, PropertyInfo_t_il2cpp_TypeInfo_var))); if (L_8) { goto IL_003d; } } { return; } IL_003d: { MemberInfo_t * L_9 = __this->get__specifiedMember_6(); RuntimeObject * L_10 = ___ob0; bool L_11 = ___value1; bool L_12 = L_11; RuntimeObject * L_13 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_12); NullCheck(((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_9, PropertyInfo_t_il2cpp_TypeInfo_var))); VirtActionInvoker3< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(28 /* System.Void System.Reflection.PropertyInfo::SetValue(System.Object,System.Object,System.Object[]) */, ((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_9, PropertyInfo_t_il2cpp_TypeInfo_var)), L_10, L_13, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)NULL); return; } IL_0056: { MemberInfo_t * L_14 = __this->get__specifiedMember_6(); if (!((FieldInfo_t *)IsInstClass((RuntimeObject*)L_14, FieldInfo_t_il2cpp_TypeInfo_var))) { goto IL_007a; } } { MemberInfo_t * L_15 = __this->get__specifiedMember_6(); RuntimeObject * L_16 = ___ob0; bool L_17 = ___value1; bool L_18 = L_17; RuntimeObject * L_19 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_18); NullCheck(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_15, FieldInfo_t_il2cpp_TypeInfo_var))); FieldInfo_SetValue_mA1EFB5DA5E4B930A617744E29E909FE9DEAA663C(((FieldInfo_t *)CastclassClass((RuntimeObject*)L_15, FieldInfo_t_il2cpp_TypeInfo_var)), L_16, L_19, /*hidden argument*/NULL); } IL_007a: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlTypeMapMemberAnyAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAnyAttribute__ctor_mFD9A0BD561243CFBA234CD0484D9723BB056C5AA (XmlTypeMapMemberAnyAttribute_tE046B6F71F0626D9CF844E80D385126DD952CDEE * __this, const RuntimeMethod* method) { { XmlTypeMapMember__ctor_m8BF0A0B39F542D09883F8250653F2E9157018975(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean System.Xml.Serialization.XmlTypeMapMemberAnyElement::IsElementDefined(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMemberAnyElement_IsElementDefined_mAF0036FFDE1D524C1AA2B955D3EEDF915036BA2A (XmlTypeMapMemberAnyElement_t8A2AB4A984DDACBEE5837B4ECCCE30B431B832D0 * __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * V_1 = NULL; bool V_2 = false; RuntimeObject* V_3 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_0; L_0 = XmlTypeMapMemberElement_get_ElementInfo_m6C24B41268D415B81089124ED86D6427FE3D998C(__this, /*hidden argument*/NULL); NullCheck(L_0); RuntimeObject* L_1; L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0); V_0 = L_1; } IL_000c: try { // begin try (depth: 1) { goto IL_0046; } IL_000e: { RuntimeObject* L_2 = V_0; NullCheck(L_2); RuntimeObject * L_3; L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_2); V_1 = ((XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)CastclassClass((RuntimeObject*)L_3, XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_4 = V_1; NullCheck(L_4); bool L_5; L_5 = XmlTypeMapElementInfo_get_IsUnnamedAnyElement_mDE18DB057E08D950C70F86CD22FFE50F174DF78D(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0026; } } IL_0022: { V_2 = (bool)1; IL2CPP_LEAVE(0x63, FINALLY_0050); } IL_0026: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_6 = V_1; NullCheck(L_6); String_t* L_7; L_7 = XmlTypeMapElementInfo_get_ElementName_m1B5D0CAFCC6513CBCFCF1BD3977A519B21C4BFFC_inline(L_6, /*hidden argument*/NULL); String_t* L_8 = ___name0; bool L_9; L_9 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0046; } } IL_0034: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_10 = V_1; NullCheck(L_10); String_t* L_11; L_11 = XmlTypeMapElementInfo_get_Namespace_mC9E436A358B8900AFDB3C7E5E91002873ACF84B2_inline(L_10, /*hidden argument*/NULL); String_t* L_12 = ___ns1; bool L_13; L_13 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0046; } } IL_0042: { V_2 = (bool)1; IL2CPP_LEAVE(0x63, FINALLY_0050); } IL_0046: { RuntimeObject* L_14 = V_0; NullCheck(L_14); bool L_15; L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_14); if (L_15) { goto IL_000e; } } IL_004e: { IL2CPP_LEAVE(0x61, FINALLY_0050); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0050; } FINALLY_0050: { // begin finally (depth: 1) { RuntimeObject* L_16 = V_0; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_16, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_17 = V_3; if (!L_17) { goto IL_0060; } } IL_005a: { RuntimeObject* L_18 = V_3; NullCheck(L_18); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_18); } IL_0060: { IL2CPP_END_FINALLY(80) } } // end finally (depth: 1) IL2CPP_CLEANUP(80) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x63, IL_0063) IL2CPP_JUMP_TBL(0x61, IL_0061) } IL_0061: { return (bool)0; } IL_0063: { bool L_19 = V_2; return L_19; } } // System.Boolean System.Xml.Serialization.XmlTypeMapMemberAnyElement::get_IsDefaultAny() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMemberAnyElement_get_IsDefaultAny_m9E83C7BBC811BDBCC682567EE5FF474D747813BF (XmlTypeMapMemberAnyElement_t8A2AB4A984DDACBEE5837B4ECCCE30B431B832D0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; bool V_1 = false; RuntimeObject* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_0; L_0 = XmlTypeMapMemberElement_get_ElementInfo_m6C24B41268D415B81089124ED86D6427FE3D998C(__this, /*hidden argument*/NULL); NullCheck(L_0); RuntimeObject* L_1; L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0); V_0 = L_1; } IL_000c: try { // begin try (depth: 1) { goto IL_0024; } IL_000e: { RuntimeObject* L_2 = V_0; NullCheck(L_2); RuntimeObject * L_3; L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_2); NullCheck(((XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)CastclassClass((RuntimeObject*)L_3, XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var))); bool L_4; L_4 = XmlTypeMapElementInfo_get_IsUnnamedAnyElement_mDE18DB057E08D950C70F86CD22FFE50F174DF78D(((XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)CastclassClass((RuntimeObject*)L_3, XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (!L_4) { goto IL_0024; } } IL_0020: { V_1 = (bool)1; IL2CPP_LEAVE(0x41, FINALLY_002e); } IL_0024: { RuntimeObject* L_5 = V_0; NullCheck(L_5); bool L_6; L_6 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_5); if (L_6) { goto IL_000e; } } IL_002c: { IL2CPP_LEAVE(0x3F, FINALLY_002e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_002e; } FINALLY_002e: { // begin finally (depth: 1) { RuntimeObject* L_7 = V_0; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_7, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_8 = V_2; if (!L_8) { goto IL_003e; } } IL_0038: { RuntimeObject* L_9 = V_2; NullCheck(L_9); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_9); } IL_003e: { IL2CPP_END_FINALLY(46) } } // end finally (depth: 1) IL2CPP_CLEANUP(46) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x41, IL_0041) IL2CPP_JUMP_TBL(0x3F, IL_003f) } IL_003f: { return (bool)0; } IL_0041: { bool L_10 = V_1; return L_10; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberAnyElement::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAnyElement__ctor_m77D1AED4F74CD46C6E7D6CACBE8C9B54B394DE40 (XmlTypeMapMemberAnyElement_t8A2AB4A984DDACBEE5837B4ECCCE30B431B832D0 * __this, const RuntimeMethod* method) { { XmlTypeMapMemberExpandable__ctor_m88BB7EB4767417DDE7216C97C5E189C52C129114(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute__ctor_m35E83608883D6792BED1B43F5A5CD22A636A5008 (XmlTypeMapMemberAttribute_t492CF61ABC22EAEB88A63F604D2C40F65C7AFB1E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } { __this->set__namespace_11(_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); XmlTypeMapMember__ctor_m8BF0A0B39F542D09883F8250653F2E9157018975(__this, /*hidden argument*/NULL); return; } } // System.String System.Xml.Serialization.XmlTypeMapMemberAttribute::get_AttributeName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapMemberAttribute_get_AttributeName_mBAAB2635861C23CB95E96133A90677DB2155CE4D (XmlTypeMapMemberAttribute_t492CF61ABC22EAEB88A63F604D2C40F65C7AFB1E * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__attributeName_10(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::set_AttributeName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute_set_AttributeName_m732E2BC71B8E09089DF46CBBA29620E1463CFD26 (XmlTypeMapMemberAttribute_t492CF61ABC22EAEB88A63F604D2C40F65C7AFB1E * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set__attributeName_10(L_0); return; } } // System.String System.Xml.Serialization.XmlTypeMapMemberAttribute::get_Namespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapMemberAttribute_get_Namespace_m70DC1AE33BBAE257F106DEF53FC0884B47A0EE3F (XmlTypeMapMemberAttribute_t492CF61ABC22EAEB88A63F604D2C40F65C7AFB1E * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__namespace_11(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::set_Namespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute_set_Namespace_m83077B25E78B93CD70F6C488627FA17D314FC036 (XmlTypeMapMemberAttribute_t492CF61ABC22EAEB88A63F604D2C40F65C7AFB1E * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set__namespace_11(L_0); return; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::set_Form(System.Xml.Schema.XmlSchemaForm) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute_set_Form_m1D56219E47820FD74C37C27461953FCCA5AD2F8F (XmlTypeMapMemberAttribute_t492CF61ABC22EAEB88A63F604D2C40F65C7AFB1E * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set__form_12(L_0); return; } } // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapMemberAttribute::get_MappedType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * XmlTypeMapMemberAttribute_get_MappedType_m4FF3D549D898A9802891F1E758238E20F444264F (XmlTypeMapMemberAttribute_t492CF61ABC22EAEB88A63F604D2C40F65C7AFB1E * __this, const RuntimeMethod* method) { { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_0 = __this->get__mappedType_13(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::set_MappedType(System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute_set_MappedType_mA96949EF31180953CC98AC89967CF9C42B173E0D (XmlTypeMapMemberAttribute_t492CF61ABC22EAEB88A63F604D2C40F65C7AFB1E * __this, XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * ___value0, const RuntimeMethod* method) { { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_0 = ___value0; __this->set__mappedType_13(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlTypeMapMemberElement::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement__ctor_m1414569E82ADB1E785739BD9784256B165C9EB70 (XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747 * __this, const RuntimeMethod* method) { { XmlTypeMapMember__ctor_m8BF0A0B39F542D09883F8250653F2E9157018975(__this, /*hidden argument*/NULL); return; } } // System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.XmlTypeMapMemberElement::get_ElementInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * XmlTypeMapMemberElement_get_ElementInfo_m6C24B41268D415B81089124ED86D6427FE3D998C (XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_0 = __this->get__elementInfo_10(); if (L_0) { goto IL_0013; } } { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_1 = (XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A *)il2cpp_codegen_object_new(XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A_il2cpp_TypeInfo_var); XmlTypeMapElementInfoList__ctor_m61B67EDC5797D896962B7B503260F69FEA1E2B97(L_1, /*hidden argument*/NULL); __this->set__elementInfo_10(L_1); } IL_0013: { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_2 = __this->get__elementInfo_10(); return L_2; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberElement::set_ElementInfo(System.Xml.Serialization.XmlTypeMapElementInfoList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_set_ElementInfo_mEA2E30D91B4F1BBD5828E55A4381B3AD9046F280 (XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747 * __this, XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * ___value0, const RuntimeMethod* method) { { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_0 = ___value0; __this->set__elementInfo_10(L_0); return; } } // System.String System.Xml.Serialization.XmlTypeMapMemberElement::get_ChoiceMember() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapMemberElement_get_ChoiceMember_m9AE51BC723134EEB149DDE1F6190E14508A56FA4 (XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__choiceMember_11(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberElement::set_ChoiceMember(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_set_ChoiceMember_mDC47BA61048B75963C4D8E5789D5A84F532792D7 (XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set__choiceMember_11(L_0); return; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapMemberElement::get_ChoiceTypeData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * XmlTypeMapMemberElement_get_ChoiceTypeData_mC313A289BD877BBD3B2795E4935499DF8D520B4E (XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747 * __this, const RuntimeMethod* method) { { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_0 = __this->get__choiceTypeData_13(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberElement::set_ChoiceTypeData(System.Xml.Serialization.TypeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_set_ChoiceTypeData_mF5ECB6F0DD23A7B111228D7FBA4780EFA55CA6DA (XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747 * __this, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * ___value0, const RuntimeMethod* method) { { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_0 = ___value0; __this->set__choiceTypeData_13(L_0); return; } } // System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.XmlTypeMapMemberElement::FindElement(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * XmlTypeMapMemberElement_FindElement_m33D4BDDCD413F4D5DD62CBF9BD7025BB6F408AEB (XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747 * __this, RuntimeObject * ___ob0, RuntimeObject * ___memberValue1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject* V_1 = NULL; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * V_2 = NULL; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * V_3 = NULL; RuntimeObject* V_4 = NULL; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * V_5 = NULL; XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * V_6 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_0 = __this->get__elementInfo_10(); NullCheck(L_0); int32_t L_1; L_1 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0); if ((!(((uint32_t)L_1) == ((uint32_t)1)))) { goto IL_0020; } } { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_2 = __this->get__elementInfo_10(); NullCheck(L_2); RuntimeObject * L_3; L_3 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_2, 0); return ((XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)CastclassClass((RuntimeObject*)L_3, XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var)); } IL_0020: { String_t* L_4 = __this->get__choiceMember_11(); if (!L_4) { goto IL_008d; } } { RuntimeObject * L_5 = ___ob0; String_t* L_6 = __this->get__choiceMember_11(); RuntimeObject * L_7; L_7 = XmlTypeMapMember_GetValue_m4D9079E71F9B6B38B2FEB2FA9E181F0600A6985E(L_5, L_6, /*hidden argument*/NULL); V_0 = L_7; XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_8 = __this->get__elementInfo_10(); NullCheck(L_8); RuntimeObject* L_9; L_9 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_8); V_1 = L_9; } IL_0041: try { // begin try (depth: 1) { goto IL_006c; } IL_0043: { RuntimeObject* L_10 = V_1; NullCheck(L_10); RuntimeObject * L_11; L_11 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_10); V_2 = ((XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)CastclassClass((RuntimeObject*)L_11, XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_12 = V_2; NullCheck(L_12); RuntimeObject * L_13; L_13 = XmlTypeMapElementInfo_get_ChoiceValue_m76212C3475099487DB1A4BF6AFB9FE3E2C04D8B1_inline(L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_006c; } } IL_0057: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_14 = V_2; NullCheck(L_14); RuntimeObject * L_15; L_15 = XmlTypeMapElementInfo_get_ChoiceValue_m76212C3475099487DB1A4BF6AFB9FE3E2C04D8B1_inline(L_14, /*hidden argument*/NULL); RuntimeObject * L_16 = V_0; NullCheck(L_15); bool L_17; L_17 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_15, L_16); if (!L_17) { goto IL_006c; } } IL_0065: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_18 = V_2; V_3 = L_18; IL2CPP_LEAVE(0x11E, FINALLY_0079); } IL_006c: { RuntimeObject* L_19 = V_1; NullCheck(L_19); bool L_20; L_20 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_19); if (L_20) { goto IL_0043; } } IL_0074: { IL2CPP_LEAVE(0x11C, FINALLY_0079); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0079; } FINALLY_0079: { // begin finally (depth: 1) { RuntimeObject* L_21 = V_1; V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_21, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_22 = V_4; if (!L_22) { goto IL_008c; } } IL_0085: { RuntimeObject* L_23 = V_4; NullCheck(L_23); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_23); } IL_008c: { IL2CPP_END_FINALLY(121) } } // end finally (depth: 1) IL2CPP_CLEANUP(121) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x11E, IL_011e) IL2CPP_JUMP_TBL(0x11C, IL_011c) } IL_008d: { RuntimeObject * L_24 = ___memberValue1; if (L_24) { goto IL_00a2; } } { XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_25 = __this->get__elementInfo_10(); NullCheck(L_25); RuntimeObject * L_26; L_26 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_25, 0); return ((XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)CastclassClass((RuntimeObject*)L_26, XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var)); } IL_00a2: { V_5 = (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)NULL; XmlTypeMapElementInfoList_t87AEFE46016646E67EEF427F24CC815CBF55BF8A * L_27 = __this->get__elementInfo_10(); NullCheck(L_27); RuntimeObject* L_28; L_28 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_27); V_1 = L_28; } IL_00b1: try { // begin try (depth: 1) { goto IL_00fb; } IL_00b3: { RuntimeObject* L_29 = V_1; NullCheck(L_29); RuntimeObject * L_30; L_30 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_29); V_6 = ((XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)CastclassClass((RuntimeObject*)L_30, XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_31 = V_6; NullCheck(L_31); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_32; L_32 = XmlTypeMapElementInfo_get_TypeData_m926B6BA45030F83BEB77AE80F065E79A8558B415_inline(L_31, /*hidden argument*/NULL); NullCheck(L_32); Type_t * L_33; L_33 = TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline(L_32, /*hidden argument*/NULL); RuntimeObject * L_34 = ___memberValue1; NullCheck(L_33); bool L_35; L_35 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(114 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_33, L_34); if (!L_35) { goto IL_00fb; } } IL_00d4: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_36 = V_5; if (!L_36) { goto IL_00f7; } } IL_00d8: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_37 = V_6; NullCheck(L_37); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_38; L_38 = XmlTypeMapElementInfo_get_TypeData_m926B6BA45030F83BEB77AE80F065E79A8558B415_inline(L_37, /*hidden argument*/NULL); NullCheck(L_38); Type_t * L_39; L_39 = TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline(L_38, /*hidden argument*/NULL); XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_40 = V_5; NullCheck(L_40); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_41; L_41 = XmlTypeMapElementInfo_get_TypeData_m926B6BA45030F83BEB77AE80F065E79A8558B415_inline(L_40, /*hidden argument*/NULL); NullCheck(L_41); Type_t * L_42; L_42 = TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline(L_41, /*hidden argument*/NULL); NullCheck(L_39); bool L_43; L_43 = VirtFuncInvoker1< bool, Type_t * >::Invoke(113 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_39, L_42); if (!L_43) { goto IL_00fb; } } IL_00f7: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_44 = V_6; V_5 = L_44; } IL_00fb: { RuntimeObject* L_45 = V_1; NullCheck(L_45); bool L_46; L_46 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_45); if (L_46) { goto IL_00b3; } } IL_0103: { IL2CPP_LEAVE(0x119, FINALLY_0105); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0105; } FINALLY_0105: { // begin finally (depth: 1) { RuntimeObject* L_47 = V_1; V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_47, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_48 = V_4; if (!L_48) { goto IL_0118; } } IL_0111: { RuntimeObject* L_49 = V_4; NullCheck(L_49); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_49); } IL_0118: { IL2CPP_END_FINALLY(261) } } // end finally (depth: 1) IL2CPP_CLEANUP(261) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x119, IL_0119) } IL_0119: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_50 = V_5; return L_50; } IL_011c: { return (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A *)NULL; } IL_011e: { XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * L_51 = V_3; return L_51; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberElement::SetChoice(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_SetChoice_m2B39CA065DD1F60A622415C14605151D1DF54646 (XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747 * __this, RuntimeObject * ___ob0, RuntimeObject * ___choice1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___ob0; String_t* L_1 = __this->get__choiceMember_11(); RuntimeObject * L_2 = ___choice1; XmlTypeMapMember_SetValue_m39B0FC2316327F214E7B734BA49FBBED70BB1235(L_0, L_1, L_2, /*hidden argument*/NULL); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapMemberElement::get_IsXmlTextCollector() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMemberElement_get_IsXmlTextCollector_mB410B2BF38B6E2BC8F7FD10DF079D109B33977CF (XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get__isTextCollector_12(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberElement::set_IsXmlTextCollector(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_set_IsXmlTextCollector_m6D8322F1020B99C91DB0CB462FAE6596FC763D1E (XmlTypeMapMemberElement_tA4C24F1E23EB2A46445AE5F8F96774A1F0C63747 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set__isTextCollector_12(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 System.Xml.Serialization.XmlTypeMapMemberExpandable::get_FlatArrayIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTypeMapMemberExpandable_get_FlatArrayIndex_m41F8CCE549192D09472AFA720EF9918AF8879E17 (XmlTypeMapMemberExpandable_t4AB3E2327627775BEDBA72B187C19F446C6DF2E7 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__flatArrayIndex_14(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberExpandable::set_FlatArrayIndex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberExpandable_set_FlatArrayIndex_mA8364C94E058AB87F4D7D8025F91F9AB3A130D3E (XmlTypeMapMemberExpandable_t4AB3E2327627775BEDBA72B187C19F446C6DF2E7 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set__flatArrayIndex_14(L_0); return; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberExpandable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberExpandable__ctor_m88BB7EB4767417DDE7216C97C5E189C52C129114 (XmlTypeMapMemberExpandable_t4AB3E2327627775BEDBA72B187C19F446C6DF2E7 * __this, const RuntimeMethod* method) { { XmlTypeMapMemberElement__ctor_m1414569E82ADB1E785739BD9784256B165C9EB70(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.ListMap System.Xml.Serialization.XmlTypeMapMemberFlatList::get_ListMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * XmlTypeMapMemberFlatList_get_ListMap_mB29ED2E0F2F91D5FC005F9CDAAEC3801B577E401 (XmlTypeMapMemberFlatList_t5FF2F887FFCAEF62B495A4A8EF43F62C8BDEEA73 * __this, const RuntimeMethod* method) { { ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * L_0 = __this->get__listMap_15(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberFlatList::set_ListMap(System.Xml.Serialization.ListMap) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberFlatList_set_ListMap_mAA11145FA15A6884AA8D7752DA3D3330A56D0AA8 (XmlTypeMapMemberFlatList_t5FF2F887FFCAEF62B495A4A8EF43F62C8BDEEA73 * __this, ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * ___value0, const RuntimeMethod* method) { { ListMap_t4A51AA656610A3AE94B5657C049248E9C2AD7948 * L_0 = ___value0; __this->set__listMap_15(L_0); return; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberFlatList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberFlatList__ctor_m5BDC5B974DFEAC1CDA10BEA6BEFFC2971B903352 (XmlTypeMapMemberFlatList_t5FF2F887FFCAEF62B495A4A8EF43F62C8BDEEA73 * __this, const RuntimeMethod* method) { { XmlTypeMapMemberExpandable__ctor_m88BB7EB4767417DDE7216C97C5E189C52C129114(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlTypeMapMemberList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberList__ctor_m0F2FFB8D08145919E4C7AA1ABA4BB1CDE6B00CB8 (XmlTypeMapMemberList_t7EB7E9134FBE0B056939C2876C2C3ECFEFC28C82 * __this, const RuntimeMethod* method) { { XmlTypeMapMemberElement__ctor_m1414569E82ADB1E785739BD9784256B165C9EB70(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlTypeMapMemberNamespaces::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberNamespaces__ctor_m4DE8A1F2CE51643F53C17DFC02103193C8CBB0E9 (XmlTypeMapMemberNamespaces_tAF134E0E65D2095D56C6BDDE1E5A651A7594A38D * __this, const RuntimeMethod* method) { { XmlTypeMapMember__ctor_m8BF0A0B39F542D09883F8250653F2E9157018975(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlTypeMapping::.ctor(System.String,System.String,System.Xml.Serialization.TypeData,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping__ctor_m99427222BCBFD01F5498490316D0DC57419CFC28 (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, String_t* ___elementName0, String_t* ___ns1, TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * ___typeData2, String_t* ___xmlType3, String_t* ___xmlTypeNamespace4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { __this->set_isNullable_12((bool)1); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_0, /*hidden argument*/NULL); __this->set__derivedTypes_14(L_0); String_t* L_1 = ___elementName0; String_t* L_2 = ___ns1; XmlMapping__ctor_mAE0C9F2C02CF5529CEA261B6DD0DA8F550B830E7(__this, L_1, L_2, /*hidden argument*/NULL); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_3 = ___typeData2; __this->set_type_8(L_3); String_t* L_4 = ___xmlType3; __this->set_xmlType_6(L_4); String_t* L_5 = ___xmlTypeNamespace4; __this->set_xmlTypeNamespace_7(L_5); return; } } // System.String System.Xml.Serialization.XmlTypeMapping::get_TypeFullName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_TypeFullName_mDC0A30D0C68FBAFA154F51C355E0F992E97BF1A0 (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method) { { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_0 = __this->get_type_8(); NullCheck(L_0); String_t* L_1; L_1 = TypeData_get_FullTypeName_mFFCC7D2CB2D25AB7EB9FB3B395515A52B19D9A29_inline(L_0, /*hidden argument*/NULL); return L_1; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapping::get_TypeData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * XmlTypeMapping_get_TypeData_m4087973CAFF6B74AACEDCFF8FCA51E7CD183FD11 (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method) { { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_0 = __this->get_type_8(); return L_0; } } // System.String System.Xml.Serialization.XmlTypeMapping::get_XmlType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_XmlType_m97D3C310989DEA0D8C5DDE2A74BA1866DA7E5C99 (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_xmlType_6(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapping::set_XmlType(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping_set_XmlType_mDB3803CE186E73CECA8D0F1F9A91A90F546BBB34 (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_xmlType_6(L_0); return; } } // System.String System.Xml.Serialization.XmlTypeMapping::get_XmlTypeNamespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_XmlTypeNamespace_m84FB57272C654790B04BCCA3901AA92AF1C8EDA6 (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* G_B2_0 = NULL; String_t* G_B1_0 = NULL; { String_t* L_0 = __this->get_xmlTypeNamespace_7(); String_t* L_1 = L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_000f; } } { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); G_B2_0 = L_2; } IL_000f: { return G_B2_0; } } // System.Void System.Xml.Serialization.XmlTypeMapping::set_XmlTypeNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping_set_XmlTypeNamespace_mCC9D834DE18EC580BDB4C3D8727AE767941DE852 (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_xmlTypeNamespace_7(L_0); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapping::get_HasXmlTypeNamespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_HasXmlTypeNamespace_m2452AA7124F5B1A8696230CC469DE3326E2A1A9F (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_xmlTypeNamespace_7(); return (bool)((!(((RuntimeObject*)(String_t*)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Collections.ArrayList System.Xml.Serialization.XmlTypeMapping::get_DerivedTypes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * XmlTypeMapping_get_DerivedTypes_m63ABD00406604F86FE15EE6BBC3EAEB9C6B6EAF7 (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method) { { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = __this->get__derivedTypes_14(); return L_0; } } // System.Boolean System.Xml.Serialization.XmlTypeMapping::get_MultiReferenceType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_MultiReferenceType_m1CC9E9FBF8E50725CD969D26D3547A600E274079 (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_multiReferenceType_10(); return L_0; } } // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapping::get_BaseMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * XmlTypeMapping_get_BaseMap_m6202ECE86BAF66E17C989E6DCC97FBC463DD639B (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method) { { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_0 = __this->get_baseMap_9(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapping::set_BaseMap(System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping_set_BaseMap_m75694732FDD9E30E1D827DDED2E33FAC6774F766 (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * ___value0, const RuntimeMethod* method) { { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_0 = ___value0; __this->set_baseMap_9(L_0); return; } } // System.Void System.Xml.Serialization.XmlTypeMapping::set_IncludeInSchema(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping_set_IncludeInSchema_mFC3062C13722A8C22B205186420ED38E1F604038 (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_includeInSchema_11(L_0); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapping::get_IsNullable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_IsNullable_m6D33C6268FC29BB83BE77AB5674C9DAD26775BAE (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isNullable_12(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapping::set_IsNullable(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping_set_IsNullable_mD56AE3E111996A952C37635EA57BB375C6535009 (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_isNullable_12(L_0); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapping::get_IsAny() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_IsAny_m50C4E9738DA12F62C74B20249D4734ECC687D53D (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isAny_13(); return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapping::set_IsAny(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping_set_IsAny_m97FF3BBB5242E073B3440984B64310998AA481DD (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_isAny_13(L_0); return; } } // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapping::GetRealTypeMap(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * XmlTypeMapping_GetRealTypeMap_m3002BBC2BC139FFFE63BDAA6B53934C5F0AF97A6 (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, Type_t * ___objectType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * V_1 = NULL; { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_0; L_0 = XmlTypeMapping_get_TypeData_m4087973CAFF6B74AACEDCFF8FCA51E7CD183FD11_inline(__this, /*hidden argument*/NULL); NullCheck(L_0); int32_t L_1; L_1 = TypeData_get_SchemaType_m1E1859E6B8F79B692587EB29D4E8E2917F8112D4_inline(L_0, /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)2)))) { goto IL_0010; } } { return __this; } IL_0010: { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_2; L_2 = XmlTypeMapping_get_TypeData_m4087973CAFF6B74AACEDCFF8FCA51E7CD183FD11_inline(__this, /*hidden argument*/NULL); NullCheck(L_2); Type_t * L_3; L_3 = TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline(L_2, /*hidden argument*/NULL); Type_t * L_4 = ___objectType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0025; } } { return __this; } IL_0025: { V_0 = 0; goto IL_0054; } IL_0029: { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_6 = __this->get__derivedTypes_14(); int32_t L_7 = V_0; NullCheck(L_6); RuntimeObject * L_8; L_8 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_6, L_7); V_1 = ((XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 *)CastclassClass((RuntimeObject*)L_8, XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581_il2cpp_TypeInfo_var)); XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_9 = V_1; NullCheck(L_9); TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_10; L_10 = XmlTypeMapping_get_TypeData_m4087973CAFF6B74AACEDCFF8FCA51E7CD183FD11_inline(L_9, /*hidden argument*/NULL); NullCheck(L_10); Type_t * L_11; L_11 = TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline(L_10, /*hidden argument*/NULL); Type_t * L_12 = ___objectType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_13; L_13 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0050; } } { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_14 = V_1; return L_14; } IL_0050: { int32_t L_15 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0054: { int32_t L_16 = V_0; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_17 = __this->get__derivedTypes_14(); NullCheck(L_17); int32_t L_18; L_18 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_17); if ((((int32_t)L_16) < ((int32_t)L_18))) { goto IL_0029; } } { return (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 *)NULL; } } // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapping::GetRealElementMap(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * XmlTypeMapping_GetRealElementMap_m9A3C5314B02D46428A53130860E681F8C9D0A439 (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, String_t* ___name0, String_t* ___ens1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * V_1 = NULL; XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * V_2 = NULL; RuntimeObject* V_3 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { String_t* L_0 = __this->get_xmlType_6(); String_t* L_1 = ___name0; bool L_2; L_2 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001e; } } { String_t* L_3; L_3 = XmlTypeMapping_get_XmlTypeNamespace_m84FB57272C654790B04BCCA3901AA92AF1C8EDA6(__this, /*hidden argument*/NULL); String_t* L_4 = ___ens1; bool L_5; L_5 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_001e; } } { return __this; } IL_001e: { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_6 = __this->get__derivedTypes_14(); NullCheck(L_6); RuntimeObject* L_7; L_7 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_6); V_0 = L_7; } IL_002a: try { // begin try (depth: 1) { goto IL_0058; } IL_002c: { RuntimeObject* L_8 = V_0; NullCheck(L_8); RuntimeObject * L_9; L_9 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_8); V_1 = ((XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 *)CastclassClass((RuntimeObject*)L_9, XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581_il2cpp_TypeInfo_var)); XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_10 = V_1; NullCheck(L_10); String_t* L_11 = L_10->get_xmlType_6(); String_t* L_12 = ___name0; bool L_13; L_13 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0058; } } IL_0046: { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_14 = V_1; NullCheck(L_14); String_t* L_15; L_15 = XmlTypeMapping_get_XmlTypeNamespace_m84FB57272C654790B04BCCA3901AA92AF1C8EDA6(L_14, /*hidden argument*/NULL); String_t* L_16 = ___ens1; bool L_17; L_17 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_15, L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_0058; } } IL_0054: { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_18 = V_1; V_2 = L_18; IL2CPP_LEAVE(0x75, FINALLY_0062); } IL_0058: { RuntimeObject* L_19 = V_0; NullCheck(L_19); bool L_20; L_20 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_19); if (L_20) { goto IL_002c; } } IL_0060: { IL2CPP_LEAVE(0x73, FINALLY_0062); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0062; } FINALLY_0062: { // begin finally (depth: 1) { RuntimeObject* L_21 = V_0; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_21, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_22 = V_3; if (!L_22) { goto IL_0072; } } IL_006c: { RuntimeObject* L_23 = V_3; NullCheck(L_23); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_23); } IL_0072: { IL2CPP_END_FINALLY(98) } } // end finally (depth: 1) IL2CPP_CLEANUP(98) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x75, IL_0075) IL2CPP_JUMP_TBL(0x73, IL_0073) } IL_0073: { return (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 *)NULL; } IL_0075: { XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_24 = V_2; return L_24; } } // System.Void System.Xml.Serialization.XmlTypeMapping::UpdateRoot(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping_UpdateRoot_m4D5AFF9E9015CD035B31BCEBD97A6FE1C0B8A4DF (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___qname0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_0 = ___qname0; IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); bool L_1; L_1 = XmlQualifiedName_op_Inequality_m41E46D4716F1168DF9152C551CD2F79231750271(L_0, (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0021; } } { XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_2 = ___qname0; NullCheck(L_2); String_t* L_3; L_3 = XmlQualifiedName_get_Name_m919683334C36B7677143103C12A051FACD698095_inline(L_2, /*hidden argument*/NULL); ((XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 *)__this)->set__elementName_3(L_3); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_4 = ___qname0; NullCheck(L_4); String_t* L_5; L_5 = XmlQualifiedName_get_Namespace_m2693E9023068C90F95C47FDB5685F1563ECE0025_inline(L_4, /*hidden argument*/NULL); ((XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 *)__this)->set__namespace_4(L_5); } IL_0021: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlUnspecifiedAttribute::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUnspecifiedAttribute__ctor_m1C3FF58C6D59200A0E34294C09EDBFE4401C03E3 (XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641 * __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * ___doc3, const RuntimeMethod* method) { { String_t* L_0 = ___prefix0; String_t* L_1 = ___localName1; String_t* L_2 = ___namespaceURI2; XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * L_3 = ___doc3; XmlAttribute__ctor_m1CC4421CFD643E837A80EBD7C725CB0DD5E6F036(__this, L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return; } } // System.Boolean System.Xml.XmlUnspecifiedAttribute::get_Specified() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlUnspecifiedAttribute_get_Specified_mECD22652792407A9B3575CF7C6389773597EE23A (XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_fSpecified_3(); return L_0; } } // System.Xml.XmlNode System.Xml.XmlUnspecifiedAttribute::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * XmlUnspecifiedAttribute_CloneNode_mE5E6BCC189CB8C328A95B3FB77A4646AF6B3BD2C (XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641 * __this, bool ___deep0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * V_0 = NULL; { XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * L_0; L_0 = VirtFuncInvoker0< XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); V_0 = L_0; XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * L_1 = V_0; String_t* L_2; L_2 = VirtFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_Prefix() */, __this); String_t* L_3; L_3 = VirtFuncInvoker0< String_t* >::Invoke(31 /* System.String System.Xml.XmlNode::get_LocalName() */, __this); String_t* L_4; L_4 = VirtFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, __this); NullCheck(L_1); XmlAttribute_t3F58A4BDFB486D0E610E4003E54A89BCCB65AB6D * L_5; L_5 = VirtFuncInvoker3< XmlAttribute_t3F58A4BDFB486D0E610E4003E54A89BCCB65AB6D *, String_t*, String_t*, String_t* >::Invoke(60 /* System.Xml.XmlAttribute System.Xml.XmlDocument::CreateDefaultAttribute(System.String,System.String,System.String) */, L_1, L_2, L_3, L_4); XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641 * L_6 = ((XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641 *)CastclassClass((RuntimeObject*)L_5, XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641_il2cpp_TypeInfo_var)); XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * L_7 = V_0; NullCheck(L_6); VirtActionInvoker3< XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F *, XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 *, bool >::Invoke(28 /* System.Void System.Xml.XmlNode::CopyChildren(System.Xml.XmlDocument,System.Xml.XmlNode,System.Boolean) */, L_6, L_7, __this, (bool)1); XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641 * L_8 = L_6; NullCheck(L_8); L_8->set_fSpecified_3((bool)1); return L_8; } } // System.Void System.Xml.XmlUnspecifiedAttribute::set_InnerText(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUnspecifiedAttribute_set_InnerText_m4F3F2BD8745B32792A83697AF359863EF2F0F96A (XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; XmlAttribute_set_InnerText_m3B5C78D374ACDD3A8B6163CCB4CD5584518D946A(__this, L_0, /*hidden argument*/NULL); __this->set_fSpecified_3((bool)1); return; } } // System.Xml.XmlNode System.Xml.XmlUnspecifiedAttribute::RemoveChild(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * XmlUnspecifiedAttribute_RemoveChild_m6E997B0AB5BE7856195F77D34C8BEFDFA7312A7B (XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641 * __this, XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * ___oldChild0, const RuntimeMethod* method) { { XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * L_0 = ___oldChild0; XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * L_1; L_1 = XmlAttribute_RemoveChild_mAA100C2F00FB0346E1656C6463DBC02C736C0734(__this, L_0, /*hidden argument*/NULL); __this->set_fSpecified_3((bool)1); return L_1; } } // System.Xml.XmlNode System.Xml.XmlUnspecifiedAttribute::AppendChild(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * XmlUnspecifiedAttribute_AppendChild_mA21535AB90808FEBC3F3C16A095D304207D8E283 (XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641 * __this, XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * ___newChild0, const RuntimeMethod* method) { { XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * L_0 = ___newChild0; XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * L_1; L_1 = XmlAttribute_AppendChild_mAF324AA7DBB29DC1BEC6A3CBA82F03AB11D5DFC5(__this, L_0, /*hidden argument*/NULL); __this->set_fSpecified_3((bool)1); return L_1; } } // System.Void System.Xml.XmlUnspecifiedAttribute::WriteTo(System.Xml.XmlWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUnspecifiedAttribute_WriteTo_mD7B23D7202520852C641B172ACC55328F09ADA8B (XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641 * __this, XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * ___w0, const RuntimeMethod* method) { { bool L_0 = __this->get_fSpecified_3(); if (!L_0) { goto IL_000f; } } { XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * L_1 = ___w0; XmlAttribute_WriteTo_m614100A1167F5EC449779C1BD90C8CFAEE4AA32E(__this, L_1, /*hidden argument*/NULL); } IL_000f: { return; } } // System.Void System.Xml.XmlUnspecifiedAttribute::SetSpecified(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUnspecifiedAttribute_SetSpecified_mF9C15FC0EA42FC85CAA50C4D5D996F4127840D44 (XmlUnspecifiedAttribute_tF407B3741ADDB6788A6F6019CF4B2D23CDF8F641 * __this, bool ___f0, const RuntimeMethod* method) { { bool L_0 = ___f0; __this->set_fSpecified_3(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlUntypedConverter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUntypedConverter__ctor_m2BF429F05F4086DB2620F3EBFA8E73974F14D90A (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_il2cpp_TypeInfo_var); XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_0; L_0 = DatatypeImplementation_get_UntypedAtomicType_mB4B8AE5E88DC7A38C2D2232D533992B225A61AC7_inline(/*hidden argument*/NULL); XmlListConverter__ctor_mA57F3038784C8BB10CA694189E558202B6C71747(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.XmlUntypedConverter::.ctor(System.Xml.Schema.XmlUntypedConverter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUntypedConverter__ctor_m723EDD7AC7CAADC784E4DA7CBAC18134B998C497 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * ___atomicConverter0, bool ___allowListToList1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * G_B2_0 = NULL; XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * G_B2_1 = NULL; XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * G_B1_0 = NULL; XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * G_B1_1 = NULL; Type_t * G_B3_0 = NULL; XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * G_B3_1 = NULL; XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * G_B3_2 = NULL; { XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * L_0 = ___atomicConverter0; bool L_1 = ___allowListToList1; G_B1_0 = L_0; G_B1_1 = __this; if (L_1) { G_B2_0 = L_0; G_B2_1 = __this; goto IL_000c; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_2 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); G_B3_0 = L_2; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_0011; } IL_000c: { IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_3 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringArrayType_7(); G_B3_0 = L_3; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_0011: { NullCheck(G_B3_2); XmlListConverter__ctor_m5D0251EF7A3D3B8B7B87CE950382C8C1054F2476(G_B3_2, G_B3_1, G_B3_0, /*hidden argument*/NULL); bool L_4 = ___allowListToList1; __this->set_allowListToList_33(L_4); return; } } // System.Boolean System.Xml.Schema.XmlUntypedConverter::ToBoolean(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlUntypedConverter_ToBoolean_mED2C117433B952DDEDAE174B94A5C387B41E5BB0 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToBoolean_mED2C117433B952DDEDAE174B94A5C387B41E5BB0_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); bool L_3; L_3 = XmlConvert_ToBoolean_mECF9DFB8C60A88BCA1EDCA69B1D6C87F2F129F73(L_2, /*hidden argument*/NULL); return L_3; } } // System.Boolean System.Xml.Schema.XmlUntypedConverter::ToBoolean(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlUntypedConverter_ToBoolean_m568DD23AEBD55CF9143F829CD69E5202DFC951AC (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToBoolean_m568DD23AEBD55CF9143F829CD69E5202DFC951AC_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002c; } } { RuntimeObject * L_6 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); bool L_7; L_7 = XmlConvert_ToBoolean_mECF9DFB8C60A88BCA1EDCA69B1D6C87F2F129F73(((String_t*)CastclassSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_7; } IL_002c: { RuntimeObject * L_8 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_9 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_BooleanType_26(); RuntimeObject * L_10; L_10 = XmlUntypedConverter_ChangeTypeWildcardDestination_mC288C4D35198B9E88DF96F1253A54D418E881E73(__this, L_8, L_9, (RuntimeObject*)NULL, /*hidden argument*/NULL); return ((*(bool*)((bool*)UnBox(L_10, Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var)))); } } // System.DateTime System.Xml.Schema.XmlUntypedConverter::ToDateTime(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 XmlUntypedConverter_ToDateTime_mBBBD2C1BD1BA2FA4548FEEDF1869858F7A6213E3 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToDateTime_mBBBD2C1BD1BA2FA4548FEEDF1869858F7A6213E3_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_3; L_3 = XmlBaseConverter_UntypedAtomicToDateTime_mB558915768336FAD70FB9F79312F006324844FD9(L_2, /*hidden argument*/NULL); return L_3; } } // System.DateTime System.Xml.Schema.XmlUntypedConverter::ToDateTime(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 XmlUntypedConverter_ToDateTime_m7C71BCF3DA46E2B68D1E8C49C76BC0D0C53BB8E3 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToDateTime_m7C71BCF3DA46E2B68D1E8C49C76BC0D0C53BB8E3_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002c; } } { RuntimeObject * L_6 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_7; L_7 = XmlBaseConverter_UntypedAtomicToDateTime_mB558915768336FAD70FB9F79312F006324844FD9(((String_t*)CastclassSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_7; } IL_002c: { RuntimeObject * L_8 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_9 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeType_24(); RuntimeObject * L_10; L_10 = XmlUntypedConverter_ChangeTypeWildcardDestination_mC288C4D35198B9E88DF96F1253A54D418E881E73(__this, L_8, L_9, (RuntimeObject*)NULL, /*hidden argument*/NULL); return ((*(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)UnBox(L_10, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var)))); } } // System.DateTimeOffset System.Xml.Schema.XmlUntypedConverter::ToDateTimeOffset(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 XmlUntypedConverter_ToDateTimeOffset_mD3FAD6C7A411227350EE9ED637D15297E973C4B3 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToDateTimeOffset_mD3FAD6C7A411227350EE9ED637D15297E973C4B3_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_3; L_3 = XmlBaseConverter_UntypedAtomicToDateTimeOffset_mF2EBD6A497F70013AFDBC362C41C7FB4F016A5B2(L_2, /*hidden argument*/NULL); return L_3; } } // System.DateTimeOffset System.Xml.Schema.XmlUntypedConverter::ToDateTimeOffset(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 XmlUntypedConverter_ToDateTimeOffset_mF60632A2F2030E075DA65E74E673FA44A7ACF9B0 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToDateTimeOffset_mF60632A2F2030E075DA65E74E673FA44A7ACF9B0_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002c; } } { RuntimeObject * L_6 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_7; L_7 = XmlBaseConverter_UntypedAtomicToDateTimeOffset_mF2EBD6A497F70013AFDBC362C41C7FB4F016A5B2(((String_t*)CastclassSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_7; } IL_002c: { RuntimeObject * L_8 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_9 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeOffsetType_25(); RuntimeObject * L_10; L_10 = XmlUntypedConverter_ChangeTypeWildcardDestination_mC288C4D35198B9E88DF96F1253A54D418E881E73(__this, L_8, L_9, (RuntimeObject*)NULL, /*hidden argument*/NULL); return ((*(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)((DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)UnBox(L_10, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var)))); } } // System.Decimal System.Xml.Schema.XmlUntypedConverter::ToDecimal(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 XmlUntypedConverter_ToDecimal_mC1FC1582F9E5EE0F8B55965A09433D8C7E2503B6 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToDecimal_mC1FC1582F9E5EE0F8B55965A09433D8C7E2503B6_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_3; L_3 = XmlConvert_ToDecimal_m927342742687C6D8947928EB67FD4751149007D2(L_2, /*hidden argument*/NULL); return L_3; } } // System.Decimal System.Xml.Schema.XmlUntypedConverter::ToDecimal(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 XmlUntypedConverter_ToDecimal_mA7A74AF7A71194A51DDBCA788631FA41A76725AE (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToDecimal_mA7A74AF7A71194A51DDBCA788631FA41A76725AE_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002c; } } { RuntimeObject * L_6 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_7; L_7 = XmlConvert_ToDecimal_m927342742687C6D8947928EB67FD4751149007D2(((String_t*)CastclassSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_7; } IL_002c: { RuntimeObject * L_8 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_9 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DecimalType_9(); RuntimeObject * L_10; L_10 = XmlUntypedConverter_ChangeTypeWildcardDestination_mC288C4D35198B9E88DF96F1253A54D418E881E73(__this, L_8, L_9, (RuntimeObject*)NULL, /*hidden argument*/NULL); return ((*(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 *)((Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 *)UnBox(L_10, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var)))); } } // System.Double System.Xml.Schema.XmlUntypedConverter::ToDouble(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double XmlUntypedConverter_ToDouble_mD833FA5C23BF71B77838A7B27F93BB719D6BD9B1 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToDouble_mD833FA5C23BF71B77838A7B27F93BB719D6BD9B1_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); double L_3; L_3 = XmlConvert_ToDouble_mF7E9690E7C181E6A7227DB85229167C13E883E95(L_2, /*hidden argument*/NULL); return L_3; } } // System.Double System.Xml.Schema.XmlUntypedConverter::ToDouble(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double XmlUntypedConverter_ToDouble_m2971FE205C7A5B8568AABF05A15B1FBE72116A75 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToDouble_m2971FE205C7A5B8568AABF05A15B1FBE72116A75_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002c; } } { RuntimeObject * L_6 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); double L_7; L_7 = XmlConvert_ToDouble_mF7E9690E7C181E6A7227DB85229167C13E883E95(((String_t*)CastclassSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_7; } IL_002c: { RuntimeObject * L_8 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_9 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DoubleType_22(); RuntimeObject * L_10; L_10 = XmlUntypedConverter_ChangeTypeWildcardDestination_mC288C4D35198B9E88DF96F1253A54D418E881E73(__this, L_8, L_9, (RuntimeObject*)NULL, /*hidden argument*/NULL); return ((*(double*)((double*)UnBox(L_10, Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var)))); } } // System.Int32 System.Xml.Schema.XmlUntypedConverter::ToInt32(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlUntypedConverter_ToInt32_mB257232D69D4F5EA8A50DB8FCC3AB263729FA1C5 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToInt32_mB257232D69D4F5EA8A50DB8FCC3AB263729FA1C5_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int32_t L_3; L_3 = XmlConvert_ToInt32_m84811669F130BF79DE56045FA574E87CF4BDC7C7(L_2, /*hidden argument*/NULL); return L_3; } } // System.Int32 System.Xml.Schema.XmlUntypedConverter::ToInt32(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlUntypedConverter_ToInt32_mEC79B30EA1E9A4CA041C7E1DDD4AA64C45AF70DD (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToInt32_mEC79B30EA1E9A4CA041C7E1DDD4AA64C45AF70DD_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002c; } } { RuntimeObject * L_6 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int32_t L_7; L_7 = XmlConvert_ToInt32_m84811669F130BF79DE56045FA574E87CF4BDC7C7(((String_t*)CastclassSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_7; } IL_002c: { RuntimeObject * L_8 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_9 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int32Type_10(); RuntimeObject * L_10; L_10 = XmlUntypedConverter_ChangeTypeWildcardDestination_mC288C4D35198B9E88DF96F1253A54D418E881E73(__this, L_8, L_9, (RuntimeObject*)NULL, /*hidden argument*/NULL); return ((*(int32_t*)((int32_t*)UnBox(L_10, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)))); } } // System.Int64 System.Xml.Schema.XmlUntypedConverter::ToInt64(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t XmlUntypedConverter_ToInt64_mF42BA9C206E244DA4A6306EB2F0EB7706DD31594 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToInt64_mF42BA9C206E244DA4A6306EB2F0EB7706DD31594_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int64_t L_3; L_3 = XmlConvert_ToInt64_m0B22AC6F9DAF2F3C1DA04647121C4F3BFCD2DA3A(L_2, /*hidden argument*/NULL); return L_3; } } // System.Int64 System.Xml.Schema.XmlUntypedConverter::ToInt64(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t XmlUntypedConverter_ToInt64_m5A44AF5B054EDB6E0F82B71F89D3034B33E300EE (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToInt64_m5A44AF5B054EDB6E0F82B71F89D3034B33E300EE_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002c; } } { RuntimeObject * L_6 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int64_t L_7; L_7 = XmlConvert_ToInt64_m0B22AC6F9DAF2F3C1DA04647121C4F3BFCD2DA3A(((String_t*)CastclassSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_7; } IL_002c: { RuntimeObject * L_8 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_9 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int64Type_11(); RuntimeObject * L_10; L_10 = XmlUntypedConverter_ChangeTypeWildcardDestination_mC288C4D35198B9E88DF96F1253A54D418E881E73(__this, L_8, L_9, (RuntimeObject*)NULL, /*hidden argument*/NULL); return ((*(int64_t*)((int64_t*)UnBox(L_10, Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var)))); } } // System.Single System.Xml.Schema.XmlUntypedConverter::ToSingle(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XmlUntypedConverter_ToSingle_m4C18877EDADE25AF72581DCE8E4B4E521B36B79B (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToSingle_m4C18877EDADE25AF72581DCE8E4B4E521B36B79B_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); float L_3; L_3 = XmlConvert_ToSingle_mB7AA6B41029E834E22E8F08FA2668F03D0984793(L_2, /*hidden argument*/NULL); return L_3; } } // System.Single System.Xml.Schema.XmlUntypedConverter::ToSingle(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XmlUntypedConverter_ToSingle_mE3B43231D098FEBCC9632871499E30EA93D3FA02 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToSingle_mE3B43231D098FEBCC9632871499E30EA93D3FA02_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_002c; } } { RuntimeObject * L_6 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); float L_7; L_7 = XmlConvert_ToSingle_mB7AA6B41029E834E22E8F08FA2668F03D0984793(((String_t*)CastclassSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_7; } IL_002c: { RuntimeObject * L_8 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_9 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_SingleType_23(); RuntimeObject * L_10; L_10 = XmlUntypedConverter_ChangeTypeWildcardDestination_mC288C4D35198B9E88DF96F1253A54D418E881E73(__this, L_8, L_9, (RuntimeObject*)NULL, /*hidden argument*/NULL); return ((*(float*)((float*)UnBox(L_10, Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var)))); } } // System.String System.Xml.Schema.XmlUntypedConverter::ToString(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlUntypedConverter_ToString_mF7E4258DFD24B482EED3C6D5217B2D6BF5A186CE (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_1; L_1 = XmlConvert_ToString_mC3ADC626DDAB44248A868B0563DF5E9D636625B2(L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Xml.Schema.XmlUntypedConverter::ToString(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlUntypedConverter_ToString_m5B72A8F2B37D5ACEE0CB0AAA969F9E7353148271 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); String_t* L_1; L_1 = XmlBaseConverter_DateTimeToString_mA5CA6F4539126A06CC75688D89995886C9758AE3(L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Xml.Schema.XmlUntypedConverter::ToString(System.DateTimeOffset) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlUntypedConverter_ToString_m4D80882E628AB1DDAC0F19AD6D544C34033BDC45 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); String_t* L_1; L_1 = XmlBaseConverter_DateTimeOffsetToString_m17D782548BC66E0DCFB00419B2D910D7F64839D9(L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Xml.Schema.XmlUntypedConverter::ToString(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlUntypedConverter_ToString_m271562C1BBB59086CCD635BE5A03A364C381D02D (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_1; L_1 = XmlConvert_ToString_m55749B7D5111B0C5B22E39B0B72390EB68991C8F(L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Xml.Schema.XmlUntypedConverter::ToString(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlUntypedConverter_ToString_m8CC313776293C701BCF7855D4A5F3258E04728EA (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_1; L_1 = XmlConvert_ToString_mFA18F44AD286528699A2C1FC6579F4DB0B6F53A5(((double)((double)L_0)), /*hidden argument*/NULL); return L_1; } } // System.String System.Xml.Schema.XmlUntypedConverter::ToString(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlUntypedConverter_ToString_m6897802D318711E25C0F190A958DEFEAC44F3F52 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_1; L_1 = XmlConvert_ToString_mB1817B679C751F091D03EF8627AFF6CDEB507254(L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Xml.Schema.XmlUntypedConverter::ToString(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlUntypedConverter_ToString_mD8C370A2B3FE80530536409B874E07373D3A78AB (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_1; L_1 = XmlConvert_ToString_m40C359814CAB573400B51484C02BF1F745377F7C(L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Xml.Schema.XmlUntypedConverter::ToString(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlUntypedConverter_ToString_m4E8CB179AFBB7C328C5A21133E0346AD23F253F0 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_1; L_1 = XmlConvert_ToString_mDE8DC693C63F09BC26ACD1C4A9FFAA17141D0D84(((float)((float)L_0)), /*hidden argument*/NULL); return L_1; } } // System.String System.Xml.Schema.XmlUntypedConverter::ToString(System.Object,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlUntypedConverter_ToString_mC695B29E983FC78D95F0BC8AB8B4AC1879DE043D (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, RuntimeObject * ___value0, RuntimeObject* ___nsResolver1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ToString_mC695B29E983FC78D95F0BC8AB8B4AC1879DE043D_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = ___value0; NullCheck(L_2); Type_t * L_3; L_3 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_2, /*hidden argument*/NULL); V_0 = L_3; Type_t * L_4 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_5 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_BooleanType_26(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_6; L_6 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_4, L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_002e; } } { RuntimeObject * L_7 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_8; L_8 = XmlConvert_ToString_mC3ADC626DDAB44248A868B0563DF5E9D636625B2(((*(bool*)((bool*)UnBox(L_7, Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_8; } IL_002e: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_10 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ByteType_15(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_11; L_11 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0047; } } { RuntimeObject * L_12 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_13; L_13 = XmlConvert_ToString_m3CDF916C3AB064D0D0DF9201C46BD1EB67596608(((*(uint8_t*)((uint8_t*)UnBox(L_12, Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_13; } IL_0047: { Type_t * L_14 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_15 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ByteArrayType_27(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_16; L_16 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_14, L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_0060; } } { RuntimeObject * L_17 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); String_t* L_18; L_18 = XmlBaseConverter_Base64BinaryToString_m684175ECDA2A0C16615B5E685D636245DBFE9050(((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)Castclass((RuntimeObject*)L_17, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_18; } IL_0060: { Type_t * L_19 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_20 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeType_24(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_21; L_21 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_19, L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_0079; } } { RuntimeObject * L_22 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); String_t* L_23; L_23 = XmlBaseConverter_DateTimeToString_mA5CA6F4539126A06CC75688D89995886C9758AE3(((*(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)UnBox(L_22, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_23; } IL_0079: { Type_t * L_24 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_25 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeOffsetType_25(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_26; L_26 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_24, L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_0092; } } { RuntimeObject * L_27 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); String_t* L_28; L_28 = XmlBaseConverter_DateTimeOffsetToString_m17D782548BC66E0DCFB00419B2D910D7F64839D9(((*(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)((DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)UnBox(L_27, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_28; } IL_0092: { Type_t * L_29 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_30 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DecimalType_9(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_31; L_31 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_29, L_30, /*hidden argument*/NULL); if (!L_31) { goto IL_00ab; } } { RuntimeObject * L_32 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_33; L_33 = XmlConvert_ToString_m55749B7D5111B0C5B22E39B0B72390EB68991C8F(((*(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 *)((Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 *)UnBox(L_32, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_33; } IL_00ab: { Type_t * L_34 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_35 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DoubleType_22(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_36; L_36 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_34, L_35, /*hidden argument*/NULL); if (!L_36) { goto IL_00c4; } } { RuntimeObject * L_37 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_38; L_38 = XmlConvert_ToString_mFA18F44AD286528699A2C1FC6579F4DB0B6F53A5(((*(double*)((double*)UnBox(L_37, Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_38; } IL_00c4: { Type_t * L_39 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_40 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int16Type_16(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_41; L_41 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_39, L_40, /*hidden argument*/NULL); if (!L_41) { goto IL_00dd; } } { RuntimeObject * L_42 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_43; L_43 = XmlConvert_ToString_mF91A0FCA83F7DDDB96426EA363FE293AD4BE26DB(((*(int16_t*)((int16_t*)UnBox(L_42, Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_43; } IL_00dd: { Type_t * L_44 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_45 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int32Type_10(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_46; L_46 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_44, L_45, /*hidden argument*/NULL); if (!L_46) { goto IL_00f6; } } { RuntimeObject * L_47 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_48; L_48 = XmlConvert_ToString_mB1817B679C751F091D03EF8627AFF6CDEB507254(((*(int32_t*)((int32_t*)UnBox(L_47, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_48; } IL_00f6: { Type_t * L_49 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_50 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int64Type_11(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_51; L_51 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_49, L_50, /*hidden argument*/NULL); if (!L_51) { goto IL_010f; } } { RuntimeObject * L_52 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_53; L_53 = XmlConvert_ToString_m40C359814CAB573400B51484C02BF1F745377F7C(((*(int64_t*)((int64_t*)UnBox(L_52, Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_53; } IL_010f: { Type_t * L_54 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_55 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_SByteType_17(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_56; L_56 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_54, L_55, /*hidden argument*/NULL); if (!L_56) { goto IL_0128; } } { RuntimeObject * L_57 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_58; L_58 = XmlConvert_ToString_mCFAFEB1E1058D0061258C245960DE7D5AD695FA4(((*(int8_t*)((int8_t*)UnBox(L_57, SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_58; } IL_0128: { Type_t * L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_60 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_SingleType_23(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_61; L_61 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_59, L_60, /*hidden argument*/NULL); if (!L_61) { goto IL_0141; } } { RuntimeObject * L_62 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_63; L_63 = XmlConvert_ToString_mDE8DC693C63F09BC26ACD1C4A9FFAA17141D0D84(((*(float*)((float*)UnBox(L_62, Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_63; } IL_0141: { Type_t * L_64 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_65 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_66; L_66 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_64, L_65, /*hidden argument*/NULL); if (!L_66) { goto IL_0155; } } { RuntimeObject * L_67 = ___value0; return ((String_t*)CastclassSealed((RuntimeObject*)L_67, String_t_il2cpp_TypeInfo_var)); } IL_0155: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_69 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_TimeSpanType_30(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_70; L_70 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_68, L_69, /*hidden argument*/NULL); if (!L_70) { goto IL_016e; } } { RuntimeObject * L_71 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); String_t* L_72; L_72 = XmlBaseConverter_DurationToString_mBA49E955CD7C7909932D2A45D123EF7D3EE70CD5(((*(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)UnBox(L_71, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_72; } IL_016e: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_74 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UInt16Type_18(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_75; L_75 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_73, L_74, /*hidden argument*/NULL); if (!L_75) { goto IL_0187; } } { RuntimeObject * L_76 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_77; L_77 = XmlConvert_ToString_m2404A963C90269D4E7DE8A4C0F7E43AA73713B08(((*(uint16_t*)((uint16_t*)UnBox(L_76, UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_77; } IL_0187: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_79 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UInt32Type_19(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_80; L_80 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_78, L_79, /*hidden argument*/NULL); if (!L_80) { goto IL_01a0; } } { RuntimeObject * L_81 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_82; L_82 = XmlConvert_ToString_mF3C31729988D42BA610C48C73B6724F34D920C41(((*(uint32_t*)((uint32_t*)UnBox(L_81, UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_82; } IL_01a0: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_84 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UInt64Type_20(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_85; L_85 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_83, L_84, /*hidden argument*/NULL); if (!L_85) { goto IL_01b9; } } { RuntimeObject * L_86 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_87; L_87 = XmlConvert_ToString_m7188F1ADA25A6885A90F8C58EF59891DC265D678(((*(uint64_t*)((uint64_t*)UnBox(L_86, UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_87; } IL_01b9: { Type_t * L_88 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_89 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UriType_29(); bool L_90; L_90 = XmlBaseConverter_IsDerivedFrom_m3E8446D6F251C9F30D877A6082523ABE7BF840FA(L_88, L_89, /*hidden argument*/NULL); if (!L_90) { goto IL_01d2; } } { RuntimeObject * L_91 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); String_t* L_92; L_92 = XmlBaseConverter_AnyUriToString_mA187798F0E39D6725196A0B18C37F4CDED94FDE8(((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)CastclassClass((RuntimeObject*)L_91, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_92; } IL_01d2: { Type_t * L_93 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_94 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_95; L_95 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_93, L_94, /*hidden argument*/NULL); if (!L_95) { goto IL_01f6; } } { RuntimeObject * L_96 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_97 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); RuntimeObject* L_98 = ___nsResolver1; NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_96, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); RuntimeObject * L_99; L_99 = VirtFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(14 /* System.Object System.Xml.XPath.XPathItem::ValueAs(System.Type,System.Xml.IXmlNamespaceResolver) */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_96, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var)), L_97, L_98); return ((String_t*)CastclassSealed((RuntimeObject*)L_99, String_t_il2cpp_TypeInfo_var)); } IL_01f6: { Type_t * L_100 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_101 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlQualifiedNameType_28(); bool L_102; L_102 = XmlBaseConverter_IsDerivedFrom_m3E8446D6F251C9F30D877A6082523ABE7BF840FA(L_100, L_101, /*hidden argument*/NULL); if (!L_102) { goto IL_0210; } } { RuntimeObject * L_103 = ___value0; RuntimeObject* L_104 = ___nsResolver1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); String_t* L_105; L_105 = XmlBaseConverter_QNameToString_mDE5302DA70D4FC255DA3DF0D0E0ADC7006BAAD87(((XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 *)CastclassClass((RuntimeObject*)L_103, XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905_il2cpp_TypeInfo_var)), L_104, /*hidden argument*/NULL); return L_105; } IL_0210: { RuntimeObject * L_106 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_107 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); RuntimeObject* L_108 = ___nsResolver1; RuntimeObject * L_109; L_109 = XmlUntypedConverter_ChangeTypeWildcardDestination_mC288C4D35198B9E88DF96F1253A54D418E881E73(__this, L_106, L_107, L_108, /*hidden argument*/NULL); return ((String_t*)CastclassSealed((RuntimeObject*)L_109, String_t_il2cpp_TypeInfo_var)); } } // System.Object System.Xml.Schema.XmlUntypedConverter::ChangeType(System.Boolean,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlUntypedConverter_ChangeType_mEE86A5027ED3FE8C15200BAD81AF574DFB261162 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, bool ___value0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ChangeType_mEE86A5027ED3FE8C15200BAD81AF574DFB261162_RuntimeMethod_var))); } IL_0014: { Type_t * L_3 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ObjectType_14(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0029; } } { Type_t * L_6; L_6 = XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline(__this, /*hidden argument*/NULL); ___destinationType1 = L_6; } IL_0029: { Type_t * L_7 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_8 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9; L_9 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_003d; } } { bool L_10 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_11; L_11 = XmlConvert_ToString_mC3ADC626DDAB44248A868B0563DF5E9D636625B2(L_10, /*hidden argument*/NULL); return L_11; } IL_003d: { bool L_12 = ___value0; bool L_13 = L_12; RuntimeObject * L_14 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_13); Type_t * L_15 = ___destinationType1; RuntimeObject * L_16; L_16 = XmlUntypedConverter_ChangeTypeWildcardSource_m0997A4ACCA87E6BCD2BCCEAA0582A1CD49427743(__this, L_14, L_15, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_16; } } // System.Object System.Xml.Schema.XmlUntypedConverter::ChangeType(System.DateTime,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlUntypedConverter_ChangeType_m1B093CA85C5AF6C02C742E3F7D0344DED498A4E1 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ChangeType_m1B093CA85C5AF6C02C742E3F7D0344DED498A4E1_RuntimeMethod_var))); } IL_0014: { Type_t * L_3 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ObjectType_14(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0029; } } { Type_t * L_6; L_6 = XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline(__this, /*hidden argument*/NULL); ___destinationType1 = L_6; } IL_0029: { Type_t * L_7 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_8 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9; L_9 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_003d; } } { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_10 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); String_t* L_11; L_11 = XmlBaseConverter_DateTimeToString_mA5CA6F4539126A06CC75688D89995886C9758AE3(L_10, /*hidden argument*/NULL); return L_11; } IL_003d: { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_12 = ___value0; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_13 = L_12; RuntimeObject * L_14 = Box(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var, &L_13); Type_t * L_15 = ___destinationType1; RuntimeObject * L_16; L_16 = XmlUntypedConverter_ChangeTypeWildcardSource_m0997A4ACCA87E6BCD2BCCEAA0582A1CD49427743(__this, L_14, L_15, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_16; } } // System.Object System.Xml.Schema.XmlUntypedConverter::ChangeType(System.Decimal,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlUntypedConverter_ChangeType_m849DED15CDC8993D37CE9F1B52876CD557375DF6 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___value0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ChangeType_m849DED15CDC8993D37CE9F1B52876CD557375DF6_RuntimeMethod_var))); } IL_0014: { Type_t * L_3 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ObjectType_14(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0029; } } { Type_t * L_6; L_6 = XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline(__this, /*hidden argument*/NULL); ___destinationType1 = L_6; } IL_0029: { Type_t * L_7 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_8 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9; L_9 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_003d; } } { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_10 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_11; L_11 = XmlConvert_ToString_m55749B7D5111B0C5B22E39B0B72390EB68991C8F(L_10, /*hidden argument*/NULL); return L_11; } IL_003d: { Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_12 = ___value0; Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_13 = L_12; RuntimeObject * L_14 = Box(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var, &L_13); Type_t * L_15 = ___destinationType1; RuntimeObject * L_16; L_16 = XmlUntypedConverter_ChangeTypeWildcardSource_m0997A4ACCA87E6BCD2BCCEAA0582A1CD49427743(__this, L_14, L_15, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_16; } } // System.Object System.Xml.Schema.XmlUntypedConverter::ChangeType(System.Double,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlUntypedConverter_ChangeType_mFDDBB1D5311642999916B9485E39B40A710F4C55 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, double ___value0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ChangeType_mFDDBB1D5311642999916B9485E39B40A710F4C55_RuntimeMethod_var))); } IL_0014: { Type_t * L_3 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ObjectType_14(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0029; } } { Type_t * L_6; L_6 = XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline(__this, /*hidden argument*/NULL); ___destinationType1 = L_6; } IL_0029: { Type_t * L_7 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_8 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9; L_9 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_003e; } } { double L_10 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_11; L_11 = XmlConvert_ToString_mFA18F44AD286528699A2C1FC6579F4DB0B6F53A5(((double)((double)L_10)), /*hidden argument*/NULL); return L_11; } IL_003e: { double L_12 = ___value0; double L_13 = L_12; RuntimeObject * L_14 = Box(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var, &L_13); Type_t * L_15 = ___destinationType1; RuntimeObject * L_16; L_16 = XmlUntypedConverter_ChangeTypeWildcardSource_m0997A4ACCA87E6BCD2BCCEAA0582A1CD49427743(__this, L_14, L_15, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_16; } } // System.Object System.Xml.Schema.XmlUntypedConverter::ChangeType(System.Int32,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlUntypedConverter_ChangeType_mBF59D67978F6CDFDC60244E8017E585079D7D05E (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, int32_t ___value0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ChangeType_mBF59D67978F6CDFDC60244E8017E585079D7D05E_RuntimeMethod_var))); } IL_0014: { Type_t * L_3 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ObjectType_14(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0029; } } { Type_t * L_6; L_6 = XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline(__this, /*hidden argument*/NULL); ___destinationType1 = L_6; } IL_0029: { Type_t * L_7 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_8 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9; L_9 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_003d; } } { int32_t L_10 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_11; L_11 = XmlConvert_ToString_mB1817B679C751F091D03EF8627AFF6CDEB507254(L_10, /*hidden argument*/NULL); return L_11; } IL_003d: { int32_t L_12 = ___value0; int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); Type_t * L_15 = ___destinationType1; RuntimeObject * L_16; L_16 = XmlUntypedConverter_ChangeTypeWildcardSource_m0997A4ACCA87E6BCD2BCCEAA0582A1CD49427743(__this, L_14, L_15, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_16; } } // System.Object System.Xml.Schema.XmlUntypedConverter::ChangeType(System.Int64,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlUntypedConverter_ChangeType_mDDC95960433608433E4F04CF2C9B62BACEF34367 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, int64_t ___value0, Type_t * ___destinationType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_2 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ChangeType_mDDC95960433608433E4F04CF2C9B62BACEF34367_RuntimeMethod_var))); } IL_0014: { Type_t * L_3 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ObjectType_14(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0029; } } { Type_t * L_6; L_6 = XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline(__this, /*hidden argument*/NULL); ___destinationType1 = L_6; } IL_0029: { Type_t * L_7 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_8 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9; L_9 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_003d; } } { int64_t L_10 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_11; L_11 = XmlConvert_ToString_m40C359814CAB573400B51484C02BF1F745377F7C(L_10, /*hidden argument*/NULL); return L_11; } IL_003d: { int64_t L_12 = ___value0; int64_t L_13 = L_12; RuntimeObject * L_14 = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &L_13); Type_t * L_15 = ___destinationType1; RuntimeObject * L_16; L_16 = XmlUntypedConverter_ChangeTypeWildcardSource_m0997A4ACCA87E6BCD2BCCEAA0582A1CD49427743(__this, L_14, L_15, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_16; } } // System.Object System.Xml.Schema.XmlUntypedConverter::ChangeType(System.String,System.Type,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlUntypedConverter_ChangeType_mF3D4C9048A30BB6B7E2C9BE7013C7FEC353D7CB1 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, String_t* ___value0, Type_t * ___destinationType1, RuntimeObject* ___nsResolver2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ChangeType_mF3D4C9048A30BB6B7E2C9BE7013C7FEC353D7CB1_RuntimeMethod_var))); } IL_000e: { Type_t * L_2 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_3; L_3 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_2, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_3) { goto IL_0022; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_4 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ChangeType_mF3D4C9048A30BB6B7E2C9BE7013C7FEC353D7CB1_RuntimeMethod_var))); } IL_0022: { Type_t * L_5 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_6 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ObjectType_14(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_7; L_7 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_5, L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_0037; } } { Type_t * L_8; L_8 = XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline(__this, /*hidden argument*/NULL); ___destinationType1 = L_8; } IL_0037: { Type_t * L_9 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_10 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_BooleanType_26(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_11; L_11 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0050; } } { String_t* L_12 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); bool L_13; L_13 = XmlConvert_ToBoolean_mECF9DFB8C60A88BCA1EDCA69B1D6C87F2F129F73(L_12, /*hidden argument*/NULL); bool L_14 = L_13; RuntimeObject * L_15 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_14); return L_15; } IL_0050: { Type_t * L_16 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_17 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ByteType_15(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_18; L_18 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_16, L_17, /*hidden argument*/NULL); if (!L_18) { goto IL_006e; } } { String_t* L_19 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int32_t L_20; L_20 = XmlConvert_ToInt32_m84811669F130BF79DE56045FA574E87CF4BDC7C7(L_19, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); uint8_t L_21; L_21 = XmlBaseConverter_Int32ToByte_mEC5B44F18543F9996EA7F7072346BBB96A86EE3A(L_20, /*hidden argument*/NULL); uint8_t L_22 = L_21; RuntimeObject * L_23 = Box(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var, &L_22); return L_23; } IL_006e: { Type_t * L_24 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_25 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ByteArrayType_27(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_26; L_26 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_24, L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_0082; } } { String_t* L_27 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_28; L_28 = XmlBaseConverter_StringToBase64Binary_mCCCBA9FC9D7E0A86960753D43C4EA99E53566EF8(L_27, /*hidden argument*/NULL); return (RuntimeObject *)L_28; } IL_0082: { Type_t * L_29 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_30 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeType_24(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_31; L_31 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_29, L_30, /*hidden argument*/NULL); if (!L_31) { goto IL_009b; } } { String_t* L_32 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_33; L_33 = XmlBaseConverter_UntypedAtomicToDateTime_mB558915768336FAD70FB9F79312F006324844FD9(L_32, /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_34 = L_33; RuntimeObject * L_35 = Box(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var, &L_34); return L_35; } IL_009b: { Type_t * L_36 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_37 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeOffsetType_25(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_38; L_38 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_36, L_37, /*hidden argument*/NULL); if (!L_38) { goto IL_00b4; } } { String_t* L_39 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_40; L_40 = XmlBaseConverter_UntypedAtomicToDateTimeOffset_mF2EBD6A497F70013AFDBC362C41C7FB4F016A5B2(L_39, /*hidden argument*/NULL); DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_41 = L_40; RuntimeObject * L_42 = Box(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var, &L_41); return L_42; } IL_00b4: { Type_t * L_43 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_44 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DecimalType_9(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_45; L_45 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_43, L_44, /*hidden argument*/NULL); if (!L_45) { goto IL_00cd; } } { String_t* L_46 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_47; L_47 = XmlConvert_ToDecimal_m927342742687C6D8947928EB67FD4751149007D2(L_46, /*hidden argument*/NULL); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_48 = L_47; RuntimeObject * L_49 = Box(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var, &L_48); return L_49; } IL_00cd: { Type_t * L_50 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_51 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DoubleType_22(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_52; L_52 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_50, L_51, /*hidden argument*/NULL); if (!L_52) { goto IL_00e6; } } { String_t* L_53 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); double L_54; L_54 = XmlConvert_ToDouble_mF7E9690E7C181E6A7227DB85229167C13E883E95(L_53, /*hidden argument*/NULL); double L_55 = L_54; RuntimeObject * L_56 = Box(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var, &L_55); return L_56; } IL_00e6: { Type_t * L_57 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_58 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int16Type_16(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_59; L_59 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_57, L_58, /*hidden argument*/NULL); if (!L_59) { goto IL_0104; } } { String_t* L_60 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int32_t L_61; L_61 = XmlConvert_ToInt32_m84811669F130BF79DE56045FA574E87CF4BDC7C7(L_60, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); int16_t L_62; L_62 = XmlBaseConverter_Int32ToInt16_mA713BB9EEA6547153CB68C76EF3834F9E96390F1(L_61, /*hidden argument*/NULL); int16_t L_63 = L_62; RuntimeObject * L_64 = Box(Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var, &L_63); return L_64; } IL_0104: { Type_t * L_65 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_66 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int32Type_10(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_67; L_67 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_65, L_66, /*hidden argument*/NULL); if (!L_67) { goto IL_011d; } } { String_t* L_68 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int32_t L_69; L_69 = XmlConvert_ToInt32_m84811669F130BF79DE56045FA574E87CF4BDC7C7(L_68, /*hidden argument*/NULL); int32_t L_70 = L_69; RuntimeObject * L_71 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_70); return L_71; } IL_011d: { Type_t * L_72 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_73 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int64Type_11(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_74; L_74 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_72, L_73, /*hidden argument*/NULL); if (!L_74) { goto IL_0136; } } { String_t* L_75 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int64_t L_76; L_76 = XmlConvert_ToInt64_m0B22AC6F9DAF2F3C1DA04647121C4F3BFCD2DA3A(L_75, /*hidden argument*/NULL); int64_t L_77 = L_76; RuntimeObject * L_78 = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &L_77); return L_78; } IL_0136: { Type_t * L_79 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_80 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_SByteType_17(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_81; L_81 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_79, L_80, /*hidden argument*/NULL); if (!L_81) { goto IL_0154; } } { String_t* L_82 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int32_t L_83; L_83 = XmlConvert_ToInt32_m84811669F130BF79DE56045FA574E87CF4BDC7C7(L_82, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); int8_t L_84; L_84 = XmlBaseConverter_Int32ToSByte_mB3E8C72064F9E1A16A6DA69B262C53C9BE60B6E7(L_83, /*hidden argument*/NULL); int8_t L_85 = L_84; RuntimeObject * L_86 = Box(SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_il2cpp_TypeInfo_var, &L_85); return L_86; } IL_0154: { Type_t * L_87 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_88 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_SingleType_23(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_89; L_89 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_87, L_88, /*hidden argument*/NULL); if (!L_89) { goto IL_016d; } } { String_t* L_90 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); float L_91; L_91 = XmlConvert_ToSingle_mB7AA6B41029E834E22E8F08FA2668F03D0984793(L_90, /*hidden argument*/NULL); float L_92 = L_91; RuntimeObject * L_93 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_92); return L_93; } IL_016d: { Type_t * L_94 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_95 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_TimeSpanType_30(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_96; L_96 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_94, L_95, /*hidden argument*/NULL); if (!L_96) { goto IL_0186; } } { String_t* L_97 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_98; L_98 = XmlBaseConverter_StringToDuration_m252592A9442B15E00691A93CD2EDAEB294168507(L_97, /*hidden argument*/NULL); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_99 = L_98; RuntimeObject * L_100 = Box(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var, &L_99); return L_100; } IL_0186: { Type_t * L_101 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_102 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UInt16Type_18(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_103; L_103 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_101, L_102, /*hidden argument*/NULL); if (!L_103) { goto IL_01a4; } } { String_t* L_104 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int32_t L_105; L_105 = XmlConvert_ToInt32_m84811669F130BF79DE56045FA574E87CF4BDC7C7(L_104, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); uint16_t L_106; L_106 = XmlBaseConverter_Int32ToUInt16_mAF53764E8E5919438C02D6A732F4614286742F65(L_105, /*hidden argument*/NULL); uint16_t L_107 = L_106; RuntimeObject * L_108 = Box(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, &L_107); return L_108; } IL_01a4: { Type_t * L_109 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_110 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UInt32Type_19(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_111; L_111 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_109, L_110, /*hidden argument*/NULL); if (!L_111) { goto IL_01c2; } } { String_t* L_112 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int64_t L_113; L_113 = XmlConvert_ToInt64_m0B22AC6F9DAF2F3C1DA04647121C4F3BFCD2DA3A(L_112, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); uint32_t L_114; L_114 = XmlBaseConverter_Int64ToUInt32_m320A72164309688C9D131AB70F810F5DC08EA4A3(L_113, /*hidden argument*/NULL); uint32_t L_115 = L_114; RuntimeObject * L_116 = Box(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var, &L_115); return L_116; } IL_01c2: { Type_t * L_117 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_118 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UInt64Type_20(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_119; L_119 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_117, L_118, /*hidden argument*/NULL); if (!L_119) { goto IL_01e0; } } { String_t* L_120 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_121; L_121 = XmlConvert_ToDecimal_m927342742687C6D8947928EB67FD4751149007D2(L_120, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); uint64_t L_122; L_122 = XmlBaseConverter_DecimalToUInt64_m333E4C11DFB15FD0E9AC1CE10E0417D99FA1AC7B(L_121, /*hidden argument*/NULL); uint64_t L_123 = L_122; RuntimeObject * L_124 = Box(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var, &L_123); return L_124; } IL_01e0: { Type_t * L_125 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_126 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UriType_29(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_127; L_127 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_125, L_126, /*hidden argument*/NULL); if (!L_127) { goto IL_01f4; } } { String_t* L_128 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_129; L_129 = XmlConvert_ToUri_m70145E949FD362A0D446630B25B00B1D000786AE(L_128, /*hidden argument*/NULL); return L_129; } IL_01f4: { Type_t * L_130 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_131 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_132; L_132 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_130, L_131, /*hidden argument*/NULL); if (!L_132) { goto IL_020e; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_133; L_133 = XmlBaseConverter_get_SchemaType_mD3A5F0E824179488B3DF92C29A26D06956B869FE_inline(__this, /*hidden argument*/NULL); String_t* L_134 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_135 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m10A1B0B8D03D6C25152C24904A561B1C20243863(L_135, L_133, L_134, /*hidden argument*/NULL); return L_135; } IL_020e: { Type_t * L_136 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_137 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlQualifiedNameType_28(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_138; L_138 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_136, L_137, /*hidden argument*/NULL); if (!L_138) { goto IL_0223; } } { String_t* L_139 = ___value0; RuntimeObject* L_140 = ___nsResolver2; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_141; L_141 = XmlBaseConverter_StringToQName_mB62CC01A6A545A469104BC75778060A4BA3007CB(L_139, L_140, /*hidden argument*/NULL); return L_141; } IL_0223: { Type_t * L_142 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_143 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XPathItemType_21(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_144; L_144 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_142, L_143, /*hidden argument*/NULL); if (!L_144) { goto IL_023d; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_145; L_145 = XmlBaseConverter_get_SchemaType_mD3A5F0E824179488B3DF92C29A26D06956B869FE_inline(__this, /*hidden argument*/NULL); String_t* L_146 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_147 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m10A1B0B8D03D6C25152C24904A561B1C20243863(L_147, L_145, L_146, /*hidden argument*/NULL); return L_147; } IL_023d: { Type_t * L_148 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_149 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_150; L_150 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_148, L_149, /*hidden argument*/NULL); if (!L_150) { goto IL_024c; } } { String_t* L_151 = ___value0; return L_151; } IL_024c: { String_t* L_152 = ___value0; Type_t * L_153 = ___destinationType1; RuntimeObject* L_154 = ___nsResolver2; RuntimeObject * L_155; L_155 = XmlUntypedConverter_ChangeTypeWildcardSource_m0997A4ACCA87E6BCD2BCCEAA0582A1CD49427743(__this, L_152, L_153, L_154, /*hidden argument*/NULL); return L_155; } } // System.Object System.Xml.Schema.XmlUntypedConverter::ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlUntypedConverter_ChangeType_m985FFCB97915C4E1853202249949D8CDBD9C0EB0 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, RuntimeObject* ___nsResolver2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ChangeType_m985FFCB97915C4E1853202249949D8CDBD9C0EB0_RuntimeMethod_var))); } IL_000e: { Type_t * L_2 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_3; L_3 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_2, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_3) { goto IL_0022; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_4 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ChangeType_m985FFCB97915C4E1853202249949D8CDBD9C0EB0_RuntimeMethod_var))); } IL_0022: { RuntimeObject * L_5 = ___value0; NullCheck(L_5); Type_t * L_6; L_6 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_5, /*hidden argument*/NULL); V_0 = L_6; Type_t * L_7 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_8 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ObjectType_14(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9; L_9 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_003e; } } { Type_t * L_10; L_10 = XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline(__this, /*hidden argument*/NULL); ___destinationType1 = L_10; } IL_003e: { Type_t * L_11 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_12 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_BooleanType_26(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_13; L_13 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0069; } } { Type_t * L_14 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_15 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_16; L_16 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_14, L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_0069; } } { RuntimeObject * L_17 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); bool L_18; L_18 = XmlConvert_ToBoolean_mECF9DFB8C60A88BCA1EDCA69B1D6C87F2F129F73(((String_t*)CastclassSealed((RuntimeObject*)L_17, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); bool L_19 = L_18; RuntimeObject * L_20 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_19); return L_20; } IL_0069: { Type_t * L_21 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_22 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ByteType_15(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_23; L_23 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_21, L_22, /*hidden argument*/NULL); if (!L_23) { goto IL_0099; } } { Type_t * L_24 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_25 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_26; L_26 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_24, L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_0099; } } { RuntimeObject * L_27 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int32_t L_28; L_28 = XmlConvert_ToInt32_m84811669F130BF79DE56045FA574E87CF4BDC7C7(((String_t*)CastclassSealed((RuntimeObject*)L_27, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); uint8_t L_29; L_29 = XmlBaseConverter_Int32ToByte_mEC5B44F18543F9996EA7F7072346BBB96A86EE3A(L_28, /*hidden argument*/NULL); uint8_t L_30 = L_29; RuntimeObject * L_31 = Box(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var, &L_30); return L_31; } IL_0099: { Type_t * L_32 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_33 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ByteArrayType_27(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_34; L_34 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_32, L_33, /*hidden argument*/NULL); if (!L_34) { goto IL_00bf; } } { Type_t * L_35 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_36 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_37; L_37 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_35, L_36, /*hidden argument*/NULL); if (!L_37) { goto IL_00bf; } } { RuntimeObject * L_38 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_39; L_39 = XmlBaseConverter_StringToBase64Binary_mCCCBA9FC9D7E0A86960753D43C4EA99E53566EF8(((String_t*)CastclassSealed((RuntimeObject*)L_38, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return (RuntimeObject *)L_39; } IL_00bf: { Type_t * L_40 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_41 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeType_24(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_42; L_42 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_40, L_41, /*hidden argument*/NULL); if (!L_42) { goto IL_00ea; } } { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_44 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_45; L_45 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_43, L_44, /*hidden argument*/NULL); if (!L_45) { goto IL_00ea; } } { RuntimeObject * L_46 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_47; L_47 = XmlBaseConverter_UntypedAtomicToDateTime_mB558915768336FAD70FB9F79312F006324844FD9(((String_t*)CastclassSealed((RuntimeObject*)L_46, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_48 = L_47; RuntimeObject * L_49 = Box(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var, &L_48); return L_49; } IL_00ea: { Type_t * L_50 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_51 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeOffsetType_25(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_52; L_52 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_50, L_51, /*hidden argument*/NULL); if (!L_52) { goto IL_0115; } } { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_54 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_55; L_55 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_53, L_54, /*hidden argument*/NULL); if (!L_55) { goto IL_0115; } } { RuntimeObject * L_56 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_57; L_57 = XmlBaseConverter_UntypedAtomicToDateTimeOffset_mF2EBD6A497F70013AFDBC362C41C7FB4F016A5B2(((String_t*)CastclassSealed((RuntimeObject*)L_56, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_58 = L_57; RuntimeObject * L_59 = Box(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_il2cpp_TypeInfo_var, &L_58); return L_59; } IL_0115: { Type_t * L_60 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_61 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DecimalType_9(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_62; L_62 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_60, L_61, /*hidden argument*/NULL); if (!L_62) { goto IL_0140; } } { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_64 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_65; L_65 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_63, L_64, /*hidden argument*/NULL); if (!L_65) { goto IL_0140; } } { RuntimeObject * L_66 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_67; L_67 = XmlConvert_ToDecimal_m927342742687C6D8947928EB67FD4751149007D2(((String_t*)CastclassSealed((RuntimeObject*)L_66, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_68 = L_67; RuntimeObject * L_69 = Box(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var, &L_68); return L_69; } IL_0140: { Type_t * L_70 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_71 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DoubleType_22(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_72; L_72 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_70, L_71, /*hidden argument*/NULL); if (!L_72) { goto IL_016b; } } { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_74 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_75; L_75 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_73, L_74, /*hidden argument*/NULL); if (!L_75) { goto IL_016b; } } { RuntimeObject * L_76 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); double L_77; L_77 = XmlConvert_ToDouble_mF7E9690E7C181E6A7227DB85229167C13E883E95(((String_t*)CastclassSealed((RuntimeObject*)L_76, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); double L_78 = L_77; RuntimeObject * L_79 = Box(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var, &L_78); return L_79; } IL_016b: { Type_t * L_80 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_81 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int16Type_16(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_82; L_82 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_80, L_81, /*hidden argument*/NULL); if (!L_82) { goto IL_019b; } } { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_84 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_85; L_85 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_83, L_84, /*hidden argument*/NULL); if (!L_85) { goto IL_019b; } } { RuntimeObject * L_86 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int32_t L_87; L_87 = XmlConvert_ToInt32_m84811669F130BF79DE56045FA574E87CF4BDC7C7(((String_t*)CastclassSealed((RuntimeObject*)L_86, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); int16_t L_88; L_88 = XmlBaseConverter_Int32ToInt16_mA713BB9EEA6547153CB68C76EF3834F9E96390F1(L_87, /*hidden argument*/NULL); int16_t L_89 = L_88; RuntimeObject * L_90 = Box(Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var, &L_89); return L_90; } IL_019b: { Type_t * L_91 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_92 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int32Type_10(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_93; L_93 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_91, L_92, /*hidden argument*/NULL); if (!L_93) { goto IL_01c6; } } { Type_t * L_94 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_95 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_96; L_96 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_94, L_95, /*hidden argument*/NULL); if (!L_96) { goto IL_01c6; } } { RuntimeObject * L_97 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int32_t L_98; L_98 = XmlConvert_ToInt32_m84811669F130BF79DE56045FA574E87CF4BDC7C7(((String_t*)CastclassSealed((RuntimeObject*)L_97, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); int32_t L_99 = L_98; RuntimeObject * L_100 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_99); return L_100; } IL_01c6: { Type_t * L_101 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_102 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int64Type_11(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_103; L_103 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_101, L_102, /*hidden argument*/NULL); if (!L_103) { goto IL_01f1; } } { Type_t * L_104 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_105 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_106; L_106 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_104, L_105, /*hidden argument*/NULL); if (!L_106) { goto IL_01f1; } } { RuntimeObject * L_107 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int64_t L_108; L_108 = XmlConvert_ToInt64_m0B22AC6F9DAF2F3C1DA04647121C4F3BFCD2DA3A(((String_t*)CastclassSealed((RuntimeObject*)L_107, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); int64_t L_109 = L_108; RuntimeObject * L_110 = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &L_109); return L_110; } IL_01f1: { Type_t * L_111 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_112 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_SByteType_17(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_113; L_113 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_111, L_112, /*hidden argument*/NULL); if (!L_113) { goto IL_0221; } } { Type_t * L_114 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_115 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_116; L_116 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_114, L_115, /*hidden argument*/NULL); if (!L_116) { goto IL_0221; } } { RuntimeObject * L_117 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int32_t L_118; L_118 = XmlConvert_ToInt32_m84811669F130BF79DE56045FA574E87CF4BDC7C7(((String_t*)CastclassSealed((RuntimeObject*)L_117, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); int8_t L_119; L_119 = XmlBaseConverter_Int32ToSByte_mB3E8C72064F9E1A16A6DA69B262C53C9BE60B6E7(L_118, /*hidden argument*/NULL); int8_t L_120 = L_119; RuntimeObject * L_121 = Box(SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_il2cpp_TypeInfo_var, &L_120); return L_121; } IL_0221: { Type_t * L_122 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_123 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_SingleType_23(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_124; L_124 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_122, L_123, /*hidden argument*/NULL); if (!L_124) { goto IL_024c; } } { Type_t * L_125 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_126 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_127; L_127 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_125, L_126, /*hidden argument*/NULL); if (!L_127) { goto IL_024c; } } { RuntimeObject * L_128 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); float L_129; L_129 = XmlConvert_ToSingle_mB7AA6B41029E834E22E8F08FA2668F03D0984793(((String_t*)CastclassSealed((RuntimeObject*)L_128, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); float L_130 = L_129; RuntimeObject * L_131 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_130); return L_131; } IL_024c: { Type_t * L_132 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_133 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_TimeSpanType_30(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_134; L_134 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_132, L_133, /*hidden argument*/NULL); if (!L_134) { goto IL_0277; } } { Type_t * L_135 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_136 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_137; L_137 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_135, L_136, /*hidden argument*/NULL); if (!L_137) { goto IL_0277; } } { RuntimeObject * L_138 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_139; L_139 = XmlBaseConverter_StringToDuration_m252592A9442B15E00691A93CD2EDAEB294168507(((String_t*)CastclassSealed((RuntimeObject*)L_138, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_140 = L_139; RuntimeObject * L_141 = Box(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var, &L_140); return L_141; } IL_0277: { Type_t * L_142 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_143 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UInt16Type_18(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_144; L_144 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_142, L_143, /*hidden argument*/NULL); if (!L_144) { goto IL_02a7; } } { Type_t * L_145 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_146 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_147; L_147 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_145, L_146, /*hidden argument*/NULL); if (!L_147) { goto IL_02a7; } } { RuntimeObject * L_148 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int32_t L_149; L_149 = XmlConvert_ToInt32_m84811669F130BF79DE56045FA574E87CF4BDC7C7(((String_t*)CastclassSealed((RuntimeObject*)L_148, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); uint16_t L_150; L_150 = XmlBaseConverter_Int32ToUInt16_mAF53764E8E5919438C02D6A732F4614286742F65(L_149, /*hidden argument*/NULL); uint16_t L_151 = L_150; RuntimeObject * L_152 = Box(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, &L_151); return L_152; } IL_02a7: { Type_t * L_153 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_154 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UInt32Type_19(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_155; L_155 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_153, L_154, /*hidden argument*/NULL); if (!L_155) { goto IL_02d7; } } { Type_t * L_156 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_157 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_158; L_158 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_156, L_157, /*hidden argument*/NULL); if (!L_158) { goto IL_02d7; } } { RuntimeObject * L_159 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); int64_t L_160; L_160 = XmlConvert_ToInt64_m0B22AC6F9DAF2F3C1DA04647121C4F3BFCD2DA3A(((String_t*)CastclassSealed((RuntimeObject*)L_159, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); uint32_t L_161; L_161 = XmlBaseConverter_Int64ToUInt32_m320A72164309688C9D131AB70F810F5DC08EA4A3(L_160, /*hidden argument*/NULL); uint32_t L_162 = L_161; RuntimeObject * L_163 = Box(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var, &L_162); return L_163; } IL_02d7: { Type_t * L_164 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_165 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UInt64Type_20(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_166; L_166 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_164, L_165, /*hidden argument*/NULL); if (!L_166) { goto IL_0307; } } { Type_t * L_167 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_168 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_169; L_169 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_167, L_168, /*hidden argument*/NULL); if (!L_169) { goto IL_0307; } } { RuntimeObject * L_170 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_171; L_171 = XmlConvert_ToDecimal_m927342742687C6D8947928EB67FD4751149007D2(((String_t*)CastclassSealed((RuntimeObject*)L_170, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); uint64_t L_172; L_172 = XmlBaseConverter_DecimalToUInt64_m333E4C11DFB15FD0E9AC1CE10E0417D99FA1AC7B(L_171, /*hidden argument*/NULL); uint64_t L_173 = L_172; RuntimeObject * L_174 = Box(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var, &L_173); return L_174; } IL_0307: { Type_t * L_175 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_176 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UriType_29(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_177; L_177 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_175, L_176, /*hidden argument*/NULL); if (!L_177) { goto IL_032d; } } { Type_t * L_178 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_179 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_180; L_180 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_178, L_179, /*hidden argument*/NULL); if (!L_180) { goto IL_032d; } } { RuntimeObject * L_181 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_182; L_182 = XmlConvert_ToUri_m70145E949FD362A0D446630B25B00B1D000786AE(((String_t*)CastclassSealed((RuntimeObject*)L_181, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_182; } IL_032d: { Type_t * L_183 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_184 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_185; L_185 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_183, L_184, /*hidden argument*/NULL); if (!L_185) { goto IL_036d; } } { Type_t * L_186 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_187 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_188; L_188 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_186, L_187, /*hidden argument*/NULL); if (!L_188) { goto IL_0359; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_189; L_189 = XmlBaseConverter_get_SchemaType_mD3A5F0E824179488B3DF92C29A26D06956B869FE_inline(__this, /*hidden argument*/NULL); RuntimeObject * L_190 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_191 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m10A1B0B8D03D6C25152C24904A561B1C20243863(L_191, L_189, ((String_t*)CastclassSealed((RuntimeObject*)L_190, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_191; } IL_0359: { Type_t * L_192 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_193 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_194; L_194 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_192, L_193, /*hidden argument*/NULL); if (!L_194) { goto IL_036d; } } { RuntimeObject * L_195 = ___value0; return ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_195, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var)); } IL_036d: { Type_t * L_196 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_197 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlQualifiedNameType_28(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_198; L_198 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_196, L_197, /*hidden argument*/NULL); if (!L_198) { goto IL_0394; } } { Type_t * L_199 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_200 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_201; L_201 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_199, L_200, /*hidden argument*/NULL); if (!L_201) { goto IL_0394; } } { RuntimeObject * L_202 = ___value0; RuntimeObject* L_203 = ___nsResolver2; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * L_204; L_204 = XmlBaseConverter_StringToQName_mB62CC01A6A545A469104BC75778060A4BA3007CB(((String_t*)CastclassSealed((RuntimeObject*)L_202, String_t_il2cpp_TypeInfo_var)), L_203, /*hidden argument*/NULL); return L_204; } IL_0394: { Type_t * L_205 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_206 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XPathItemType_21(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_207; L_207 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_205, L_206, /*hidden argument*/NULL); if (!L_207) { goto IL_03d4; } } { Type_t * L_208 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_209 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_210; L_210 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_208, L_209, /*hidden argument*/NULL); if (!L_210) { goto IL_03c0; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_211; L_211 = XmlBaseConverter_get_SchemaType_mD3A5F0E824179488B3DF92C29A26D06956B869FE_inline(__this, /*hidden argument*/NULL); RuntimeObject * L_212 = ___value0; XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_213 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m10A1B0B8D03D6C25152C24904A561B1C20243863(L_213, L_211, ((String_t*)CastclassSealed((RuntimeObject*)L_212, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_213; } IL_03c0: { Type_t * L_214 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_215 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_216; L_216 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_214, L_215, /*hidden argument*/NULL); if (!L_216) { goto IL_03d4; } } { RuntimeObject * L_217 = ___value0; return ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_217, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var)); } IL_03d4: { Type_t * L_218 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_219 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_220; L_220 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_218, L_219, /*hidden argument*/NULL); if (!L_220) { goto IL_03ea; } } { RuntimeObject * L_221 = ___value0; RuntimeObject* L_222 = ___nsResolver2; String_t* L_223; L_223 = VirtFuncInvoker2< String_t*, RuntimeObject *, RuntimeObject* >::Invoke(52 /* System.String System.Xml.Schema.XmlValueConverter::ToString(System.Object,System.Xml.IXmlNamespaceResolver) */, __this, L_221, L_222); return L_223; } IL_03ea: { Type_t * L_224 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_225 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_226; L_226 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_224, L_225, /*hidden argument*/NULL); if (!L_226) { goto IL_040b; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_227; L_227 = XmlBaseConverter_get_SchemaType_mD3A5F0E824179488B3DF92C29A26D06956B869FE_inline(__this, /*hidden argument*/NULL); RuntimeObject * L_228 = ___value0; RuntimeObject* L_229 = ___nsResolver2; String_t* L_230; L_230 = VirtFuncInvoker2< String_t*, RuntimeObject *, RuntimeObject* >::Invoke(52 /* System.String System.Xml.Schema.XmlValueConverter::ToString(System.Object,System.Xml.IXmlNamespaceResolver) */, __this, L_228, L_229); XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_231 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m10A1B0B8D03D6C25152C24904A561B1C20243863(L_231, L_227, L_230, /*hidden argument*/NULL); return L_231; } IL_040b: { Type_t * L_232 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_233 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XPathItemType_21(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_234; L_234 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_232, L_233, /*hidden argument*/NULL); if (!L_234) { goto IL_042c; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_235; L_235 = XmlBaseConverter_get_SchemaType_mD3A5F0E824179488B3DF92C29A26D06956B869FE_inline(__this, /*hidden argument*/NULL); RuntimeObject * L_236 = ___value0; RuntimeObject* L_237 = ___nsResolver2; String_t* L_238; L_238 = VirtFuncInvoker2< String_t*, RuntimeObject *, RuntimeObject* >::Invoke(52 /* System.String System.Xml.Schema.XmlValueConverter::ToString(System.Object,System.Xml.IXmlNamespaceResolver) */, __this, L_236, L_237); XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_239 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m10A1B0B8D03D6C25152C24904A561B1C20243863(L_239, L_235, L_238, /*hidden argument*/NULL); return L_239; } IL_042c: { Type_t * L_240 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_241 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_242; L_242 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_240, L_241, /*hidden argument*/NULL); if (!L_242) { goto IL_0447; } } { RuntimeObject * L_243 = ___value0; Type_t * L_244 = ___destinationType1; RuntimeObject* L_245 = ___nsResolver2; NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_243, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); RuntimeObject * L_246; L_246 = VirtFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(14 /* System.Object System.Xml.XPath.XPathItem::ValueAs(System.Type,System.Xml.IXmlNamespaceResolver) */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_243, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var)), L_244, L_245); return L_246; } IL_0447: { RuntimeObject * L_247 = ___value0; Type_t * L_248 = ___destinationType1; RuntimeObject* L_249 = ___nsResolver2; RuntimeObject * L_250; L_250 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(62 /* System.Object System.Xml.Schema.XmlBaseConverter::ChangeListType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, __this, L_247, L_248, L_249); return L_250; } } // System.Object System.Xml.Schema.XmlUntypedConverter::ChangeTypeWildcardDestination(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlUntypedConverter_ChangeTypeWildcardDestination_mC288C4D35198B9E88DF96F1253A54D418E881E73 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, RuntimeObject* ___nsResolver2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; NullCheck(L_0); Type_t * L_1; L_1 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_2 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_3; L_3 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0020; } } { RuntimeObject * L_4 = ___value0; Type_t * L_5 = ___destinationType1; RuntimeObject* L_6 = ___nsResolver2; NullCheck(((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_4, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var))); RuntimeObject * L_7; L_7 = VirtFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(14 /* System.Object System.Xml.XPath.XPathItem::ValueAs(System.Type,System.Xml.IXmlNamespaceResolver) */, ((XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)CastclassSealed((RuntimeObject*)L_4, XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var)), L_5, L_6); return L_7; } IL_0020: { RuntimeObject * L_8 = ___value0; Type_t * L_9 = ___destinationType1; RuntimeObject* L_10 = ___nsResolver2; RuntimeObject * L_11; L_11 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(62 /* System.Object System.Xml.Schema.XmlBaseConverter::ChangeListType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, __this, L_8, L_9, L_10); return L_11; } } // System.Object System.Xml.Schema.XmlUntypedConverter::ChangeTypeWildcardSource(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlUntypedConverter_ChangeTypeWildcardSource_m0997A4ACCA87E6BCD2BCCEAA0582A1CD49427743 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, RuntimeObject* ___nsResolver2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_1 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlAtomicValueType_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_2; L_2 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0021; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_3; L_3 = XmlBaseConverter_get_SchemaType_mD3A5F0E824179488B3DF92C29A26D06956B869FE_inline(__this, /*hidden argument*/NULL); RuntimeObject * L_4 = ___value0; RuntimeObject* L_5 = ___nsResolver2; String_t* L_6; L_6 = VirtFuncInvoker2< String_t*, RuntimeObject *, RuntimeObject* >::Invoke(52 /* System.String System.Xml.Schema.XmlValueConverter::ToString(System.Object,System.Xml.IXmlNamespaceResolver) */, __this, L_4, L_5); XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_7 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m10A1B0B8D03D6C25152C24904A561B1C20243863(L_7, L_3, L_6, /*hidden argument*/NULL); return L_7; } IL_0021: { Type_t * L_8 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_9 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XPathItemType_21(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_10; L_10 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_8, L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0042; } } { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_11; L_11 = XmlBaseConverter_get_SchemaType_mD3A5F0E824179488B3DF92C29A26D06956B869FE_inline(__this, /*hidden argument*/NULL); RuntimeObject * L_12 = ___value0; RuntimeObject* L_13 = ___nsResolver2; String_t* L_14; L_14 = VirtFuncInvoker2< String_t*, RuntimeObject *, RuntimeObject* >::Invoke(52 /* System.String System.Xml.Schema.XmlValueConverter::ToString(System.Object,System.Xml.IXmlNamespaceResolver) */, __this, L_12, L_13); XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C * L_15 = (XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C *)il2cpp_codegen_object_new(XmlAtomicValue_t13A033451983767855DC016FCD9B64CBA9CC198C_il2cpp_TypeInfo_var); XmlAtomicValue__ctor_m10A1B0B8D03D6C25152C24904A561B1C20243863(L_15, L_11, L_14, /*hidden argument*/NULL); return L_15; } IL_0042: { RuntimeObject * L_16 = ___value0; Type_t * L_17 = ___destinationType1; RuntimeObject* L_18 = ___nsResolver2; RuntimeObject * L_19; L_19 = VirtFuncInvoker3< RuntimeObject *, RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(62 /* System.Object System.Xml.Schema.XmlBaseConverter::ChangeListType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) */, __this, L_16, L_17, L_18); return L_19; } } // System.Object System.Xml.Schema.XmlUntypedConverter::ChangeListType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlUntypedConverter_ChangeListType_m8A335168D10AE570DB4F6BF8C83D3EFCF0FAD4D8 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, RuntimeObject * ___value0, Type_t * ___destinationType1, RuntimeObject* ___nsResolver2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { RuntimeObject * L_0 = ___value0; NullCheck(L_0); Type_t * L_1; L_1 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_0, /*hidden argument*/NULL); V_0 = L_1; XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * L_2 = ((XmlListConverter_t58F692567B1B34BF5171B647F1BE66EC017D4F4D *)__this)->get_atomicConverter_32(); if (!L_2) { goto IL_0034; } } { bool L_3 = __this->get_allowListToList_33(); if (L_3) { goto IL_009f; } } { Type_t * L_4 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_5 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_6; L_6 = Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368(L_4, L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_009f; } } { Type_t * L_7 = ___destinationType1; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_8 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_StringType_12(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9; L_9 = Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368(L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_009f; } } IL_0034: { Type_t * L_10 = V_0; bool L_11; L_11 = XmlUntypedConverter_SupportsType_mB775768BC127D72D0A2B7B4A3D506961788E03A5(__this, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0065; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)2); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = L_12; String_t* L_14; L_14 = XmlBaseConverter_get_XmlTypeName_mB8B4B81BF250AB15E908A1FD1414B7261DE8F4D3(__this, /*hidden argument*/NULL); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_14); (L_13)->SetAt(static_cast(0), (RuntimeObject *)L_14); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_15 = L_13; Type_t * L_16 = V_0; NullCheck(L_16); String_t* L_17; L_17 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_16); NullCheck(L_15); ArrayElementTypeCheck (L_15, L_17); (L_15)->SetAt(static_cast(1), (RuntimeObject *)L_17); String_t* L_18; L_18 = Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE1E0D4973E26B80B96256B01F0199BB2484B27E0)), L_15, /*hidden argument*/NULL); InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * L_19 = (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var))); InvalidCastException__ctor_m50103CBF0C211B93BF46697875413A10B5A5C5A3(L_19, L_18, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ChangeListType_m8A335168D10AE570DB4F6BF8C83D3EFCF0FAD4D8_RuntimeMethod_var))); } IL_0065: { Type_t * L_20 = ___destinationType1; bool L_21; L_21 = XmlUntypedConverter_SupportsType_mB775768BC127D72D0A2B7B4A3D506961788E03A5(__this, L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_0096; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_22 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)2); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = L_22; String_t* L_24; L_24 = XmlBaseConverter_get_XmlTypeName_mB8B4B81BF250AB15E908A1FD1414B7261DE8F4D3(__this, /*hidden argument*/NULL); NullCheck(L_23); ArrayElementTypeCheck (L_23, L_24); (L_23)->SetAt(static_cast(0), (RuntimeObject *)L_24); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = L_23; Type_t * L_26 = ___destinationType1; NullCheck(L_26); String_t* L_27; L_27 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_26); NullCheck(L_25); ArrayElementTypeCheck (L_25, L_27); (L_25)->SetAt(static_cast(1), (RuntimeObject *)L_27); String_t* L_28; L_28 = Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC4FEF05AC2AE7B117256FA840859B8790DEFE62B)), L_25, /*hidden argument*/NULL); InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * L_29 = (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var))); InvalidCastException__ctor_m50103CBF0C211B93BF46697875413A10B5A5C5A3(L_29, L_28, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ChangeListType_m8A335168D10AE570DB4F6BF8C83D3EFCF0FAD4D8_RuntimeMethod_var))); } IL_0096: { Type_t * L_30 = V_0; Type_t * L_31 = ___destinationType1; Exception_t * L_32; L_32 = XmlBaseConverter_CreateInvalidClrMappingException_mF6EE65AEAEFD2FE80F2829D69A6C9178C2287270(__this, L_30, L_31, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUntypedConverter_ChangeListType_m8A335168D10AE570DB4F6BF8C83D3EFCF0FAD4D8_RuntimeMethod_var))); } IL_009f: { RuntimeObject * L_33 = ___value0; Type_t * L_34 = ___destinationType1; RuntimeObject* L_35 = ___nsResolver2; RuntimeObject * L_36; L_36 = XmlListConverter_ChangeListType_mB826BBF0AE270EE1D3FDE44AAA08CBD7336214FE(__this, L_33, L_34, L_35, /*hidden argument*/NULL); return L_36; } } // System.Boolean System.Xml.Schema.XmlUntypedConverter::SupportsType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlUntypedConverter_SupportsType_mB775768BC127D72D0A2B7B4A3D506961788E03A5 (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * __this, Type_t * ___clrType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_1 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_BooleanType_26(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_2; L_2 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_000f; } } { return (bool)1; } IL_000f: { Type_t * L_3 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_4 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ByteType_15(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_001e; } } { return (bool)1; } IL_001e: { Type_t * L_6 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_7 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_ByteArrayType_27(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_8; L_8 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_6, L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_002d; } } { return (bool)1; } IL_002d: { Type_t * L_9 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_10 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeType_24(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_11; L_11 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_003c; } } { return (bool)1; } IL_003c: { Type_t * L_12 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_13 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DateTimeOffsetType_25(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_14; L_14 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_12, L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_004b; } } { return (bool)1; } IL_004b: { Type_t * L_15 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_16 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DecimalType_9(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_17; L_17 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_15, L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_005a; } } { return (bool)1; } IL_005a: { Type_t * L_18 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_19 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_DoubleType_22(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_20; L_20 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_18, L_19, /*hidden argument*/NULL); if (!L_20) { goto IL_0069; } } { return (bool)1; } IL_0069: { Type_t * L_21 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_22 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int16Type_16(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_23; L_23 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_21, L_22, /*hidden argument*/NULL); if (!L_23) { goto IL_0078; } } { return (bool)1; } IL_0078: { Type_t * L_24 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_25 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int32Type_10(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_26; L_26 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_24, L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_0087; } } { return (bool)1; } IL_0087: { Type_t * L_27 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_28 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_Int64Type_11(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_29; L_29 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_27, L_28, /*hidden argument*/NULL); if (!L_29) { goto IL_0096; } } { return (bool)1; } IL_0096: { Type_t * L_30 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_31 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_SByteType_17(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_32; L_32 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_30, L_31, /*hidden argument*/NULL); if (!L_32) { goto IL_00a5; } } { return (bool)1; } IL_00a5: { Type_t * L_33 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_34 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_SingleType_23(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_35; L_35 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_33, L_34, /*hidden argument*/NULL); if (!L_35) { goto IL_00b4; } } { return (bool)1; } IL_00b4: { Type_t * L_36 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_37 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_TimeSpanType_30(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_38; L_38 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_36, L_37, /*hidden argument*/NULL); if (!L_38) { goto IL_00c3; } } { return (bool)1; } IL_00c3: { Type_t * L_39 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_40 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UInt16Type_18(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_41; L_41 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_39, L_40, /*hidden argument*/NULL); if (!L_41) { goto IL_00d2; } } { return (bool)1; } IL_00d2: { Type_t * L_42 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_43 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UInt32Type_19(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_44; L_44 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_42, L_43, /*hidden argument*/NULL); if (!L_44) { goto IL_00e1; } } { return (bool)1; } IL_00e1: { Type_t * L_45 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_46 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UInt64Type_20(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_47; L_47 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_45, L_46, /*hidden argument*/NULL); if (!L_47) { goto IL_00f0; } } { return (bool)1; } IL_00f0: { Type_t * L_48 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_49 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_UriType_29(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_50; L_50 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_48, L_49, /*hidden argument*/NULL); if (!L_50) { goto IL_00ff; } } { return (bool)1; } IL_00ff: { Type_t * L_51 = ___clrType0; IL2CPP_RUNTIME_CLASS_INIT(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var); Type_t * L_52 = ((XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_StaticFields*)il2cpp_codegen_static_fields_for(XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55_il2cpp_TypeInfo_var))->get_XmlQualifiedNameType_28(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_53; L_53 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_51, L_52, /*hidden argument*/NULL); if (!L_53) { goto IL_010e; } } { return (bool)1; } IL_010e: { return (bool)0; } } // System.Void System.Xml.Schema.XmlUntypedConverter::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUntypedConverter__cctor_m7FAD661A4A0ADAAB1D614814787BA8E78003DC8B (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * L_0 = (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF *)il2cpp_codegen_object_new(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); XmlUntypedConverter__ctor_m2BF429F05F4086DB2620F3EBFA8E73974F14D90A(L_0, /*hidden argument*/NULL); XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * L_1 = (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF *)il2cpp_codegen_object_new(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); XmlUntypedConverter__ctor_m723EDD7AC7CAADC784E4DA7CBAC18134B998C497(L_1, L_0, (bool)0, /*hidden argument*/NULL); ((XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_StaticFields*)il2cpp_codegen_static_fields_for(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var))->set_Untyped_34(L_1); XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * L_2 = (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF *)il2cpp_codegen_object_new(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); XmlUntypedConverter__ctor_m2BF429F05F4086DB2620F3EBFA8E73974F14D90A(L_2, /*hidden argument*/NULL); XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF * L_3 = (XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF *)il2cpp_codegen_object_new(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var); XmlUntypedConverter__ctor_m723EDD7AC7CAADC784E4DA7CBAC18134B998C497(L_3, L_2, (bool)1, /*hidden argument*/NULL); ((XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_StaticFields*)il2cpp_codegen_static_fields_for(XmlUntypedConverter_t7827A6551E49B0812AE9A11179FDF254612C77CF_il2cpp_TypeInfo_var))->set_UntypedList_35(L_3); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlDownloadManager System.Xml.XmlUrlResolver::get_DownloadManager() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * XmlUrlResolver_get_DownloadManager_m9EFD2C40A944C579EE8487E7FC194B44412D5001 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; { RuntimeObject * L_0 = ((XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1_StaticFields*)il2cpp_codegen_static_fields_for(XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1_il2cpp_TypeInfo_var))->get_s_DownloadManager_0(); if (L_0) { goto IL_001a; } } { XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * L_1 = (XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D *)il2cpp_codegen_object_new(XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D_il2cpp_TypeInfo_var); XmlDownloadManager__ctor_m20609FF8F46937FB1891AF0C30E939299056B1AF(L_1, /*hidden argument*/NULL); V_0 = L_1; RuntimeObject * L_2 = V_0; RuntimeObject * L_3; L_3 = InterlockedCompareExchangeImpl((RuntimeObject **)(((XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1_StaticFields*)il2cpp_codegen_static_fields_for(XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1_il2cpp_TypeInfo_var))->get_address_of_s_DownloadManager_0()), L_2, NULL); } IL_001a: { RuntimeObject * L_4 = ((XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1_StaticFields*)il2cpp_codegen_static_fields_for(XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1_il2cpp_TypeInfo_var))->get_s_DownloadManager_0(); return ((XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D *)CastclassClass((RuntimeObject*)L_4, XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D_il2cpp_TypeInfo_var)); } } // System.Void System.Xml.XmlUrlResolver::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUrlResolver__ctor_m6CDB6CC5B0725F9723A7632AF1ED062E877DD449 (XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1 * __this, const RuntimeMethod* method) { { XmlResolver__ctor_m0217F0BCC79A4C9BD944BF30D5E7C0F1A1218D1C(__this, /*hidden argument*/NULL); return; } } // System.Object System.Xml.XmlUrlResolver::GetEntity(System.Uri,System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XmlUrlResolver_GetEntity_m5E6E95BD40DAEC1B6537B67E2B51EBFD398C5FAA (XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___absoluteUri0, String_t* ___role1, Type_t * ___ofObjectToReturn2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___ofObjectToReturn2; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (L_1) { goto IL_002d; } } { Type_t * L_2 = ___ofObjectToReturn2; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_3 = { reinterpret_cast (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4; L_4 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_3, /*hidden argument*/NULL); bool L_5; L_5 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_2, L_4, /*hidden argument*/NULL); if (L_5) { goto IL_002d; } } { Type_t * L_6 = ___ofObjectToReturn2; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8; L_8 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_7, /*hidden argument*/NULL); bool L_9; L_9 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_6, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_004b; } } IL_002d: { XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * L_10; L_10 = XmlUrlResolver_get_DownloadManager_m9EFD2C40A944C579EE8487E7FC194B44412D5001(/*hidden argument*/NULL); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_11 = ___absoluteUri0; RuntimeObject* L_12 = __this->get__credentials_1(); RuntimeObject* L_13 = __this->get__proxy_2(); RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * L_14 = __this->get__cachePolicy_3(); NullCheck(L_10); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_15; L_15 = XmlDownloadManager_GetStream_m927E7BBEDB3F068C01794E13C36CE5A34062662E(L_10, L_11, L_12, L_13, L_14, /*hidden argument*/NULL); return L_15; } IL_004b: { String_t* L_16 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->get_Empty_5(); XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * L_17 = (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var))); XmlException__ctor_m113008AE4B646E85154C99B3CBB55D536CBEFEB9(L_17, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD29CA80AA23F62C996542BD3373B35F12EBC874B)), L_16, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlUrlResolver_GetEntity_m5E6E95BD40DAEC1B6537B67E2B51EBFD398C5FAA_RuntimeMethod_var))); } } // System.Uri System.Xml.XmlUrlResolver::ResolveUri(System.Uri,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * XmlUrlResolver_ResolveUri_m8B554BDDB6E03FF091143170C3A6F05335D6552C (XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___baseUri0, String_t* ___relativeUri1, const RuntimeMethod* method) { { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = ___baseUri0; String_t* L_1 = ___relativeUri1; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_2; L_2 = XmlResolver_ResolveUri_m5FE50956C12775E8976F132919176759040E8C53(__this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Threading.Tasks.Task`1 System.Xml.XmlUrlResolver::GetEntityAsync(System.Uri,System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * XmlUrlResolver_GetEntityAsync_m0D4B74C681DFBA67E92DF4AA341447F062CB256F (XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___absoluteUri0, String_t* ___role1, Type_t * ___ofObjectToReturn2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Create_mE593F9E703EBA7EF294FAC0F5C20F69AF4D08C26_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_mC3D06AB96938D18EA8788B4122A214E34FCE9679_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_get_Task_m61DEC300353320E428E17DA0D59D61974F4415BB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 V_0; memset((&V_0), 0, sizeof(V_0)); AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 V_1; memset((&V_1), 0, sizeof(V_1)); { (&V_0)->set_U3CU3E4__this_4(__this); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = ___absoluteUri0; (&V_0)->set_absoluteUri_3(L_0); Type_t * L_1 = ___ofObjectToReturn2; (&V_0)->set_ofObjectToReturn_2(L_1); IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020_il2cpp_TypeInfo_var); AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 L_2; L_2 = AsyncTaskMethodBuilder_1_Create_mE593F9E703EBA7EF294FAC0F5C20F69AF4D08C26(/*hidden argument*/AsyncTaskMethodBuilder_1_Create_mE593F9E703EBA7EF294FAC0F5C20F69AF4D08C26_RuntimeMethod_var); (&V_0)->set_U3CU3Et__builder_1(L_2); (&V_0)->set_U3CU3E1__state_0((-1)); U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 L_3 = V_0; AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 L_4 = L_3.get_U3CU3Et__builder_1(); V_1 = L_4; AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_mC3D06AB96938D18EA8788B4122A214E34FCE9679((AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 *)(&V_1), (U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 *)(&V_0), /*hidden argument*/AsyncTaskMethodBuilder_1_Start_TisU3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_mC3D06AB96938D18EA8788B4122A214E34FCE9679_RuntimeMethod_var); AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * L_5 = (&V_0)->get_address_of_U3CU3Et__builder_1(); Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17 * L_6; L_6 = AsyncTaskMethodBuilder_1_get_Task_m61DEC300353320E428E17DA0D59D61974F4415BB((AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 *)L_5, /*hidden argument*/AsyncTaskMethodBuilder_1_get_Task_m61DEC300353320E428E17DA0D59D61974F4415BB_RuntimeMethod_var); return L_6; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlValueConverter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValueConverter__ctor_m4392C0F645E36CB8A543AD0776345FF2822936A8 (XmlValueConverter_t18B2DCDB3B3F7609F3E43D5C46D2095BD09E6763 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlWhitespace::.ctor(System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWhitespace__ctor_m3A108BEE96CE7575F27A1DED29804E41C8B847D0 (XmlWhitespace_t7BB2E46A48255FAEF7A758CA9EE2191A4891D56C * __this, String_t* ___strData0, XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * ___doc1, const RuntimeMethod* method) { { String_t* L_0 = ___strData0; XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * L_1 = ___doc1; XmlCharacterData__ctor_m92DACE6F1470B2FABC19CE1DB3B8170BC346AA30(__this, L_0, L_1, /*hidden argument*/NULL); XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * L_2 = ___doc1; NullCheck(L_2); bool L_3; L_3 = XmlDocument_get_IsLoading_m3B73B787E62F30F277275598CF50D1258706E681_inline(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0029; } } { String_t* L_4 = ___strData0; bool L_5; L_5 = XmlCharacterData_CheckOnData_m9A57001C001BA5EB4524F44562C20D27E79A3B81(__this, L_4, /*hidden argument*/NULL); if (L_5) { goto IL_0029; } } { String_t* L_6; L_6 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7CCE57C5D7E1EEE86D308C81EAB8B71D0964327F)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWhitespace__ctor_m3A108BEE96CE7575F27A1DED29804E41C8B847D0_RuntimeMethod_var))); } IL_0029: { return; } } // System.String System.Xml.XmlWhitespace::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWhitespace_get_Name_m33E6C37230FD69349EB38C8FED1541F716E6D216 (XmlWhitespace_t7BB2E46A48255FAEF7A758CA9EE2191A4891D56C * __this, const RuntimeMethod* method) { { XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * L_0; L_0 = VirtFuncInvoker0< XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_0); String_t* L_1 = L_0->get_strNonSignificantWhitespaceName_33(); return L_1; } } // System.String System.Xml.XmlWhitespace::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWhitespace_get_LocalName_m2DDF24A1D214A516147BC9B9EA96CCB76A45F67F (XmlWhitespace_t7BB2E46A48255FAEF7A758CA9EE2191A4891D56C * __this, const RuntimeMethod* method) { { XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * L_0; L_0 = VirtFuncInvoker0< XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_0); String_t* L_1 = L_0->get_strNonSignificantWhitespaceName_33(); return L_1; } } // System.Xml.XmlNodeType System.Xml.XmlWhitespace::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlWhitespace_get_NodeType_mE0A3ADD7C012BEDBF2ED42EA36955B2CC4012A38 (XmlWhitespace_t7BB2E46A48255FAEF7A758CA9EE2191A4891D56C * __this, const RuntimeMethod* method) { { return (int32_t)(((int32_t)13)); } } // System.Xml.XmlNode System.Xml.XmlWhitespace::get_ParentNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * XmlWhitespace_get_ParentNode_m84204F029B17B1097EB83649522A29C0A81233C3 (XmlWhitespace_t7BB2E46A48255FAEF7A758CA9EE2191A4891D56C * __this, const RuntimeMethod* method) { int32_t V_0 = 0; XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * V_1 = NULL; { XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * L_0 = ((XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 *)__this)->get_parentNode_0(); NullCheck(L_0); int32_t L_1; L_1 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0); V_0 = L_1; int32_t L_2 = V_0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)3))) > ((uint32_t)1)))) { goto IL_0027; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)((int32_t)9)))) { goto IL_0020; } } { int32_t L_4 = V_0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((int32_t)13)))) > ((uint32_t)1)))) { goto IL_0027; } } { goto IL_0046; } IL_0020: { XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * L_5; L_5 = XmlNode_get_ParentNode_mAE5BBA15BE0FF8FE4869BFCA1ECB6740C969B7A8(__this, /*hidden argument*/NULL); return L_5; } IL_0027: { XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * L_6 = ((XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 *)__this)->get_parentNode_0(); NullCheck(L_6); XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * L_7 = L_6->get_parentNode_0(); V_1 = L_7; goto IL_003c; } IL_0035: { XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * L_8 = V_1; NullCheck(L_8); XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * L_9 = L_8->get_parentNode_0(); V_1 = L_9; } IL_003c: { XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * L_10 = V_1; NullCheck(L_10); bool L_11; L_11 = VirtFuncInvoker0< bool >::Invoke(46 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_10); if (L_11) { goto IL_0035; } } { XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * L_12 = V_1; return L_12; } IL_0046: { XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * L_13 = ((XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 *)__this)->get_parentNode_0(); return L_13; } } // System.String System.Xml.XmlWhitespace::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWhitespace_get_Value_m109D64BF5F6865951F46B8E6D01A72E09A7DBA1D (XmlWhitespace_t7BB2E46A48255FAEF7A758CA9EE2191A4891D56C * __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = VirtFuncInvoker0< String_t* >::Invoke(47 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this); return L_0; } } // System.Void System.Xml.XmlWhitespace::set_Value(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWhitespace_set_Value_m7EEB5BDDEDF4F6D447436D348030D303EA990CEF (XmlWhitespace_t7BB2E46A48255FAEF7A758CA9EE2191A4891D56C * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; bool L_1; L_1 = XmlCharacterData_CheckOnData_m9A57001C001BA5EB4524F44562C20D27E79A3B81(__this, L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0011; } } { String_t* L_2 = ___value0; VirtActionInvoker1< String_t* >::Invoke(48 /* System.Void System.Xml.XmlCharacterData::set_Data(System.String) */, __this, L_2); return; } IL_0011: { String_t* L_3; L_3 = Res_GetString_m567E450BF89748055E08C5C54D1780000055B9F3(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7CCE57C5D7E1EEE86D308C81EAB8B71D0964327F)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWhitespace_set_Value_m7EEB5BDDEDF4F6D447436D348030D303EA990CEF_RuntimeMethod_var))); } } // System.Xml.XmlNode System.Xml.XmlWhitespace::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t26782CDADA207DFC891B2772C8DB236DD3D324A1 * XmlWhitespace_CloneNode_m71EE1736372FA6175714075B6BC32F0443593B29 (XmlWhitespace_t7BB2E46A48255FAEF7A758CA9EE2191A4891D56C * __this, bool ___deep0, const RuntimeMethod* method) { { XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * L_0; L_0 = VirtFuncInvoker0< XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * >::Invoke(15 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); String_t* L_1; L_1 = VirtFuncInvoker0< String_t* >::Invoke(47 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this); NullCheck(L_0); XmlWhitespace_t7BB2E46A48255FAEF7A758CA9EE2191A4891D56C * L_2; L_2 = VirtFuncInvoker1< XmlWhitespace_t7BB2E46A48255FAEF7A758CA9EE2191A4891D56C *, String_t* >::Invoke(58 /* System.Xml.XmlWhitespace System.Xml.XmlDocument::CreateWhitespace(System.String) */, L_0, L_1); return L_2; } } // System.Void System.Xml.XmlWhitespace::WriteTo(System.Xml.XmlWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWhitespace_WriteTo_m3C1AAF56EF1E28D12EA9CC4A9E06FFEDD34B269F (XmlWhitespace_t7BB2E46A48255FAEF7A758CA9EE2191A4891D56C * __this, XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * ___w0, const RuntimeMethod* method) { { XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * L_0 = ___w0; String_t* L_1; L_1 = VirtFuncInvoker0< String_t* >::Invoke(47 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this); NullCheck(L_0); VirtActionInvoker1< String_t* >::Invoke(16 /* System.Void System.Xml.XmlWriter::WriteWhitespace(System.String) */, L_0, L_1); return; } } // System.Void System.Xml.XmlWhitespace::WriteContentTo(System.Xml.XmlWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWhitespace_WriteContentTo_m4F329A80F3E07E47B98DF5234E6D79AA57E9C912 (XmlWhitespace_t7BB2E46A48255FAEF7A758CA9EE2191A4891D56C * __this, XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * ___w0, const RuntimeMethod* method) { { return; } } // System.Boolean System.Xml.XmlWhitespace::get_IsText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWhitespace_get_IsText_mC2C4E424D1F44844225A2E4034B801C24E9F093B (XmlWhitespace_t7BB2E46A48255FAEF7A758CA9EE2191A4891D56C * __this, const RuntimeMethod* method) { { return (bool)1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteStartElement_m9544AB2F6A67D4A37BA258CA661DD10A356DEA8D (XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * __this, String_t* ___localName0, String_t* ___ns1, const RuntimeMethod* method) { { String_t* L_0 = ___localName0; String_t* L_1 = ___ns1; VirtActionInvoker3< String_t*, String_t*, String_t* >::Invoke(7 /* System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String,System.String) */, __this, (String_t*)NULL, L_0, L_1); return; } } // System.Void System.Xml.XmlWriter::WriteAttributeString(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteAttributeString_m48CD44F84C5F1E98B7D21A483A0488D5954A83BF (XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * __this, String_t* ___localName0, String_t* ___ns1, String_t* ___value2, const RuntimeMethod* method) { { String_t* L_0 = ___localName0; String_t* L_1 = ___ns1; VirtActionInvoker3< String_t*, String_t*, String_t* >::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, __this, (String_t*)NULL, L_0, L_1); String_t* L_2 = ___value2; VirtActionInvoker1< String_t* >::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_2); VirtActionInvoker0::Invoke(11 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, __this); return; } } // System.Void System.Xml.XmlWriter::WriteAttributeString(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteAttributeString_m07C939E50F293A9613B3B29FD06039F11EDFBE15 (XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * __this, String_t* ___localName0, String_t* ___value1, const RuntimeMethod* method) { { String_t* L_0 = ___localName0; VirtActionInvoker3< String_t*, String_t*, String_t* >::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, __this, (String_t*)NULL, L_0, (String_t*)NULL); String_t* L_1 = ___value1; VirtActionInvoker1< String_t* >::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_1); VirtActionInvoker0::Invoke(11 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, __this); return; } } // System.Void System.Xml.XmlWriter::WriteAttributeString(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteAttributeString_m7ABADBF13E8DD19BD7F3970AD124DEF3441259CE (XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___ns2, String_t* ___value3, const RuntimeMethod* method) { { String_t* L_0 = ___prefix0; String_t* L_1 = ___localName1; String_t* L_2 = ___ns2; VirtActionInvoker3< String_t*, String_t*, String_t* >::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteStartAttribute(System.String,System.String,System.String) */, __this, L_0, L_1, L_2); String_t* L_3 = ___value3; VirtActionInvoker1< String_t* >::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_3); VirtActionInvoker0::Invoke(11 /* System.Void System.Xml.XmlWriter::WriteEndAttribute() */, __this); return; } } // System.Void System.Xml.XmlWriter::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_Close_m625EEF85A0D65E59BEEE4BA221C8E4DF531C8026 (XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * __this, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.XmlWriter::WriteElementString(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteElementString_m7B9DD48374E8FDCEEACAA6B23BCE8ADEF919415F (XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * __this, String_t* ___localName0, String_t* ___ns1, String_t* ___value2, const RuntimeMethod* method) { { String_t* L_0 = ___localName0; String_t* L_1 = ___ns1; XmlWriter_WriteStartElement_m9544AB2F6A67D4A37BA258CA661DD10A356DEA8D(__this, L_0, L_1, /*hidden argument*/NULL); String_t* L_2 = ___value2; if (!L_2) { goto IL_001a; } } { String_t* L_3 = ___value2; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_001a; } } { String_t* L_5 = ___value2; VirtActionInvoker1< String_t* >::Invoke(17 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, __this, L_5); } IL_001a: { VirtActionInvoker0::Invoke(8 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, __this); return; } } // System.Void System.Xml.XmlWriter::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_Dispose_mD84FFF675D66861F00314F213AA637507DF74102 (XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * __this, const RuntimeMethod* method) { { VirtActionInvoker1< bool >::Invoke(22 /* System.Void System.Xml.XmlWriter::Dispose(System.Boolean) */, __this, (bool)1); return; } } // System.Void System.Xml.XmlWriter::Dispose(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_Dispose_m1C350DA8CB5925DBAE6073FFFD18ED5824EF61EA (XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * __this, bool ___disposing0, const RuntimeMethod* method) { { bool L_0 = ___disposing0; if (!L_0) { goto IL_0012; } } { int32_t L_1; L_1 = VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Xml.WriteState System.Xml.XmlWriter::get_WriteState() */, __this); if ((((int32_t)L_1) == ((int32_t)5))) { goto IL_0012; } } { VirtActionInvoker0::Invoke(19 /* System.Void System.Xml.XmlWriter::Close() */, __this); } IL_0012: { return; } } // System.Void System.Xml.XmlWriter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter__ctor_mAA10A026AD230D064314D2AE472A144D18418A01 (XmlWriter_t676293C138D2D0DAB9C1BC16A7BEE618391C5B2D * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Xml.Schema.XsdDateTime IL2CPP_EXTERN_C void XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_marshal_pinvoke(const XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D& unmarshaled, XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_marshaled_pinvoke& marshaled) { Exception_t* ___dt_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'dt' of type 'XsdDateTime'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___dt_0Exception, NULL); } IL2CPP_EXTERN_C void XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_marshal_pinvoke_back(const XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_marshaled_pinvoke& marshaled, XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D& unmarshaled) { Exception_t* ___dt_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'dt' of type 'XsdDateTime'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___dt_0Exception, NULL); } // Conversion method for clean up from marshalling of: System.Xml.Schema.XsdDateTime IL2CPP_EXTERN_C void XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_marshal_pinvoke_cleanup(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Xml.Schema.XsdDateTime IL2CPP_EXTERN_C void XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_marshal_com(const XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D& unmarshaled, XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_marshaled_com& marshaled) { Exception_t* ___dt_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'dt' of type 'XsdDateTime'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___dt_0Exception, NULL); } IL2CPP_EXTERN_C void XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_marshal_com_back(const XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_marshaled_com& marshaled, XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D& unmarshaled) { Exception_t* ___dt_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'dt' of type 'XsdDateTime'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___dt_0Exception, NULL); } // Conversion method for clean up from marshalling of: System.Xml.Schema.XsdDateTime IL2CPP_EXTERN_C void XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_marshal_com_cleanup(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_marshaled_com& marshaled) { } // System.Void System.Xml.Schema.XsdDateTime::.ctor(System.String,System.Xml.Schema.XsdDateTimeFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime__ctor_mB09134F0278390F7BEDE6F47A6BE015C64140C52 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, String_t* ___text0, int32_t ___kinds1, const RuntimeMethod* method) { Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj(__this, sizeof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D )); il2cpp_codegen_initobj((&V_0), sizeof(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 )); String_t* L_0 = ___text0; int32_t L_1 = ___kinds1; bool L_2; L_2 = Parser_Parse_m4967C6E2F360C1BCAAEDC78816BBADE6F5A6C297((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)(&V_0), L_0, L_1, /*hidden argument*/NULL); if (L_2) { goto IL_003d; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)2); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = L_3; String_t* L_5 = ___text0; NullCheck(L_4); ArrayElementTypeCheck (L_4, L_5); (L_4)->SetAt(static_cast(0), (RuntimeObject *)L_5); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_6 = L_4; int32_t L_7 = ___kinds1; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdDateTimeFlags_tA0CFF619A2C537BD8E65672DA641CF4B2405156C_il2cpp_TypeInfo_var)), &L_8); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_9); (L_6)->SetAt(static_cast(1), (RuntimeObject *)L_9); String_t* L_10; L_10 = Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8D04002FC7142DC7148763C90BB38AEEC554A158)), L_6, /*hidden argument*/NULL); FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 * L_11 = (FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759_il2cpp_TypeInfo_var))); FormatException__ctor_mB8F9A26F985EF9A6C0C082F7D70CFDF2DBDBB23B(L_11, L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdDateTime__ctor_mB09134F0278390F7BEDE6F47A6BE015C64140C52_RuntimeMethod_var))); } IL_003d: { Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 L_12 = V_0; XsdDateTime_InitiateXsdDateTime_m90AD9DA9F7C15FF2103F4753755918360F20AEDE((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_12, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void XsdDateTime__ctor_mB09134F0278390F7BEDE6F47A6BE015C64140C52_AdjustorThunk (RuntimeObject * __this, String_t* ___text0, int32_t ___kinds1, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); XsdDateTime__ctor_mB09134F0278390F7BEDE6F47A6BE015C64140C52(_thisAdjusted, ___text0, ___kinds1, method); } // System.Void System.Xml.Schema.XsdDateTime::.ctor(System.Xml.Schema.XsdDateTime/Parser) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime__ctor_m1C7A4AD53CE8C6D855E72C51DDBB186774C7BC35 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 ___parser0, const RuntimeMethod* method) { { il2cpp_codegen_initobj(__this, sizeof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D )); Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 L_0 = ___parser0; XsdDateTime_InitiateXsdDateTime_m90AD9DA9F7C15FF2103F4753755918360F20AEDE((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_0, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void XsdDateTime__ctor_m1C7A4AD53CE8C6D855E72C51DDBB186774C7BC35_AdjustorThunk (RuntimeObject * __this, Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 ___parser0, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); XsdDateTime__ctor_m1C7A4AD53CE8C6D855E72C51DDBB186774C7BC35(_thisAdjusted, ___parser0, method); } // System.Void System.Xml.Schema.XsdDateTime::InitiateXsdDateTime(System.Xml.Schema.XsdDateTime/Parser) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime_InitiateXsdDateTime_m90AD9DA9F7C15FF2103F4753755918360F20AEDE (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 ___parser0, const RuntimeMethod* method) { { Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 L_0 = ___parser0; int32_t L_1 = L_0.get_year_1(); Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 L_2 = ___parser0; int32_t L_3 = L_2.get_month_2(); Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 L_4 = ___parser0; int32_t L_5 = L_4.get_day_3(); Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 L_6 = ___parser0; int32_t L_7 = L_6.get_hour_4(); Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 L_8 = ___parser0; int32_t L_9 = L_8.get_minute_5(); Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 L_10 = ___parser0; int32_t L_11 = L_10.get_second_6(); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_12; memset((&L_12), 0, sizeof(L_12)); DateTime__ctor_m4DA8AA49E6923EDCFB8927D588AE3D79B218545D((&L_12), L_1, L_3, L_5, L_7, L_9, L_11, /*hidden argument*/NULL); __this->set_dt_0(L_12); Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 L_13 = ___parser0; int32_t L_14 = L_13.get_fraction_7(); if (!L_14) { goto IL_004f; } } { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_15 = __this->get_address_of_dt_0(); Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 L_16 = ___parser0; int32_t L_17 = L_16.get_fraction_7(); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_18; L_18 = DateTime_AddTicks_m62906BA32DF3F1031061042F5F1B15125F2673EB((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_15, ((int64_t)((int64_t)L_17)), /*hidden argument*/NULL); __this->set_dt_0(L_18); } IL_004f: { Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 L_19 = ___parser0; int32_t L_20 = L_19.get_typeCode_0(); Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 L_21 = ___parser0; int32_t L_22 = L_21.get_kind_8(); Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 L_23 = ___parser0; int32_t L_24 = L_23.get_zoneHour_9(); Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 L_25 = ___parser0; int32_t L_26 = L_25.get_zoneMinute_10(); __this->set_extra_1(((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_20<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_22<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_24<<(int32_t)8))))|(int32_t)L_26))); return; } } IL2CPP_EXTERN_C void XsdDateTime_InitiateXsdDateTime_m90AD9DA9F7C15FF2103F4753755918360F20AEDE_AdjustorThunk (RuntimeObject * __this, Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 ___parser0, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); XsdDateTime_InitiateXsdDateTime_m90AD9DA9F7C15FF2103F4753755918360F20AEDE(_thisAdjusted, ___parser0, method); } // System.Boolean System.Xml.Schema.XsdDateTime::TryParse(System.String,System.Xml.Schema.XsdDateTimeFlags,System.Xml.Schema.XsdDateTime&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdDateTime_TryParse_m0EE48D42906256858FEB132534920A708C7DFC70 (String_t* ___text0, int32_t ___kinds1, XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * ___result2, const RuntimeMethod* method) { Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 )); String_t* L_0 = ___text0; int32_t L_1 = ___kinds1; bool L_2; L_2 = Parser_Parse_m4967C6E2F360C1BCAAEDC78816BBADE6F5A6C297((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)(&V_0), L_0, L_1, /*hidden argument*/NULL); if (L_2) { goto IL_001c; } } { XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * L_3 = ___result2; il2cpp_codegen_initobj(L_3, sizeof(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D )); return (bool)0; } IL_001c: { XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * L_4 = ___result2; Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 L_5 = V_0; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D L_6; memset((&L_6), 0, sizeof(L_6)); XsdDateTime__ctor_m1C7A4AD53CE8C6D855E72C51DDBB186774C7BC35((&L_6), L_5, /*hidden argument*/NULL); *(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)L_4 = L_6; return (bool)1; } } // System.Void System.Xml.Schema.XsdDateTime::.ctor(System.DateTime,System.Xml.Schema.XsdDateTimeFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime__ctor_mC4E844B452F4D01B3773FFA73749AD2A0FF595CF (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dateTime0, int32_t ___kinds1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Bits_t74232172D88399D44E277C1367618DE2B73FF95E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_5; memset((&V_5), 0, sizeof(V_5)); { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0 = ___dateTime0; __this->set_dt_0(L_0); int32_t L_1 = ___kinds1; IL2CPP_RUNTIME_CLASS_INIT(Bits_t74232172D88399D44E277C1367618DE2B73FF95E_il2cpp_TypeInfo_var); int32_t L_2; L_2 = Bits_LeastPosition_m30448C3BD027BDE6E29E56C739E99A23660A21F4(L_1, /*hidden argument*/NULL); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)); V_1 = 0; V_2 = 0; int32_t L_3; L_3 = DateTime_get_Kind_mC7EC1A788CC9A875094117214C5A0C153A39F496((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&___dateTime0), /*hidden argument*/NULL); V_4 = L_3; int32_t L_4 = V_4; if (!L_4) { goto IL_0028; } } { int32_t L_5 = V_4; if ((((int32_t)L_5) == ((int32_t)1))) { goto IL_002c; } } { goto IL_0030; } IL_0028: { V_3 = 0; goto IL_0070; } IL_002c: { V_3 = 1; goto IL_0070; } IL_0030: { TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074 * L_6; L_6 = TimeZoneInfo_get_Local_m3C0852D46BC4C5F244359204C1A14904E5C68690(/*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_7 = ___dateTime0; NullCheck(L_6); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_8; L_8 = TimeZoneInfo_GetUtcOffset_m141D157CBED31EEB89D133955485874F235DAACA(L_6, L_7, /*hidden argument*/NULL); V_5 = L_8; int64_t L_9; L_9 = TimeSpan_get_Ticks_mE4C9E1F27DC794028CEDCF7CB5BD092D16DBACD4_inline((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_5), /*hidden argument*/NULL); if ((((int64_t)L_9) >= ((int64_t)((int64_t)((int64_t)0))))) { goto IL_005e; } } { V_3 = 2; int32_t L_10; L_10 = TimeSpan_get_Hours_m39AFD957DF1247125409ADD8525550863D08AB6E((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_5), /*hidden argument*/NULL); V_1 = ((-L_10)); int32_t L_11; L_11 = TimeSpan_get_Minutes_mF5A78108FEB64953C298CEC19637378380881202((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_5), /*hidden argument*/NULL); V_2 = ((-L_11)); goto IL_0070; } IL_005e: { V_3 = 3; int32_t L_12; L_12 = TimeSpan_get_Hours_m39AFD957DF1247125409ADD8525550863D08AB6E((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_5), /*hidden argument*/NULL); V_1 = L_12; int32_t L_13; L_13 = TimeSpan_get_Minutes_mF5A78108FEB64953C298CEC19637378380881202((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_5), /*hidden argument*/NULL); V_2 = L_13; } IL_0070: { int32_t L_14 = V_0; int32_t L_15 = V_3; int32_t L_16 = V_1; int32_t L_17 = V_2; __this->set_extra_1(((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_14<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_15<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_16<<(int32_t)8))))|(int32_t)L_17))); return; } } IL2CPP_EXTERN_C void XsdDateTime__ctor_mC4E844B452F4D01B3773FFA73749AD2A0FF595CF_AdjustorThunk (RuntimeObject * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___dateTime0, int32_t ___kinds1, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); XsdDateTime__ctor_mC4E844B452F4D01B3773FFA73749AD2A0FF595CF(_thisAdjusted, ___dateTime0, ___kinds1, method); } // System.Void System.Xml.Schema.XsdDateTime::.ctor(System.DateTimeOffset,System.Xml.Schema.XsdDateTimeFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime__ctor_m33C8E56623F643FD67D14AE01A9AB14CB8DD238A (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___dateTimeOffset0, int32_t ___kinds1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Bits_t74232172D88399D44E277C1367618DE2B73FF95E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; int32_t V_2 = 0; { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0; L_0 = DateTimeOffset_get_DateTime_m4A77B8033E9824033156BE13362AC202590A4370((DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)(&___dateTimeOffset0), /*hidden argument*/NULL); __this->set_dt_0(L_0); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_1; L_1 = DateTimeOffset_get_Offset_mD7CD6BE8256492AAF195B631CE3DCA7B47860065((DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)(&___dateTimeOffset0), /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = ___kinds1; IL2CPP_RUNTIME_CLASS_INIT(Bits_t74232172D88399D44E277C1367618DE2B73FF95E_il2cpp_TypeInfo_var); int32_t L_3; L_3 = Bits_LeastPosition_m30448C3BD027BDE6E29E56C739E99A23660A21F4(L_2, /*hidden argument*/NULL); V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1)); double L_4; L_4 = TimeSpan_get_TotalMinutes_m96E1D555D4663771C703D7F9A5D8F775E27853C3((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_0), /*hidden argument*/NULL); if ((!(((double)L_4) < ((double)(0.0))))) { goto IL_003c; } } { TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_5; L_5 = TimeSpan_Negate_mD19FC9B8BCD075EFF67AE2AE9A8CB749F03F6897((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_0), /*hidden argument*/NULL); V_0 = L_5; V_2 = 2; goto IL_0054; } IL_003c: { double L_6; L_6 = TimeSpan_get_TotalMinutes_m96E1D555D4663771C703D7F9A5D8F775E27853C3((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_0), /*hidden argument*/NULL); if ((!(((double)L_6) > ((double)(0.0))))) { goto IL_0052; } } { V_2 = 3; goto IL_0054; } IL_0052: { V_2 = 1; } IL_0054: { int32_t L_7 = V_1; int32_t L_8 = V_2; int32_t L_9; L_9 = TimeSpan_get_Hours_m39AFD957DF1247125409ADD8525550863D08AB6E((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_0), /*hidden argument*/NULL); int32_t L_10; L_10 = TimeSpan_get_Minutes_mF5A78108FEB64953C298CEC19637378380881202((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_0), /*hidden argument*/NULL); __this->set_extra_1(((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_7<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_8<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_9<<(int32_t)8))))|(int32_t)L_10))); return; } } IL2CPP_EXTERN_C void XsdDateTime__ctor_m33C8E56623F643FD67D14AE01A9AB14CB8DD238A_AdjustorThunk (RuntimeObject * __this, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___dateTimeOffset0, int32_t ___kinds1, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); XsdDateTime__ctor_m33C8E56623F643FD67D14AE01A9AB14CB8DD238A(_thisAdjusted, ___dateTimeOffset0, ___kinds1, method); } // System.Xml.Schema.XsdDateTime/DateTimeTypeCode System.Xml.Schema.XsdDateTime::get_InternalTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_InternalTypeCode_m5ABF7CF00F320084E4A88B378A6F67628282ED8B (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method) { { uint32_t L_0 = __this->get_extra_1(); return (int32_t)(((int32_t)((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)-16777216)))>>((int32_t)24)))); } } IL2CPP_EXTERN_C int32_t XsdDateTime_get_InternalTypeCode_m5ABF7CF00F320084E4A88B378A6F67628282ED8B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDateTime_get_InternalTypeCode_m5ABF7CF00F320084E4A88B378A6F67628282ED8B(_thisAdjusted, method); return _returnValue; } // System.Xml.Schema.XsdDateTime/XsdDateTimeKind System.Xml.Schema.XsdDateTime::get_InternalKind() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_InternalKind_m4E6428AB9D5F833A2A114B2795792397E2F05280 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method) { { uint32_t L_0 = __this->get_extra_1(); return (int32_t)(((int32_t)((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)16711680)))>>((int32_t)16)))); } } IL2CPP_EXTERN_C int32_t XsdDateTime_get_InternalKind_m4E6428AB9D5F833A2A114B2795792397E2F05280_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDateTime_get_InternalKind_m4E6428AB9D5F833A2A114B2795792397E2F05280(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.Schema.XsdDateTime::get_Year() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_Year_mBE1BB90D4667D6094E2D94CA3325363843FB9E13 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method) { { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_0 = __this->get_address_of_dt_0(); int32_t L_1; L_1 = DateTime_get_Year_m977F96B53C996797BFBDCAA5679B8DCBA61AC185((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int32_t XsdDateTime_get_Year_mBE1BB90D4667D6094E2D94CA3325363843FB9E13_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDateTime_get_Year_mBE1BB90D4667D6094E2D94CA3325363843FB9E13(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.Schema.XsdDateTime::get_Month() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_Month_m3729FF3784EF3AB1899CF6BD192C8604201F2A88 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method) { { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_0 = __this->get_address_of_dt_0(); int32_t L_1; L_1 = DateTime_get_Month_m46CC2AED3F24A91104919B1F6B5103DD1F8BBAE8((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int32_t XsdDateTime_get_Month_m3729FF3784EF3AB1899CF6BD192C8604201F2A88_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDateTime_get_Month_m3729FF3784EF3AB1899CF6BD192C8604201F2A88(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.Schema.XsdDateTime::get_Day() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_Day_m0D5FEF4127CE4266C59B7C93C8AD490DB31749E1 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method) { { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_0 = __this->get_address_of_dt_0(); int32_t L_1; L_1 = DateTime_get_Day_m9D698CA2A7D1FBEE7BEC0A982A119239F513CBA8((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int32_t XsdDateTime_get_Day_m0D5FEF4127CE4266C59B7C93C8AD490DB31749E1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDateTime_get_Day_m0D5FEF4127CE4266C59B7C93C8AD490DB31749E1(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.Schema.XsdDateTime::get_Hour() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_Hour_m9D96549A87FDF157F9A3625AF03B2C5B905F2246 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method) { { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_0 = __this->get_address_of_dt_0(); int32_t L_1; L_1 = DateTime_get_Hour_m6AC78B553639A108EA00728498FA037E52CC425E((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int32_t XsdDateTime_get_Hour_m9D96549A87FDF157F9A3625AF03B2C5B905F2246_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDateTime_get_Hour_m9D96549A87FDF157F9A3625AF03B2C5B905F2246(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.Schema.XsdDateTime::get_Minute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_Minute_mBA23AB4303F2F82EA8842790C897BC47AF7B40DB (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method) { { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_0 = __this->get_address_of_dt_0(); int32_t L_1; L_1 = DateTime_get_Minute_m1BBE1AABAAFE39019ED26585D12E67A1F9D5A4AA((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int32_t XsdDateTime_get_Minute_mBA23AB4303F2F82EA8842790C897BC47AF7B40DB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDateTime_get_Minute_mBA23AB4303F2F82EA8842790C897BC47AF7B40DB(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.Schema.XsdDateTime::get_Second() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_Second_m079C8C99439D580CB2DAB6B27D14F02C12DB27D6 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method) { { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_0 = __this->get_address_of_dt_0(); int32_t L_1; L_1 = DateTime_get_Second_m6E1FEADC4E62BCC99846934C0761F0AF67DFE17A((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int32_t XsdDateTime_get_Second_m079C8C99439D580CB2DAB6B27D14F02C12DB27D6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDateTime_get_Second_m079C8C99439D580CB2DAB6B27D14F02C12DB27D6(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.Schema.XsdDateTime::get_Fraction() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_Fraction_mD3F56C4BDE5975B49102003499A9F77E0AC59E09 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method) { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 V_0; memset((&V_0), 0, sizeof(V_0)); { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_0 = __this->get_address_of_dt_0(); int64_t L_1; L_1 = DateTime_get_Ticks_m175EDB41A50DB06872CC48CAB603FEBD1DFF46A9((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_0, /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_2 = __this->get_address_of_dt_0(); int32_t L_3; L_3 = DateTime_get_Year_m977F96B53C996797BFBDCAA5679B8DCBA61AC185((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_2, /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_4 = __this->get_address_of_dt_0(); int32_t L_5; L_5 = DateTime_get_Month_m46CC2AED3F24A91104919B1F6B5103DD1F8BBAE8((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_4, /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_6 = __this->get_address_of_dt_0(); int32_t L_7; L_7 = DateTime_get_Day_m9D698CA2A7D1FBEE7BEC0A982A119239F513CBA8((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_6, /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_8 = __this->get_address_of_dt_0(); int32_t L_9; L_9 = DateTime_get_Hour_m6AC78B553639A108EA00728498FA037E52CC425E((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_8, /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_10 = __this->get_address_of_dt_0(); int32_t L_11; L_11 = DateTime_get_Minute_m1BBE1AABAAFE39019ED26585D12E67A1F9D5A4AA((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_10, /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_12 = __this->get_address_of_dt_0(); int32_t L_13; L_13 = DateTime_get_Second_m6E1FEADC4E62BCC99846934C0761F0AF67DFE17A((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_12, /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_14; memset((&L_14), 0, sizeof(L_14)); DateTime__ctor_m4DA8AA49E6923EDCFB8927D588AE3D79B218545D((&L_14), L_3, L_5, L_7, L_9, L_11, L_13, /*hidden argument*/NULL); V_0 = L_14; int64_t L_15; L_15 = DateTime_get_Ticks_m175EDB41A50DB06872CC48CAB603FEBD1DFF46A9((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_0), /*hidden argument*/NULL); return ((int32_t)((int32_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_1, (int64_t)L_15)))); } } IL2CPP_EXTERN_C int32_t XsdDateTime_get_Fraction_mD3F56C4BDE5975B49102003499A9F77E0AC59E09_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDateTime_get_Fraction_mD3F56C4BDE5975B49102003499A9F77E0AC59E09(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.Schema.XsdDateTime::get_ZoneHour() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_ZoneHour_m0F48E533A69259BB60EF8BCB3817582799E7759C (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method) { { uint32_t L_0 = __this->get_extra_1(); return ((int32_t)((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)65280)))>>8)); } } IL2CPP_EXTERN_C int32_t XsdDateTime_get_ZoneHour_m0F48E533A69259BB60EF8BCB3817582799E7759C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDateTime_get_ZoneHour_m0F48E533A69259BB60EF8BCB3817582799E7759C(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.Schema.XsdDateTime::get_ZoneMinute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDateTime_get_ZoneMinute_m15233BB7C7F4EE3DC4A81E4CCC5EF81E4E8CBB06 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method) { { uint32_t L_0 = __this->get_extra_1(); return ((int32_t)((int32_t)L_0&(int32_t)((int32_t)255))); } } IL2CPP_EXTERN_C int32_t XsdDateTime_get_ZoneMinute_m15233BB7C7F4EE3DC4A81E4CCC5EF81E4E8CBB06_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDateTime_get_ZoneMinute_m15233BB7C7F4EE3DC4A81E4CCC5EF81E4E8CBB06(_thisAdjusted, method); return _returnValue; } // System.DateTime System.Xml.Schema.XsdDateTime::op_Implicit(System.Xml.Schema.XsdDateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 XsdDateTime_op_Implicit_m2DF6E197CB35F704BE4A164743F4EDA284181EAC (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D ___xdt0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 V_0; memset((&V_0), 0, sizeof(V_0)); int64_t V_1 = 0; int32_t V_2 = 0; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 V_3; memset((&V_3), 0, sizeof(V_3)); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_4; memset((&V_4), 0, sizeof(V_4)); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 V_5; memset((&V_5), 0, sizeof(V_5)); int32_t V_6 = 0; TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_7; memset((&V_7), 0, sizeof(V_7)); { int32_t L_0; L_0 = XsdDateTime_get_InternalTypeCode_m5ABF7CF00F320084E4A88B378A6F67628282ED8B((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); V_2 = L_0; int32_t L_1 = V_2; if ((((int32_t)L_1) == ((int32_t)1))) { goto IL_0037; } } { int32_t L_2 = V_2; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)6))) <= ((uint32_t)1)))) { goto IL_0089; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_3; L_3 = DateTime_get_Now_mDC71803EA6776DD66EA7477CDCCD62191726B478(/*hidden argument*/NULL); V_5 = L_3; int32_t L_4; L_4 = DateTime_get_Year_m977F96B53C996797BFBDCAA5679B8DCBA61AC185((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_5), /*hidden argument*/NULL); int32_t L_5; L_5 = XsdDateTime_get_Month_m3729FF3784EF3AB1899CF6BD192C8604201F2A88((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); int32_t L_6; L_6 = XsdDateTime_get_Day_m0D5FEF4127CE4266C59B7C93C8AD490DB31749E1((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); DateTime__ctor_m1AD9E79A671864DFB1AABDB75D207C688B868D88((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_0), L_4, L_5, L_6, /*hidden argument*/NULL); goto IL_0090; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_7; L_7 = DateTime_get_Now_mDC71803EA6776DD66EA7477CDCCD62191726B478(/*hidden argument*/NULL); V_3 = L_7; int32_t L_8; L_8 = DateTime_get_Year_m977F96B53C996797BFBDCAA5679B8DCBA61AC185((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_3), /*hidden argument*/NULL); int32_t L_9; L_9 = DateTime_get_Month_m46CC2AED3F24A91104919B1F6B5103DD1F8BBAE8((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_3), /*hidden argument*/NULL); int32_t L_10; L_10 = DateTime_get_Day_m9D698CA2A7D1FBEE7BEC0A982A119239F513CBA8((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_3), /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_11; memset((&L_11), 0, sizeof(L_11)); DateTime__ctor_m1AD9E79A671864DFB1AABDB75D207C688B868D88((&L_11), L_8, L_9, L_10, /*hidden argument*/NULL); int32_t L_12; L_12 = XsdDateTime_get_Year_mBE1BB90D4667D6094E2D94CA3325363843FB9E13((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); int32_t L_13; L_13 = XsdDateTime_get_Month_m3729FF3784EF3AB1899CF6BD192C8604201F2A88((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); int32_t L_14; L_14 = XsdDateTime_get_Day_m0D5FEF4127CE4266C59B7C93C8AD490DB31749E1((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_15; memset((&L_15), 0, sizeof(L_15)); DateTime__ctor_m1AD9E79A671864DFB1AABDB75D207C688B868D88((&L_15), L_12, L_13, L_14, /*hidden argument*/NULL); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_16; L_16 = DateTime_op_Subtraction_m6ED0E9FA2961769C03E515F244D0A68DC1C402B5(L_11, L_15, /*hidden argument*/NULL); V_4 = L_16; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_17 = (&___xdt0)->get_address_of_dt_0(); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_18 = V_4; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_19; L_19 = DateTime_Add_m317E517C3818A7EF09BB4D0E5547FF791814777D((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_17, L_18, /*hidden argument*/NULL); V_0 = L_19; goto IL_0090; } IL_0089: { XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D L_20 = ___xdt0; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_21 = L_20.get_dt_0(); V_0 = L_21; } IL_0090: { int32_t L_22; L_22 = XsdDateTime_get_InternalKind_m4E6428AB9D5F833A2A114B2795792397E2F05280((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); V_6 = L_22; int32_t L_23 = V_6; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1))) { case 0: { goto IL_00b3; } case 1: { goto IL_0153; } case 2: { goto IL_00c7; } } } { goto IL_01da; } IL_00b3: { int64_t L_24; L_24 = DateTime_get_Ticks_m175EDB41A50DB06872CC48CAB603FEBD1DFF46A9((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_0), /*hidden argument*/NULL); DateTime__ctor_mD17BC147184B06220C3FD44EBF50238A3894ADD7((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_0), L_24, 1, /*hidden argument*/NULL); goto IL_01da; } IL_00c7: { int64_t L_25; L_25 = DateTime_get_Ticks_m175EDB41A50DB06872CC48CAB603FEBD1DFF46A9((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_0), /*hidden argument*/NULL); int32_t L_26; L_26 = XsdDateTime_get_ZoneHour_m0F48E533A69259BB60EF8BCB3817582799E7759C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); int32_t L_27; L_27 = XsdDateTime_get_ZoneMinute_m15233BB7C7F4EE3DC4A81E4CCC5EF81E4E8CBB06((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_28; memset((&L_28), 0, sizeof(L_28)); TimeSpan__ctor_m809B4E761E68A974DCE454C30595ADE72DCE3A91((&L_28), L_26, L_27, 0, /*hidden argument*/NULL); V_7 = L_28; int64_t L_29; L_29 = TimeSpan_get_Ticks_mE4C9E1F27DC794028CEDCF7CB5BD092D16DBACD4_inline((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_7), /*hidden argument*/NULL); V_1 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_25, (int64_t)L_29)); int64_t L_30 = V_1; IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_31 = ((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var))->get_MinValue_31(); V_5 = L_31; int64_t L_32; L_32 = DateTime_get_Ticks_m175EDB41A50DB06872CC48CAB603FEBD1DFF46A9((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_5), /*hidden argument*/NULL); if ((((int64_t)L_30) >= ((int64_t)L_32))) { goto IL_013d; } } { int64_t L_33 = V_1; TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074 * L_34; L_34 = TimeZoneInfo_get_Local_m3C0852D46BC4C5F244359204C1A14904E5C68690(/*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_35 = V_0; NullCheck(L_34); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_36; L_36 = TimeZoneInfo_GetUtcOffset_m141D157CBED31EEB89D133955485874F235DAACA(L_34, L_35, /*hidden argument*/NULL); V_7 = L_36; int64_t L_37; L_37 = TimeSpan_get_Ticks_mE4C9E1F27DC794028CEDCF7CB5BD092D16DBACD4_inline((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_7), /*hidden argument*/NULL); V_1 = ((int64_t)il2cpp_codegen_add((int64_t)L_33, (int64_t)L_37)); int64_t L_38 = V_1; IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_39 = ((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var))->get_MinValue_31(); V_5 = L_39; int64_t L_40; L_40 = DateTime_get_Ticks_m175EDB41A50DB06872CC48CAB603FEBD1DFF46A9((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_5), /*hidden argument*/NULL); if ((((int64_t)L_38) >= ((int64_t)L_40))) { goto IL_0135; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_41 = ((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var))->get_MinValue_31(); V_5 = L_41; int64_t L_42; L_42 = DateTime_get_Ticks_m175EDB41A50DB06872CC48CAB603FEBD1DFF46A9((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_5), /*hidden argument*/NULL); V_1 = L_42; } IL_0135: { int64_t L_43 = V_1; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_44; memset((&L_44), 0, sizeof(L_44)); DateTime__ctor_mD17BC147184B06220C3FD44EBF50238A3894ADD7((&L_44), L_43, 2, /*hidden argument*/NULL); return L_44; } IL_013d: { int64_t L_45 = V_1; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_46; memset((&L_46), 0, sizeof(L_46)); DateTime__ctor_mD17BC147184B06220C3FD44EBF50238A3894ADD7((&L_46), L_45, 1, /*hidden argument*/NULL); V_5 = L_46; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_47; L_47 = DateTime_ToLocalTime_mCE92C270822E0C13C7C849BDE5DDC852A4CF0A08((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_5), /*hidden argument*/NULL); V_0 = L_47; goto IL_01da; } IL_0153: { int64_t L_48; L_48 = DateTime_get_Ticks_m175EDB41A50DB06872CC48CAB603FEBD1DFF46A9((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_0), /*hidden argument*/NULL); int32_t L_49; L_49 = XsdDateTime_get_ZoneHour_m0F48E533A69259BB60EF8BCB3817582799E7759C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); int32_t L_50; L_50 = XsdDateTime_get_ZoneMinute_m15233BB7C7F4EE3DC4A81E4CCC5EF81E4E8CBB06((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_51; memset((&L_51), 0, sizeof(L_51)); TimeSpan__ctor_m809B4E761E68A974DCE454C30595ADE72DCE3A91((&L_51), L_49, L_50, 0, /*hidden argument*/NULL); V_7 = L_51; int64_t L_52; L_52 = TimeSpan_get_Ticks_mE4C9E1F27DC794028CEDCF7CB5BD092D16DBACD4_inline((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_7), /*hidden argument*/NULL); V_1 = ((int64_t)il2cpp_codegen_add((int64_t)L_48, (int64_t)L_52)); int64_t L_53 = V_1; IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_54 = ((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var))->get_MaxValue_32(); V_5 = L_54; int64_t L_55; L_55 = DateTime_get_Ticks_m175EDB41A50DB06872CC48CAB603FEBD1DFF46A9((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_5), /*hidden argument*/NULL); if ((((int64_t)L_53) <= ((int64_t)L_55))) { goto IL_01c9; } } { int64_t L_56 = V_1; TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074 * L_57; L_57 = TimeZoneInfo_get_Local_m3C0852D46BC4C5F244359204C1A14904E5C68690(/*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_58 = V_0; NullCheck(L_57); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_59; L_59 = TimeZoneInfo_GetUtcOffset_m141D157CBED31EEB89D133955485874F235DAACA(L_57, L_58, /*hidden argument*/NULL); V_7 = L_59; int64_t L_60; L_60 = TimeSpan_get_Ticks_mE4C9E1F27DC794028CEDCF7CB5BD092D16DBACD4_inline((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_7), /*hidden argument*/NULL); V_1 = ((int64_t)il2cpp_codegen_add((int64_t)L_56, (int64_t)L_60)); int64_t L_61 = V_1; IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_62 = ((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var))->get_MaxValue_32(); V_5 = L_62; int64_t L_63; L_63 = DateTime_get_Ticks_m175EDB41A50DB06872CC48CAB603FEBD1DFF46A9((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_5), /*hidden argument*/NULL); if ((((int64_t)L_61) <= ((int64_t)L_63))) { goto IL_01c1; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_64 = ((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var))->get_MaxValue_32(); V_5 = L_64; int64_t L_65; L_65 = DateTime_get_Ticks_m175EDB41A50DB06872CC48CAB603FEBD1DFF46A9((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_5), /*hidden argument*/NULL); V_1 = L_65; } IL_01c1: { int64_t L_66 = V_1; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_67; memset((&L_67), 0, sizeof(L_67)); DateTime__ctor_mD17BC147184B06220C3FD44EBF50238A3894ADD7((&L_67), L_66, 2, /*hidden argument*/NULL); return L_67; } IL_01c9: { int64_t L_68 = V_1; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_69; memset((&L_69), 0, sizeof(L_69)); DateTime__ctor_mD17BC147184B06220C3FD44EBF50238A3894ADD7((&L_69), L_68, 1, /*hidden argument*/NULL); V_5 = L_69; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_70; L_70 = DateTime_ToLocalTime_mCE92C270822E0C13C7C849BDE5DDC852A4CF0A08((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_5), /*hidden argument*/NULL); V_0 = L_70; } IL_01da: { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_71 = V_0; return L_71; } } // System.DateTimeOffset System.Xml.Schema.XsdDateTime::op_Implicit(System.Xml.Schema.XsdDateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 XsdDateTime_op_Implicit_m0F297F01527D95A2E3EAFAD11BBBE71E484DEB7F (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D ___xdt0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 V_0; memset((&V_0), 0, sizeof(V_0)); DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 V_1; memset((&V_1), 0, sizeof(V_1)); int32_t V_2 = 0; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 V_3; memset((&V_3), 0, sizeof(V_3)); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_4; memset((&V_4), 0, sizeof(V_4)); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 V_5; memset((&V_5), 0, sizeof(V_5)); int32_t V_6 = 0; { int32_t L_0; L_0 = XsdDateTime_get_InternalTypeCode_m5ABF7CF00F320084E4A88B378A6F67628282ED8B((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); V_2 = L_0; int32_t L_1 = V_2; if ((((int32_t)L_1) == ((int32_t)1))) { goto IL_0037; } } { int32_t L_2 = V_2; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)6))) <= ((uint32_t)1)))) { goto IL_0089; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_3; L_3 = DateTime_get_Now_mDC71803EA6776DD66EA7477CDCCD62191726B478(/*hidden argument*/NULL); V_5 = L_3; int32_t L_4; L_4 = DateTime_get_Year_m977F96B53C996797BFBDCAA5679B8DCBA61AC185((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_5), /*hidden argument*/NULL); int32_t L_5; L_5 = XsdDateTime_get_Month_m3729FF3784EF3AB1899CF6BD192C8604201F2A88((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); int32_t L_6; L_6 = XsdDateTime_get_Day_m0D5FEF4127CE4266C59B7C93C8AD490DB31749E1((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); DateTime__ctor_m1AD9E79A671864DFB1AABDB75D207C688B868D88((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_0), L_4, L_5, L_6, /*hidden argument*/NULL); goto IL_0090; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_7; L_7 = DateTime_get_Now_mDC71803EA6776DD66EA7477CDCCD62191726B478(/*hidden argument*/NULL); V_3 = L_7; int32_t L_8; L_8 = DateTime_get_Year_m977F96B53C996797BFBDCAA5679B8DCBA61AC185((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_3), /*hidden argument*/NULL); int32_t L_9; L_9 = DateTime_get_Month_m46CC2AED3F24A91104919B1F6B5103DD1F8BBAE8((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_3), /*hidden argument*/NULL); int32_t L_10; L_10 = DateTime_get_Day_m9D698CA2A7D1FBEE7BEC0A982A119239F513CBA8((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_3), /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_11; memset((&L_11), 0, sizeof(L_11)); DateTime__ctor_m1AD9E79A671864DFB1AABDB75D207C688B868D88((&L_11), L_8, L_9, L_10, /*hidden argument*/NULL); int32_t L_12; L_12 = XsdDateTime_get_Year_mBE1BB90D4667D6094E2D94CA3325363843FB9E13((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); int32_t L_13; L_13 = XsdDateTime_get_Month_m3729FF3784EF3AB1899CF6BD192C8604201F2A88((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); int32_t L_14; L_14 = XsdDateTime_get_Day_m0D5FEF4127CE4266C59B7C93C8AD490DB31749E1((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_15; memset((&L_15), 0, sizeof(L_15)); DateTime__ctor_m1AD9E79A671864DFB1AABDB75D207C688B868D88((&L_15), L_12, L_13, L_14, /*hidden argument*/NULL); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_16; L_16 = DateTime_op_Subtraction_m6ED0E9FA2961769C03E515F244D0A68DC1C402B5(L_11, L_15, /*hidden argument*/NULL); V_4 = L_16; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_17 = (&___xdt0)->get_address_of_dt_0(); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_18 = V_4; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_19; L_19 = DateTime_Add_m317E517C3818A7EF09BB4D0E5547FF791814777D((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_17, L_18, /*hidden argument*/NULL); V_0 = L_19; goto IL_0090; } IL_0089: { XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D L_20 = ___xdt0; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_21 = L_20.get_dt_0(); V_0 = L_21; } IL_0090: { int32_t L_22; L_22 = XsdDateTime_get_InternalKind_m4E6428AB9D5F833A2A114B2795792397E2F05280((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); V_6 = L_22; int32_t L_23 = V_6; switch (L_23) { case 0: { goto IL_0101; } case 1: { goto IL_00f0; } case 2: { goto IL_00d0; } case 3: { goto IL_00b2; } } } { goto IL_0101; } IL_00b2: { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_24 = V_0; int32_t L_25; L_25 = XsdDateTime_get_ZoneHour_m0F48E533A69259BB60EF8BCB3817582799E7759C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); int32_t L_26; L_26 = XsdDateTime_get_ZoneMinute_m15233BB7C7F4EE3DC4A81E4CCC5EF81E4E8CBB06((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_27; memset((&L_27), 0, sizeof(L_27)); TimeSpan__ctor_m809B4E761E68A974DCE454C30595ADE72DCE3A91((&L_27), L_25, L_26, 0, /*hidden argument*/NULL); DateTimeOffset__ctor_m8A11F564555A7592D65E8012FD98CDEDD2913B9F((DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)(&V_1), L_24, L_27, /*hidden argument*/NULL); goto IL_0114; } IL_00d0: { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_28 = V_0; int32_t L_29; L_29 = XsdDateTime_get_ZoneHour_m0F48E533A69259BB60EF8BCB3817582799E7759C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); int32_t L_30; L_30 = XsdDateTime_get_ZoneMinute_m15233BB7C7F4EE3DC4A81E4CCC5EF81E4E8CBB06((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)(&___xdt0), /*hidden argument*/NULL); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_31; memset((&L_31), 0, sizeof(L_31)); TimeSpan__ctor_m809B4E761E68A974DCE454C30595ADE72DCE3A91((&L_31), ((-L_29)), ((-L_30)), 0, /*hidden argument*/NULL); DateTimeOffset__ctor_m8A11F564555A7592D65E8012FD98CDEDD2913B9F((DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)(&V_1), L_28, L_31, /*hidden argument*/NULL); goto IL_0114; } IL_00f0: { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_32 = V_0; TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_33; memset((&L_33), 0, sizeof(L_33)); TimeSpan__ctor_mC80FA729ECA3A7AF31D9F517A95E60FC23EB86B0_inline((&L_33), ((int64_t)((int64_t)0)), /*hidden argument*/NULL); DateTimeOffset__ctor_m8A11F564555A7592D65E8012FD98CDEDD2913B9F((DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)(&V_1), L_32, L_33, /*hidden argument*/NULL); goto IL_0114; } IL_0101: { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_34 = V_0; TimeZoneInfo_t6988042963E068DC7DE283E2D0902C0B8A40C074 * L_35; L_35 = TimeZoneInfo_get_Local_m3C0852D46BC4C5F244359204C1A14904E5C68690(/*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_36 = V_0; NullCheck(L_35); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_37; L_37 = TimeZoneInfo_GetUtcOffset_m141D157CBED31EEB89D133955485874F235DAACA(L_35, L_36, /*hidden argument*/NULL); DateTimeOffset__ctor_m8A11F564555A7592D65E8012FD98CDEDD2913B9F((DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)(&V_1), L_34, L_37, /*hidden argument*/NULL); } IL_0114: { DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_38 = V_1; return L_38; } } // System.String System.Xml.Schema.XsdDateTime::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdDateTime_ToString_m56E4A768E3F99F119FE62DA25E1E24690ECAAB4E (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_1 = NULL; int32_t V_2 = 0; { StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mEDFFE2D378A15F6DAB54D52661C84C1B52E7BA2E(L_0, ((int32_t)64), /*hidden argument*/NULL); V_0 = L_0; int32_t L_1; L_1 = XsdDateTime_get_InternalTypeCode_m5ABF7CF00F320084E4A88B378A6F67628282ED8B((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); V_2 = L_1; int32_t L_2 = V_2; switch (L_2) { case 0: { goto IL_003a; } case 1: { goto IL_0056; } case 2: { goto IL_0062; } case 3: { goto IL_006e; } case 4: { goto IL_00b0; } case 5: { goto IL_00d7; } case 6: { goto IL_012a; } case 7: { goto IL_0168; } } } { goto IL_01ad; } IL_003a: { StringBuilder_t * L_3 = V_0; XsdDateTime_PrintDate_mBF71F4E59FCB563EC5C269D581EFB588577378DB((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_3, /*hidden argument*/NULL); StringBuilder_t * L_4 = V_0; NullCheck(L_4); StringBuilder_t * L_5; L_5 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_4, ((int32_t)84), /*hidden argument*/NULL); StringBuilder_t * L_6 = V_0; XsdDateTime_PrintTime_mC39D27CA85F75F2A602D103FA901276F6E7B50F4((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_6, /*hidden argument*/NULL); goto IL_01ad; } IL_0056: { StringBuilder_t * L_7 = V_0; XsdDateTime_PrintTime_mC39D27CA85F75F2A602D103FA901276F6E7B50F4((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_7, /*hidden argument*/NULL); goto IL_01ad; } IL_0062: { StringBuilder_t * L_8 = V_0; XsdDateTime_PrintDate_mBF71F4E59FCB563EC5C269D581EFB588577378DB((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_8, /*hidden argument*/NULL); goto IL_01ad; } IL_006e: { IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_9 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_MM_4(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_10 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)L_9); V_1 = L_10; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_11 = V_1; int32_t L_12; L_12 = XsdDateTime_get_Year_mBE1BB90D4667D6094E2D94CA3325363843FB9E13((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_IntToCharArray_mA917EC8646F4F6DA14C2E4601C885EA7A5B3CE5F((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_11, 0, L_12, 4, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_13 = V_1; int32_t L_14 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_2(); NullCheck(L_13); (L_13)->SetAt(static_cast(L_14), (Il2CppChar)((int32_t)45)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_15 = V_1; int32_t L_16 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy__3(); int32_t L_17; L_17 = XsdDateTime_get_Month_m3729FF3784EF3AB1899CF6BD192C8604201F2A88((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_15, L_16, L_17, /*hidden argument*/NULL); StringBuilder_t * L_18 = V_0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_19 = V_1; NullCheck(L_18); StringBuilder_t * L_20; L_20 = StringBuilder_Append_m3BE4C94FB7DDD0AB42515FC321FBD03B81A03A1C(L_18, L_19, /*hidden argument*/NULL); goto IL_01ad; } IL_00b0: { IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_21 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_2(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_22 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)L_21); V_1 = L_22; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_23 = V_1; int32_t L_24; L_24 = XsdDateTime_get_Year_mBE1BB90D4667D6094E2D94CA3325363843FB9E13((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_IntToCharArray_mA917EC8646F4F6DA14C2E4601C885EA7A5B3CE5F((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_23, 0, L_24, 4, /*hidden argument*/NULL); StringBuilder_t * L_25 = V_0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_26 = V_1; NullCheck(L_25); StringBuilder_t * L_27; L_27 = StringBuilder_Append_m3BE4C94FB7DDD0AB42515FC321FBD03B81A03A1C(L_25, L_26, /*hidden argument*/NULL); goto IL_01ad; } IL_00d7: { IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_28 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__mm_dd_21(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_29 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)L_28); V_1 = L_29; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_30 = V_1; NullCheck(L_30); (L_30)->SetAt(static_cast(0), (Il2CppChar)((int32_t)45)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_31 = V_1; int32_t L_32 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__13(); NullCheck(L_31); (L_31)->SetAt(static_cast(L_32), (Il2CppChar)((int32_t)45)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_33 = V_1; int32_t L_34 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz___17(); int32_t L_35; L_35 = XsdDateTime_get_Month_m3729FF3784EF3AB1899CF6BD192C8604201F2A88((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_33, L_34, L_35, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_36 = V_1; int32_t L_37 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__mm_18(); NullCheck(L_36); (L_36)->SetAt(static_cast(L_37), (Il2CppChar)((int32_t)45)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_38 = V_1; int32_t L_39 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__mm__19(); int32_t L_40; L_40 = XsdDateTime_get_Day_m0D5FEF4127CE4266C59B7C93C8AD490DB31749E1((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_38, L_39, L_40, /*hidden argument*/NULL); StringBuilder_t * L_41 = V_0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_42 = V_1; NullCheck(L_41); StringBuilder_t * L_43; L_43 = StringBuilder_Append_m3BE4C94FB7DDD0AB42515FC321FBD03B81A03A1C(L_41, L_42, /*hidden argument*/NULL); goto IL_01ad; } IL_012a: { IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_44 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz___dd_23(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_45 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)L_44); V_1 = L_45; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_46 = V_1; NullCheck(L_46); (L_46)->SetAt(static_cast(0), (Il2CppChar)((int32_t)45)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_47 = V_1; int32_t L_48 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__13(); NullCheck(L_47); (L_47)->SetAt(static_cast(L_48), (Il2CppChar)((int32_t)45)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_49 = V_1; int32_t L_50 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz___17(); NullCheck(L_49); (L_49)->SetAt(static_cast(L_50), (Il2CppChar)((int32_t)45)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_51 = V_1; int32_t L_52 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz____22(); int32_t L_53; L_53 = XsdDateTime_get_Day_m0D5FEF4127CE4266C59B7C93C8AD490DB31749E1((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_51, L_52, L_53, /*hidden argument*/NULL); StringBuilder_t * L_54 = V_0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_55 = V_1; NullCheck(L_54); StringBuilder_t * L_56; L_56 = StringBuilder_Append_m3BE4C94FB7DDD0AB42515FC321FBD03B81A03A1C(L_54, L_55, /*hidden argument*/NULL); goto IL_01ad; } IL_0168: { IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_57 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__mm___20(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_58 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)L_57); V_1 = L_58; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_59 = V_1; NullCheck(L_59); (L_59)->SetAt(static_cast(0), (Il2CppChar)((int32_t)45)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_60 = V_1; int32_t L_61 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__13(); NullCheck(L_60); (L_60)->SetAt(static_cast(L_61), (Il2CppChar)((int32_t)45)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_62 = V_1; int32_t L_63 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz___17(); int32_t L_64; L_64 = XsdDateTime_get_Month_m3729FF3784EF3AB1899CF6BD192C8604201F2A88((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_62, L_63, L_64, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_65 = V_1; int32_t L_66 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__mm_18(); NullCheck(L_65); (L_65)->SetAt(static_cast(L_66), (Il2CppChar)((int32_t)45)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_67 = V_1; int32_t L_68 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__mm__19(); NullCheck(L_67); (L_67)->SetAt(static_cast(L_68), (Il2CppChar)((int32_t)45)); StringBuilder_t * L_69 = V_0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_70 = V_1; NullCheck(L_69); StringBuilder_t * L_71; L_71 = StringBuilder_Append_m3BE4C94FB7DDD0AB42515FC321FBD03B81A03A1C(L_69, L_70, /*hidden argument*/NULL); } IL_01ad: { StringBuilder_t * L_72 = V_0; XsdDateTime_PrintZone_mC03C8E9E1E8D2CA0AAE0319385338B18AC23C974((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_72, /*hidden argument*/NULL); StringBuilder_t * L_73 = V_0; NullCheck(L_73); String_t* L_74; L_74 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_73); return L_74; } } IL2CPP_EXTERN_C String_t* XsdDateTime_ToString_m56E4A768E3F99F119FE62DA25E1E24690ECAAB4E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = XsdDateTime_ToString_m56E4A768E3F99F119FE62DA25E1E24690ECAAB4E(_thisAdjusted, method); return _returnValue; } // System.Void System.Xml.Schema.XsdDateTime::PrintDate(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime_PrintDate_mBF71F4E59FCB563EC5C269D581EFB588577378DB (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_0 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_MM_dd_6(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_1 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = L_1; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_2 = V_0; int32_t L_3; L_3 = XsdDateTime_get_Year_mBE1BB90D4667D6094E2D94CA3325363843FB9E13((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_IntToCharArray_mA917EC8646F4F6DA14C2E4601C885EA7A5B3CE5F((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_2, 0, L_3, 4, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_4 = V_0; int32_t L_5 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_2(); NullCheck(L_4); (L_4)->SetAt(static_cast(L_5), (Il2CppChar)((int32_t)45)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_6 = V_0; int32_t L_7 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy__3(); int32_t L_8; L_8 = XsdDateTime_get_Month_m3729FF3784EF3AB1899CF6BD192C8604201F2A88((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_6, L_7, L_8, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_9 = V_0; int32_t L_10 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_MM_4(); NullCheck(L_9); (L_9)->SetAt(static_cast(L_10), (Il2CppChar)((int32_t)45)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_11 = V_0; int32_t L_12 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_MM__5(); int32_t L_13; L_13 = XsdDateTime_get_Day_m0D5FEF4127CE4266C59B7C93C8AD490DB31749E1((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_11, L_12, L_13, /*hidden argument*/NULL); StringBuilder_t * L_14 = ___sb0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_15 = V_0; NullCheck(L_14); StringBuilder_t * L_16; L_16 = StringBuilder_Append_m3BE4C94FB7DDD0AB42515FC321FBD03B81A03A1C(L_14, L_15, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void XsdDateTime_PrintDate_mBF71F4E59FCB563EC5C269D581EFB588577378DB_AdjustorThunk (RuntimeObject * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); XsdDateTime_PrintDate_mBF71F4E59FCB563EC5C269D581EFB588577378DB(_thisAdjusted, ___sb0, method); } // System.Void System.Xml.Schema.XsdDateTime::PrintTime(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime_PrintTime_mC39D27CA85F75F2A602D103FA901276F6E7B50F4 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; { IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_0 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_LzHH_mm_ss_12(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_1 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = L_1; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_2 = V_0; int32_t L_3; L_3 = XsdDateTime_get_Hour_m9D96549A87FDF157F9A3625AF03B2C5B905F2246((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_2, 0, L_3, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_4 = V_0; int32_t L_5 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_LzHH_8(); NullCheck(L_4); (L_4)->SetAt(static_cast(L_5), (Il2CppChar)((int32_t)58)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_6 = V_0; int32_t L_7 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_LzHH__9(); int32_t L_8; L_8 = XsdDateTime_get_Minute_mBA23AB4303F2F82EA8842790C897BC47AF7B40DB((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_6, L_7, L_8, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_9 = V_0; int32_t L_10 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_LzHH_mm_10(); NullCheck(L_9); (L_9)->SetAt(static_cast(L_10), (Il2CppChar)((int32_t)58)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_11 = V_0; int32_t L_12 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_LzHH_mm__11(); int32_t L_13; L_13 = XsdDateTime_get_Second_m079C8C99439D580CB2DAB6B27D14F02C12DB27D6((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_11, L_12, L_13, /*hidden argument*/NULL); StringBuilder_t * L_14 = ___sb0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_15 = V_0; NullCheck(L_14); StringBuilder_t * L_16; L_16 = StringBuilder_Append_m3BE4C94FB7DDD0AB42515FC321FBD03B81A03A1C(L_14, L_15, /*hidden argument*/NULL); int32_t L_17; L_17 = XsdDateTime_get_Fraction_mD3F56C4BDE5975B49102003499A9F77E0AC59E09((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); V_1 = L_17; int32_t L_18 = V_1; if (!L_18) { goto IL_0094; } } { V_2 = 7; goto IL_006e; } IL_0065: { int32_t L_19 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); int32_t L_20 = V_1; V_1 = ((int32_t)((int32_t)L_20/(int32_t)((int32_t)10))); } IL_006e: { int32_t L_21 = V_1; if (!((int32_t)((int32_t)L_21%(int32_t)((int32_t)10)))) { goto IL_0065; } } { int32_t L_22 = V_2; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_23 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1))); V_0 = L_23; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_24 = V_0; NullCheck(L_24); (L_24)->SetAt(static_cast(0), (Il2CppChar)((int32_t)46)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_25 = V_0; int32_t L_26 = V_1; int32_t L_27 = V_2; XsdDateTime_IntToCharArray_mA917EC8646F4F6DA14C2E4601C885EA7A5B3CE5F((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_25, 1, L_26, L_27, /*hidden argument*/NULL); StringBuilder_t * L_28 = ___sb0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_29 = V_0; NullCheck(L_28); StringBuilder_t * L_30; L_30 = StringBuilder_Append_m3BE4C94FB7DDD0AB42515FC321FBD03B81A03A1C(L_28, L_29, /*hidden argument*/NULL); } IL_0094: { return; } } IL2CPP_EXTERN_C void XsdDateTime_PrintTime_mC39D27CA85F75F2A602D103FA901276F6E7B50F4_AdjustorThunk (RuntimeObject * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); XsdDateTime_PrintTime_mC39D27CA85F75F2A602D103FA901276F6E7B50F4(_thisAdjusted, ___sb0, method); } // System.Void System.Xml.Schema.XsdDateTime::PrintZone(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime_PrintZone_mC03C8E9E1E8D2CA0AAE0319385338B18AC23C974 (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_0 = NULL; int32_t V_1 = 0; { int32_t L_0; L_0 = XsdDateTime_get_InternalKind_m4E6428AB9D5F833A2A114B2795792397E2F05280((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); V_1 = L_0; int32_t L_1 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1))) { case 0: { goto IL_001c; } case 1: { goto IL_0026; } case 2: { goto IL_006c; } } } { return; } IL_001c: { StringBuilder_t * L_2 = ___sb0; NullCheck(L_2); StringBuilder_t * L_3; L_3 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_2, ((int32_t)90), /*hidden argument*/NULL); return; } IL_0026: { IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_4 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz_zz_zz_16(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_5 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)L_4); V_0 = L_5; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_6 = V_0; NullCheck(L_6); (L_6)->SetAt(static_cast(0), (Il2CppChar)((int32_t)45)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_7 = V_0; int32_t L_8 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__13(); int32_t L_9; L_9 = XsdDateTime_get_ZoneHour_m0F48E533A69259BB60EF8BCB3817582799E7759C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_7, L_8, L_9, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_10 = V_0; int32_t L_11 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz_zz_14(); NullCheck(L_10); (L_10)->SetAt(static_cast(L_11), (Il2CppChar)((int32_t)58)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_12 = V_0; int32_t L_13 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz_zz__15(); int32_t L_14; L_14 = XsdDateTime_get_ZoneMinute_m15233BB7C7F4EE3DC4A81E4CCC5EF81E4E8CBB06((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_12, L_13, L_14, /*hidden argument*/NULL); StringBuilder_t * L_15 = ___sb0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_16 = V_0; NullCheck(L_15); StringBuilder_t * L_17; L_17 = StringBuilder_Append_m3BE4C94FB7DDD0AB42515FC321FBD03B81A03A1C(L_15, L_16, /*hidden argument*/NULL); return; } IL_006c: { IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_18 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz_zz_zz_16(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_19 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)L_18); V_0 = L_19; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_20 = V_0; NullCheck(L_20); (L_20)->SetAt(static_cast(0), (Il2CppChar)((int32_t)43)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_21 = V_0; int32_t L_22 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__13(); int32_t L_23; L_23 = XsdDateTime_get_ZoneHour_m0F48E533A69259BB60EF8BCB3817582799E7759C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_21, L_22, L_23, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_24 = V_0; int32_t L_25 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz_zz_14(); NullCheck(L_24); (L_24)->SetAt(static_cast(L_25), (Il2CppChar)((int32_t)58)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_26 = V_0; int32_t L_27 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz_zz__15(); int32_t L_28; L_28 = XsdDateTime_get_ZoneMinute_m15233BB7C7F4EE3DC4A81E4CCC5EF81E4E8CBB06((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, /*hidden argument*/NULL); XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D *)__this, L_26, L_27, L_28, /*hidden argument*/NULL); StringBuilder_t * L_29 = ___sb0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_30 = V_0; NullCheck(L_29); StringBuilder_t * L_31; L_31 = StringBuilder_Append_m3BE4C94FB7DDD0AB42515FC321FBD03B81A03A1C(L_29, L_30, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void XsdDateTime_PrintZone_mC03C8E9E1E8D2CA0AAE0319385338B18AC23C974_AdjustorThunk (RuntimeObject * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); XsdDateTime_PrintZone_mC03C8E9E1E8D2CA0AAE0319385338B18AC23C974(_thisAdjusted, ___sb0, method); } // System.Void System.Xml.Schema.XsdDateTime::IntToCharArray(System.Char[],System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime_IntToCharArray_mA917EC8646F4F6DA14C2E4601C885EA7A5B3CE5F (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___text0, int32_t ___start1, int32_t ___value2, int32_t ___digits3, const RuntimeMethod* method) { { goto IL_0016; } IL_0002: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_0 = ___text0; int32_t L_1 = ___start1; int32_t L_2 = ___digits3; int32_t L_3 = ___value2; NullCheck(L_0); (L_0)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2))), (Il2CppChar)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_3%(int32_t)((int32_t)10))), (int32_t)((int32_t)48)))))); int32_t L_4 = ___value2; ___value2 = ((int32_t)((int32_t)L_4/(int32_t)((int32_t)10))); } IL_0016: { int32_t L_5 = ___digits3; int32_t L_6 = L_5; ___digits3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)); if (L_6) { goto IL_0002; } } { return; } } IL2CPP_EXTERN_C void XsdDateTime_IntToCharArray_mA917EC8646F4F6DA14C2E4601C885EA7A5B3CE5F_AdjustorThunk (RuntimeObject * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___text0, int32_t ___start1, int32_t ___value2, int32_t ___digits3, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); XsdDateTime_IntToCharArray_mA917EC8646F4F6DA14C2E4601C885EA7A5B3CE5F(_thisAdjusted, ___text0, ___start1, ___value2, ___digits3, method); } // System.Void System.Xml.Schema.XsdDateTime::ShortToCharArray(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C (XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___text0, int32_t ___start1, int32_t ___value2, const RuntimeMethod* method) { { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_0 = ___text0; int32_t L_1 = ___start1; int32_t L_2 = ___value2; NullCheck(L_0); (L_0)->SetAt(static_cast(L_1), (Il2CppChar)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_2/(int32_t)((int32_t)10))), (int32_t)((int32_t)48)))))); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_3 = ___text0; int32_t L_4 = ___start1; int32_t L_5 = ___value2; NullCheck(L_3); (L_3)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))), (Il2CppChar)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_5%(int32_t)((int32_t)10))), (int32_t)((int32_t)48)))))); return; } } IL2CPP_EXTERN_C void XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C_AdjustorThunk (RuntimeObject * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___text0, int32_t ___start1, int32_t ___value2, const RuntimeMethod* method) { int32_t _offset = 1; XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D * _thisAdjusted = reinterpret_cast(__this + _offset); XsdDateTime_ShortToCharArray_mF1B4F8E3A6C20A57C4FBBF511C0F3AA7B5EFC32C(_thisAdjusted, ___text0, ___start1, ___value2, method); } // System.Void System.Xml.Schema.XsdDateTime::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDateTime__cctor_m8B2B7F55DABFE2A9D6E5C702D819F6630B049F20 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____7A32E1A19C182315E4263A65A72066492550D8CD_2_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeCodeU5BU5D_t4B53622F8096A3BE4E235382465B2E0FF7B85D6B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0A068BB3E9EA2EA72CF05B963841C49DBA8EEFF5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral111B078632ED414E9392C91DEE241B11C9EE8544); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral18FF4EE509547E9F427ED4CBAD56460397F93F60); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1F164EE4DE39AD90666ACDB4EA0CAABA7853CFCF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2198F1C92174A1B44CB01773603D23F6671D3329); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral57E00753C198BBF933B5B117333FD89AF5A3E48B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral68D5513A81FE3BA8EC49159C52E6505DA8BEA242); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BE89227A0BBC17012796DD27BB68B0D5FB2D35E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral878AE10D03D16A069554617545B8533ED09E594F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral92094BBD8DE1A81022C0FCA98F179197BA588E99); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3E0185CFEE766D02511A6B411F83832EC44A795); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCAF956214D83EED9D9B576DA1D727BD145303948); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCCD15A133CD38F3DFFFA94FA4D720EAC91F25B79); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD20945EB99E4CFCA27A66866A791F9AE0B7E4EBB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD3A16BBDB1662D7361031D5B9686BD4A9DD7F9D6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD67729AC2AE2B39DBBC387BDA1A36503B0C922C1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDB6A30F5C46ACC70D2AD58ABFB2A19A8F675C314); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDF1296B24672A38692CC663E858166C834F0ABD9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE358F823C39A638A3134E442FF53D303271291F3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF2EE2B9C299895393EAD54EEC93812CB500B915F); s_Il2CppMethodInitialized = true; } { NullCheck(_stringLiteralDF1296B24672A38692CC663E858166C834F0ABD9); int32_t L_0; L_0 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteralDF1296B24672A38692CC663E858166C834F0ABD9, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lzyyyy_2(L_0); NullCheck(_stringLiteralCCD15A133CD38F3DFFFA94FA4D720EAC91F25B79); int32_t L_1; L_1 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteralCCD15A133CD38F3DFFFA94FA4D720EAC91F25B79, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lzyyyy__3(L_1); NullCheck(_stringLiteralE358F823C39A638A3134E442FF53D303271291F3); int32_t L_2; L_2 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteralE358F823C39A638A3134E442FF53D303271291F3, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lzyyyy_MM_4(L_2); NullCheck(_stringLiteralD67729AC2AE2B39DBBC387BDA1A36503B0C922C1); int32_t L_3; L_3 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteralD67729AC2AE2B39DBBC387BDA1A36503B0C922C1, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lzyyyy_MM__5(L_3); NullCheck(_stringLiteral7BE89227A0BBC17012796DD27BB68B0D5FB2D35E); int32_t L_4; L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteral7BE89227A0BBC17012796DD27BB68B0D5FB2D35E, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lzyyyy_MM_dd_6(L_4); NullCheck(_stringLiteral878AE10D03D16A069554617545B8533ED09E594F); int32_t L_5; L_5 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteral878AE10D03D16A069554617545B8533ED09E594F, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lzyyyy_MM_ddT_7(L_5); NullCheck(_stringLiteral68D5513A81FE3BA8EC49159C52E6505DA8BEA242); int32_t L_6; L_6 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteral68D5513A81FE3BA8EC49159C52E6505DA8BEA242, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_LzHH_8(L_6); NullCheck(_stringLiteral57E00753C198BBF933B5B117333FD89AF5A3E48B); int32_t L_7; L_7 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteral57E00753C198BBF933B5B117333FD89AF5A3E48B, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_LzHH__9(L_7); NullCheck(_stringLiteral18FF4EE509547E9F427ED4CBAD56460397F93F60); int32_t L_8; L_8 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteral18FF4EE509547E9F427ED4CBAD56460397F93F60, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_LzHH_mm_10(L_8); NullCheck(_stringLiteral0A068BB3E9EA2EA72CF05B963841C49DBA8EEFF5); int32_t L_9; L_9 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteral0A068BB3E9EA2EA72CF05B963841C49DBA8EEFF5, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_LzHH_mm__11(L_9); NullCheck(_stringLiteral92094BBD8DE1A81022C0FCA98F179197BA588E99); int32_t L_10; L_10 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteral92094BBD8DE1A81022C0FCA98F179197BA588E99, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_LzHH_mm_ss_12(L_10); NullCheck(_stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0); int32_t L_11; L_11 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lz__13(L_11); NullCheck(_stringLiteralD3A16BBDB1662D7361031D5B9686BD4A9DD7F9D6); int32_t L_12; L_12 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteralD3A16BBDB1662D7361031D5B9686BD4A9DD7F9D6, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lz_zz_14(L_12); NullCheck(_stringLiteralDB6A30F5C46ACC70D2AD58ABFB2A19A8F675C314); int32_t L_13; L_13 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteralDB6A30F5C46ACC70D2AD58ABFB2A19A8F675C314, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lz_zz__15(L_13); NullCheck(_stringLiteral1F164EE4DE39AD90666ACDB4EA0CAABA7853CFCF); int32_t L_14; L_14 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteral1F164EE4DE39AD90666ACDB4EA0CAABA7853CFCF, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lz_zz_zz_16(L_14); NullCheck(_stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA); int32_t L_15; L_15 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lz___17(L_15); NullCheck(_stringLiteralF2EE2B9C299895393EAD54EEC93812CB500B915F); int32_t L_16; L_16 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteralF2EE2B9C299895393EAD54EEC93812CB500B915F, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lz__mm_18(L_16); NullCheck(_stringLiteralD20945EB99E4CFCA27A66866A791F9AE0B7E4EBB); int32_t L_17; L_17 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteralD20945EB99E4CFCA27A66866A791F9AE0B7E4EBB, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lz__mm__19(L_17); NullCheck(_stringLiteralA3E0185CFEE766D02511A6B411F83832EC44A795); int32_t L_18; L_18 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteralA3E0185CFEE766D02511A6B411F83832EC44A795, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lz__mm___20(L_18); NullCheck(_stringLiteral2198F1C92174A1B44CB01773603D23F6671D3329); int32_t L_19; L_19 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteral2198F1C92174A1B44CB01773603D23F6671D3329, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lz__mm_dd_21(L_19); NullCheck(_stringLiteral111B078632ED414E9392C91DEE241B11C9EE8544); int32_t L_20; L_20 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteral111B078632ED414E9392C91DEE241B11C9EE8544, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lz____22(L_20); NullCheck(_stringLiteralCAF956214D83EED9D9B576DA1D727BD145303948); int32_t L_21; L_21 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(_stringLiteralCAF956214D83EED9D9B576DA1D727BD145303948, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_Lz___dd_23(L_21); XmlTypeCodeU5BU5D_t4B53622F8096A3BE4E235382465B2E0FF7B85D6B* L_22 = (XmlTypeCodeU5BU5D_t4B53622F8096A3BE4E235382465B2E0FF7B85D6B*)(XmlTypeCodeU5BU5D_t4B53622F8096A3BE4E235382465B2E0FF7B85D6B*)SZArrayNew(XmlTypeCodeU5BU5D_t4B53622F8096A3BE4E235382465B2E0FF7B85D6B_il2cpp_TypeInfo_var, (uint32_t)8); XmlTypeCodeU5BU5D_t4B53622F8096A3BE4E235382465B2E0FF7B85D6B* L_23 = L_22; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_24 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____7A32E1A19C182315E4263A65A72066492550D8CD_2_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m37345890E8136134556D27E57315B584AC51D53F((RuntimeArray *)(RuntimeArray *)L_23, L_24, /*hidden argument*/NULL); ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->set_typeCodes_24(L_23); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XsdDuration::.ctor(System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDuration__ctor_mAF5DC027A1A37B5D9379CC9E200C733FB643F075 (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, bool ___isNegative0, int32_t ___years1, int32_t ___months2, int32_t ___days3, int32_t ___hours4, int32_t ___minutes5, int32_t ___seconds6, int32_t ___nanoseconds7, const RuntimeMethod* method) { { int32_t L_0 = ___years1; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000f; } } { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_1 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE9BB7116C03E5DA9D01F8D4803A0FFE9ADA5307)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdDuration__ctor_mAF5DC027A1A37B5D9379CC9E200C733FB643F075_RuntimeMethod_var))); } IL_000f: { int32_t L_2 = ___months2; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_001e; } } { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_3 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD83041E889BDAEB8F029AF50549D1347BD7FC949)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdDuration__ctor_mAF5DC027A1A37B5D9379CC9E200C733FB643F075_RuntimeMethod_var))); } IL_001e: { int32_t L_4 = ___days3; if ((((int32_t)L_4) >= ((int32_t)0))) { goto IL_002e; } } { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_5 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8243BA18D267E0E612210F4920079D9700A5DEEF)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdDuration__ctor_mAF5DC027A1A37B5D9379CC9E200C733FB643F075_RuntimeMethod_var))); } IL_002e: { int32_t L_6 = ___hours4; if ((((int32_t)L_6) >= ((int32_t)0))) { goto IL_003e; } } { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_7 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9104E82394351D786F4B739689D0B28ACF18A43D)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdDuration__ctor_mAF5DC027A1A37B5D9379CC9E200C733FB643F075_RuntimeMethod_var))); } IL_003e: { int32_t L_8 = ___minutes5; if ((((int32_t)L_8) >= ((int32_t)0))) { goto IL_004e; } } { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_9 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6912992FC50D2764B34BA8408AECF2DF5DB8080F)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdDuration__ctor_mAF5DC027A1A37B5D9379CC9E200C733FB643F075_RuntimeMethod_var))); } IL_004e: { int32_t L_10 = ___seconds6; if ((((int32_t)L_10) >= ((int32_t)0))) { goto IL_005e; } } { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_11 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAC2806EA40D9F7601BBB6DA354C649B46D2D8877)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdDuration__ctor_mAF5DC027A1A37B5D9379CC9E200C733FB643F075_RuntimeMethod_var))); } IL_005e: { int32_t L_12 = ___nanoseconds7; if ((((int32_t)L_12) < ((int32_t)0))) { goto IL_006c; } } { int32_t L_13 = ___nanoseconds7; if ((((int32_t)L_13) <= ((int32_t)((int32_t)999999999)))) { goto IL_0077; } } IL_006c: { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_14 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral58F2B4A0A3F5D63532995796ECF46099320B370D)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdDuration__ctor_mAF5DC027A1A37B5D9379CC9E200C733FB643F075_RuntimeMethod_var))); } IL_0077: { int32_t L_15 = ___years1; __this->set_years_0(L_15); int32_t L_16 = ___months2; __this->set_months_1(L_16); int32_t L_17 = ___days3; __this->set_days_2(L_17); int32_t L_18 = ___hours4; __this->set_hours_3(L_18); int32_t L_19 = ___minutes5; __this->set_minutes_4(L_19); int32_t L_20 = ___seconds6; __this->set_seconds_5(L_20); int32_t L_21 = ___nanoseconds7; __this->set_nanoseconds_6(L_21); bool L_22 = ___isNegative0; if (!L_22) { goto IL_00c2; } } { uint32_t L_23 = __this->get_nanoseconds_6(); __this->set_nanoseconds_6(((int32_t)((int32_t)L_23|(int32_t)((int32_t)-2147483648LL)))); } IL_00c2: { return; } } IL2CPP_EXTERN_C void XsdDuration__ctor_mAF5DC027A1A37B5D9379CC9E200C733FB643F075_AdjustorThunk (RuntimeObject * __this, bool ___isNegative0, int32_t ___years1, int32_t ___months2, int32_t ___days3, int32_t ___hours4, int32_t ___minutes5, int32_t ___seconds6, int32_t ___nanoseconds7, const RuntimeMethod* method) { int32_t _offset = 1; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * _thisAdjusted = reinterpret_cast(__this + _offset); XsdDuration__ctor_mAF5DC027A1A37B5D9379CC9E200C733FB643F075(_thisAdjusted, ___isNegative0, ___years1, ___months2, ___days3, ___hours4, ___minutes5, ___seconds6, ___nanoseconds7, method); } // System.Void System.Xml.Schema.XsdDuration::.ctor(System.TimeSpan,System.Xml.Schema.XsdDuration/DurationType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDuration__ctor_m87C4EF2E2EF7D4C8DDF37B1DC7C5ED849E052A70 (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___timeSpan0, int32_t ___durationType1, const RuntimeMethod* method) { int64_t V_0 = 0; uint64_t V_1 = 0; bool V_2 = false; int32_t V_3 = 0; int32_t V_4 = 0; { int64_t L_0; L_0 = TimeSpan_get_Ticks_mE4C9E1F27DC794028CEDCF7CB5BD092D16DBACD4_inline((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&___timeSpan0), /*hidden argument*/NULL); V_0 = L_0; int64_t L_1 = V_0; if ((((int64_t)L_1) >= ((int64_t)((int64_t)((int64_t)0))))) { goto IL_0014; } } { V_2 = (bool)1; int64_t L_2 = V_0; V_1 = ((-L_2)); goto IL_0018; } IL_0014: { V_2 = (bool)0; int64_t L_3 = V_0; V_1 = L_3; } IL_0018: { int32_t L_4 = ___durationType1; if ((!(((uint32_t)L_4) == ((uint32_t)1)))) { goto IL_0063; } } { uint64_t L_5 = V_1; V_3 = ((int32_t)((int32_t)((int64_t)((uint64_t)(int64_t)L_5/(uint64_t)(int64_t)((int64_t)315360000000000LL))))); uint64_t L_6 = V_1; V_4 = ((int32_t)((int32_t)((int64_t)((uint64_t)(int64_t)((int64_t)((uint64_t)(int64_t)L_6%(uint64_t)(int64_t)((int64_t)315360000000000LL)))/(uint64_t)(int64_t)((int64_t)25920000000000LL))))); int32_t L_7 = V_4; if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)12))))) { goto IL_004e; } } { int32_t L_8 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); V_4 = 0; } IL_004e: { bool L_9 = V_2; int32_t L_10 = V_3; int32_t L_11 = V_4; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F L_12; memset((&L_12), 0, sizeof(L_12)); XsdDuration__ctor_mAF5DC027A1A37B5D9379CC9E200C733FB643F075((&L_12), L_9, L_10, L_11, 0, 0, 0, 0, 0, /*hidden argument*/NULL); *(XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)__this = L_12; return; } IL_0063: { uint64_t L_13 = V_1; __this->set_nanoseconds_6(((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((uint32_t)((int64_t)((uint64_t)(int64_t)L_13%(uint64_t)(int64_t)((int64_t)((int64_t)((int32_t)10000000))))))), (int32_t)((int32_t)100)))); bool L_14 = V_2; if (!L_14) { goto IL_008a; } } { uint32_t L_15 = __this->get_nanoseconds_6(); __this->set_nanoseconds_6(((int32_t)((int32_t)L_15|(int32_t)((int32_t)-2147483648LL)))); } IL_008a: { __this->set_years_0(0); __this->set_months_1(0); uint64_t L_16 = V_1; __this->set_days_2(((int32_t)((int32_t)((int64_t)((uint64_t)(int64_t)L_16/(uint64_t)(int64_t)((int64_t)864000000000LL)))))); uint64_t L_17 = V_1; __this->set_hours_3(((int32_t)((int32_t)((int64_t)((uint64_t)(int64_t)((int64_t)((uint64_t)(int64_t)L_17/(uint64_t)(int64_t)((int64_t)36000000000LL)))%(uint64_t)(int64_t)((int64_t)((int64_t)((int32_t)24)))))))); uint64_t L_18 = V_1; __this->set_minutes_4(((int32_t)((int32_t)((int64_t)((uint64_t)(int64_t)((int64_t)((uint64_t)(int64_t)L_18/(uint64_t)(int64_t)((int64_t)((int64_t)((int32_t)600000000)))))%(uint64_t)(int64_t)((int64_t)((int64_t)((int32_t)60)))))))); uint64_t L_19 = V_1; __this->set_seconds_5(((int32_t)((int32_t)((int64_t)((uint64_t)(int64_t)((int64_t)((uint64_t)(int64_t)L_19/(uint64_t)(int64_t)((int64_t)((int64_t)((int32_t)10000000)))))%(uint64_t)(int64_t)((int64_t)((int64_t)((int32_t)60)))))))); return; } } IL2CPP_EXTERN_C void XsdDuration__ctor_m87C4EF2E2EF7D4C8DDF37B1DC7C5ED849E052A70_AdjustorThunk (RuntimeObject * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___timeSpan0, int32_t ___durationType1, const RuntimeMethod* method) { int32_t _offset = 1; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * _thisAdjusted = reinterpret_cast(__this + _offset); XsdDuration__ctor_m87C4EF2E2EF7D4C8DDF37B1DC7C5ED849E052A70(_thisAdjusted, ___timeSpan0, ___durationType1, method); } // System.Void System.Xml.Schema.XsdDuration::.ctor(System.String,System.Xml.Schema.XsdDuration/DurationType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsdDuration__ctor_m8E776FD3A70A21A2EFC6ACADF87056EA2430895C (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, String_t* ___s0, int32_t ___durationType1, const RuntimeMethod* method) { XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F V_0; memset((&V_0), 0, sizeof(V_0)); Exception_t * V_1 = NULL; { String_t* L_0 = ___s0; int32_t L_1 = ___durationType1; Exception_t * L_2; L_2 = XsdDuration_TryParse_m62A437341C407CDF92149A7FE1C851FF2C53041F(L_0, L_1, (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)(&V_0), /*hidden argument*/NULL); V_1 = L_2; Exception_t * L_3 = V_1; if (!L_3) { goto IL_000f; } } { Exception_t * L_4 = V_1; IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdDuration__ctor_m8E776FD3A70A21A2EFC6ACADF87056EA2430895C_RuntimeMethod_var))); } IL_000f: { int32_t L_5; L_5 = XsdDuration_get_Years_mDA4C69E8DB55C1DD412741A0F47176E4021E2911_inline((XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)(&V_0), /*hidden argument*/NULL); __this->set_years_0(L_5); int32_t L_6; L_6 = XsdDuration_get_Months_mAF5B74D40485298A0D9DF45A1FA40E781A40D66F_inline((XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)(&V_0), /*hidden argument*/NULL); __this->set_months_1(L_6); int32_t L_7; L_7 = XsdDuration_get_Days_mD221ED31E12AA2286AE4E7E049001EB46067C5DB_inline((XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)(&V_0), /*hidden argument*/NULL); __this->set_days_2(L_7); int32_t L_8; L_8 = XsdDuration_get_Hours_m278484E3214644ADD6FA059E2F00CBFB005BE2EC_inline((XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)(&V_0), /*hidden argument*/NULL); __this->set_hours_3(L_8); int32_t L_9; L_9 = XsdDuration_get_Minutes_mC7D59F3CB2623050C9F10A98AA485102BAD7B2B5_inline((XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)(&V_0), /*hidden argument*/NULL); __this->set_minutes_4(L_9); int32_t L_10; L_10 = XsdDuration_get_Seconds_mBE0DB463333CF0BD75A8671FE51F019760F91D7F_inline((XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)(&V_0), /*hidden argument*/NULL); __this->set_seconds_5(L_10); int32_t L_11; L_11 = XsdDuration_get_Nanoseconds_m104732C347A41F215169633979BEFB0BDD5A37CF((XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)(&V_0), /*hidden argument*/NULL); __this->set_nanoseconds_6(L_11); bool L_12; L_12 = XsdDuration_get_IsNegative_mF30C7670FC14BA4DE8E4BD6E9833E4EF339F3748((XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)(&V_0), /*hidden argument*/NULL); if (!L_12) { goto IL_0085; } } { uint32_t L_13 = __this->get_nanoseconds_6(); __this->set_nanoseconds_6(((int32_t)((int32_t)L_13|(int32_t)((int32_t)-2147483648LL)))); } IL_0085: { return; } } IL2CPP_EXTERN_C void XsdDuration__ctor_m8E776FD3A70A21A2EFC6ACADF87056EA2430895C_AdjustorThunk (RuntimeObject * __this, String_t* ___s0, int32_t ___durationType1, const RuntimeMethod* method) { int32_t _offset = 1; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * _thisAdjusted = reinterpret_cast(__this + _offset); XsdDuration__ctor_m8E776FD3A70A21A2EFC6ACADF87056EA2430895C(_thisAdjusted, ___s0, ___durationType1, method); } // System.Boolean System.Xml.Schema.XsdDuration::get_IsNegative() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsdDuration_get_IsNegative_mF30C7670FC14BA4DE8E4BD6E9833E4EF339F3748 (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method) { { uint32_t L_0 = __this->get_nanoseconds_6(); return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)-2147483648LL)))) <= ((uint32_t)0)))? 1 : 0); } } IL2CPP_EXTERN_C bool XsdDuration_get_IsNegative_mF30C7670FC14BA4DE8E4BD6E9833E4EF339F3748_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = XsdDuration_get_IsNegative_mF30C7670FC14BA4DE8E4BD6E9833E4EF339F3748(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.Schema.XsdDuration::get_Years() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Years_mDA4C69E8DB55C1DD412741A0F47176E4021E2911 (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_years_0(); return L_0; } } IL2CPP_EXTERN_C int32_t XsdDuration_get_Years_mDA4C69E8DB55C1DD412741A0F47176E4021E2911_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDuration_get_Years_mDA4C69E8DB55C1DD412741A0F47176E4021E2911_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.Schema.XsdDuration::get_Months() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Months_mAF5B74D40485298A0D9DF45A1FA40E781A40D66F (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_months_1(); return L_0; } } IL2CPP_EXTERN_C int32_t XsdDuration_get_Months_mAF5B74D40485298A0D9DF45A1FA40E781A40D66F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDuration_get_Months_mAF5B74D40485298A0D9DF45A1FA40E781A40D66F_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.Schema.XsdDuration::get_Days() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Days_mD221ED31E12AA2286AE4E7E049001EB46067C5DB (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_days_2(); return L_0; } } IL2CPP_EXTERN_C int32_t XsdDuration_get_Days_mD221ED31E12AA2286AE4E7E049001EB46067C5DB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDuration_get_Days_mD221ED31E12AA2286AE4E7E049001EB46067C5DB_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.Schema.XsdDuration::get_Hours() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Hours_m278484E3214644ADD6FA059E2F00CBFB005BE2EC (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_hours_3(); return L_0; } } IL2CPP_EXTERN_C int32_t XsdDuration_get_Hours_m278484E3214644ADD6FA059E2F00CBFB005BE2EC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDuration_get_Hours_m278484E3214644ADD6FA059E2F00CBFB005BE2EC_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.Schema.XsdDuration::get_Minutes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Minutes_mC7D59F3CB2623050C9F10A98AA485102BAD7B2B5 (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_minutes_4(); return L_0; } } IL2CPP_EXTERN_C int32_t XsdDuration_get_Minutes_mC7D59F3CB2623050C9F10A98AA485102BAD7B2B5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDuration_get_Minutes_mC7D59F3CB2623050C9F10A98AA485102BAD7B2B5_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.Schema.XsdDuration::get_Seconds() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Seconds_mBE0DB463333CF0BD75A8671FE51F019760F91D7F (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_seconds_5(); return L_0; } } IL2CPP_EXTERN_C int32_t XsdDuration_get_Seconds_mBE0DB463333CF0BD75A8671FE51F019760F91D7F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDuration_get_Seconds_mBE0DB463333CF0BD75A8671FE51F019760F91D7F_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.Schema.XsdDuration::get_Nanoseconds() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Nanoseconds_m104732C347A41F215169633979BEFB0BDD5A37CF (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method) { { uint32_t L_0 = __this->get_nanoseconds_6(); return ((int32_t)((int32_t)L_0&(int32_t)((int32_t)2147483647LL))); } } IL2CPP_EXTERN_C int32_t XsdDuration_get_Nanoseconds_m104732C347A41F215169633979BEFB0BDD5A37CF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = XsdDuration_get_Nanoseconds_m104732C347A41F215169633979BEFB0BDD5A37CF(_thisAdjusted, method); return _returnValue; } // System.TimeSpan System.Xml.Schema.XsdDuration::ToTimeSpan(System.Xml.Schema.XsdDuration/DurationType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 XsdDuration_ToTimeSpan_m8E384990FA1D2AF1323B326E5987018872A6322F (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, int32_t ___durationType0, const RuntimeMethod* method) { TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_0; memset((&V_0), 0, sizeof(V_0)); Exception_t * V_1 = NULL; { int32_t L_0 = ___durationType0; Exception_t * L_1; L_1 = XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A((XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)__this, L_0, (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_0), /*hidden argument*/NULL); V_1 = L_1; Exception_t * L_2 = V_1; if (!L_2) { goto IL_000f; } } { Exception_t * L_3 = V_1; IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsdDuration_ToTimeSpan_m8E384990FA1D2AF1323B326E5987018872A6322F_RuntimeMethod_var))); } IL_000f: { TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_4 = V_0; return L_4; } } IL2CPP_EXTERN_C TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 XsdDuration_ToTimeSpan_m8E384990FA1D2AF1323B326E5987018872A6322F_AdjustorThunk (RuntimeObject * __this, int32_t ___durationType0, const RuntimeMethod* method) { int32_t _offset = 1; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * _thisAdjusted = reinterpret_cast(__this + _offset); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 _returnValue; _returnValue = XsdDuration_ToTimeSpan_m8E384990FA1D2AF1323B326E5987018872A6322F(_thisAdjusted, ___durationType0, method); return _returnValue; } // System.Exception System.Xml.Schema.XsdDuration::TryToTimeSpan(System.TimeSpan&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * XsdDuration_TryToTimeSpan_m674C9BCA350E49E1FB6A1B70231262636E9DBE48 (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * ___result0, const RuntimeMethod* method) { { TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * L_0 = ___result0; Exception_t * L_1; L_1 = XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A((XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)__this, 0, (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C Exception_t * XsdDuration_TryToTimeSpan_m674C9BCA350E49E1FB6A1B70231262636E9DBE48_AdjustorThunk (RuntimeObject * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * ___result0, const RuntimeMethod* method) { int32_t _offset = 1; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * _thisAdjusted = reinterpret_cast(__this + _offset); Exception_t * _returnValue; _returnValue = XsdDuration_TryToTimeSpan_m674C9BCA350E49E1FB6A1B70231262636E9DBE48(_thisAdjusted, ___result0, method); return _returnValue; } // System.Exception System.Xml.Schema.XsdDuration::TryToTimeSpan(System.Xml.Schema.XsdDuration/DurationType,System.TimeSpan&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, int32_t ___durationType0, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * ___result1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Exception_t * V_0 = NULL; uint64_t V_1 = 0; Exception_t * V_2 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { V_0 = (Exception_t *)NULL; V_1 = ((int64_t)((int64_t)0)); } IL_0005: try { // begin try (depth: 1) { int32_t L_0 = ___durationType0; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_0038; } } IL_0009: { uint64_t L_1 = V_1; int32_t L_2 = __this->get_years_0(); if ((uint64_t)(L_2) > (std::numeric_limits::max)()) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); int32_t L_3 = __this->get_months_1(); if ((uint64_t)(L_3) > (std::numeric_limits::max)()) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); if ((uint64_t)((uint64_t)((uint64_t)L_2)) > kIl2CppUInt64Max - (uint64_t)((int64_t)((uint64_t)(int64_t)((uint64_t)((uint64_t)L_3))/(uint64_t)(int64_t)((int64_t)((int64_t)((int32_t)12)))))) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); if (il2cpp_codegen_check_mul_oveflow_u64(((int64_t)il2cpp_codegen_add((int64_t)((uint64_t)((uint64_t)L_2)), (int64_t)((int64_t)((uint64_t)(int64_t)((uint64_t)((uint64_t)L_3))/(uint64_t)(int64_t)((int64_t)((int64_t)((int32_t)12))))))), ((int64_t)((int64_t)((int32_t)365))))) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); if ((uint64_t)L_1 > kIl2CppUInt64Max - (uint64_t)((int64_t)il2cpp_codegen_multiply((int64_t)((int64_t)il2cpp_codegen_add((int64_t)((uint64_t)((uint64_t)L_2)), (int64_t)((int64_t)((uint64_t)(int64_t)((uint64_t)((uint64_t)L_3))/(uint64_t)(int64_t)((int64_t)((int64_t)((int32_t)12))))))), (int64_t)((int64_t)((int64_t)((int32_t)365)))))) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); V_1 = ((int64_t)il2cpp_codegen_add((int64_t)L_1, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)((int64_t)il2cpp_codegen_add((int64_t)((uint64_t)((uint64_t)L_2)), (int64_t)((int64_t)((uint64_t)(int64_t)((uint64_t)((uint64_t)L_3))/(uint64_t)(int64_t)((int64_t)((int64_t)((int32_t)12))))))), (int64_t)((int64_t)((int64_t)((int32_t)365))))))); uint64_t L_4 = V_1; int32_t L_5 = __this->get_months_1(); if ((uint64_t)(L_5) > (std::numeric_limits::max)()) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); if (il2cpp_codegen_check_mul_oveflow_u64(((int64_t)((uint64_t)(int64_t)((uint64_t)((uint64_t)L_5))%(uint64_t)(int64_t)((int64_t)((int64_t)((int32_t)12))))), ((int64_t)((int64_t)((int32_t)30))))) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); if ((uint64_t)L_4 > kIl2CppUInt64Max - (uint64_t)((int64_t)il2cpp_codegen_multiply((int64_t)((int64_t)((uint64_t)(int64_t)((uint64_t)((uint64_t)L_5))%(uint64_t)(int64_t)((int64_t)((int64_t)((int32_t)12))))), (int64_t)((int64_t)((int64_t)((int32_t)30)))))) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); V_1 = ((int64_t)il2cpp_codegen_add((int64_t)L_4, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)((int64_t)((uint64_t)(int64_t)((uint64_t)((uint64_t)L_5))%(uint64_t)(int64_t)((int64_t)((int64_t)((int32_t)12))))), (int64_t)((int64_t)((int64_t)((int32_t)30))))))); } IL_0038: { int32_t L_6 = ___durationType0; if ((((int32_t)L_6) == ((int32_t)1))) { goto IL_008f; } } IL_003c: { uint64_t L_7 = V_1; int32_t L_8 = __this->get_days_2(); if ((uint64_t)(L_8) > (std::numeric_limits::max)()) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); if ((uint64_t)L_7 > kIl2CppUInt64Max - (uint64_t)((uint64_t)((uint64_t)L_8))) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); V_1 = ((int64_t)il2cpp_codegen_add((int64_t)L_7, (int64_t)((uint64_t)((uint64_t)L_8)))); uint64_t L_9 = V_1; if (il2cpp_codegen_check_mul_oveflow_u64(L_9, ((int64_t)((int64_t)((int32_t)24))))) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); V_1 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_9, (int64_t)((int64_t)((int64_t)((int32_t)24))))); uint64_t L_10 = V_1; int32_t L_11 = __this->get_hours_3(); if ((uint64_t)(L_11) > (std::numeric_limits::max)()) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); if ((uint64_t)L_10 > kIl2CppUInt64Max - (uint64_t)((uint64_t)((uint64_t)L_11))) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); V_1 = ((int64_t)il2cpp_codegen_add((int64_t)L_10, (int64_t)((uint64_t)((uint64_t)L_11)))); uint64_t L_12 = V_1; if (il2cpp_codegen_check_mul_oveflow_u64(L_12, ((int64_t)((int64_t)((int32_t)60))))) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); V_1 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_12, (int64_t)((int64_t)((int64_t)((int32_t)60))))); uint64_t L_13 = V_1; int32_t L_14 = __this->get_minutes_4(); if ((uint64_t)(L_14) > (std::numeric_limits::max)()) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); if ((uint64_t)L_13 > kIl2CppUInt64Max - (uint64_t)((uint64_t)((uint64_t)L_14))) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); V_1 = ((int64_t)il2cpp_codegen_add((int64_t)L_13, (int64_t)((uint64_t)((uint64_t)L_14)))); uint64_t L_15 = V_1; if (il2cpp_codegen_check_mul_oveflow_u64(L_15, ((int64_t)((int64_t)((int32_t)60))))) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); V_1 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_15, (int64_t)((int64_t)((int64_t)((int32_t)60))))); uint64_t L_16 = V_1; int32_t L_17 = __this->get_seconds_5(); if ((uint64_t)(L_17) > (std::numeric_limits::max)()) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); if ((uint64_t)L_16 > kIl2CppUInt64Max - (uint64_t)((uint64_t)((uint64_t)L_17))) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); V_1 = ((int64_t)il2cpp_codegen_add((int64_t)L_16, (int64_t)((uint64_t)((uint64_t)L_17)))); uint64_t L_18 = V_1; if (il2cpp_codegen_check_mul_oveflow_u64(L_18, ((int64_t)((int64_t)((int32_t)10000000))))) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); V_1 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_18, (int64_t)((int64_t)((int64_t)((int32_t)10000000))))); uint64_t L_19 = V_1; int32_t L_20; L_20 = XsdDuration_get_Nanoseconds_m104732C347A41F215169633979BEFB0BDD5A37CF((XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)__this, /*hidden argument*/NULL); if ((uint64_t)(L_20) > (std::numeric_limits::max)()) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); if ((uint64_t)L_19 > kIl2CppUInt64Max - (uint64_t)((int64_t)((uint64_t)(int64_t)((uint64_t)((uint64_t)L_20))/(uint64_t)(int64_t)((int64_t)((int64_t)((int32_t)100)))))) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); V_1 = ((int64_t)il2cpp_codegen_add((int64_t)L_19, (int64_t)((int64_t)((uint64_t)(int64_t)((uint64_t)((uint64_t)L_20))/(uint64_t)(int64_t)((int64_t)((int64_t)((int32_t)100))))))); goto IL_009b; } IL_008f: { uint64_t L_21 = V_1; if (il2cpp_codegen_check_mul_oveflow_u64(L_21, ((int64_t)864000000000LL))) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); V_1 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_21, (int64_t)((int64_t)864000000000LL))); } IL_009b: { bool L_22; L_22 = XsdDuration_get_IsNegative_mF30C7670FC14BA4DE8E4BD6E9833E4EF339F3748((XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)__this, /*hidden argument*/NULL); if (!L_22) { goto IL_00d7; } } IL_00a3: { uint64_t L_23 = V_1; if ((!(((uint64_t)L_23) == ((uint64_t)((int64_t)(std::numeric_limits::min)()))))) { goto IL_00c5; } } IL_00af: { TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * L_24 = ___result1; TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_25; memset((&L_25), 0, sizeof(L_25)); TimeSpan__ctor_mC80FA729ECA3A7AF31D9F517A95E60FC23EB86B0_inline((&L_25), ((int64_t)(std::numeric_limits::min)()), /*hidden argument*/NULL); *(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)L_24 = L_25; goto IL_00e4; } IL_00c5: { TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * L_26 = ___result1; uint64_t L_27 = V_1; if ((uint64_t)(L_27) > 9223372036854775807LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); if (il2cpp_codegen_check_sub_overflow((int64_t)((int64_t)((int64_t)0)), (int64_t)((int64_t)((int64_t)L_27)))) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_28; memset((&L_28), 0, sizeof(L_28)); TimeSpan__ctor_mC80FA729ECA3A7AF31D9F517A95E60FC23EB86B0_inline((&L_28), ((int64_t)il2cpp_codegen_subtract((int64_t)((int64_t)((int64_t)0)), (int64_t)((int64_t)((int64_t)L_27)))), /*hidden argument*/NULL); *(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)L_26 = L_28; goto IL_00e4; } IL_00d7: { TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * L_29 = ___result1; uint64_t L_30 = V_1; if ((uint64_t)(L_30) > 9223372036854775807LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_RuntimeMethod_var); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_31; memset((&L_31), 0, sizeof(L_31)); TimeSpan__ctor_mC80FA729ECA3A7AF31D9F517A95E60FC23EB86B0_inline((&L_31), ((int64_t)((int64_t)L_30)), /*hidden argument*/NULL); *(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)L_29 = L_31; } IL_00e4: { V_2 = (Exception_t *)NULL; goto IL_011f; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00e8; } throw e; } CATCH_00e8: { // begin catch(System.OverflowException) TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * L_32 = ___result1; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var))); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_33 = ((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var))))->get_MinValue_2(); *(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)L_32 = L_33; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_34 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)2); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_35 = L_34; int32_t L_36 = ___durationType0; int32_t L_37 = L_36; RuntimeObject * L_38 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DurationType_t2686B055AE0909D5E46CA3ED100ADB6919FB95B1_il2cpp_TypeInfo_var)), &L_37); NullCheck(L_35); ArrayElementTypeCheck (L_35, L_38); (L_35)->SetAt(static_cast(0), (RuntimeObject *)L_38); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_39 = L_35; NullCheck(L_39); ArrayElementTypeCheck (L_39, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral356F18017512A760F46C8C6E41C462F76716509F))); (L_39)->SetAt(static_cast(1), (RuntimeObject *)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral356F18017512A760F46C8C6E41C462F76716509F))); String_t* L_40; L_40 = Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral06F74C6DAF114664BF1BD452596A0DBDCCED259A)), L_39, /*hidden argument*/NULL); OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 * L_41 = (OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9_il2cpp_TypeInfo_var))); OverflowException__ctor_m93384109E3514E1EB7F97A50893B1B617D21F91E(L_41, L_40, /*hidden argument*/NULL); V_0 = L_41; IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_011d; } // end catch (depth: 1) IL_011d: { Exception_t * L_42 = V_0; return L_42; } IL_011f: { Exception_t * L_43 = V_2; return L_43; } } IL2CPP_EXTERN_C Exception_t * XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A_AdjustorThunk (RuntimeObject * __this, int32_t ___durationType0, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * ___result1, const RuntimeMethod* method) { int32_t _offset = 1; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * _thisAdjusted = reinterpret_cast(__this + _offset); Exception_t * _returnValue; _returnValue = XsdDuration_TryToTimeSpan_mFDE9EE9A50434F298ECBA45AFE8746A96558826A(_thisAdjusted, ___durationType0, ___result1, method); return _returnValue; } // System.String System.Xml.Schema.XsdDuration::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdDuration_ToString_mA4A2C3C6AE4FFD7EE69DF611035623000A6592EB (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = XsdDuration_ToString_m95549BAD76E17A3055C31F3C0BD214885982B74C((XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)__this, 0, /*hidden argument*/NULL); return L_0; } } IL2CPP_EXTERN_C String_t* XsdDuration_ToString_mA4A2C3C6AE4FFD7EE69DF611035623000A6592EB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = XsdDuration_ToString_mA4A2C3C6AE4FFD7EE69DF611035623000A6592EB(_thisAdjusted, method); return _returnValue; } // System.String System.Xml.Schema.XsdDuration::ToString(System.Xml.Schema.XsdDuration/DurationType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdDuration_ToString_m95549BAD76E17A3055C31F3C0BD214885982B74C (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, int32_t ___durationType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5F79376E49FC345D1F74769B7D1E538AE10FAE5C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE33B655BD7CA37454FF89A8C0BDA6B8196C65A77); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mEDFFE2D378A15F6DAB54D52661C84C1B52E7BA2E(L_0, ((int32_t)20), /*hidden argument*/NULL); V_0 = L_0; bool L_1; L_1 = XsdDuration_get_IsNegative_mF30C7670FC14BA4DE8E4BD6E9833E4EF339F3748((XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)__this, /*hidden argument*/NULL); if (!L_1) { goto IL_0019; } } { StringBuilder_t * L_2 = V_0; NullCheck(L_2); StringBuilder_t * L_3; L_3 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_2, ((int32_t)45), /*hidden argument*/NULL); } IL_0019: { StringBuilder_t * L_4 = V_0; NullCheck(L_4); StringBuilder_t * L_5; L_5 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_4, ((int32_t)80), /*hidden argument*/NULL); int32_t L_6 = ___durationType0; if ((((int32_t)L_6) == ((int32_t)2))) { goto IL_006c; } } { int32_t L_7 = __this->get_years_0(); if (!L_7) { goto IL_0049; } } { StringBuilder_t * L_8 = V_0; int32_t L_9 = __this->get_years_0(); IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_10; L_10 = XmlConvert_ToString_mB1817B679C751F091D03EF8627AFF6CDEB507254(L_9, /*hidden argument*/NULL); NullCheck(L_8); StringBuilder_t * L_11; L_11 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_8, L_10, /*hidden argument*/NULL); StringBuilder_t * L_12 = V_0; NullCheck(L_12); StringBuilder_t * L_13; L_13 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_12, ((int32_t)89), /*hidden argument*/NULL); } IL_0049: { int32_t L_14 = __this->get_months_1(); if (!L_14) { goto IL_006c; } } { StringBuilder_t * L_15 = V_0; int32_t L_16 = __this->get_months_1(); IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_17; L_17 = XmlConvert_ToString_mB1817B679C751F091D03EF8627AFF6CDEB507254(L_16, /*hidden argument*/NULL); NullCheck(L_15); StringBuilder_t * L_18; L_18 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_15, L_17, /*hidden argument*/NULL); StringBuilder_t * L_19 = V_0; NullCheck(L_19); StringBuilder_t * L_20; L_20 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_19, ((int32_t)77), /*hidden argument*/NULL); } IL_006c: { int32_t L_21 = ___durationType0; if ((((int32_t)L_21) == ((int32_t)1))) { goto IL_01c1; } } { int32_t L_22 = __this->get_days_2(); if (!L_22) { goto IL_0096; } } { StringBuilder_t * L_23 = V_0; int32_t L_24 = __this->get_days_2(); IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_25; L_25 = XmlConvert_ToString_mB1817B679C751F091D03EF8627AFF6CDEB507254(L_24, /*hidden argument*/NULL); NullCheck(L_23); StringBuilder_t * L_26; L_26 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_23, L_25, /*hidden argument*/NULL); StringBuilder_t * L_27 = V_0; NullCheck(L_27); StringBuilder_t * L_28; L_28 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_27, ((int32_t)68), /*hidden argument*/NULL); } IL_0096: { int32_t L_29 = __this->get_hours_3(); if (L_29) { goto IL_00b9; } } { int32_t L_30 = __this->get_minutes_4(); if (L_30) { goto IL_00b9; } } { int32_t L_31 = __this->get_seconds_5(); if (L_31) { goto IL_00b9; } } { int32_t L_32; L_32 = XsdDuration_get_Nanoseconds_m104732C347A41F215169633979BEFB0BDD5A37CF((XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)__this, /*hidden argument*/NULL); if (!L_32) { goto IL_01a1; } } IL_00b9: { StringBuilder_t * L_33 = V_0; NullCheck(L_33); StringBuilder_t * L_34; L_34 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_33, ((int32_t)84), /*hidden argument*/NULL); int32_t L_35 = __this->get_hours_3(); if (!L_35) { goto IL_00e5; } } { StringBuilder_t * L_36 = V_0; int32_t L_37 = __this->get_hours_3(); IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_38; L_38 = XmlConvert_ToString_mB1817B679C751F091D03EF8627AFF6CDEB507254(L_37, /*hidden argument*/NULL); NullCheck(L_36); StringBuilder_t * L_39; L_39 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_36, L_38, /*hidden argument*/NULL); StringBuilder_t * L_40 = V_0; NullCheck(L_40); StringBuilder_t * L_41; L_41 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_40, ((int32_t)72), /*hidden argument*/NULL); } IL_00e5: { int32_t L_42 = __this->get_minutes_4(); if (!L_42) { goto IL_0108; } } { StringBuilder_t * L_43 = V_0; int32_t L_44 = __this->get_minutes_4(); IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_45; L_45 = XmlConvert_ToString_mB1817B679C751F091D03EF8627AFF6CDEB507254(L_44, /*hidden argument*/NULL); NullCheck(L_43); StringBuilder_t * L_46; L_46 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_43, L_45, /*hidden argument*/NULL); StringBuilder_t * L_47 = V_0; NullCheck(L_47); StringBuilder_t * L_48; L_48 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_47, ((int32_t)77), /*hidden argument*/NULL); } IL_0108: { int32_t L_49; L_49 = XsdDuration_get_Nanoseconds_m104732C347A41F215169633979BEFB0BDD5A37CF((XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)__this, /*hidden argument*/NULL); V_1 = L_49; int32_t L_50 = __this->get_seconds_5(); if (L_50) { goto IL_011d; } } { int32_t L_51 = V_1; if (!L_51) { goto IL_01a1; } } IL_011d: { StringBuilder_t * L_52 = V_0; int32_t L_53 = __this->get_seconds_5(); IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t5D0BE0A0EE15E2D3EC7F4881C519B5137DFA370A_il2cpp_TypeInfo_var); String_t* L_54; L_54 = XmlConvert_ToString_mB1817B679C751F091D03EF8627AFF6CDEB507254(L_53, /*hidden argument*/NULL); NullCheck(L_52); StringBuilder_t * L_55; L_55 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_52, L_54, /*hidden argument*/NULL); int32_t L_56 = V_1; if (!L_56) { goto IL_0198; } } { StringBuilder_t * L_57 = V_0; NullCheck(L_57); StringBuilder_t * L_58; L_58 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_57, ((int32_t)46), /*hidden argument*/NULL); StringBuilder_t * L_59 = V_0; NullCheck(L_59); int32_t L_60; L_60 = StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0(L_59, /*hidden argument*/NULL); V_4 = L_60; StringBuilder_t * L_61 = V_0; StringBuilder_t * L_62 = L_61; NullCheck(L_62); int32_t L_63; L_63 = StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0(L_62, /*hidden argument*/NULL); NullCheck(L_62); StringBuilder_set_Length_m7C1756193B05DCA5A23C5DC98EE90A9FC685A27A(L_62, ((int32_t)il2cpp_codegen_add((int32_t)L_63, (int32_t)((int32_t)9))), /*hidden argument*/NULL); StringBuilder_t * L_64 = V_0; NullCheck(L_64); int32_t L_65; L_65 = StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0(L_64, /*hidden argument*/NULL); V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_65, (int32_t)1)); int32_t L_66 = V_3; V_5 = L_66; goto IL_0189; } IL_0160: { int32_t L_67 = V_1; V_2 = ((int32_t)((int32_t)L_67%(int32_t)((int32_t)10))); StringBuilder_t * L_68 = V_0; int32_t L_69 = V_5; int32_t L_70 = V_2; NullCheck(L_68); StringBuilder_set_Chars_m57ED3E11363F83AC84E9B833E62D7D16DB4B4733(L_68, L_69, ((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_70, (int32_t)((int32_t)48))))), /*hidden argument*/NULL); int32_t L_71 = V_3; int32_t L_72 = V_5; if ((!(((uint32_t)L_71) == ((uint32_t)L_72)))) { goto IL_017e; } } { int32_t L_73 = V_2; if (L_73) { goto IL_017e; } } { int32_t L_74 = V_3; V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_74, (int32_t)1)); } IL_017e: { int32_t L_75 = V_1; V_1 = ((int32_t)((int32_t)L_75/(int32_t)((int32_t)10))); int32_t L_76 = V_5; V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_76, (int32_t)1)); } IL_0189: { int32_t L_77 = V_5; int32_t L_78 = V_4; if ((((int32_t)L_77) >= ((int32_t)L_78))) { goto IL_0160; } } { StringBuilder_t * L_79 = V_0; int32_t L_80 = V_3; NullCheck(L_79); StringBuilder_set_Length_m7C1756193B05DCA5A23C5DC98EE90A9FC685A27A(L_79, ((int32_t)il2cpp_codegen_add((int32_t)L_80, (int32_t)1)), /*hidden argument*/NULL); } IL_0198: { StringBuilder_t * L_81 = V_0; NullCheck(L_81); StringBuilder_t * L_82; L_82 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_81, ((int32_t)83), /*hidden argument*/NULL); } IL_01a1: { StringBuilder_t * L_83 = V_0; StringBuilder_t * L_84 = V_0; NullCheck(L_84); int32_t L_85; L_85 = StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0(L_84, /*hidden argument*/NULL); NullCheck(L_83); Il2CppChar L_86; L_86 = StringBuilder_get_Chars_m5961A0987EEF0A0F8C335048A33EC4584B53F1E3(L_83, ((int32_t)il2cpp_codegen_subtract((int32_t)L_85, (int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_86) == ((uint32_t)((int32_t)80))))) { goto IL_01df; } } { StringBuilder_t * L_87 = V_0; NullCheck(L_87); StringBuilder_t * L_88; L_88 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_87, _stringLiteralE33B655BD7CA37454FF89A8C0BDA6B8196C65A77, /*hidden argument*/NULL); goto IL_01df; } IL_01c1: { StringBuilder_t * L_89 = V_0; StringBuilder_t * L_90 = V_0; NullCheck(L_90); int32_t L_91; L_91 = StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0(L_90, /*hidden argument*/NULL); NullCheck(L_89); Il2CppChar L_92; L_92 = StringBuilder_get_Chars_m5961A0987EEF0A0F8C335048A33EC4584B53F1E3(L_89, ((int32_t)il2cpp_codegen_subtract((int32_t)L_91, (int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_92) == ((uint32_t)((int32_t)80))))) { goto IL_01df; } } { StringBuilder_t * L_93 = V_0; NullCheck(L_93); StringBuilder_t * L_94; L_94 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_93, _stringLiteral5F79376E49FC345D1F74769B7D1E538AE10FAE5C, /*hidden argument*/NULL); } IL_01df: { StringBuilder_t * L_95 = V_0; NullCheck(L_95); String_t* L_96; L_96 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_95); return L_96; } } IL2CPP_EXTERN_C String_t* XsdDuration_ToString_m95549BAD76E17A3055C31F3C0BD214885982B74C_AdjustorThunk (RuntimeObject * __this, int32_t ___durationType0, const RuntimeMethod* method) { int32_t _offset = 1; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = XsdDuration_ToString_m95549BAD76E17A3055C31F3C0BD214885982B74C(_thisAdjusted, ___durationType0, method); return _returnValue; } // System.Exception System.Xml.Schema.XsdDuration::TryParse(System.String,System.Xml.Schema.XsdDuration&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * XsdDuration_TryParse_m21DC50D117081733E913C459575FCC30A4343599 (String_t* ___s0, XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * ___result1, const RuntimeMethod* method) { { String_t* L_0 = ___s0; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * L_1 = ___result1; Exception_t * L_2; L_2 = XsdDuration_TryParse_m62A437341C407CDF92149A7FE1C851FF2C53041F(L_0, 0, (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F *)L_1, /*hidden argument*/NULL); return L_2; } } // System.Exception System.Xml.Schema.XsdDuration::TryParse(System.String,System.Xml.Schema.XsdDuration/DurationType,System.Xml.Schema.XsdDuration&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * XsdDuration_TryParse_m62A437341C407CDF92149A7FE1C851FF2C53041F (String_t* ___s0, int32_t ___durationType1, XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * ___result2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DurationType_t2686B055AE0909D5E46CA3ED100ADB6919FB95B1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral06F74C6DAF114664BF1BD452596A0DBDCCED259A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D04002FC7142DC7148763C90BB38AEEC554A158); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { V_4 = 0; XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * L_0 = ___result2; il2cpp_codegen_initobj(L_0, sizeof(XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F )); String_t* L_1 = ___s0; NullCheck(L_1); String_t* L_2; L_2 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_1, /*hidden argument*/NULL); ___s0 = L_2; String_t* L_3 = ___s0; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_3, /*hidden argument*/NULL); V_0 = L_4; V_2 = 0; V_3 = 0; int32_t L_5 = V_2; int32_t L_6 = V_0; if ((((int32_t)L_5) >= ((int32_t)L_6))) { goto IL_02b5; } } { String_t* L_7 = ___s0; int32_t L_8 = V_2; NullCheck(L_7); Il2CppChar L_9; L_9 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_7, L_8, /*hidden argument*/NULL); if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)45))))) { goto IL_0040; } } { int32_t L_10 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * L_11 = ___result2; L_11->set_nanoseconds_6(((int32_t)-2147483648LL)); goto IL_0047; } IL_0040: { XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * L_12 = ___result2; L_12->set_nanoseconds_6(0); } IL_0047: { int32_t L_13 = V_2; int32_t L_14 = V_0; if ((((int32_t)L_13) >= ((int32_t)L_14))) { goto IL_02b5; } } { String_t* L_15 = ___s0; int32_t L_16 = V_2; int32_t L_17 = L_16; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); NullCheck(L_15); Il2CppChar L_18; L_18 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_15, L_17, /*hidden argument*/NULL); if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)80))))) { goto IL_02b5; } } { String_t* L_19 = ___s0; String_t* L_20; L_20 = XsdDuration_TryParseDigits_mCC9206BCD1B6A8DE51B9D43460C049018A1A0968(L_19, (int32_t*)(&V_2), (bool)0, (int32_t*)(&V_1), (int32_t*)(&V_3), /*hidden argument*/NULL); if (L_20) { goto IL_02d8; } } { int32_t L_21 = V_2; int32_t L_22 = V_0; if ((((int32_t)L_21) >= ((int32_t)L_22))) { goto IL_02b5; } } { String_t* L_23 = ___s0; int32_t L_24 = V_2; NullCheck(L_23); Il2CppChar L_25; L_25 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_23, L_24, /*hidden argument*/NULL); if ((!(((uint32_t)L_25) == ((uint32_t)((int32_t)89))))) { goto IL_00bb; } } { int32_t L_26 = V_3; if (!L_26) { goto IL_02b5; } } { int32_t L_27 = V_4; V_4 = ((int32_t)((int32_t)L_27|(int32_t)1)); XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * L_28 = ___result2; int32_t L_29 = V_1; L_28->set_years_0(L_29); int32_t L_30 = V_2; int32_t L_31 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1)); V_2 = L_31; int32_t L_32 = V_0; if ((((int32_t)L_31) == ((int32_t)L_32))) { goto IL_0298; } } { String_t* L_33 = ___s0; String_t* L_34; L_34 = XsdDuration_TryParseDigits_mCC9206BCD1B6A8DE51B9D43460C049018A1A0968(L_33, (int32_t*)(&V_2), (bool)0, (int32_t*)(&V_1), (int32_t*)(&V_3), /*hidden argument*/NULL); if (L_34) { goto IL_02d8; } } { int32_t L_35 = V_2; int32_t L_36 = V_0; if ((((int32_t)L_35) >= ((int32_t)L_36))) { goto IL_02b5; } } IL_00bb: { String_t* L_37 = ___s0; int32_t L_38 = V_2; NullCheck(L_37); Il2CppChar L_39; L_39 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_37, L_38, /*hidden argument*/NULL); if ((!(((uint32_t)L_39) == ((uint32_t)((int32_t)77))))) { goto IL_00fd; } } { int32_t L_40 = V_3; if (!L_40) { goto IL_02b5; } } { int32_t L_41 = V_4; V_4 = ((int32_t)((int32_t)L_41|(int32_t)2)); XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * L_42 = ___result2; int32_t L_43 = V_1; L_42->set_months_1(L_43); int32_t L_44 = V_2; int32_t L_45 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)); V_2 = L_45; int32_t L_46 = V_0; if ((((int32_t)L_45) == ((int32_t)L_46))) { goto IL_0298; } } { String_t* L_47 = ___s0; String_t* L_48; L_48 = XsdDuration_TryParseDigits_mCC9206BCD1B6A8DE51B9D43460C049018A1A0968(L_47, (int32_t*)(&V_2), (bool)0, (int32_t*)(&V_1), (int32_t*)(&V_3), /*hidden argument*/NULL); if (L_48) { goto IL_02d8; } } { int32_t L_49 = V_2; int32_t L_50 = V_0; if ((((int32_t)L_49) >= ((int32_t)L_50))) { goto IL_02b5; } } IL_00fd: { String_t* L_51 = ___s0; int32_t L_52 = V_2; NullCheck(L_51); Il2CppChar L_53; L_53 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_51, L_52, /*hidden argument*/NULL); if ((!(((uint32_t)L_53) == ((uint32_t)((int32_t)68))))) { goto IL_013f; } } { int32_t L_54 = V_3; if (!L_54) { goto IL_02b5; } } { int32_t L_55 = V_4; V_4 = ((int32_t)((int32_t)L_55|(int32_t)4)); XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * L_56 = ___result2; int32_t L_57 = V_1; L_56->set_days_2(L_57); int32_t L_58 = V_2; int32_t L_59 = ((int32_t)il2cpp_codegen_add((int32_t)L_58, (int32_t)1)); V_2 = L_59; int32_t L_60 = V_0; if ((((int32_t)L_59) == ((int32_t)L_60))) { goto IL_0298; } } { String_t* L_61 = ___s0; String_t* L_62; L_62 = XsdDuration_TryParseDigits_mCC9206BCD1B6A8DE51B9D43460C049018A1A0968(L_61, (int32_t*)(&V_2), (bool)0, (int32_t*)(&V_1), (int32_t*)(&V_3), /*hidden argument*/NULL); if (L_62) { goto IL_02d8; } } { int32_t L_63 = V_2; int32_t L_64 = V_0; if ((((int32_t)L_63) >= ((int32_t)L_64))) { goto IL_02b5; } } IL_013f: { String_t* L_65 = ___s0; int32_t L_66 = V_2; NullCheck(L_65); Il2CppChar L_67; L_67 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_65, L_66, /*hidden argument*/NULL); if ((!(((uint32_t)L_67) == ((uint32_t)((int32_t)84))))) { goto IL_0291; } } { int32_t L_68 = V_3; if (L_68) { goto IL_02b5; } } { int32_t L_69 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_69, (int32_t)1)); String_t* L_70 = ___s0; String_t* L_71; L_71 = XsdDuration_TryParseDigits_mCC9206BCD1B6A8DE51B9D43460C049018A1A0968(L_70, (int32_t*)(&V_2), (bool)0, (int32_t*)(&V_1), (int32_t*)(&V_3), /*hidden argument*/NULL); if (L_71) { goto IL_02d8; } } { int32_t L_72 = V_2; int32_t L_73 = V_0; if ((((int32_t)L_72) >= ((int32_t)L_73))) { goto IL_02b5; } } { String_t* L_74 = ___s0; int32_t L_75 = V_2; NullCheck(L_74); Il2CppChar L_76; L_76 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_74, L_75, /*hidden argument*/NULL); if ((!(((uint32_t)L_76) == ((uint32_t)((int32_t)72))))) { goto IL_01b2; } } { int32_t L_77 = V_3; if (!L_77) { goto IL_02b5; } } { int32_t L_78 = V_4; V_4 = ((int32_t)((int32_t)L_78|(int32_t)8)); XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * L_79 = ___result2; int32_t L_80 = V_1; L_79->set_hours_3(L_80); int32_t L_81 = V_2; int32_t L_82 = ((int32_t)il2cpp_codegen_add((int32_t)L_81, (int32_t)1)); V_2 = L_82; int32_t L_83 = V_0; if ((((int32_t)L_82) == ((int32_t)L_83))) { goto IL_0298; } } { String_t* L_84 = ___s0; String_t* L_85; L_85 = XsdDuration_TryParseDigits_mCC9206BCD1B6A8DE51B9D43460C049018A1A0968(L_84, (int32_t*)(&V_2), (bool)0, (int32_t*)(&V_1), (int32_t*)(&V_3), /*hidden argument*/NULL); if (L_85) { goto IL_02d8; } } { int32_t L_86 = V_2; int32_t L_87 = V_0; if ((((int32_t)L_86) >= ((int32_t)L_87))) { goto IL_02b5; } } IL_01b2: { String_t* L_88 = ___s0; int32_t L_89 = V_2; NullCheck(L_88); Il2CppChar L_90; L_90 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_88, L_89, /*hidden argument*/NULL); if ((!(((uint32_t)L_90) == ((uint32_t)((int32_t)77))))) { goto IL_01f5; } } { int32_t L_91 = V_3; if (!L_91) { goto IL_02b5; } } { int32_t L_92 = V_4; V_4 = ((int32_t)((int32_t)L_92|(int32_t)((int32_t)16))); XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * L_93 = ___result2; int32_t L_94 = V_1; L_93->set_minutes_4(L_94); int32_t L_95 = V_2; int32_t L_96 = ((int32_t)il2cpp_codegen_add((int32_t)L_95, (int32_t)1)); V_2 = L_96; int32_t L_97 = V_0; if ((((int32_t)L_96) == ((int32_t)L_97))) { goto IL_0298; } } { String_t* L_98 = ___s0; String_t* L_99; L_99 = XsdDuration_TryParseDigits_mCC9206BCD1B6A8DE51B9D43460C049018A1A0968(L_98, (int32_t*)(&V_2), (bool)0, (int32_t*)(&V_1), (int32_t*)(&V_3), /*hidden argument*/NULL); if (L_99) { goto IL_02d8; } } { int32_t L_100 = V_2; int32_t L_101 = V_0; if ((((int32_t)L_100) >= ((int32_t)L_101))) { goto IL_02b5; } } IL_01f5: { String_t* L_102 = ___s0; int32_t L_103 = V_2; NullCheck(L_102); Il2CppChar L_104; L_104 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_102, L_103, /*hidden argument*/NULL); if ((!(((uint32_t)L_104) == ((uint32_t)((int32_t)46))))) { goto IL_026d; } } { int32_t L_105 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_105, (int32_t)1)); int32_t L_106 = V_4; V_4 = ((int32_t)((int32_t)L_106|(int32_t)((int32_t)32))); XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * L_107 = ___result2; int32_t L_108 = V_1; L_107->set_seconds_5(L_108); String_t* L_109 = ___s0; String_t* L_110; L_110 = XsdDuration_TryParseDigits_mCC9206BCD1B6A8DE51B9D43460C049018A1A0968(L_109, (int32_t*)(&V_2), (bool)1, (int32_t*)(&V_1), (int32_t*)(&V_3), /*hidden argument*/NULL); if (L_110) { goto IL_02d8; } } { int32_t L_111 = V_3; if (L_111) { goto IL_0234; } } { V_1 = 0; goto IL_0234; } IL_022b: { int32_t L_112 = V_1; V_1 = ((int32_t)((int32_t)L_112/(int32_t)((int32_t)10))); int32_t L_113 = V_3; V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_113, (int32_t)1)); } IL_0234: { int32_t L_114 = V_3; if ((((int32_t)L_114) > ((int32_t)((int32_t)9)))) { goto IL_022b; } } { goto IL_0244; } IL_023b: { int32_t L_115 = V_1; V_1 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_115, (int32_t)((int32_t)10))); int32_t L_116 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_116, (int32_t)1)); } IL_0244: { int32_t L_117 = V_3; if ((((int32_t)L_117) < ((int32_t)((int32_t)9)))) { goto IL_023b; } } { XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * L_118 = ___result2; uint32_t* L_119 = L_118->get_address_of_nanoseconds_6(); uint32_t* L_120 = L_119; int32_t L_121 = *((uint32_t*)L_120); int32_t L_122 = V_1; *((int32_t*)L_120) = (int32_t)((int32_t)((int32_t)L_121|(int32_t)L_122)); int32_t L_123 = V_2; int32_t L_124 = V_0; if ((((int32_t)L_123) >= ((int32_t)L_124))) { goto IL_02b5; } } { String_t* L_125 = ___s0; int32_t L_126 = V_2; NullCheck(L_125); Il2CppChar L_127; L_127 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_125, L_126, /*hidden argument*/NULL); if ((!(((uint32_t)L_127) == ((uint32_t)((int32_t)83))))) { goto IL_02b5; } } { int32_t L_128 = V_2; int32_t L_129 = ((int32_t)il2cpp_codegen_add((int32_t)L_128, (int32_t)1)); V_2 = L_129; int32_t L_130 = V_0; if ((!(((uint32_t)L_129) == ((uint32_t)L_130)))) { goto IL_0291; } } { goto IL_0298; } IL_026d: { String_t* L_131 = ___s0; int32_t L_132 = V_2; NullCheck(L_131); Il2CppChar L_133; L_133 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_131, L_132, /*hidden argument*/NULL); if ((!(((uint32_t)L_133) == ((uint32_t)((int32_t)83))))) { goto IL_0291; } } { int32_t L_134 = V_3; if (!L_134) { goto IL_02b5; } } { int32_t L_135 = V_4; V_4 = ((int32_t)((int32_t)L_135|(int32_t)((int32_t)32))); XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * L_136 = ___result2; int32_t L_137 = V_1; L_136->set_seconds_5(L_137); int32_t L_138 = V_2; int32_t L_139 = ((int32_t)il2cpp_codegen_add((int32_t)L_138, (int32_t)1)); V_2 = L_139; int32_t L_140 = V_0; if ((((int32_t)L_139) == ((int32_t)L_140))) { goto IL_0298; } } IL_0291: { int32_t L_141 = V_3; if (L_141) { goto IL_02b5; } } { int32_t L_142 = V_2; int32_t L_143 = V_0; if ((!(((uint32_t)L_142) == ((uint32_t)L_143)))) { goto IL_02b5; } } IL_0298: { int32_t L_144 = V_4; if (!L_144) { goto IL_02b5; } } { int32_t L_145 = ___durationType1; if ((!(((uint32_t)L_145) == ((uint32_t)2)))) { goto IL_02a8; } } { int32_t L_146 = V_4; if (!((int32_t)((int32_t)L_146&(int32_t)3))) { goto IL_02b3; } } { goto IL_02b5; } IL_02a8: { int32_t L_147 = ___durationType1; if ((!(((uint32_t)L_147) == ((uint32_t)1)))) { goto IL_02b3; } } { int32_t L_148 = V_4; if (((int32_t)((int32_t)L_148&(int32_t)((int32_t)-4)))) { goto IL_02b5; } } IL_02b3: { return (Exception_t *)NULL; } IL_02b5: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_149 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_150 = L_149; String_t* L_151 = ___s0; NullCheck(L_150); ArrayElementTypeCheck (L_150, L_151); (L_150)->SetAt(static_cast(0), (RuntimeObject *)L_151); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_152 = L_150; int32_t L_153 = ___durationType1; int32_t L_154 = L_153; RuntimeObject * L_155 = Box(DurationType_t2686B055AE0909D5E46CA3ED100ADB6919FB95B1_il2cpp_TypeInfo_var, &L_154); NullCheck(L_152); ArrayElementTypeCheck (L_152, L_155); (L_152)->SetAt(static_cast(1), (RuntimeObject *)L_155); String_t* L_156; L_156 = Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17(_stringLiteral8D04002FC7142DC7148763C90BB38AEEC554A158, L_152, /*hidden argument*/NULL); FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 * L_157 = (FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 *)il2cpp_codegen_object_new(FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759_il2cpp_TypeInfo_var); FormatException__ctor_mB8F9A26F985EF9A6C0C082F7D70CFDF2DBDBB23B(L_157, L_156, /*hidden argument*/NULL); return L_157; } IL_02d8: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_158 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_159 = L_158; String_t* L_160 = ___s0; NullCheck(L_159); ArrayElementTypeCheck (L_159, L_160); (L_159)->SetAt(static_cast(0), (RuntimeObject *)L_160); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_161 = L_159; int32_t L_162 = ___durationType1; int32_t L_163 = L_162; RuntimeObject * L_164 = Box(DurationType_t2686B055AE0909D5E46CA3ED100ADB6919FB95B1_il2cpp_TypeInfo_var, &L_163); NullCheck(L_161); ArrayElementTypeCheck (L_161, L_164); (L_161)->SetAt(static_cast(1), (RuntimeObject *)L_164); String_t* L_165; L_165 = Res_GetString_mBB75EBDA17899DE1529F13F98ECD54D5EDDA7D17(_stringLiteral06F74C6DAF114664BF1BD452596A0DBDCCED259A, L_161, /*hidden argument*/NULL); OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 * L_166 = (OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 *)il2cpp_codegen_object_new(OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9_il2cpp_TypeInfo_var); OverflowException__ctor_m93384109E3514E1EB7F97A50893B1B617D21F91E(L_166, L_165, /*hidden argument*/NULL); return L_166; } } // System.String System.Xml.Schema.XsdDuration::TryParseDigits(System.String,System.Int32&,System.Boolean,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsdDuration_TryParseDigits_mCC9206BCD1B6A8DE51B9D43460C049018A1A0968 (String_t* ___s0, int32_t* ___offset1, bool ___eatDigits2, int32_t* ___result3, int32_t* ___numDigits4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral06F74C6DAF114664BF1BD452596A0DBDCCED259A); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t* L_0 = ___offset1; int32_t L_1 = *((int32_t*)L_0); V_0 = L_1; String_t* L_2 = ___s0; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_2, /*hidden argument*/NULL); V_1 = L_3; int32_t* L_4 = ___result3; *((int32_t*)L_4) = (int32_t)0; int32_t* L_5 = ___numDigits4; *((int32_t*)L_5) = (int32_t)0; goto IL_0073; } IL_0013: { String_t* L_6 = ___s0; int32_t* L_7 = ___offset1; int32_t L_8 = *((int32_t*)L_7); NullCheck(L_6); Il2CppChar L_9; L_9 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_6, L_8, /*hidden argument*/NULL); V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)48))); int32_t* L_10 = ___result3; int32_t L_11 = *((int32_t*)L_10); int32_t L_12 = V_2; if ((((int32_t)L_11) <= ((int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)2147483647LL), (int32_t)L_12))/(int32_t)((int32_t)10)))))) { goto IL_0064; } } { bool L_13 = ___eatDigits2; if (L_13) { goto IL_0036; } } { return _stringLiteral06F74C6DAF114664BF1BD452596A0DBDCCED259A; } IL_0036: { int32_t* L_14 = ___numDigits4; int32_t* L_15 = ___offset1; int32_t L_16 = *((int32_t*)L_15); int32_t L_17 = V_0; *((int32_t*)L_14) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)L_17)); goto IL_0045; } IL_003f: { int32_t* L_18 = ___offset1; int32_t* L_19 = ___offset1; int32_t L_20 = *((int32_t*)L_19); *((int32_t*)L_18) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0045: { int32_t* L_21 = ___offset1; int32_t L_22 = *((int32_t*)L_21); int32_t L_23 = V_1; if ((((int32_t)L_22) >= ((int32_t)L_23))) { goto IL_0062; } } { String_t* L_24 = ___s0; int32_t* L_25 = ___offset1; int32_t L_26 = *((int32_t*)L_25); NullCheck(L_24); Il2CppChar L_27; L_27 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_24, L_26, /*hidden argument*/NULL); if ((((int32_t)L_27) < ((int32_t)((int32_t)48)))) { goto IL_0062; } } { String_t* L_28 = ___s0; int32_t* L_29 = ___offset1; int32_t L_30 = *((int32_t*)L_29); NullCheck(L_28); Il2CppChar L_31; L_31 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_28, L_30, /*hidden argument*/NULL); if ((((int32_t)L_31) <= ((int32_t)((int32_t)57)))) { goto IL_003f; } } IL_0062: { return (String_t*)NULL; } IL_0064: { int32_t* L_32 = ___result3; int32_t* L_33 = ___result3; int32_t L_34 = *((int32_t*)L_33); int32_t L_35 = V_2; *((int32_t*)L_32) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_34, (int32_t)((int32_t)10))), (int32_t)L_35)); int32_t* L_36 = ___offset1; int32_t* L_37 = ___offset1; int32_t L_38 = *((int32_t*)L_37); *((int32_t*)L_36) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); } IL_0073: { int32_t* L_39 = ___offset1; int32_t L_40 = *((int32_t*)L_39); int32_t L_41 = V_1; if ((((int32_t)L_40) >= ((int32_t)L_41))) { goto IL_0090; } } { String_t* L_42 = ___s0; int32_t* L_43 = ___offset1; int32_t L_44 = *((int32_t*)L_43); NullCheck(L_42); Il2CppChar L_45; L_45 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_42, L_44, /*hidden argument*/NULL); if ((((int32_t)L_45) < ((int32_t)((int32_t)48)))) { goto IL_0090; } } { String_t* L_46 = ___s0; int32_t* L_47 = ___offset1; int32_t L_48 = *((int32_t*)L_47); NullCheck(L_46); Il2CppChar L_49; L_49 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_46, L_48, /*hidden argument*/NULL); if ((((int32_t)L_49) <= ((int32_t)((int32_t)57)))) { goto IL_0013; } } IL_0090: { int32_t* L_50 = ___numDigits4; int32_t* L_51 = ___offset1; int32_t L_52 = *((int32_t*)L_51); int32_t L_53 = V_0; *((int32_t*)L_50) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_52, (int32_t)L_53)); return (String_t*)NULL; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XsdSimpleValue::get_XmlType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * XsdSimpleValue_get_XmlType_m0EF165EE75CA5630285EBF60982B3379928EFA1F (XsdSimpleValue_t3A8F1EE8DEDEB6CC4EB489C911104E114501DAAB * __this, const RuntimeMethod* method) { { XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_0 = __this->get_xmlType_0(); return L_0; } } // System.Object System.Xml.Schema.XsdSimpleValue::get_TypedValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * XsdSimpleValue_get_TypedValue_m148603AEE274F6E3CE1FF2F8040F763B80F1CA55 (XsdSimpleValue_t3A8F1EE8DEDEB6CC4EB489C911104E114501DAAB * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_typedValue_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap::.ctor(System.String,System.Xml.Schema.DatatypeImplementation) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaDatatypeMap__ctor_m26EA852BFCC766D0BDB9B4575CD92847EC563D06 (SchemaDatatypeMap_t89F5A171396C2FF9555DBB013CDCF009EA8F202E * __this, String_t* ___name0, DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___type1, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); String_t* L_0 = ___name0; __this->set_name_0(L_0); DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * L_1 = ___type1; __this->set_type_1(L_1); return; } } // System.Void System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap::.ctor(System.String,System.Xml.Schema.DatatypeImplementation,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaDatatypeMap__ctor_mE32231287F4F9C750AB0E7B8AAAFF51BCA65F1B4 (SchemaDatatypeMap_t89F5A171396C2FF9555DBB013CDCF009EA8F202E * __this, String_t* ___name0, DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * ___type1, int32_t ___parentIndex2, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); String_t* L_0 = ___name0; __this->set_name_0(L_0); DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * L_1 = ___type1; __this->set_type_1(L_1); int32_t L_2 = ___parentIndex2; __this->set_parentIndex_2(L_2); return; } } // System.Xml.Schema.DatatypeImplementation System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap::op_Explicit(System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * SchemaDatatypeMap_op_Explicit_m87F8EEA935958FF2C47A961C4C17826288394EEE (SchemaDatatypeMap_t89F5A171396C2FF9555DBB013CDCF009EA8F202E * ___sdm0, const RuntimeMethod* method) { { SchemaDatatypeMap_t89F5A171396C2FF9555DBB013CDCF009EA8F202E * L_0 = ___sdm0; NullCheck(L_0); DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15 * L_1 = L_0->get_type_1(); return L_1; } } // System.String System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaDatatypeMap_get_Name_mCF730A71F9E6688D0486CFCC1EC1AED42505ADCC (SchemaDatatypeMap_t89F5A171396C2FF9555DBB013CDCF009EA8F202E * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_name_0(); return L_0; } } // System.Int32 System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap::get_ParentIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaDatatypeMap_get_ParentIndex_m436CE83B7921498CE6F5999F0C8C4DF419C60AFD (SchemaDatatypeMap_t89F5A171396C2FF9555DBB013CDCF009EA8F202E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_parentIndex_2(); return L_0; } } // System.Int32 System.Xml.Schema.DatatypeImplementation/SchemaDatatypeMap::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaDatatypeMap_CompareTo_mD8C837B40B563B2AE077BF13978E651291B6CDCA (SchemaDatatypeMap_t89F5A171396C2FF9555DBB013CDCF009EA8F202E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_name_0(); RuntimeObject * L_1 = ___obj0; int32_t L_2; L_2 = String_Compare_m573A1F97B15F82C9AC7DC0BB1B381EEDCD2759CD(L_0, ((String_t*)CastclassSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var)), 4, /*hidden argument*/NULL); return L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.DtdParser/ParseElementOnlyContent_LocalFrame::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParseElementOnlyContent_LocalFrame__ctor_mCE0DF8B2AFBE5815810210FAF62D3128D79F209C (ParseElementOnlyContent_LocalFrame_t7039F5048E02E9CBFFC9AE73C56E4163B3B3638D * __this, int32_t ___startParentEntityIdParam0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___startParentEntityIdParam0; __this->set_startParenEntityId_0(L_0); __this->set_parsingSchema_1(((int32_t)9)); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.DtdParser/UndeclaredNotation::.ctor(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UndeclaredNotation__ctor_m7FFBDED56FC38644875FF424EC8028C447102629 (UndeclaredNotation_t1F530E59945B9747A96785CCFAB78E09D826008B * __this, String_t* ___name0, int32_t ___lineNo1, int32_t ___linePos2, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); String_t* L_0 = ___name0; __this->set_name_0(L_0); int32_t L_1 = ___lineNo1; __this->set_lineNo_1(L_1); int32_t L_2 = ___linePos2; __this->set_linePos_2(L_2); __this->set_next_3((UndeclaredNotation_t1F530E59945B9747A96785CCFAB78E09D826008B *)NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String System.Xml.Schema.DtdValidator/NamespaceManager::LookupNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NamespaceManager_LookupNamespace_mE5A93CF54ED8F8034E027A3F812752A587E43D19 (NamespaceManager_t090926196C62C096BAD453E54CDED79D8E71720B * __this, String_t* ___prefix0, const RuntimeMethod* method) { { String_t* L_0 = ___prefix0; return L_0; } } // System.Void System.Xml.Schema.DtdValidator/NamespaceManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceManager__ctor_m5878388A545016DC48058A23E985AECBB1EE86CF (NamespaceManager_t090926196C62C096BAD453E54CDED79D8E71720B * __this, const RuntimeMethod* method) { { XmlNamespaceManager__ctor_mA04CAB0559468548EC72C74A2188AB3ACF892D0E(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.EnumMap/EnumMapMember::.ctor(System.String,System.String,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumMapMember__ctor_m294B6251365C62EA2862953FA6CCDEFCFD68EF01 (EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * __this, String_t* ___xmlName0, String_t* ___enumName1, int64_t ___value2, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); String_t* L_0 = ___xmlName0; __this->set__xmlName_0(L_0); String_t* L_1 = ___enumName1; __this->set__enumName_1(L_1); int64_t L_2 = ___value2; __this->set__value_2(L_2); return; } } // System.String System.Xml.Serialization.EnumMap/EnumMapMember::get_XmlName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EnumMapMember_get_XmlName_m125CC3C0B9D3400A9FFF74B875F2D118D8A9A60C (EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__xmlName_0(); return L_0; } } // System.String System.Xml.Serialization.EnumMap/EnumMapMember::get_EnumName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EnumMapMember_get_EnumName_m965ACAD881EB69B9802B5A2540C87FDEA1E320CC (EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__enumName_1(); return L_0; } } // System.Int64 System.Xml.Serialization.EnumMap/EnumMapMember::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumMapMember_get_Value_m4D4D6D93420A7993C34F62257F08F2994EB8F69C (EnumMapMember_tFA6EE72534779063BD134A3DF65945A5337B4D78 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get__value_2(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.NameTable/Entry::.ctor(System.String,System.Int32,System.Xml.NameTable/Entry) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Entry__ctor_m81F1EF4CD01E86FB47FBBE7910E0D462408DA46A (Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * __this, String_t* ___str0, int32_t ___hashCode1, Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * ___next2, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); String_t* L_0 = ___str0; __this->set_str_0(L_0); int32_t L_1 = ___hashCode1; __this->set_hashCode_1(L_1); Entry_tE04CA3878430F262AD43F80C045C96A425BCE239 * L_2 = ___next2; __this->set_next_2(L_2); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif IL2CPP_EXTERN_C int32_t DelegatePInvokeWrapper_HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 (HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method) { typedef int32_t (DEFAULT_CALL *PInvokeFunc)(char*, int32_t, int64_t); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(((RuntimeDelegate*)__this)->method->nativeFunction); // Marshaling of parameter '___s0' to native representation char* ____s0_marshaled = NULL; ____s0_marshaled = il2cpp_codegen_marshal_string(___s0); // Native function invocation int32_t returnValue = il2cppPInvokeFunc(____s0_marshaled, ___sLen1, ___additionalEntropy2); // Marshaling cleanup of parameter '___s0' native representation il2cpp_codegen_marshal_free(____s0_marshaled); ____s0_marshaled = NULL; return returnValue; } // System.Void System.Xml.SecureStringHasher/HashCodeOfStringDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashCodeOfStringDelegate__ctor_m47EFBAB22CC6E0C04A17B8DA7101906596143BE8 (HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Int32 System.Xml.SecureStringHasher/HashCodeOfStringDelegate::Invoke(System.String,System.Int32,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCodeOfStringDelegate_Invoke_m29101897DFC3FF4CEC6E0F148E1E879463DA2F9D (HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method) { int32_t result = 0; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 3) { // open typedef int32_t (*FunctionPointerType) (String_t*, int32_t, int64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___s0, ___sLen1, ___additionalEntropy2, targetMethod); } else { // closed typedef int32_t (*FunctionPointerType) (void*, String_t*, int32_t, int64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___s0, ___sLen1, ___additionalEntropy2, targetMethod); } } else if (___parameterCount != 3) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< int32_t, int32_t, int64_t >::Invoke(targetMethod, ___s0, ___sLen1, ___additionalEntropy2); else result = GenericVirtFuncInvoker2< int32_t, int32_t, int64_t >::Invoke(targetMethod, ___s0, ___sLen1, ___additionalEntropy2); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< int32_t, int32_t, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___s0, ___sLen1, ___additionalEntropy2); else result = VirtFuncInvoker2< int32_t, int32_t, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___s0, ___sLen1, ___additionalEntropy2); } } else { typedef int32_t (*FunctionPointerType) (String_t*, int32_t, int64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___s0, ___sLen1, ___additionalEntropy2, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker3< int32_t, String_t*, int32_t, int64_t >::Invoke(targetMethod, targetThis, ___s0, ___sLen1, ___additionalEntropy2); else result = GenericVirtFuncInvoker3< int32_t, String_t*, int32_t, int64_t >::Invoke(targetMethod, targetThis, ___s0, ___sLen1, ___additionalEntropy2); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker3< int32_t, String_t*, int32_t, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___s0, ___sLen1, ___additionalEntropy2); else result = VirtFuncInvoker3< int32_t, String_t*, int32_t, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___s0, ___sLen1, ___additionalEntropy2); } } else { if (___parameterCount == 2) { typedef int32_t (*FunctionPointerType) (String_t*, int32_t, int64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___s0, ___sLen1, ___additionalEntropy2, targetMethod); } else { typedef int32_t (*FunctionPointerType) (void*, String_t*, int32_t, int64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___s0, ___sLen1, ___additionalEntropy2, targetMethod); } } } } return result; } // System.IAsyncResult System.Xml.SecureStringHasher/HashCodeOfStringDelegate::BeginInvoke(System.String,System.Int32,System.Int64,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HashCodeOfStringDelegate_BeginInvoke_m041CC1DB7FC71916966716A0BC20C28B1FD86CAD (HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[4] = {0}; __d_args[0] = ___s0; __d_args[1] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &___sLen1); __d_args[2] = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &___additionalEntropy2); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);; } // System.Int32 System.Xml.SecureStringHasher/HashCodeOfStringDelegate::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCodeOfStringDelegate_EndInvoke_m12CBE82586394D027E1A760D22A1138F339BEE7E (HashCodeOfStringDelegate_tC5A341CE8A72771BCCF8A0CC95A12B13CD4F2574 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(int32_t*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Xml.Schema.SequenceNode/SequenceConstructPosContext IL2CPP_EXTERN_C void SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshal_pinvoke(const SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED& unmarshaled, SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshaled_pinvoke& marshaled) { Exception_t* ___this__0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'this_' of type 'SequenceConstructPosContext': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___this__0Exception, NULL); } IL2CPP_EXTERN_C void SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshal_pinvoke_back(const SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshaled_pinvoke& marshaled, SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED& unmarshaled) { Exception_t* ___this__0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'this_' of type 'SequenceConstructPosContext': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___this__0Exception, NULL); } // Conversion method for clean up from marshalling of: System.Xml.Schema.SequenceNode/SequenceConstructPosContext IL2CPP_EXTERN_C void SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshal_pinvoke_cleanup(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Xml.Schema.SequenceNode/SequenceConstructPosContext IL2CPP_EXTERN_C void SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshal_com(const SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED& unmarshaled, SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshaled_com& marshaled) { Exception_t* ___this__0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'this_' of type 'SequenceConstructPosContext': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___this__0Exception, NULL); } IL2CPP_EXTERN_C void SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshal_com_back(const SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshaled_com& marshaled, SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED& unmarshaled) { Exception_t* ___this__0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'this_' of type 'SequenceConstructPosContext': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___this__0Exception, NULL); } // Conversion method for clean up from marshalling of: System.Xml.Schema.SequenceNode/SequenceConstructPosContext IL2CPP_EXTERN_C void SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshal_com_cleanup(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshaled_com& marshaled) { } // System.Void System.Xml.Schema.SequenceNode/SequenceConstructPosContext::.ctor(System.Xml.Schema.SequenceNode,System.Xml.Schema.BitSet,System.Xml.Schema.BitSet) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SequenceConstructPosContext__ctor_m838797312070C2B9C77F9E03543949D27009E4D3 (SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED * __this, SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * ___node0, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos1, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos2, const RuntimeMethod* method) { { SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * L_0 = ___node0; __this->set_this__0(L_0); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_1 = ___firstpos1; __this->set_firstpos_1(L_1); BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * L_2 = ___lastpos2; __this->set_lastpos_2(L_2); __this->set_lastposLeft_3((BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *)NULL); __this->set_firstposRight_4((BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 *)NULL); return; } } IL2CPP_EXTERN_C void SequenceConstructPosContext__ctor_m838797312070C2B9C77F9E03543949D27009E4D3_AdjustorThunk (RuntimeObject * __this, SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * ___node0, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos1, BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos2, const RuntimeMethod* method) { int32_t _offset = 1; SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED * _thisAdjusted = reinterpret_cast(__this + _offset); SequenceConstructPosContext__ctor_m838797312070C2B9C77F9E03543949D27009E4D3(_thisAdjusted, ___node0, ___firstpos1, ___lastpos2, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlAtomicValue/NamespacePrefixForQName::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespacePrefixForQName__ctor_m7FB6B0BEBC3EA701567ADDCE5D94C62AD05367BE (NamespacePrefixForQName_t38692CB52444997F00035FBB30BCEC358855A1B2 * __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); String_t* L_0 = ___ns1; __this->set_ns_1(L_0); String_t* L_1 = ___prefix0; __this->set_prefix_0(L_1); return; } } // System.String System.Xml.Schema.XmlAtomicValue/NamespacePrefixForQName::LookupNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NamespacePrefixForQName_LookupNamespace_m3D827557B0D3235AD04E8487B2F262B867F5F88E (NamespacePrefixForQName_t38692CB52444997F00035FBB30BCEC358855A1B2 * __this, String_t* ___prefix0, const RuntimeMethod* method) { { String_t* L_0 = ___prefix0; String_t* L_1 = __this->get_prefix_0(); bool L_2; L_2 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0015; } } { String_t* L_3 = __this->get_ns_1(); return L_3; } IL_0015: { return (String_t*)NULL; } } // System.String System.Xml.Schema.XmlAtomicValue/NamespacePrefixForQName::LookupPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NamespacePrefixForQName_LookupPrefix_m390F0C1194AFA1F10634D260990223D4DDF6791C (NamespacePrefixForQName_t38692CB52444997F00035FBB30BCEC358855A1B2 * __this, String_t* ___namespaceName0, const RuntimeMethod* method) { { String_t* L_0 = __this->get_ns_1(); String_t* L_1 = ___namespaceName0; bool L_2; L_2 = String_op_Equality_m50B3548E4AC232558190B0052877B290AA1D436A(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0015; } } { String_t* L_3 = __this->get_prefix_0(); return L_3; } IL_0015: { return (String_t*)NULL; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Xml.Schema.XmlAtomicValue/Union IL2CPP_EXTERN_C void Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F_marshal_pinvoke(const Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F& unmarshaled, Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F_marshaled_pinvoke& marshaled) { Exception_t* ___dtVal_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'dtVal' of type 'Union'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___dtVal_4Exception, NULL); } IL2CPP_EXTERN_C void Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F_marshal_pinvoke_back(const Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F_marshaled_pinvoke& marshaled, Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F& unmarshaled) { Exception_t* ___dtVal_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'dtVal' of type 'Union'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___dtVal_4Exception, NULL); } // Conversion method for clean up from marshalling of: System.Xml.Schema.XmlAtomicValue/Union IL2CPP_EXTERN_C void Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F_marshal_pinvoke_cleanup(Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Xml.Schema.XmlAtomicValue/Union IL2CPP_EXTERN_C void Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F_marshal_com(const Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F& unmarshaled, Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F_marshaled_com& marshaled) { Exception_t* ___dtVal_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'dtVal' of type 'Union'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___dtVal_4Exception, NULL); } IL2CPP_EXTERN_C void Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F_marshal_com_back(const Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F_marshaled_com& marshaled, Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F& unmarshaled) { Exception_t* ___dtVal_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'dtVal' of type 'Union'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___dtVal_4Exception, NULL); } // Conversion method for clean up from marshalling of: System.Xml.Schema.XmlAtomicValue/Union IL2CPP_EXTERN_C void Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F_marshal_com_cleanup(Union_tDECB87F39F808B6F6886539B5575F4CF3651A01F_marshaled_com& marshaled) { } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlDownloadManager/<>c__DisplayClass4_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass4_0__ctor_mA8C38071F0962C139DD7DB555CD1BDE4BD9D00B7 (U3CU3Ec__DisplayClass4_0_t1CB18D171B35CF191BC6883D5C7E384F9F137C0B * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.IO.Stream System.Xml.XmlDownloadManager/<>c__DisplayClass4_0::b__0() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * U3CU3Ec__DisplayClass4_0_U3CGetStreamAsyncU3Eb__0_mD810D700ED1233BCA865347F84A2EE0A699E4D0C (U3CU3Ec__DisplayClass4_0_t1CB18D171B35CF191BC6883D5C7E384F9F137C0B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = __this->get_uri_0(); NullCheck(L_0); String_t* L_1; L_1 = Uri_get_LocalPath_mED5287A7F9ADF1CCBAFD77221135A37C133F067E(L_0, /*hidden argument*/NULL); FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 * L_2 = (FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26 *)il2cpp_codegen_object_new(FileStream_t6342275F1C1E26F5EEB5AD510933C95B78A5DA26_il2cpp_TypeInfo_var); FileStream__ctor_m446168E332C8770748277DC4E83A92DFEFECCCFA(L_2, L_1, 3, 1, 1, 1, (bool)1, /*hidden argument*/NULL); return L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlDownloadManager/d__5::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetNonFileStreamAsyncU3Ed__5_MoveNext_m395DECA15FA59099D34DC4CBDAA0125307690CF7 (U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2_TisU3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_mB8CEDA29E42C6466FBD723FD3A77ADF8EA0D0AF7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_SetResult_mD3A30E77DF6510CE14800E799D4A0EFA09BAFEFD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaitable_1_GetAwaiter_m9966FFF0D41B23D5CA024C291811DF5A6F80D3B4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaiter_GetResult_mD225F9BD6B8ABB67A9113177FA6014A0A749353D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaiter_get_IsCompleted_mB157381B77839BF4D4F6781E9984D087C5D1E9BB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2__ctor_mA163EA96264A8D2042CC9BF314E218CC271B444F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tAC7EF348160054EFB6A83AC44C3A19A395DA47E2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3__ctor_m71A92851122BC354AAFF28F73273C76A963701B6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TaskFactory_1_FromAsync_m196FA20CD6C49C10C77C43F3DE597A6CFB928740_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_1_ConfigureAwait_m958847894F96659D65916785756B6FB2FA80D851_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_1_get_Factory_m283742BB5C1426112B31A7531F634300838AC04B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCachedStream_t16365C843A7DEB2CD28A1C6550229581A2913D83_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlRegisteredNonCachedStream_t34366F50733A8D122E74F0C51EAD411FF827BCC1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * V_1 = NULL; Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * V_2 = NULL; WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * V_3 = NULL; HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * V_4 = NULL; ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 V_5; memset((&V_5), 0, sizeof(V_5)); ConfiguredTaskAwaitable_1_tF9BD196482DCC94DF3512B16C854E051395A348A V_6; memset((&V_6), 0, sizeof(V_6)); XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * V_7 = NULL; bool V_8 = false; OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D * V_9 = NULL; Exception_t * V_10 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * L_1 = __this->get_U3CU3E4__this_7(); V_1 = L_1; } IL_000e: try { // begin try (depth: 1) { int32_t L_2 = V_0; if (!L_2) { goto IL_00dd; } } IL_0014: { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_3 = __this->get_uri_2(); IL2CPP_RUNTIME_CLASS_INIT(WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E_il2cpp_TypeInfo_var); WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E * L_4; L_4 = WebRequest_Create_m7495BFDB572824A5A54210D88A2EE70DEA104E2D(L_3, /*hidden argument*/NULL); __this->set_U3CreqU3E5__1_6(L_4); RuntimeObject* L_5 = __this->get_credentials_3(); if (!L_5) { goto IL_003e; } } IL_002d: { WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E * L_6 = __this->get_U3CreqU3E5__1_6(); RuntimeObject* L_7 = __this->get_credentials_3(); NullCheck(L_6); VirtActionInvoker1< RuntimeObject* >::Invoke(15 /* System.Void System.Net.WebRequest::set_Credentials(System.Net.ICredentials) */, L_6, L_7); } IL_003e: { RuntimeObject* L_8 = __this->get_proxy_4(); if (!L_8) { goto IL_0057; } } IL_0046: { WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E * L_9 = __this->get_U3CreqU3E5__1_6(); RuntimeObject* L_10 = __this->get_proxy_4(); NullCheck(L_9); VirtActionInvoker1< RuntimeObject* >::Invoke(18 /* System.Void System.Net.WebRequest::set_Proxy(System.Net.IWebProxy) */, L_9, L_10); } IL_0057: { RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * L_11 = __this->get_cachePolicy_5(); if (!L_11) { goto IL_0070; } } IL_005f: { WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E * L_12 = __this->get_U3CreqU3E5__1_6(); RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * L_13 = __this->get_cachePolicy_5(); NullCheck(L_12); VirtActionInvoker1< RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * >::Invoke(8 /* System.Void System.Net.WebRequest::set_CachePolicy(System.Net.Cache.RequestCachePolicy) */, L_12, L_13); } IL_0070: { IL2CPP_RUNTIME_CLASS_INIT(Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765_il2cpp_TypeInfo_var); TaskFactory_1_t59C1EE1FD5B07F2BEBFFB103A93A760D61A39406 * L_14; L_14 = Task_1_get_Factory_m283742BB5C1426112B31A7531F634300838AC04B_inline(/*hidden argument*/Task_1_get_Factory_m283742BB5C1426112B31A7531F634300838AC04B_RuntimeMethod_var); WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E * L_15 = __this->get_U3CreqU3E5__1_6(); WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E * L_16 = L_15; Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 * L_17 = (Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020 *)il2cpp_codegen_object_new(Func_3_tDA4C8184C72F04366C43649AB724B6CEA3089020_il2cpp_TypeInfo_var); Func_3__ctor_m71A92851122BC354AAFF28F73273C76A963701B6(L_17, L_16, (intptr_t)((intptr_t)GetVirtualMethodInfo(L_16, 21)), /*hidden argument*/Func_3__ctor_m71A92851122BC354AAFF28F73273C76A963701B6_RuntimeMethod_var); WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E * L_18 = __this->get_U3CreqU3E5__1_6(); WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E * L_19 = L_18; Func_2_tAC7EF348160054EFB6A83AC44C3A19A395DA47E2 * L_20 = (Func_2_tAC7EF348160054EFB6A83AC44C3A19A395DA47E2 *)il2cpp_codegen_object_new(Func_2_tAC7EF348160054EFB6A83AC44C3A19A395DA47E2_il2cpp_TypeInfo_var); Func_2__ctor_mA163EA96264A8D2042CC9BF314E218CC271B444F(L_20, L_19, (intptr_t)((intptr_t)GetVirtualMethodInfo(L_19, 22)), /*hidden argument*/Func_2__ctor_mA163EA96264A8D2042CC9BF314E218CC271B444F_RuntimeMethod_var); NullCheck(L_14); Task_1_t2A3672CB79B7A66967AEB67A7CCF5EA583D25765 * L_21; L_21 = TaskFactory_1_FromAsync_m196FA20CD6C49C10C77C43F3DE597A6CFB928740(L_14, L_17, L_20, NULL, /*hidden argument*/TaskFactory_1_FromAsync_m196FA20CD6C49C10C77C43F3DE597A6CFB928740_RuntimeMethod_var); NullCheck(L_21); ConfiguredTaskAwaitable_1_tF9BD196482DCC94DF3512B16C854E051395A348A L_22; L_22 = Task_1_ConfigureAwait_m958847894F96659D65916785756B6FB2FA80D851(L_21, (bool)0, /*hidden argument*/Task_1_ConfigureAwait_m958847894F96659D65916785756B6FB2FA80D851_RuntimeMethod_var); V_6 = L_22; ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 L_23; L_23 = ConfiguredTaskAwaitable_1_GetAwaiter_m9966FFF0D41B23D5CA024C291811DF5A6F80D3B4_inline((ConfiguredTaskAwaitable_1_tF9BD196482DCC94DF3512B16C854E051395A348A *)(&V_6), /*hidden argument*/ConfiguredTaskAwaitable_1_GetAwaiter_m9966FFF0D41B23D5CA024C291811DF5A6F80D3B4_RuntimeMethod_var); V_5 = L_23; bool L_24; L_24 = ConfiguredTaskAwaiter_get_IsCompleted_mB157381B77839BF4D4F6781E9984D087C5D1E9BB((ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 *)(&V_5), /*hidden argument*/ConfiguredTaskAwaiter_get_IsCompleted_mB157381B77839BF4D4F6781E9984D087C5D1E9BB_RuntimeMethod_var); if (L_24) { goto IL_00fa; } } IL_00b9: { int32_t L_25 = 0; V_0 = L_25; __this->set_U3CU3E1__state_0(L_25); ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 L_26 = V_5; __this->set_U3CU3Eu__1_8(L_26); AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F * L_27 = __this->get_address_of_U3CU3Et__builder_1(); AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2_TisU3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_mB8CEDA29E42C6466FBD723FD3A77ADF8EA0D0AF7((AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F *)L_27, (ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 *)(&V_5), (U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782 *)__this, /*hidden argument*/AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2_TisU3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782_mB8CEDA29E42C6466FBD723FD3A77ADF8EA0D0AF7_RuntimeMethod_var); goto IL_021e; } IL_00dd: { ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 L_28 = __this->get_U3CU3Eu__1_8(); V_5 = L_28; ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 * L_29 = __this->get_address_of_U3CU3Eu__1_8(); il2cpp_codegen_initobj(L_29, sizeof(ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 )); int32_t L_30 = (-1); V_0 = L_30; __this->set_U3CU3E1__state_0(L_30); } IL_00fa: { WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * L_31; L_31 = ConfiguredTaskAwaiter_GetResult_mD225F9BD6B8ABB67A9113177FA6014A0A749353D((ConfiguredTaskAwaiter_t312DB5A87370F59C7913F19648A75FA9FF9E36D2 *)(&V_5), /*hidden argument*/ConfiguredTaskAwaiter_GetResult_mD225F9BD6B8ABB67A9113177FA6014A0A749353D_RuntimeMethod_var); V_3 = L_31; WebRequest_t130159AA9419464E465AE0DC62721CC40E86EE8E * L_32 = __this->get_U3CreqU3E5__1_6(); V_4 = ((HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A *)IsInstClass((RuntimeObject*)L_32, HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A_il2cpp_TypeInfo_var)); HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * L_33 = V_4; if (!L_33) { goto IL_01e8; } } IL_0116: { XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * L_34 = V_1; V_7 = L_34; V_8 = (bool)0; } IL_011c: try { // begin try (depth: 2) { XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * L_35 = V_7; Monitor_Enter_m588C16057E70F436C528A800D32546E987CAF1BD(L_35, (bool*)(&V_8), /*hidden argument*/NULL); XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * L_36 = V_1; NullCheck(L_36); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_37 = L_36->get_connections_0(); if (L_37) { goto IL_0138; } } IL_012d: { XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * L_38 = V_1; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_39 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_39, /*hidden argument*/NULL); NullCheck(L_38); L_38->set_connections_0(L_39); } IL_0138: { XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * L_40 = V_1; NullCheck(L_40); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_41 = L_40->get_connections_0(); HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * L_42 = V_4; NullCheck(L_42); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_43; L_43 = HttpWebRequest_get_Address_m8B4240A8AD46F12716B28F8549750BA30D2E368B_inline(L_42, /*hidden argument*/NULL); NullCheck(L_43); String_t* L_44; L_44 = Uri_get_Host_m05E1D82C4E6B14A2369AEDED218F9089DE336E64(L_43, /*hidden argument*/NULL); NullCheck(L_41); RuntimeObject * L_45; L_45 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_41, L_44); V_9 = ((OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D *)CastclassClass((RuntimeObject*)L_45, OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D_il2cpp_TypeInfo_var)); OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D * L_46 = V_9; if (L_46) { goto IL_0161; } } IL_015a: { OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D * L_47 = (OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D *)il2cpp_codegen_object_new(OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D_il2cpp_TypeInfo_var); OpenedHost__ctor_m0FB08FD979C96E5E83286C9879ECDCC2F4F217AB(L_47, /*hidden argument*/NULL); V_9 = L_47; } IL_0161: { OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D * L_48 = V_9; NullCheck(L_48); int32_t L_49 = L_48->get_nonCachedConnectionsCount_0(); HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * L_50 = V_4; NullCheck(L_50); ServicePoint_tA9162DE1F4EDB0DE0A8028EECEB94FDBAB719DB0 * L_51; L_51 = HttpWebRequest_get_ServicePoint_m87CA558F0C7B4A6D585F42616771173F75DE2567(L_50, /*hidden argument*/NULL); NullCheck(L_51); int32_t L_52; L_52 = ServicePoint_get_ConnectionLimit_mDF34A9CA341979EF0E5A547DC0E3281BBBEE72FF(L_51, /*hidden argument*/NULL); if ((((int32_t)L_49) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_52, (int32_t)1))))) { goto IL_01c4; } } IL_0178: { OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D * L_53 = V_9; NullCheck(L_53); int32_t L_54 = L_53->get_nonCachedConnectionsCount_0(); if (L_54) { goto IL_019a; } } IL_0181: { XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * L_55 = V_1; NullCheck(L_55); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_56 = L_55->get_connections_0(); HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * L_57 = V_4; NullCheck(L_57); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_58; L_58 = HttpWebRequest_get_Address_m8B4240A8AD46F12716B28F8549750BA30D2E368B_inline(L_57, /*hidden argument*/NULL); NullCheck(L_58); String_t* L_59; L_59 = Uri_get_Host_m05E1D82C4E6B14A2369AEDED218F9089DE336E64(L_58, /*hidden argument*/NULL); OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D * L_60 = V_9; NullCheck(L_56); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_56, L_59, L_60); } IL_019a: { OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D * L_61 = V_9; OpenedHost_t6FB01A846223728993AC983CC229BDF288367D4D * L_62 = L_61; NullCheck(L_62); int32_t L_63 = L_62->get_nonCachedConnectionsCount_0(); NullCheck(L_62); L_62->set_nonCachedConnectionsCount_0(((int32_t)il2cpp_codegen_add((int32_t)L_63, (int32_t)1))); WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * L_64 = V_3; NullCheck(L_64); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_65; L_65 = VirtFuncInvoker0< Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * >::Invoke(11 /* System.IO.Stream System.Net.WebResponse::GetResponseStream() */, L_64); XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * L_66 = V_1; HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * L_67 = V_4; NullCheck(L_67); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_68; L_68 = HttpWebRequest_get_Address_m8B4240A8AD46F12716B28F8549750BA30D2E368B_inline(L_67, /*hidden argument*/NULL); NullCheck(L_68); String_t* L_69; L_69 = Uri_get_Host_m05E1D82C4E6B14A2369AEDED218F9089DE336E64(L_68, /*hidden argument*/NULL); XmlRegisteredNonCachedStream_t34366F50733A8D122E74F0C51EAD411FF827BCC1 * L_70 = (XmlRegisteredNonCachedStream_t34366F50733A8D122E74F0C51EAD411FF827BCC1 *)il2cpp_codegen_object_new(XmlRegisteredNonCachedStream_t34366F50733A8D122E74F0C51EAD411FF827BCC1_il2cpp_TypeInfo_var); XmlRegisteredNonCachedStream__ctor_m081041EA73D3FC8BC1859DA296084E29DD94C19F(L_70, L_65, L_66, L_69, /*hidden argument*/NULL); V_2 = L_70; IL2CPP_LEAVE(0x20A, FINALLY_01d8); } IL_01c4: { WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * L_71 = V_3; NullCheck(L_71); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_72; L_72 = VirtFuncInvoker0< Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * >::Invoke(12 /* System.Uri System.Net.WebResponse::get_ResponseUri() */, L_71); WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * L_73 = V_3; NullCheck(L_73); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_74; L_74 = VirtFuncInvoker0< Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * >::Invoke(11 /* System.IO.Stream System.Net.WebResponse::GetResponseStream() */, L_73); XmlCachedStream_t16365C843A7DEB2CD28A1C6550229581A2913D83 * L_75 = (XmlCachedStream_t16365C843A7DEB2CD28A1C6550229581A2913D83 *)il2cpp_codegen_object_new(XmlCachedStream_t16365C843A7DEB2CD28A1C6550229581A2913D83_il2cpp_TypeInfo_var); XmlCachedStream__ctor_m07A18788CA9C71ED5B4718F29D34B94406703F0F(L_75, L_72, L_74, /*hidden argument*/NULL); V_2 = L_75; IL2CPP_LEAVE(0x20A, FINALLY_01d8); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_01d8; } FINALLY_01d8: { // begin finally (depth: 2) { int32_t L_76 = V_0; if ((((int32_t)L_76) >= ((int32_t)0))) { goto IL_01e7; } } IL_01dc: { bool L_77 = V_8; if (!L_77) { goto IL_01e7; } } IL_01e0: { XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * L_78 = V_7; Monitor_Exit_m62365CE1CF6AD0E7396CEEB926F7B0C3FA8CABA1(L_78, /*hidden argument*/NULL); } IL_01e7: { IL2CPP_END_FINALLY(472) } } // end finally (depth: 2) IL2CPP_CLEANUP(472) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x20A, IL_020a) } IL_01e8: { WebResponse_t4EB79E9B7A899FD18A4AE51B7FE4FBE9A2D636B0 * L_79 = V_3; NullCheck(L_79); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_80; L_80 = VirtFuncInvoker0< Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * >::Invoke(11 /* System.IO.Stream System.Net.WebResponse::GetResponseStream() */, L_79); V_2 = L_80; goto IL_020a; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_01f1; } throw e; } CATCH_01f1: { // begin catch(System.Exception) V_10 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); __this->set_U3CU3E1__state_0(((int32_t)-2)); AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F * L_81 = __this->get_address_of_U3CU3Et__builder_1(); Exception_t * L_82 = V_10; AsyncTaskMethodBuilder_1_SetException_m69431078822E6A677A8F7CEC526C9D6DE1247251((AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F *)L_81, L_82, /*hidden argument*/((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AsyncTaskMethodBuilder_1_SetException_m69431078822E6A677A8F7CEC526C9D6DE1247251_RuntimeMethod_var))); IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_021e; } // end catch (depth: 1) IL_020a: { __this->set_U3CU3E1__state_0(((int32_t)-2)); AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F * L_83 = __this->get_address_of_U3CU3Et__builder_1(); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_84 = V_2; AsyncTaskMethodBuilder_1_SetResult_mD3A30E77DF6510CE14800E799D4A0EFA09BAFEFD((AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F *)L_83, L_84, /*hidden argument*/AsyncTaskMethodBuilder_1_SetResult_mD3A30E77DF6510CE14800E799D4A0EFA09BAFEFD_RuntimeMethod_var); } IL_021e: { return; } } IL2CPP_EXTERN_C void U3CGetNonFileStreamAsyncU3Ed__5_MoveNext_m395DECA15FA59099D34DC4CBDAA0125307690CF7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782 * _thisAdjusted = reinterpret_cast(__this + _offset); U3CGetNonFileStreamAsyncU3Ed__5_MoveNext_m395DECA15FA59099D34DC4CBDAA0125307690CF7(_thisAdjusted, method); } // System.Void System.Xml.XmlDownloadManager/d__5::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetNonFileStreamAsyncU3Ed__5_SetStateMachine_m6269B8FD1CE46B7955D5D2F90AB7D5F2BE407777 (U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_SetStateMachine_mFF03AB561D1FC60E613247F020EFD7D420A1BECF_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F * L_0 = __this->get_address_of_U3CU3Et__builder_1(); RuntimeObject* L_1 = ___stateMachine0; AsyncTaskMethodBuilder_1_SetStateMachine_mFF03AB561D1FC60E613247F020EFD7D420A1BECF((AsyncTaskMethodBuilder_1_t445B001B32525A5C755DE950EBBD09544620B90F *)L_0, L_1, /*hidden argument*/AsyncTaskMethodBuilder_1_SetStateMachine_mFF03AB561D1FC60E613247F020EFD7D420A1BECF_RuntimeMethod_var); return; } } IL2CPP_EXTERN_C void U3CGetNonFileStreamAsyncU3Ed__5_SetStateMachine_m6269B8FD1CE46B7955D5D2F90AB7D5F2BE407777_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) { int32_t _offset = 1; U3CGetNonFileStreamAsyncU3Ed__5_t3C3436560486693053CFE79D503DE114BD57F782 * _thisAdjusted = reinterpret_cast(__this + _offset); U3CGetNonFileStreamAsyncU3Ed__5_SetStateMachine_m6269B8FD1CE46B7955D5D2F90AB7D5F2BE407777(_thisAdjusted, ___stateMachine0, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Xml.XmlNamedNodeMap/SmallXmlNodeList IL2CPP_EXTERN_C void SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_marshal_pinvoke(const SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE& unmarshaled, SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_marshaled_pinvoke& marshaled) { if (unmarshaled.get_field_0() != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_field_0())) { marshaled.___field_0 = il2cpp_codegen_com_query_interface(static_cast(unmarshaled.get_field_0())); (marshaled.___field_0)->AddRef(); } else { marshaled.___field_0 = il2cpp_codegen_com_get_or_create_ccw(unmarshaled.get_field_0()); } } else { marshaled.___field_0 = NULL; } } IL2CPP_EXTERN_C void SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_marshal_pinvoke_back(const SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_marshaled_pinvoke& marshaled, SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Il2CppComObject_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } if (marshaled.___field_0 != NULL) { unmarshaled.set_field_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown(marshaled.___field_0, Il2CppComObject_il2cpp_TypeInfo_var)); if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_field_0())) { il2cpp_codegen_com_cache_queried_interface(static_cast(unmarshaled.get_field_0()), Il2CppIUnknown::IID, marshaled.___field_0); } } else { unmarshaled.set_field_0(NULL); } } // Conversion method for clean up from marshalling of: System.Xml.XmlNamedNodeMap/SmallXmlNodeList IL2CPP_EXTERN_C void SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_marshal_pinvoke_cleanup(SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_marshaled_pinvoke& marshaled) { if (marshaled.___field_0 != NULL) { (marshaled.___field_0)->Release(); marshaled.___field_0 = NULL; } } // Conversion methods for marshalling of: System.Xml.XmlNamedNodeMap/SmallXmlNodeList IL2CPP_EXTERN_C void SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_marshal_com(const SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE& unmarshaled, SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_marshaled_com& marshaled) { if (unmarshaled.get_field_0() != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_field_0())) { marshaled.___field_0 = il2cpp_codegen_com_query_interface(static_cast(unmarshaled.get_field_0())); (marshaled.___field_0)->AddRef(); } else { marshaled.___field_0 = il2cpp_codegen_com_get_or_create_ccw(unmarshaled.get_field_0()); } } else { marshaled.___field_0 = NULL; } } IL2CPP_EXTERN_C void SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_marshal_com_back(const SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_marshaled_com& marshaled, SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Il2CppComObject_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } if (marshaled.___field_0 != NULL) { unmarshaled.set_field_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown(marshaled.___field_0, Il2CppComObject_il2cpp_TypeInfo_var)); if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_field_0())) { il2cpp_codegen_com_cache_queried_interface(static_cast(unmarshaled.get_field_0()), Il2CppIUnknown::IID, marshaled.___field_0); } } else { unmarshaled.set_field_0(NULL); } } // Conversion method for clean up from marshalling of: System.Xml.XmlNamedNodeMap/SmallXmlNodeList IL2CPP_EXTERN_C void SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_marshal_com_cleanup(SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE_marshaled_com& marshaled) { if (marshaled.___field_0 != NULL) { (marshaled.___field_0)->Release(); marshaled.___field_0 = NULL; } } // System.Int32 System.Xml.XmlNamedNodeMap/SmallXmlNodeList::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SmallXmlNodeList_get_Count_m531CBC894FC78314798ED52A184AB776B4C1E482 (SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * V_0 = NULL; { RuntimeObject * L_0 = __this->get_field_0(); if (L_0) { goto IL_000a; } } { return 0; } IL_000a: { RuntimeObject * L_1 = __this->get_field_0(); V_0 = ((ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)IsInstClass((RuntimeObject*)L_1, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var)); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_2 = V_0; if (!L_2) { goto IL_0020; } } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_3 = V_0; NullCheck(L_3); int32_t L_4; L_4 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_3); return L_4; } IL_0020: { return 1; } } IL2CPP_EXTERN_C int32_t SmallXmlNodeList_get_Count_m531CBC894FC78314798ED52A184AB776B4C1E482_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = SmallXmlNodeList_get_Count_m531CBC894FC78314798ED52A184AB776B4C1E482(_thisAdjusted, method); return _returnValue; } // System.Object System.Xml.XmlNamedNodeMap/SmallXmlNodeList::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SmallXmlNodeList_get_Item_mB9359FC058C97EE9AD78BB1131A921616814A90E (SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * V_0 = NULL; { RuntimeObject * L_0 = __this->get_field_0(); if (L_0) { goto IL_0013; } } { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_1 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlNodeList_get_Item_mB9359FC058C97EE9AD78BB1131A921616814A90E_RuntimeMethod_var))); } IL_0013: { RuntimeObject * L_2 = __this->get_field_0(); V_0 = ((ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)IsInstClass((RuntimeObject*)L_2, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var)); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_3 = V_0; if (!L_3) { goto IL_002a; } } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_4 = V_0; int32_t L_5 = ___index0; NullCheck(L_4); RuntimeObject * L_6; L_6 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_4, L_5); return L_6; } IL_002a: { int32_t L_7 = ___index0; if (!L_7) { goto IL_0038; } } { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlNodeList_get_Item_mB9359FC058C97EE9AD78BB1131A921616814A90E_RuntimeMethod_var))); } IL_0038: { RuntimeObject * L_9 = __this->get_field_0(); return L_9; } } IL2CPP_EXTERN_C RuntimeObject * SmallXmlNodeList_get_Item_mB9359FC058C97EE9AD78BB1131A921616814A90E_AdjustorThunk (RuntimeObject * __this, int32_t ___index0, const RuntimeMethod* method) { int32_t _offset = 1; SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject * _returnValue; _returnValue = SmallXmlNodeList_get_Item_mB9359FC058C97EE9AD78BB1131A921616814A90E(_thisAdjusted, ___index0, method); return _returnValue; } // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList::Add(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlNodeList_Add_m23AA92A77C388F16C324B3DABE2FB17E3DA5DCF6 (SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * V_0 = NULL; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * V_1 = NULL; { RuntimeObject * L_0 = __this->get_field_0(); if (L_0) { goto IL_0029; } } { RuntimeObject * L_1 = ___value0; if (L_1) { goto IL_0021; } } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_2 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_2, /*hidden argument*/NULL); V_1 = L_2; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_3 = V_1; NullCheck(L_3); int32_t L_4; L_4 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_3, NULL); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_5 = V_1; __this->set_field_0(L_5); return; } IL_0021: { RuntimeObject * L_6 = ___value0; __this->set_field_0(L_6); return; } IL_0029: { RuntimeObject * L_7 = __this->get_field_0(); V_0 = ((ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)IsInstClass((RuntimeObject*)L_7, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var)); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_8 = V_0; if (!L_8) { goto IL_0041; } } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_9 = V_0; RuntimeObject * L_10 = ___value0; NullCheck(L_9); int32_t L_11; L_11 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_9, L_10); return; } IL_0041: { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_12 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_12, /*hidden argument*/NULL); V_0 = L_12; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_13 = V_0; RuntimeObject * L_14 = __this->get_field_0(); NullCheck(L_13); int32_t L_15; L_15 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_13, L_14); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_16 = V_0; RuntimeObject * L_17 = ___value0; NullCheck(L_16); int32_t L_18; L_18 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_16, L_17); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_19 = V_0; __this->set_field_0(L_19); return; } } IL2CPP_EXTERN_C void SmallXmlNodeList_Add_m23AA92A77C388F16C324B3DABE2FB17E3DA5DCF6_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { int32_t _offset = 1; SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * _thisAdjusted = reinterpret_cast(__this + _offset); SmallXmlNodeList_Add_m23AA92A77C388F16C324B3DABE2FB17E3DA5DCF6(_thisAdjusted, ___value0, method); } // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlNodeList_RemoveAt_mA3D7ACC3756E6109DBA4F77F83E2AF9A639A0FCE (SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * V_0 = NULL; { RuntimeObject * L_0 = __this->get_field_0(); if (L_0) { goto IL_0013; } } { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_1 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlNodeList_RemoveAt_mA3D7ACC3756E6109DBA4F77F83E2AF9A639A0FCE_RuntimeMethod_var))); } IL_0013: { RuntimeObject * L_2 = __this->get_field_0(); V_0 = ((ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)IsInstClass((RuntimeObject*)L_2, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var)); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_3 = V_0; if (!L_3) { goto IL_002a; } } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_4 = V_0; int32_t L_5 = ___index0; NullCheck(L_4); VirtActionInvoker1< int32_t >::Invoke(37 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_4, L_5); return; } IL_002a: { int32_t L_6 = ___index0; if (!L_6) { goto IL_0038; } } { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_7 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlNodeList_RemoveAt_mA3D7ACC3756E6109DBA4F77F83E2AF9A639A0FCE_RuntimeMethod_var))); } IL_0038: { __this->set_field_0(NULL); return; } } IL2CPP_EXTERN_C void SmallXmlNodeList_RemoveAt_mA3D7ACC3756E6109DBA4F77F83E2AF9A639A0FCE_AdjustorThunk (RuntimeObject * __this, int32_t ___index0, const RuntimeMethod* method) { int32_t _offset = 1; SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * _thisAdjusted = reinterpret_cast(__this + _offset); SmallXmlNodeList_RemoveAt_mA3D7ACC3756E6109DBA4F77F83E2AF9A639A0FCE(_thisAdjusted, ___index0, method); } // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList::Insert(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlNodeList_Insert_m746B9DDFD7B78894075135B2902335F4E6B4465B (SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * V_0 = NULL; { RuntimeObject * L_0 = __this->get_field_0(); if (L_0) { goto IL_001e; } } { int32_t L_1 = ___index0; if (!L_1) { goto IL_0016; } } { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlNodeList_Insert_m746B9DDFD7B78894075135B2902335F4E6B4465B_RuntimeMethod_var))); } IL_0016: { RuntimeObject * L_3 = ___value1; SmallXmlNodeList_Add_m23AA92A77C388F16C324B3DABE2FB17E3DA5DCF6((SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE *)__this, L_3, /*hidden argument*/NULL); return; } IL_001e: { RuntimeObject * L_4 = __this->get_field_0(); V_0 = ((ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)IsInstClass((RuntimeObject*)L_4, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var)); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_5 = V_0; if (!L_5) { goto IL_0036; } } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_6 = V_0; int32_t L_7 = ___index0; RuntimeObject * L_8 = ___value1; NullCheck(L_6); VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(34 /* System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) */, L_6, L_7, L_8); return; } IL_0036: { int32_t L_9 = ___index0; if (L_9) { goto IL_005c; } } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_10 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_10, /*hidden argument*/NULL); V_0 = L_10; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_11 = V_0; RuntimeObject * L_12 = ___value1; NullCheck(L_11); int32_t L_13; L_13 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_11, L_12); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_14 = V_0; RuntimeObject * L_15 = __this->get_field_0(); NullCheck(L_14); int32_t L_16; L_16 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_14, L_15); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_17 = V_0; __this->set_field_0(L_17); return; } IL_005c: { int32_t L_18 = ___index0; if ((!(((uint32_t)L_18) == ((uint32_t)1)))) { goto IL_0083; } } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_19 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_19, /*hidden argument*/NULL); V_0 = L_19; ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_20 = V_0; RuntimeObject * L_21 = __this->get_field_0(); NullCheck(L_20); int32_t L_22; L_22 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_20, L_21); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_23 = V_0; RuntimeObject * L_24 = ___value1; NullCheck(L_23); int32_t L_25; L_25 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_23, L_24); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_26 = V_0; __this->set_field_0(L_26); return; } IL_0083: { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_27 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_27, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlNodeList_Insert_m746B9DDFD7B78894075135B2902335F4E6B4465B_RuntimeMethod_var))); } } IL2CPP_EXTERN_C void SmallXmlNodeList_Insert_m746B9DDFD7B78894075135B2902335F4E6B4465B_AdjustorThunk (RuntimeObject * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { int32_t _offset = 1; SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * _thisAdjusted = reinterpret_cast(__this + _offset); SmallXmlNodeList_Insert_m746B9DDFD7B78894075135B2902335F4E6B4465B(_thisAdjusted, ___index0, ___value1, method); } // System.Collections.IEnumerator System.Xml.XmlNamedNodeMap/SmallXmlNodeList::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SmallXmlNodeList_GetEnumerator_mB22BFB1AD52DA04FA5D10B8C62D996894DF967C8 (SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SingleObjectEnumerator_t00B492D3B841924569E3EB466D5675163D6EF62E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * V_0 = NULL; { RuntimeObject * L_0 = __this->get_field_0(); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F_il2cpp_TypeInfo_var); EmptyEnumerator_t138901A02D453E19CDE87DFD96981F8A98928E13 * L_1 = ((XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F_il2cpp_TypeInfo_var))->get_EmptyEnumerator_41(); return L_1; } IL_000e: { RuntimeObject * L_2 = __this->get_field_0(); V_0 = ((ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)IsInstClass((RuntimeObject*)L_2, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var)); ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_3 = V_0; if (!L_3) { goto IL_0024; } } { ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_4 = V_0; NullCheck(L_4); RuntimeObject* L_5; L_5 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_4); return L_5; } IL_0024: { RuntimeObject * L_6 = __this->get_field_0(); SingleObjectEnumerator_t00B492D3B841924569E3EB466D5675163D6EF62E * L_7 = (SingleObjectEnumerator_t00B492D3B841924569E3EB466D5675163D6EF62E *)il2cpp_codegen_object_new(SingleObjectEnumerator_t00B492D3B841924569E3EB466D5675163D6EF62E_il2cpp_TypeInfo_var); SingleObjectEnumerator__ctor_m604B995B6FF07963B203415E5DD1284159E65BA2(L_7, L_6, /*hidden argument*/NULL); return L_7; } } IL2CPP_EXTERN_C RuntimeObject* SmallXmlNodeList_GetEnumerator_mB22BFB1AD52DA04FA5D10B8C62D996894DF967C8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; SmallXmlNodeList_tACC052857127163828121C4ED4874E07C8D1CEEE * _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject* _returnValue; _returnValue = SmallXmlNodeList_GetEnumerator_mB22BFB1AD52DA04FA5D10B8C62D996894DF967C8(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Xml.XmlNamespaceManager/NamespaceDeclaration IL2CPP_EXTERN_C void NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48_marshal_pinvoke(const NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48& unmarshaled, NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48_marshaled_pinvoke& marshaled) { marshaled.___prefix_0 = il2cpp_codegen_marshal_string(unmarshaled.get_prefix_0()); marshaled.___uri_1 = il2cpp_codegen_marshal_string(unmarshaled.get_uri_1()); marshaled.___scopeId_2 = unmarshaled.get_scopeId_2(); marshaled.___previousNsIndex_3 = unmarshaled.get_previousNsIndex_3(); } IL2CPP_EXTERN_C void NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48_marshal_pinvoke_back(const NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48_marshaled_pinvoke& marshaled, NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48& unmarshaled) { unmarshaled.set_prefix_0(il2cpp_codegen_marshal_string_result(marshaled.___prefix_0)); unmarshaled.set_uri_1(il2cpp_codegen_marshal_string_result(marshaled.___uri_1)); int32_t unmarshaled_scopeId_temp_2 = 0; unmarshaled_scopeId_temp_2 = marshaled.___scopeId_2; unmarshaled.set_scopeId_2(unmarshaled_scopeId_temp_2); int32_t unmarshaled_previousNsIndex_temp_3 = 0; unmarshaled_previousNsIndex_temp_3 = marshaled.___previousNsIndex_3; unmarshaled.set_previousNsIndex_3(unmarshaled_previousNsIndex_temp_3); } // Conversion method for clean up from marshalling of: System.Xml.XmlNamespaceManager/NamespaceDeclaration IL2CPP_EXTERN_C void NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48_marshal_pinvoke_cleanup(NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48_marshaled_pinvoke& marshaled) { il2cpp_codegen_marshal_free(marshaled.___prefix_0); marshaled.___prefix_0 = NULL; il2cpp_codegen_marshal_free(marshaled.___uri_1); marshaled.___uri_1 = NULL; } // Conversion methods for marshalling of: System.Xml.XmlNamespaceManager/NamespaceDeclaration IL2CPP_EXTERN_C void NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48_marshal_com(const NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48& unmarshaled, NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48_marshaled_com& marshaled) { marshaled.___prefix_0 = il2cpp_codegen_marshal_bstring(unmarshaled.get_prefix_0()); marshaled.___uri_1 = il2cpp_codegen_marshal_bstring(unmarshaled.get_uri_1()); marshaled.___scopeId_2 = unmarshaled.get_scopeId_2(); marshaled.___previousNsIndex_3 = unmarshaled.get_previousNsIndex_3(); } IL2CPP_EXTERN_C void NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48_marshal_com_back(const NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48_marshaled_com& marshaled, NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48& unmarshaled) { unmarshaled.set_prefix_0(il2cpp_codegen_marshal_bstring_result(marshaled.___prefix_0)); unmarshaled.set_uri_1(il2cpp_codegen_marshal_bstring_result(marshaled.___uri_1)); int32_t unmarshaled_scopeId_temp_2 = 0; unmarshaled_scopeId_temp_2 = marshaled.___scopeId_2; unmarshaled.set_scopeId_2(unmarshaled_scopeId_temp_2); int32_t unmarshaled_previousNsIndex_temp_3 = 0; unmarshaled_previousNsIndex_temp_3 = marshaled.___previousNsIndex_3; unmarshaled.set_previousNsIndex_3(unmarshaled_previousNsIndex_temp_3); } // Conversion method for clean up from marshalling of: System.Xml.XmlNamespaceManager/NamespaceDeclaration IL2CPP_EXTERN_C void NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48_marshal_com_cleanup(NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48_marshaled_com& marshaled) { il2cpp_codegen_marshal_free_bstring(marshaled.___prefix_0); marshaled.___prefix_0 = NULL; il2cpp_codegen_marshal_free_bstring(marshaled.___uri_1); marshaled.___uri_1 = NULL; } // System.Void System.Xml.XmlNamespaceManager/NamespaceDeclaration::Set(System.String,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NamespaceDeclaration_Set_mE6E6F7B98C17F9565B0EF691EA013D0A0CED2A1C (NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48 * __this, String_t* ___prefix0, String_t* ___uri1, int32_t ___scopeId2, int32_t ___previousNsIndex3, const RuntimeMethod* method) { { String_t* L_0 = ___prefix0; __this->set_prefix_0(L_0); String_t* L_1 = ___uri1; __this->set_uri_1(L_1); int32_t L_2 = ___scopeId2; __this->set_scopeId_2(L_2); int32_t L_3 = ___previousNsIndex3; __this->set_previousNsIndex_3(L_3); return; } } IL2CPP_EXTERN_C void NamespaceDeclaration_Set_mE6E6F7B98C17F9565B0EF691EA013D0A0CED2A1C_AdjustorThunk (RuntimeObject * __this, String_t* ___prefix0, String_t* ___uri1, int32_t ___scopeId2, int32_t ___previousNsIndex3, const RuntimeMethod* method) { int32_t _offset = 1; NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48 * _thisAdjusted = reinterpret_cast(__this + _offset); NamespaceDeclaration_Set_mE6E6F7B98C17F9565B0EF691EA013D0A0CED2A1C(_thisAdjusted, ___prefix0, ___uri1, ___scopeId2, ___previousNsIndex3, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif IL2CPP_EXTERN_C int32_t DelegatePInvokeWrapper_HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E (HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E * __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method) { typedef int32_t (DEFAULT_CALL *PInvokeFunc)(char*, int32_t, int64_t); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(((RuntimeDelegate*)__this)->method->nativeFunction); // Marshaling of parameter '___s0' to native representation char* ____s0_marshaled = NULL; ____s0_marshaled = il2cpp_codegen_marshal_string(___s0); // Native function invocation int32_t returnValue = il2cppPInvokeFunc(____s0_marshaled, ___sLen1, ___additionalEntropy2); // Marshaling cleanup of parameter '___s0' native representation il2cpp_codegen_marshal_free(____s0_marshaled); ____s0_marshaled = NULL; return returnValue; } // System.Void System.Xml.XmlQualifiedName/HashCodeOfStringDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashCodeOfStringDelegate__ctor_m844FB602B7099CDD0B3C4CE8849B84110227A8BA (HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Int32 System.Xml.XmlQualifiedName/HashCodeOfStringDelegate::Invoke(System.String,System.Int32,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCodeOfStringDelegate_Invoke_m87607B71AC70881412D955FBD48211D8DDA64523 (HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E * __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, const RuntimeMethod* method) { int32_t result = 0; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 3) { // open typedef int32_t (*FunctionPointerType) (String_t*, int32_t, int64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___s0, ___sLen1, ___additionalEntropy2, targetMethod); } else { // closed typedef int32_t (*FunctionPointerType) (void*, String_t*, int32_t, int64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___s0, ___sLen1, ___additionalEntropy2, targetMethod); } } else if (___parameterCount != 3) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< int32_t, int32_t, int64_t >::Invoke(targetMethod, ___s0, ___sLen1, ___additionalEntropy2); else result = GenericVirtFuncInvoker2< int32_t, int32_t, int64_t >::Invoke(targetMethod, ___s0, ___sLen1, ___additionalEntropy2); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< int32_t, int32_t, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___s0, ___sLen1, ___additionalEntropy2); else result = VirtFuncInvoker2< int32_t, int32_t, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___s0, ___sLen1, ___additionalEntropy2); } } else { typedef int32_t (*FunctionPointerType) (String_t*, int32_t, int64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___s0, ___sLen1, ___additionalEntropy2, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker3< int32_t, String_t*, int32_t, int64_t >::Invoke(targetMethod, targetThis, ___s0, ___sLen1, ___additionalEntropy2); else result = GenericVirtFuncInvoker3< int32_t, String_t*, int32_t, int64_t >::Invoke(targetMethod, targetThis, ___s0, ___sLen1, ___additionalEntropy2); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker3< int32_t, String_t*, int32_t, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___s0, ___sLen1, ___additionalEntropy2); else result = VirtFuncInvoker3< int32_t, String_t*, int32_t, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___s0, ___sLen1, ___additionalEntropy2); } } else { if (___parameterCount == 2) { typedef int32_t (*FunctionPointerType) (String_t*, int32_t, int64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___s0, ___sLen1, ___additionalEntropy2, targetMethod); } else { typedef int32_t (*FunctionPointerType) (void*, String_t*, int32_t, int64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___s0, ___sLen1, ___additionalEntropy2, targetMethod); } } } } return result; } // System.IAsyncResult System.Xml.XmlQualifiedName/HashCodeOfStringDelegate::BeginInvoke(System.String,System.Int32,System.Int64,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HashCodeOfStringDelegate_BeginInvoke_m44C53B41F5B1760F52986020073B0CA59B276DE7 (HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E * __this, String_t* ___s0, int32_t ___sLen1, int64_t ___additionalEntropy2, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[4] = {0}; __d_args[0] = ___s0; __d_args[1] = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &___sLen1); __d_args[2] = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &___additionalEntropy2); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);; } // System.Int32 System.Xml.XmlQualifiedName/HashCodeOfStringDelegate::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCodeOfStringDelegate_EndInvoke_m799EADB6F619D761A8EBAC6BA906279CD9763EA6 (HashCodeOfStringDelegate_tAE9DAB0A55A64F35CCEE05D71856BAAF6C0B668E * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(int32_t*)UnBox ((RuntimeObject*)__result);; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlReflectionImporter/<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mF7C9908DB95F4F145658F5E247F6ECE0785643B1 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE * L_0 = (U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE *)il2cpp_codegen_object_new(U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE_il2cpp_TypeInfo_var); U3CU3Ec__ctor_m82577CED5A4420DBD26D37EDC5EB6918E237B233(L_0, /*hidden argument*/NULL); ((U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0); return; } } // System.Void System.Xml.Serialization.XmlReflectionImporter/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m82577CED5A4420DBD26D37EDC5EB6918E237B233 (U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Int32 System.Xml.Serialization.XmlReflectionImporter/<>c::b__28_0(System.Xml.Serialization.XmlReflectionMember,System.Xml.Serialization.XmlReflectionMember) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CImportClassMappingU3Eb__28_0_m211DAF58A0CB5B47332237000FD7E4FC9A26BA09 (U3CU3Ec_tD898F68FF0114208BD496B043E9B1E2F6D126CCE * __this, XmlReflectionMember_t2DB532740F4159245F707469F68AEA9BFBDA55CD * ___m10, XmlReflectionMember_t2DB532740F4159245F707469F68AEA9BFBDA55CD * ___m21, const RuntimeMethod* method) { { XmlReflectionMember_t2DB532740F4159245F707469F68AEA9BFBDA55CD * L_0 = ___m10; NullCheck(L_0); XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46 * L_1; L_1 = XmlReflectionMember_get_XmlAttributes_m55C4166601EDBC0C7ABB07EC926485C010F888D1(L_0, /*hidden argument*/NULL); NullCheck(L_1); int32_t L_2; L_2 = XmlAttributes_get_SortableOrder_m5853D2240F94BC8416A2AA5DA313E05A2AF45EF6(L_1, /*hidden argument*/NULL); XmlReflectionMember_t2DB532740F4159245F707469F68AEA9BFBDA55CD * L_3 = ___m21; NullCheck(L_3); XmlAttributes_t7A1F274475C6BEEADB9D661A6D67BBF644E14B46 * L_4; L_4 = XmlReflectionMember_get_XmlAttributes_m55C4166601EDBC0C7ABB07EC926485C010F888D1(L_3, /*hidden argument*/NULL); NullCheck(L_4); int32_t L_5; L_5 = XmlAttributes_get_SortableOrder_m5853D2240F94BC8416A2AA5DA313E05A2AF45EF6(L_4, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_5)); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlSchemaParticle/EmptyParticle::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyParticle__ctor_m4B88D5F7EC79C791A079EC62E9CCD05AB1064C9A (EmptyParticle_t56BD41298CE124A8F2F4F4426105E1663120F7BF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaParticle_tD1A5391DA6279C1028974DFA37BC68C91EFEE789_il2cpp_TypeInfo_var); XmlSchemaParticle__ctor_m64085D4FE99BD7935AE3E23F5C3BF7EDB5BC1B79(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlSerializationReader/CollectionFixup::.ctor(System.Object,System.Xml.Serialization.XmlSerializationCollectionFixupCallback,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionFixup__ctor_mA8B159FD32721350D0E3A4750539B61B436FDE04 (CollectionFixup_t89B63EF27FF0C97725BA984F06E6C18D67FC482E * __this, RuntimeObject * ___collection0, XmlSerializationCollectionFixupCallback_t88A34696BDDF37FD897F180858064DF7EF750B1A * ___callback1, String_t* ___id2, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); XmlSerializationCollectionFixupCallback_t88A34696BDDF37FD897F180858064DF7EF750B1A * L_0 = ___callback1; __this->set_callback_0(L_0); RuntimeObject * L_1 = ___collection0; __this->set_collection_1(L_1); String_t* L_2 = ___id2; __this->set_id_3(L_2); return; } } // System.Xml.Serialization.XmlSerializationCollectionFixupCallback System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_Callback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializationCollectionFixupCallback_t88A34696BDDF37FD897F180858064DF7EF750B1A * CollectionFixup_get_Callback_mBDDBBF6D2CF598A2B5DEC2A332673A5718806083 (CollectionFixup_t89B63EF27FF0C97725BA984F06E6C18D67FC482E * __this, const RuntimeMethod* method) { { XmlSerializationCollectionFixupCallback_t88A34696BDDF37FD897F180858064DF7EF750B1A * L_0 = __this->get_callback_0(); return L_0; } } // System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_Collection() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CollectionFixup_get_Collection_m64C85652B2AE1410C9E390E85A237906F6BBEEC0 (CollectionFixup_t89B63EF27FF0C97725BA984F06E6C18D67FC482E * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_collection_1(); return L_0; } } // System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_Id() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CollectionFixup_get_Id_m47E055D9B1DCC5DFB45D8A72DDB2C836E9779144 (CollectionFixup_t89B63EF27FF0C97725BA984F06E6C18D67FC482E * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_id_3(); return L_0; } } // System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_CollectionItems() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CollectionFixup_get_CollectionItems_m7B8A225C353E6B6C2639D7086C2FAC03F064D5AB (CollectionFixup_t89B63EF27FF0C97725BA984F06E6C18D67FC482E * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_collectionItems_2(); return L_0; } } // System.Void System.Xml.Serialization.XmlSerializationReader/CollectionFixup::set_CollectionItems(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionFixup_set_CollectionItems_m4AE94700267923AB9BCCFCE8FBC8BB115B599A8D (CollectionFixup_t89B63EF27FF0C97725BA984F06E6C18D67FC482E * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; __this->set_collectionItems_2(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::.ctor(System.Array,System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionItemFixup__ctor_m3E2810219F868C9B2741F9D4FA20D809A3245EC4 (CollectionItemFixup_t70D993957A8584ED873E7BD74DC98ECE1101DB2D * __this, RuntimeArray * ___list0, int32_t ___index1, String_t* ___id2, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); RuntimeArray * L_0 = ___list0; __this->set_list_0(L_0); int32_t L_1 = ___index1; __this->set_index_1(L_1); String_t* L_2 = ___id2; __this->set_id_2(L_2); return; } } // System.Array System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::get_Collection() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * CollectionItemFixup_get_Collection_mFCE4197BDE067DAA25F0BEED5CCFB7DA2594D915 (CollectionItemFixup_t70D993957A8584ED873E7BD74DC98ECE1101DB2D * __this, const RuntimeMethod* method) { { RuntimeArray * L_0 = __this->get_list_0(); return L_0; } } // System.Int32 System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::get_Index() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CollectionItemFixup_get_Index_mBA4CBC3F3781B66DE02F076EC9744AD5141A9641 (CollectionItemFixup_t70D993957A8584ED873E7BD74DC98ECE1101DB2D * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_index_1(); return L_0; } } // System.String System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::get_Id() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CollectionItemFixup_get_Id_mC0BCE340A91ABE4A1EFEA23CC3FCC11F814030E4 (CollectionItemFixup_t70D993957A8584ED873E7BD74DC98ECE1101DB2D * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_id_2(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlSerializationReader/Fixup::.ctor(System.Object,System.Xml.Serialization.XmlSerializationFixupCallback,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Fixup__ctor_m660914A339971116B47794D6B35C0A5F7D8A7519 (Fixup_tC29AF2849DF70A12E99CE1ECE316CB1687D4FC5B * __this, RuntimeObject * ___o0, XmlSerializationFixupCallback_t20E0CC9B652B1BC41D75F4793FD87671D166E549 * ___callback1, int32_t ___count2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); RuntimeObject * L_0 = ___o0; __this->set_source_0(L_0); XmlSerializationFixupCallback_t20E0CC9B652B1BC41D75F4793FD87671D166E549 * L_1 = ___callback1; __this->set_callback_2(L_1); int32_t L_2 = ___count2; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_3 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_ids_1(L_3); return; } } // System.Xml.Serialization.XmlSerializationFixupCallback System.Xml.Serialization.XmlSerializationReader/Fixup::get_Callback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializationFixupCallback_t20E0CC9B652B1BC41D75F4793FD87671D166E549 * Fixup_get_Callback_mF8794F68FBAA9531BB1BC8779DEBEF7720A81C1F (Fixup_tC29AF2849DF70A12E99CE1ECE316CB1687D4FC5B * __this, const RuntimeMethod* method) { { XmlSerializationFixupCallback_t20E0CC9B652B1BC41D75F4793FD87671D166E549 * L_0 = __this->get_callback_2(); return L_0; } } // System.String[] System.Xml.Serialization.XmlSerializationReader/Fixup::get_Ids() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* Fixup_get_Ids_m114528877A785022716C25DCF1BD03B65AA68C6A (Fixup_tC29AF2849DF70A12E99CE1ECE316CB1687D4FC5B * __this, const RuntimeMethod* method) { { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = __this->get_ids_1(); return L_0; } } // System.Object System.Xml.Serialization.XmlSerializationReader/Fixup::get_Source() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Fixup_get_Source_m35271BD8569B8556C5E6971FC3606A0148C68911 (Fixup_tC29AF2849DF70A12E99CE1ECE316CB1687D4FC5B * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_source_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WriteCallbackInfo__ctor_mBF617A47A85B73B3E04BC58090B9AD158609D48B (WriteCallbackInfo_tF12675262DE88D8583DAD677E61DA8D1E81E4C0D * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::.ctor(System.Xml.Serialization.XmlSerializationReaderInterpreter,System.Xml.Serialization.ClassMap,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FixupCallbackInfo__ctor_mEF562C2BB172471EEAF9330E6D0795B71E48E504 (FixupCallbackInfo_tB2AF64AEEA68C8D0EA425052B40E969983CB92D3 * __this, XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26 * ___sri0, ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB * ___map1, bool ___isValueList2, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26 * L_0 = ___sri0; __this->set__sri_0(L_0); ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB * L_1 = ___map1; __this->set__map_1(L_1); bool L_2 = ___isValueList2; __this->set__isValueList_2(L_2); return; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::FixupMembers(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FixupCallbackInfo_FixupMembers_m48DAC08B30D6BFCAD219E19469FAA8A46F36B9E1 (FixupCallbackInfo_tB2AF64AEEA68C8D0EA425052B40E969983CB92D3 * __this, RuntimeObject * ___fixup0, const RuntimeMethod* method) { { XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26 * L_0 = __this->get__sri_0(); ClassMap_t31C7F517155D65EFA77D6F5F9CA82178535F7FCB * L_1 = __this->get__map_1(); RuntimeObject * L_2 = ___fixup0; bool L_3 = __this->get__isValueList_2(); NullCheck(L_0); XmlSerializationReaderInterpreter_FixupMembers_mB6792FEAA5D621FE8789D4F1F8D45BB1F9BDE067(L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo::.ctor(System.Xml.Serialization.XmlSerializationReaderInterpreter,System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReaderCallbackInfo__ctor_mACB6E83BB3AE3A088ED0843FC41E6CDE22B39024 (ReaderCallbackInfo_t6D18AED803E1FB284AB8B388FD470CB3BEDD3DB4 * __this, XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26 * ___sri0, XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * ___typeMap1, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26 * L_0 = ___sri0; __this->set__sri_0(L_0); XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_1 = ___typeMap1; __this->set__typeMap_1(L_1); return; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo::ReadObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReaderCallbackInfo_ReadObject_m68C4AF6B824F9E9E002195278EF84FE67EB025D1 (ReaderCallbackInfo_t6D18AED803E1FB284AB8B388FD470CB3BEDD3DB4 * __this, const RuntimeMethod* method) { { XmlSerializationReaderInterpreter_t356BA05B522A857AC92E223BCE6CE417228D2B26 * L_0 = __this->get__sri_0(); XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_1 = __this->get__typeMap_1(); NullCheck(L_0); RuntimeObject * L_2; L_2 = VirtFuncInvoker3< RuntimeObject *, XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 *, bool, bool >::Invoke(7 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObject(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) */, L_0, L_1, (bool)1, (bool)1); return L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WriteCallbackInfo__ctor_m574B89B81622F7C6E5B174C1D3A8E6505371BB65 (WriteCallbackInfo_t3F32E130FEEAC3992BCB0CCC059369D4A09B9EEF * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo::.ctor(System.Xml.Serialization.XmlSerializationWriterInterpreter,System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackInfo__ctor_mF8157E2D8A8717524740E632A79F398F008D3413 (CallbackInfo_t142D92C1F8EA1C07621FB4A5E1383F836187E53A * __this, XmlSerializationWriterInterpreter_t5421FAFC8BE8D6DA736DF8A6DC1ADA79770CDB54 * ___swi0, XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * ___typeMap1, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); XmlSerializationWriterInterpreter_t5421FAFC8BE8D6DA736DF8A6DC1ADA79770CDB54 * L_0 = ___swi0; __this->set__swi_0(L_0); XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_1 = ___typeMap1; __this->set__typeMap_1(L_1); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo::WriteObject(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackInfo_WriteObject_m534C8A18D8C19727761DA74E2EC09C247C6A59CD (CallbackInfo_t142D92C1F8EA1C07621FB4A5E1383F836187E53A * __this, RuntimeObject * ___ob0, const RuntimeMethod* method) { { XmlSerializationWriterInterpreter_t5421FAFC8BE8D6DA736DF8A6DC1ADA79770CDB54 * L_0 = __this->get__swi_0(); XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_1 = __this->get__typeMap_1(); RuntimeObject * L_2 = ___ob0; XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_3 = __this->get__typeMap_1(); NullCheck(L_3); String_t* L_4; L_4 = XmlMapping_get_ElementName_m325D48DC1385A3577E5B4948F1F116861A215CEF_inline(L_3, /*hidden argument*/NULL); XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_5 = __this->get__typeMap_1(); NullCheck(L_5); String_t* L_6; L_6 = XmlMapping_get_Namespace_mC81A8F368DA39CCD355792888D951BE2A8B21835_inline(L_5, /*hidden argument*/NULL); NullCheck(L_0); VirtActionInvoker7< XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 *, RuntimeObject *, String_t*, String_t*, bool, bool, bool >::Invoke(5 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObject(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String,System.Boolean,System.Boolean,System.Boolean) */, L_0, L_1, L_2, L_4, L_6, (bool)0, (bool)0, (bool)0); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo::WriteEnum(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackInfo_WriteEnum_m2DF9A54632D5752D272986FFD1BAC843A3BD1D2B (CallbackInfo_t142D92C1F8EA1C07621FB4A5E1383F836187E53A * __this, RuntimeObject * ___ob0, const RuntimeMethod* method) { { XmlSerializationWriterInterpreter_t5421FAFC8BE8D6DA736DF8A6DC1ADA79770CDB54 * L_0 = __this->get__swi_0(); XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_1 = __this->get__typeMap_1(); RuntimeObject * L_2 = ___ob0; XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_3 = __this->get__typeMap_1(); NullCheck(L_3); String_t* L_4; L_4 = XmlMapping_get_ElementName_m325D48DC1385A3577E5B4948F1F116861A215CEF_inline(L_3, /*hidden argument*/NULL); XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * L_5 = __this->get__typeMap_1(); NullCheck(L_5); String_t* L_6; L_6 = XmlMapping_get_Namespace_mC81A8F368DA39CCD355792888D951BE2A8B21835_inline(L_5, /*hidden argument*/NULL); NullCheck(L_0); VirtActionInvoker7< XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 *, RuntimeObject *, String_t*, String_t*, bool, bool, bool >::Invoke(5 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObject(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String,System.Boolean,System.Boolean,System.Boolean) */, L_0, L_1, L_2, L_4, L_6, (bool)0, (bool)1, (bool)0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.XmlSerializationWriter System.Xml.Serialization.XmlSerializer/SerializerData::CreateWriter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F * SerializerData_CreateWriter_mE93BD90B14FFE36C2D3D9400517278FC9F7C68EE (SerializerData_tE81861A5E031D40D9732A8CF036A091D10F3478D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = __this->get_WriterType_1(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Inequality_m519B1E8F2F1E2101ADF863401FCAE38210395368(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_001f; } } { Type_t * L_2 = __this->get_WriterType_1(); RuntimeObject * L_3; L_3 = Activator_CreateInstance_m8D0BDBD446BBCB24F702D8678A57E4594919C8BD(L_2, /*hidden argument*/NULL); return ((XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F *)CastclassClass((RuntimeObject*)L_3, XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F_il2cpp_TypeInfo_var)); } IL_001f: { XmlSerializerImplementation_t7498815CE092A9B67BE127DCA62F27ABECA6B230 * L_4 = __this->get_Implementation_3(); if (!L_4) { goto IL_0033; } } { XmlSerializerImplementation_t7498815CE092A9B67BE127DCA62F27ABECA6B230 * L_5 = __this->get_Implementation_3(); NullCheck(L_5); XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F * L_6; L_6 = VirtFuncInvoker0< XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F * >::Invoke(4 /* System.Xml.Serialization.XmlSerializationWriter System.Xml.Serialization.XmlSerializerImplementation::get_Writer() */, L_5); return L_6; } IL_0033: { return (XmlSerializationWriter_t6B1FD506E5C0AF1E0B6060D1AF58E4CDF6A5272F *)NULL; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.IComparer`1 System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DtdDefaultAttributeInfoToNodeDataComparer_get_Instance_m2AB84C0345ACBB155583F7A4B6DF8CC06F04CB61 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC_StaticFields*)il2cpp_codegen_static_fields_for(DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC_il2cpp_TypeInfo_var))->get_s_instance_0(); return L_0; } } // System.Int32 System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer::Compare(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdDefaultAttributeInfoToNodeDataComparer_Compare_mEA6EA939DBD81A2A517B365BE21158E0086F77D0 (DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdAttributeInfo_t5B62F2A60E372238F7530B20A85A60723B7AACE9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdDefaultAttributeInfo_t8DAB8271F3930199379DF41791AE869365320C92_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeData_tD504C5A621E7DD546954D87282438662327280EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; String_t* V_3 = NULL; NodeData_tD504C5A621E7DD546954D87282438662327280EA * V_4 = NULL; int32_t V_5 = 0; RuntimeObject* V_6 = NULL; RuntimeObject* V_7 = NULL; { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_000a; } } { RuntimeObject * L_1 = ___y1; if (!L_1) { goto IL_0008; } } { return (-1); } IL_0008: { return 0; } IL_000a: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_000f; } } { return 1; } IL_000f: { RuntimeObject * L_3 = ___x0; V_4 = ((NodeData_tD504C5A621E7DD546954D87282438662327280EA *)IsInstClass((RuntimeObject*)L_3, NodeData_tD504C5A621E7DD546954D87282438662327280EA_il2cpp_TypeInfo_var)); NodeData_tD504C5A621E7DD546954D87282438662327280EA * L_4 = V_4; if (!L_4) { goto IL_002d; } } { NodeData_tD504C5A621E7DD546954D87282438662327280EA * L_5 = V_4; NullCheck(L_5); String_t* L_6 = L_5->get_localName_2(); V_0 = L_6; NodeData_tD504C5A621E7DD546954D87282438662327280EA * L_7 = V_4; NullCheck(L_7); String_t* L_8 = L_7->get_prefix_3(); V_2 = L_8; goto IL_005b; } IL_002d: { RuntimeObject * L_9 = ___x0; V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_9, IDtdDefaultAttributeInfo_t8DAB8271F3930199379DF41791AE869365320C92_il2cpp_TypeInfo_var)); RuntimeObject* L_10 = V_6; if (!L_10) { goto IL_004b; } } { RuntimeObject* L_11 = V_6; NullCheck(L_11); String_t* L_12; L_12 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String System.Xml.IDtdAttributeInfo::get_LocalName() */, IDtdAttributeInfo_t5B62F2A60E372238F7530B20A85A60723B7AACE9_il2cpp_TypeInfo_var, L_11); V_0 = L_12; RuntimeObject* L_13 = V_6; NullCheck(L_13); String_t* L_14; L_14 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Xml.IDtdAttributeInfo::get_Prefix() */, IDtdAttributeInfo_t5B62F2A60E372238F7530B20A85A60723B7AACE9_il2cpp_TypeInfo_var, L_13); V_2 = L_14; goto IL_005b; } IL_004b: { String_t* L_15 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->get_Empty_5(); XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * L_16 = (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var))); XmlException__ctor_m113008AE4B646E85154C99B3CBB55D536CBEFEB9(L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral872479F10B4968F255B608A3698CA1A7EE09888B)), L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DtdDefaultAttributeInfoToNodeDataComparer_Compare_mEA6EA939DBD81A2A517B365BE21158E0086F77D0_RuntimeMethod_var))); } IL_005b: { RuntimeObject * L_17 = ___y1; V_4 = ((NodeData_tD504C5A621E7DD546954D87282438662327280EA *)IsInstClass((RuntimeObject*)L_17, NodeData_tD504C5A621E7DD546954D87282438662327280EA_il2cpp_TypeInfo_var)); NodeData_tD504C5A621E7DD546954D87282438662327280EA * L_18 = V_4; if (!L_18) { goto IL_0079; } } { NodeData_tD504C5A621E7DD546954D87282438662327280EA * L_19 = V_4; NullCheck(L_19); String_t* L_20 = L_19->get_localName_2(); V_1 = L_20; NodeData_tD504C5A621E7DD546954D87282438662327280EA * L_21 = V_4; NullCheck(L_21); String_t* L_22 = L_21->get_prefix_3(); V_3 = L_22; goto IL_00a7; } IL_0079: { RuntimeObject * L_23 = ___y1; V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_23, IDtdDefaultAttributeInfo_t8DAB8271F3930199379DF41791AE869365320C92_il2cpp_TypeInfo_var)); RuntimeObject* L_24 = V_7; if (!L_24) { goto IL_0097; } } { RuntimeObject* L_25 = V_7; NullCheck(L_25); String_t* L_26; L_26 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String System.Xml.IDtdAttributeInfo::get_LocalName() */, IDtdAttributeInfo_t5B62F2A60E372238F7530B20A85A60723B7AACE9_il2cpp_TypeInfo_var, L_25); V_1 = L_26; RuntimeObject* L_27 = V_7; NullCheck(L_27); String_t* L_28; L_28 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Xml.IDtdAttributeInfo::get_Prefix() */, IDtdAttributeInfo_t5B62F2A60E372238F7530B20A85A60723B7AACE9_il2cpp_TypeInfo_var, L_27); V_3 = L_28; goto IL_00a7; } IL_0097: { String_t* L_29 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->get_Empty_5(); XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * L_30 = (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var))); XmlException__ctor_m113008AE4B646E85154C99B3CBB55D536CBEFEB9(L_30, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral872479F10B4968F255B608A3698CA1A7EE09888B)), L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DtdDefaultAttributeInfoToNodeDataComparer_Compare_mEA6EA939DBD81A2A517B365BE21158E0086F77D0_RuntimeMethod_var))); } IL_00a7: { String_t* L_31 = V_0; String_t* L_32 = V_1; int32_t L_33; L_33 = String_Compare_m573A1F97B15F82C9AC7DC0BB1B381EEDCD2759CD(L_31, L_32, 4, /*hidden argument*/NULL); V_5 = L_33; int32_t L_34 = V_5; if (!L_34) { goto IL_00b8; } } { int32_t L_35 = V_5; return L_35; } IL_00b8: { String_t* L_36 = V_2; String_t* L_37 = V_3; int32_t L_38; L_38 = String_Compare_m573A1F97B15F82C9AC7DC0BB1B381EEDCD2759CD(L_36, L_37, 4, /*hidden argument*/NULL); return L_38; } } // System.Void System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdDefaultAttributeInfoToNodeDataComparer__ctor_m327CBD841F71F8D23F89F4BDB1C324CB870DA2D5 (DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdDefaultAttributeInfoToNodeDataComparer__cctor_m4F6B2A98F3E643703AACD236F8C8AC37951B4B01 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC * L_0 = (DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC *)il2cpp_codegen_object_new(DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC_il2cpp_TypeInfo_var); DtdDefaultAttributeInfoToNodeDataComparer__ctor_m327CBD841F71F8D23F89F4BDB1C324CB870DA2D5(L_0, /*hidden argument*/NULL); ((DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC_StaticFields*)il2cpp_codegen_static_fields_for(DtdDefaultAttributeInfoToNodeDataComparer_t8D053B72BDEEEBBA9DFF9497C99EE79EA11607FC_il2cpp_TypeInfo_var))->set_s_instance_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlTextReaderImpl/DtdParserProxy::.ctor(System.Xml.XmlTextReaderImpl) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParserProxy__ctor_m080E199E77CE80BF8AB44E5AE23D9AB3D1C5755C (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * ___reader0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = ___reader0; __this->set_reader_0(L_0); return; } } // System.Xml.XmlNameTable System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.get_NameTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * DtdParserProxy_System_Xml_IDtdParserAdapter_get_NameTable_m36AFA7B21BDD76A7D834131EF8246AC711D803C2 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_NameTable_mA567221B0BD05C6BF365121EF52549079FF67D9B_inline(L_0, /*hidden argument*/NULL); return L_1; } } // System.Xml.IXmlNamespaceResolver System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.get_NamespaceResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DtdParserProxy_System_Xml_IDtdParserAdapter_get_NamespaceResolver_mCB00D1F63B35802DD1D11E00C659E3CB492A4E50 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); RuntimeObject* L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_NamespaceResolver_m6A9BA136D735089A09CEB096E0D839AAC7E281FC_inline(L_0, /*hidden argument*/NULL); return L_1; } } // System.Uri System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.get_BaseUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * DtdParserProxy_System_Xml_IDtdParserAdapter_get_BaseUri_mF3A86A81EF097D0789215F2DD4798F7BCD95655C (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_BaseUri_mCE10049FE4A8821152EE99B73D10A209742392CA(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.get_IsEof() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParserProxy_System_Xml_IDtdParserAdapter_get_IsEof_mA8B2D05047CC681FD35A016FFB8F6D8A228D88E2 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); bool L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_IsEof_m13733FCF75EDC19FD816AC51941CB8FB962A486B(L_0, /*hidden argument*/NULL); return L_1; } } // System.Char[] System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.get_ParsingBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* DtdParserProxy_System_Xml_IDtdParserAdapter_get_ParsingBuffer_m7BA766C98DB7E7B07992F425A4591B7F8B6DE39F (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_ParsingBuffer_mB70D61FBA9AA7A5E313613ACD8B30DCA2B6D2FEB(L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.get_ParsingBufferLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParserProxy_System_Xml_IDtdParserAdapter_get_ParsingBufferLength_mEF7F24FAF0027AB179B42DA6C62ED94F71467596 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); int32_t L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_ParsingBufferLength_mD5613762191E3EEEA23DA5DE0EF2C8FB21577D0C(L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.get_CurrentPosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParserProxy_System_Xml_IDtdParserAdapter_get_CurrentPosition_mD93CB0C0E794392451AF8ABD9BD281CDE7470CF1 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); int32_t L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_CurrentPosition_m28456EAF24A02277AAF87AB79D712105F244D707(L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.set_CurrentPosition(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParserProxy_System_Xml_IDtdParserAdapter_set_CurrentPosition_m47B1C61DDC63E1446100960E4A919F08C77D2F6A (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, int32_t ___value0, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); int32_t L_1 = ___value0; NullCheck(L_0); XmlTextReaderImpl_set_DtdParserProxy_CurrentPosition_m995C56DBAC314FB044B1E49933065BF154D02E9F(L_0, L_1, /*hidden argument*/NULL); return; } } // System.Int32 System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.get_EntityStackLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParserProxy_System_Xml_IDtdParserAdapter_get_EntityStackLength_m7B3A999AC62D42920CF902FA937136AF5AC2B2F3 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); int32_t L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_EntityStackLength_m61FA991027E1A9A410B30BBC69180D6427FE05B0(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.get_IsEntityEolNormalized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParserProxy_System_Xml_IDtdParserAdapter_get_IsEntityEolNormalized_m7BB876316470BE2240291BB182119DF09E89DC58 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); bool L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_IsEntityEolNormalized_m11F429D654706C17F9A22ED2FAE2041F98EB8DE1(L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.OnNewLine(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParserProxy_System_Xml_IDtdParserAdapter_OnNewLine_m9C8B404D56AFE862B26B39B2D4107B2E5FC14024 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, int32_t ___pos0, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); int32_t L_1 = ___pos0; NullCheck(L_0); XmlTextReaderImpl_DtdParserProxy_OnNewLine_mBFF6E843E6C26A7B60FB1D36E0CAD2F4FB835A00(L_0, L_1, /*hidden argument*/NULL); return; } } // System.Int32 System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.get_LineNo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParserProxy_System_Xml_IDtdParserAdapter_get_LineNo_m01FC13D0F9D152591AA7092445D10D7D572AC264 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); int32_t L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_LineNo_m129EADD0F6CD778B3DF123FFBC898D3D58D63FCD(L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.get_LineStartPosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParserProxy_System_Xml_IDtdParserAdapter_get_LineStartPosition_m482CFFE0CF14D95935C3D6D440EE073C3CC4B076 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); int32_t L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_LineStartPosition_m951C51E2CFE3F3C9AB7C3680D3212798DF74BBA9(L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.ReadData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParserProxy_System_Xml_IDtdParserAdapter_ReadData_mD77B4F9D5D06B17E0CE4962FB47B52D95056E29A (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); int32_t L_1; L_1 = XmlTextReaderImpl_DtdParserProxy_ReadData_m66EB3594B25D28E431F99AC7D95EC6634F7DC526(L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.ParseNumericCharRef(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParserProxy_System_Xml_IDtdParserAdapter_ParseNumericCharRef_m95F43B6345D9A9DF7D2941E30A59C75CD7A4116C (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, StringBuilder_t * ___internalSubsetBuilder0, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); StringBuilder_t * L_1 = ___internalSubsetBuilder0; NullCheck(L_0); int32_t L_2; L_2 = XmlTextReaderImpl_DtdParserProxy_ParseNumericCharRef_m39D4CD5F94D141D336EFF548AE1BE5ADB56D078D(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Int32 System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.ParseNamedCharRef(System.Boolean,System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParserProxy_System_Xml_IDtdParserAdapter_ParseNamedCharRef_m3A65DB13DB3D77106927C04B03CD23EA1E2A6508 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, bool ___expand0, StringBuilder_t * ___internalSubsetBuilder1, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); bool L_1 = ___expand0; StringBuilder_t * L_2 = ___internalSubsetBuilder1; NullCheck(L_0); int32_t L_3; L_3 = XmlTextReaderImpl_DtdParserProxy_ParseNamedCharRef_m6534D46BB2CD419139F69B5F11F26B862568DDFB(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Void System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.ParsePI(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParserProxy_System_Xml_IDtdParserAdapter_ParsePI_mE73888A5B84CBFC5DD1C229A4EF4FFD8C95211F4 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); StringBuilder_t * L_1 = ___sb0; NullCheck(L_0); XmlTextReaderImpl_DtdParserProxy_ParsePI_mAE961B995AF007A4B3FF2401D8E162097C76631F(L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.ParseComment(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParserProxy_System_Xml_IDtdParserAdapter_ParseComment_m70F23C03229BD0D22D2D1357AECB911A76B0949C (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); StringBuilder_t * L_1 = ___sb0; NullCheck(L_0); XmlTextReaderImpl_DtdParserProxy_ParseComment_mDEE3956D7D181C76831CE94E946E5925659026E6(L_0, L_1, /*hidden argument*/NULL); return; } } // System.Boolean System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.PushEntity(System.Xml.IDtdEntityInfo,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParserProxy_System_Xml_IDtdParserAdapter_PushEntity_m354A455A588992A13AD1207E18CE059D6830C211 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, RuntimeObject* ___entity0, int32_t* ___entityId1, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); RuntimeObject* L_1 = ___entity0; int32_t* L_2 = ___entityId1; NullCheck(L_0); bool L_3; L_3 = XmlTextReaderImpl_DtdParserProxy_PushEntity_m1FE85F4F9604C6B97780EC6DCF42D29C53EE63D7(L_0, L_1, (int32_t*)L_2, /*hidden argument*/NULL); return L_3; } } // System.Boolean System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.PopEntity(System.Xml.IDtdEntityInfo&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParserProxy_System_Xml_IDtdParserAdapter_PopEntity_mDC531B51718B48105D2A0A8F24F7D536ED35400E (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, RuntimeObject** ___oldEntity0, int32_t* ___newEntityId1, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); RuntimeObject** L_1 = ___oldEntity0; int32_t* L_2 = ___newEntityId1; NullCheck(L_0); bool L_3; L_3 = XmlTextReaderImpl_DtdParserProxy_PopEntity_m9E4CC26F8E9B3575B383F54E0B9007894C955122(L_0, (RuntimeObject**)L_1, (int32_t*)L_2, /*hidden argument*/NULL); return L_3; } } // System.Boolean System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.PushExternalSubset(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParserProxy_System_Xml_IDtdParserAdapter_PushExternalSubset_mD9DE439CF90DD04A62301FCD188DA562DCDAC997 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, String_t* ___systemId0, String_t* ___publicId1, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); String_t* L_1 = ___systemId0; String_t* L_2 = ___publicId1; NullCheck(L_0); bool L_3; L_3 = XmlTextReaderImpl_DtdParserProxy_PushExternalSubset_mAC0206AAEC281D0D29148A1064BE53400E0E916D(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Void System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.PushInternalDtd(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParserProxy_System_Xml_IDtdParserAdapter_PushInternalDtd_mBAC5CEEE8175FAA21CA7B00F3817EC0B93C614E3 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, String_t* ___baseUri0, String_t* ___internalDtd1, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); String_t* L_1 = ___baseUri0; String_t* L_2 = ___internalDtd1; NullCheck(L_0); XmlTextReaderImpl_DtdParserProxy_PushInternalDtd_mF9CDFC87D8E8D1136B0E5723E6A6F6F64116A7E4(L_0, L_1, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.Throw(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParserProxy_System_Xml_IDtdParserAdapter_Throw_mC3031F350BEB06305FB81306EB82B9073891A89D (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, Exception_t * ___e0, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); Exception_t * L_1 = ___e0; NullCheck(L_0); XmlTextReaderImpl_DtdParserProxy_Throw_m89A969A79E65E0700AEED33390E179E1CB506DBB(L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.OnSystemId(System.String,System.Xml.LineInfo,System.Xml.LineInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParserProxy_System_Xml_IDtdParserAdapter_OnSystemId_m324C34AE49C28683CBFF35820FFCADBB2839B5B3 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, String_t* ___systemId0, LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE ___keywordLineInfo1, LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE ___systemLiteralLineInfo2, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); String_t* L_1 = ___systemId0; LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE L_2 = ___keywordLineInfo1; LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE L_3 = ___systemLiteralLineInfo2; NullCheck(L_0); XmlTextReaderImpl_DtdParserProxy_OnSystemId_m67D9C87D1E7E5465BA7C9CA6C579599F85850886(L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.OnPublicId(System.String,System.Xml.LineInfo,System.Xml.LineInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParserProxy_System_Xml_IDtdParserAdapter_OnPublicId_mCAF346E21EF35D09EAD7A9CC9C70AADFB41C045F (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, String_t* ___publicId0, LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE ___keywordLineInfo1, LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE ___publicLiteralLineInfo2, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); String_t* L_1 = ___publicId0; LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE L_2 = ___keywordLineInfo1; LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE L_3 = ___publicLiteralLineInfo2; NullCheck(L_0); XmlTextReaderImpl_DtdParserProxy_OnPublicId_m92D1DB1D7F1B15CD6B2452E68F3BDD8A262F8D4D(L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return; } } // System.Boolean System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapterWithValidation.get_DtdValidation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParserProxy_System_Xml_IDtdParserAdapterWithValidation_get_DtdValidation_mCEF6A11DA019175B774BA1CFD1036254A710DECD (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); bool L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_DtdValidation_m7D47BC9FB2D5F45ADF4BE7F253AEC4AB943D49F1(L_0, /*hidden argument*/NULL); return L_1; } } // System.Xml.IValidationEventHandling System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapterWithValidation.get_ValidationEventHandling() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DtdParserProxy_System_Xml_IDtdParserAdapterWithValidation_get_ValidationEventHandling_m94CE1A3AED0E3A4D0AF75E9B23CF00112A475F9B (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); RuntimeObject* L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_ValidationEventHandling_m86F807BDC2BEF934D72F2A65FC7F97262735A219_inline(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapterV1.get_Normalization() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParserProxy_System_Xml_IDtdParserAdapterV1_get_Normalization_m9BFC81A74059C8D2A979D2327B0C3BF53CD7B154 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); bool L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_Normalization_m114C15F2776A94727A5992DB26D65BDC1D670543_inline(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapterV1.get_Namespaces() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParserProxy_System_Xml_IDtdParserAdapterV1_get_Namespaces_mE3468583D30C4E9E16EEE5E3E327BDA0FC2E42A3 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); bool L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_Namespaces_m8D805DAFFE1332B0E23F2D3AE2959A29C8190FD3_inline(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapterV1.get_V1CompatibilityMode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParserProxy_System_Xml_IDtdParserAdapterV1_get_V1CompatibilityMode_mD8376630014CFE05FE636F755AC7DAC4EFAEB172 (DtdParserProxy_t2577A62EB66A77D9533689C64F0F41F47C19F557 * __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * L_0 = __this->get_reader_0(); NullCheck(L_0); bool L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_V1CompatibilityMode_m1B3ACC4435FE2768144414FF216E145916403325_inline(L_0, /*hidden argument*/NULL); return L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlTextReaderImpl/NoNamespaceManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoNamespaceManager__ctor_mF90CFA0693B9ED4995F2F9BFFF7219E9936974D7 (NoNamespaceManager_t9CD68D8449B828A860ED290316BEAF94CCB165E2 * __this, const RuntimeMethod* method) { { XmlNamespaceManager__ctor_mA04CAB0559468548EC72C74A2188AB3ACF892D0E(__this, /*hidden argument*/NULL); return; } } // System.String System.Xml.XmlTextReaderImpl/NoNamespaceManager::get_DefaultNamespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NoNamespaceManager_get_DefaultNamespace_m5ADD1C30FA9A6D3F3FD1111C9F3A2D0FAEEC090F (NoNamespaceManager_t9CD68D8449B828A860ED290316BEAF94CCB165E2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_0; } } // System.Void System.Xml.XmlTextReaderImpl/NoNamespaceManager::PushScope() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoNamespaceManager_PushScope_m3D82346C48B4C86AB6CCAE3491F1179EE93BCD90 (NoNamespaceManager_t9CD68D8449B828A860ED290316BEAF94CCB165E2 * __this, const RuntimeMethod* method) { { return; } } // System.Boolean System.Xml.XmlTextReaderImpl/NoNamespaceManager::PopScope() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NoNamespaceManager_PopScope_m8833E04494CC7886910D8F5B0525F7C74FC877E0 (NoNamespaceManager_t9CD68D8449B828A860ED290316BEAF94CCB165E2 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Xml.XmlTextReaderImpl/NoNamespaceManager::AddNamespace(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoNamespaceManager_AddNamespace_mBD793DB3925F7577E22EF1BA702B5D72B38FEE17 (NoNamespaceManager_t9CD68D8449B828A860ED290316BEAF94CCB165E2 * __this, String_t* ___prefix0, String_t* ___uri1, const RuntimeMethod* method) { { return; } } // System.Collections.IEnumerator System.Xml.XmlTextReaderImpl/NoNamespaceManager::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NoNamespaceManager_GetEnumerator_mB69F64109D37FD7FB0BFDE4F3045094067342A3C (NoNamespaceManager_t9CD68D8449B828A860ED290316BEAF94CCB165E2 * __this, const RuntimeMethod* method) { { return (RuntimeObject*)NULL; } } // System.String System.Xml.XmlTextReaderImpl/NoNamespaceManager::LookupNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NoNamespaceManager_LookupNamespace_mC78AC6A0001820930F0E70988DBDF3C311CF8805 (NoNamespaceManager_t9CD68D8449B828A860ED290316BEAF94CCB165E2 * __this, String_t* ___prefix0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_0; } } // System.String System.Xml.XmlTextReaderImpl/NoNamespaceManager::LookupPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NoNamespaceManager_LookupPrefix_m67B5F13F9E520C9374F76155214AE28B4F6ACC54 (NoNamespaceManager_t9CD68D8449B828A860ED290316BEAF94CCB165E2 * __this, String_t* ___uri0, const RuntimeMethod* method) { { return (String_t*)NULL; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl/NodeData::get_None() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeData_tD504C5A621E7DD546954D87282438662327280EA * NodeData_get_None_m3E7F36B326B3C09CF739893259315E50310501ED (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeData_tD504C5A621E7DD546954D87282438662327280EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { NodeData_tD504C5A621E7DD546954D87282438662327280EA * L_0 = ((NodeData_tD504C5A621E7DD546954D87282438662327280EA_StaticFields*)il2cpp_codegen_static_fields_for(NodeData_tD504C5A621E7DD546954D87282438662327280EA_il2cpp_TypeInfo_var))->get_s_None_0(); il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_0015; } } { NodeData_tD504C5A621E7DD546954D87282438662327280EA * L_1 = (NodeData_tD504C5A621E7DD546954D87282438662327280EA *)il2cpp_codegen_object_new(NodeData_tD504C5A621E7DD546954D87282438662327280EA_il2cpp_TypeInfo_var); NodeData__ctor_m98A61DC61B90E41B17BC4B4ECC19E93DEE2C49D1(L_1, /*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); ((NodeData_tD504C5A621E7DD546954D87282438662327280EA_StaticFields*)il2cpp_codegen_static_fields_for(NodeData_tD504C5A621E7DD546954D87282438662327280EA_il2cpp_TypeInfo_var))->set_s_None_0(L_1); } IL_0015: { NodeData_tD504C5A621E7DD546954D87282438662327280EA * L_2 = ((NodeData_tD504C5A621E7DD546954D87282438662327280EA_StaticFields*)il2cpp_codegen_static_fields_for(NodeData_tD504C5A621E7DD546954D87282438662327280EA_il2cpp_TypeInfo_var))->get_s_None_0(); il2cpp_codegen_memory_barrier(); return L_2; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData__ctor_m98A61DC61B90E41B17BC4B4ECC19E93DEE2C49D1 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); NodeData_Clear_mA1DC123EFEF100E0BAE5D5860DED5C0AC83EAB94(__this, 0, /*hidden argument*/NULL); __this->set_xmlContextPushed_16((bool)0); return; } } // System.Int32 System.Xml.XmlTextReaderImpl/NodeData::get_LineNo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NodeData_get_LineNo_mAD78D708B5D663CD4024335C0783C96B494726BF (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, const RuntimeMethod* method) { { LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE * L_0 = __this->get_address_of_lineInfo_10(); int32_t L_1 = L_0->get_lineNo_0(); return L_1; } } // System.Int32 System.Xml.XmlTextReaderImpl/NodeData::get_LinePos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NodeData_get_LinePos_m461F0A5A81925A63A436973A01EF33C70DFD265A (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, const RuntimeMethod* method) { { LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE * L_0 = __this->get_address_of_lineInfo_10(); int32_t L_1 = L_0->get_linePos_1(); return L_1; } } // System.Boolean System.Xml.XmlTextReaderImpl/NodeData::get_IsEmptyElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NodeData_get_IsEmptyElement_mED36D29FD0ACC537153A3A3D9FF002712DD01C45 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_type_1(); if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_0010; } } { bool L_1 = __this->get_isEmptyOrDefault_14(); return L_1; } IL_0010: { return (bool)0; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::set_IsEmptyElement(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_set_IsEmptyElement_mD35C4A93F811F5F2C904B0EB1DEF2DE56460D7FD (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_isEmptyOrDefault_14(L_0); return; } } // System.Boolean System.Xml.XmlTextReaderImpl/NodeData::get_IsDefaultAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NodeData_get_IsDefaultAttribute_m5E8F521D1295E84885505AB7D7FDF3FFE4FB1B98 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_type_1(); if ((!(((uint32_t)L_0) == ((uint32_t)2)))) { goto IL_0010; } } { bool L_1 = __this->get_isEmptyOrDefault_14(); return L_1; } IL_0010: { return (bool)0; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::set_IsDefaultAttribute(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_set_IsDefaultAttribute_m0092BEA88010B3D807E9EF4799102A5AD66E52FD (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_isEmptyOrDefault_14(L_0); return; } } // System.Boolean System.Xml.XmlTextReaderImpl/NodeData::get_ValueBuffered() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NodeData_get_ValueBuffered_mE5170B30D387085171C045FDAC10C67D4554D39D (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_value_6(); return (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); } } // System.String System.Xml.XmlTextReaderImpl/NodeData::get_StringValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NodeData_get_StringValue_m32820CD659C0A0D408D80BA40338AEDC3196BD58 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_value_6(); if (L_0) { goto IL_0025; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_1 = __this->get_chars_7(); int32_t L_2 = __this->get_valueStartPos_8(); int32_t L_3 = __this->get_valueLength_9(); String_t* L_4; L_4 = String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E(NULL, L_1, L_2, L_3, /*hidden argument*/NULL); __this->set_value_6(L_4); } IL_0025: { String_t* L_5 = __this->get_value_6(); return L_5; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::TrimSpacesInValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_TrimSpacesInValue_mD2A50648D93AE619CA038A75B4F7B7C487DFDF83 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, const RuntimeMethod* method) { { bool L_0; L_0 = NodeData_get_ValueBuffered_mE5170B30D387085171C045FDAC10C67D4554D39D(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0020; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_1 = __this->get_chars_7(); int32_t L_2 = __this->get_valueStartPos_8(); int32_t* L_3 = __this->get_address_of_valueLength_9(); XmlTextReaderImpl_StripSpaces_m659698EB952B836C56AD50F29FA30174CAB136BE(L_1, L_2, (int32_t*)L_3, /*hidden argument*/NULL); return; } IL_0020: { String_t* L_4 = __this->get_value_6(); String_t* L_5; L_5 = XmlTextReaderImpl_StripSpaces_mC8550477864159A835ECE6D53E6976324CA87CD9(L_4, /*hidden argument*/NULL); __this->set_value_6(L_5); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::Clear(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_Clear_mA1DC123EFEF100E0BAE5D5860DED5C0AC83EAB94 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, int32_t ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___type0; __this->set_type_1(L_0); NodeData_ClearName_mC3A98BBF65ABAE00AFE65E1942BB348021D1D0C9(__this, /*hidden argument*/NULL); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_value_6(L_1); __this->set_valueStartPos_8((-1)); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_nameWPrefix_5(L_2); __this->set_schemaType_18(NULL); __this->set_typedValue_19(NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::ClearName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_ClearName_mC3A98BBF65ABAE00AFE65E1942BB348021D1D0C9 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_localName_2(L_0); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_prefix_3(L_1); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_ns_4(L_2); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_nameWPrefix_5(L_3); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetLineInfo(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetLineInfo_mE0EAA0129B2C2DAB2C92AF78FBB2D5DA90A581E4 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, int32_t ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method) { { LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE * L_0 = __this->get_address_of_lineInfo_10(); int32_t L_1 = ___lineNo0; int32_t L_2 = ___linePos1; LineInfo_Set_mAA6F06BA4463E64A24070063EE26BF665EC28B99((LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE *)L_0, L_1, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetLineInfo2(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetLineInfo2_mDB7B87916CC83F5FB632712C43B1EA0AC2DB66D4 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, int32_t ___lineNo0, int32_t ___linePos1, const RuntimeMethod* method) { { LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE * L_0 = __this->get_address_of_lineInfo2_11(); int32_t L_1 = ___lineNo0; int32_t L_2 = ___linePos1; LineInfo_Set_mAA6F06BA4463E64A24070063EE26BF665EC28B99((LineInfo_t89285C74EC1BF626F2481BBE5E5A9F65C0BA51BE *)L_0, L_1, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetValueNode(System.Xml.XmlNodeType,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetValueNode_m5D0E6BD089647F4DC22608DB2B63F0CE58522F3E (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, int32_t ___type0, String_t* ___value1, const RuntimeMethod* method) { { int32_t L_0 = ___type0; __this->set_type_1(L_0); NodeData_ClearName_mC3A98BBF65ABAE00AFE65E1942BB348021D1D0C9(__this, /*hidden argument*/NULL); String_t* L_1 = ___value1; __this->set_value_6(L_1); __this->set_valueStartPos_8((-1)); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetValueNode(System.Xml.XmlNodeType,System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetValueNode_mFEF92AABBC3BC1D99196E955C969E344CA8E233B (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, int32_t ___type0, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars1, int32_t ___startPos2, int32_t ___len3, const RuntimeMethod* method) { { int32_t L_0 = ___type0; __this->set_type_1(L_0); NodeData_ClearName_mC3A98BBF65ABAE00AFE65E1942BB348021D1D0C9(__this, /*hidden argument*/NULL); __this->set_value_6((String_t*)NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_1 = ___chars1; __this->set_chars_7(L_1); int32_t L_2 = ___startPos2; __this->set_valueStartPos_8(L_2); int32_t L_3 = ___len3; __this->set_valueLength_9(L_3); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetNamedNode(System.Xml.XmlNodeType,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetNamedNode_m9FFF683DB8640C8F6F5A053A5C120742C777415A (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, int32_t ___type0, String_t* ___localName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___type0; String_t* L_1 = ___localName1; String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); String_t* L_3 = ___localName1; NodeData_SetNamedNode_mFE5340CD2CF846E5AADCE3F7D8925BB1780683F9(__this, L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetNamedNode(System.Xml.XmlNodeType,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetNamedNode_mFE5340CD2CF846E5AADCE3F7D8925BB1780683F9 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, int32_t ___type0, String_t* ___localName1, String_t* ___prefix2, String_t* ___nameWPrefix3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___type0; __this->set_type_1(L_0); String_t* L_1 = ___localName1; __this->set_localName_2(L_1); String_t* L_2 = ___prefix2; __this->set_prefix_3(L_2); String_t* L_3 = ___nameWPrefix3; __this->set_nameWPrefix_5(L_3); String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_ns_4(L_4); String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_value_6(L_5); __this->set_valueStartPos_8((-1)); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetValue_m813BE9ED3C10352169BBA67B7A251A13E6F95FBE (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, String_t* ___value0, const RuntimeMethod* method) { { __this->set_valueStartPos_8((-1)); String_t* L_0 = ___value0; __this->set_value_6(L_0); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetValue(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetValue_mB62C0FF3ED5D43D329073953E461E562EA63DDCA (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars0, int32_t ___startPos1, int32_t ___len2, const RuntimeMethod* method) { { __this->set_value_6((String_t*)NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_0 = ___chars0; __this->set_chars_7(L_0); int32_t L_1 = ___startPos1; __this->set_valueStartPos_8(L_1); int32_t L_2 = ___len2; __this->set_valueLength_9(L_2); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::OnBufferInvalidated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_OnBufferInvalidated_mEEEE0281931302FBB671D325CAA784D52F1C1543 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_value_6(); if (L_0) { goto IL_0025; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_1 = __this->get_chars_7(); int32_t L_2 = __this->get_valueStartPos_8(); int32_t L_3 = __this->get_valueLength_9(); String_t* L_4; L_4 = String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E(NULL, L_1, L_2, L_3, /*hidden argument*/NULL); __this->set_value_6(L_4); } IL_0025: { __this->set_valueStartPos_8((-1)); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::CopyTo(System.Int32,System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_CopyTo_mB825A2E0DFF0CD37A592DE70E3E4A040AE896EA9 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, int32_t ___valueOffset0, StringBuilder_t * ___sb1, const RuntimeMethod* method) { { String_t* L_0 = __this->get_value_6(); if (L_0) { goto IL_0026; } } { StringBuilder_t * L_1 = ___sb1; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_2 = __this->get_chars_7(); int32_t L_3 = __this->get_valueStartPos_8(); int32_t L_4 = ___valueOffset0; int32_t L_5 = __this->get_valueLength_9(); int32_t L_6 = ___valueOffset0; NullCheck(L_1); StringBuilder_t * L_7; L_7 = StringBuilder_Append_m4B771D7BFE8A65C9A504EC5847A699EB678B02DB(L_1, L_2, ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)L_6)), /*hidden argument*/NULL); return; } IL_0026: { int32_t L_8 = ___valueOffset0; if ((((int32_t)L_8) > ((int32_t)0))) { goto IL_0038; } } { StringBuilder_t * L_9 = ___sb1; String_t* L_10 = __this->get_value_6(); NullCheck(L_9); StringBuilder_t * L_11; L_11 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_9, L_10, /*hidden argument*/NULL); return; } IL_0038: { StringBuilder_t * L_12 = ___sb1; String_t* L_13 = __this->get_value_6(); int32_t L_14 = ___valueOffset0; String_t* L_15 = __this->get_value_6(); NullCheck(L_15); int32_t L_16; L_16 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_15, /*hidden argument*/NULL); int32_t L_17 = ___valueOffset0; NullCheck(L_12); StringBuilder_t * L_18; L_18 = StringBuilder_Append_mB0253AA6494BFCC6EA6E5FA343D0DAE6F58CBD17(L_12, L_13, L_14, ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)L_17)), /*hidden argument*/NULL); return; } } // System.String System.Xml.XmlTextReaderImpl/NodeData::GetNameWPrefix(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NodeData_GetNameWPrefix_m8F2FF2029F59DB52995603EA96CD02F53D934643 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * ___nt0, const RuntimeMethod* method) { { String_t* L_0 = __this->get_nameWPrefix_5(); if (!L_0) { goto IL_000f; } } { String_t* L_1 = __this->get_nameWPrefix_5(); return L_1; } IL_000f: { XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * L_2 = ___nt0; String_t* L_3; L_3 = NodeData_CreateNameWPrefix_mE5F2F6096757CECF6F0C49FB0542EFBF15A9C7C3(__this, L_2, /*hidden argument*/NULL); return L_3; } } // System.String System.Xml.XmlTextReaderImpl/NodeData::CreateNameWPrefix(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NodeData_CreateNameWPrefix_mE5F2F6096757CECF6F0C49FB0542EFBF15A9C7C3 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * ___nt0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_prefix_3(); NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_001b; } } { String_t* L_2 = __this->get_localName_2(); __this->set_nameWPrefix_5(L_2); goto IL_003d; } IL_001b: { XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * L_3 = ___nt0; String_t* L_4 = __this->get_prefix_3(); String_t* L_5 = __this->get_localName_2(); String_t* L_6; L_6 = String_Concat_mC41740F000A5A48F8D313FB4CEE0E35E207A2632(L_4, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, L_5, /*hidden argument*/NULL); NullCheck(L_3); String_t* L_7; L_7 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_3, L_6); __this->set_nameWPrefix_5(L_7); } IL_003d: { String_t* L_8 = __this->get_nameWPrefix_5(); return L_8; } } // System.Int32 System.Xml.XmlTextReaderImpl/NodeData::System.IComparable.CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NodeData_System_IComparable_CompareTo_m83288CF38E9F5552461E72F26954474A9ED6ED50 (NodeData_tD504C5A621E7DD546954D87282438662327280EA * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeData_tD504C5A621E7DD546954D87282438662327280EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } NodeData_tD504C5A621E7DD546954D87282438662327280EA * V_0 = NULL; { RuntimeObject * L_0 = ___obj0; V_0 = ((NodeData_tD504C5A621E7DD546954D87282438662327280EA *)IsInstClass((RuntimeObject*)L_0, NodeData_tD504C5A621E7DD546954D87282438662327280EA_il2cpp_TypeInfo_var)); NodeData_tD504C5A621E7DD546954D87282438662327280EA * L_1 = V_0; if (!L_1) { goto IL_0056; } } { String_t* L_2 = __this->get_localName_2(); NodeData_tD504C5A621E7DD546954D87282438662327280EA * L_3 = V_0; NullCheck(L_3); String_t* L_4 = L_3->get_localName_2(); bool L_5; L_5 = Ref_Equal_mC7446C03C6E7E8A136230B02A6B4F9FA6B389242(L_2, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0044; } } { String_t* L_6 = __this->get_ns_4(); NodeData_tD504C5A621E7DD546954D87282438662327280EA * L_7 = V_0; NullCheck(L_7); String_t* L_8 = L_7->get_ns_4(); bool L_9; L_9 = Ref_Equal_mC7446C03C6E7E8A136230B02A6B4F9FA6B389242(L_6, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0032; } } { return 0; } IL_0032: { String_t* L_10 = __this->get_ns_4(); NodeData_tD504C5A621E7DD546954D87282438662327280EA * L_11 = V_0; NullCheck(L_11); String_t* L_12 = L_11->get_ns_4(); int32_t L_13; L_13 = String_CompareOrdinal_mFDCC5702BF15DBA49C5E89677B7BCBA827284B07(L_10, L_12, /*hidden argument*/NULL); return L_13; } IL_0044: { String_t* L_14 = __this->get_localName_2(); NodeData_tD504C5A621E7DD546954D87282438662327280EA * L_15 = V_0; NullCheck(L_15); String_t* L_16 = L_15->get_localName_2(); int32_t L_17; L_17 = String_CompareOrdinal_mFDCC5702BF15DBA49C5E89677B7BCBA827284B07(L_14, L_16, /*hidden argument*/NULL); return L_17; } IL_0056: { return 1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnDefaultAttributeUseDelegate__ctor_m33FBEA77B836E089D0EFCED2A5157443C503F3F5 (OnDefaultAttributeUseDelegate_t3E995824DB2F605D21E74880C851C4C6BB9A1E88 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate::Invoke(System.Xml.IDtdDefaultAttributeInfo,System.Xml.XmlTextReaderImpl) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnDefaultAttributeUseDelegate_Invoke_mAE00805CFBABDE9D41AD11E50FF27E0FE71F9553 (OnDefaultAttributeUseDelegate_t3E995824DB2F605D21E74880C851C4C6BB9A1E88 * __this, RuntimeObject* ___defaultAttribute0, XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * ___coreReader1, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 2) { // open typedef void (*FunctionPointerType) (RuntimeObject*, XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___defaultAttribute0, ___coreReader1, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject*, XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___defaultAttribute0, ___coreReader1, targetMethod); } } else if (___parameterCount != 2) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * >::Invoke(targetMethod, ___defaultAttribute0, ___coreReader1); else GenericVirtActionInvoker1< XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * >::Invoke(targetMethod, ___defaultAttribute0, ___coreReader1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___defaultAttribute0, ___coreReader1); else VirtActionInvoker1< XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___defaultAttribute0, ___coreReader1); } } else { typedef void (*FunctionPointerType) (RuntimeObject*, XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___defaultAttribute0, ___coreReader1, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker2< RuntimeObject*, XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * >::Invoke(targetMethod, targetThis, ___defaultAttribute0, ___coreReader1); else GenericVirtActionInvoker2< RuntimeObject*, XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * >::Invoke(targetMethod, targetThis, ___defaultAttribute0, ___coreReader1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker2< RuntimeObject*, XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___defaultAttribute0, ___coreReader1); else VirtActionInvoker2< RuntimeObject*, XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___defaultAttribute0, ___coreReader1); } } else { if (___parameterCount == 1) { typedef void (*FunctionPointerType) (RuntimeObject*, XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___defaultAttribute0, ___coreReader1, targetMethod); } else { typedef void (*FunctionPointerType) (void*, RuntimeObject*, XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___defaultAttribute0, ___coreReader1, targetMethod); } } } } } // System.IAsyncResult System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate::BeginInvoke(System.Xml.IDtdDefaultAttributeInfo,System.Xml.XmlTextReaderImpl,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OnDefaultAttributeUseDelegate_BeginInvoke_mAC4E747A3BB4DD7C6AE2E132579BCFE4F6319825 (OnDefaultAttributeUseDelegate_t3E995824DB2F605D21E74880C851C4C6BB9A1E88 * __this, RuntimeObject* ___defaultAttribute0, XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * ___coreReader1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { void *__d_args[3] = {0}; __d_args[0] = ___defaultAttribute0; __d_args[1] = ___coreReader1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);; } // System.Void System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnDefaultAttributeUseDelegate_EndInvoke_mF1DD49F82FDC59CE06DDEFE19ED2F5B2E0386ACF (OnDefaultAttributeUseDelegate_t3E995824DB2F605D21E74880C851C4C6BB9A1E88 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Xml.XmlTextReaderImpl/ParsingState IL2CPP_EXTERN_C void ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF_marshal_pinvoke(const ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF& unmarshaled, ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF_marshaled_pinvoke& marshaled) { Exception_t* ___encoding_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'encoding' of type 'ParsingState': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___encoding_3Exception, NULL); } IL2CPP_EXTERN_C void ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF_marshal_pinvoke_back(const ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF_marshaled_pinvoke& marshaled, ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF& unmarshaled) { Exception_t* ___encoding_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'encoding' of type 'ParsingState': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___encoding_3Exception, NULL); } // Conversion method for clean up from marshalling of: System.Xml.XmlTextReaderImpl/ParsingState IL2CPP_EXTERN_C void ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF_marshal_pinvoke_cleanup(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Xml.XmlTextReaderImpl/ParsingState IL2CPP_EXTERN_C void ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF_marshal_com(const ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF& unmarshaled, ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF_marshaled_com& marshaled) { Exception_t* ___encoding_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'encoding' of type 'ParsingState': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___encoding_3Exception, NULL); } IL2CPP_EXTERN_C void ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF_marshal_com_back(const ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF_marshaled_com& marshaled, ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF& unmarshaled) { Exception_t* ___encoding_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'encoding' of type 'ParsingState': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___encoding_3Exception, NULL); } // Conversion method for clean up from marshalling of: System.Xml.XmlTextReaderImpl/ParsingState IL2CPP_EXTERN_C void ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF_marshal_com_cleanup(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF_marshaled_com& marshaled) { } // System.Void System.Xml.XmlTextReaderImpl/ParsingState::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParsingState_Clear_m23A1DD27BCE9143D4C4E6D5A45C0F4AA1FECA004 (ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { __this->set_chars_0((CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)NULL); __this->set_charPos_1(0); __this->set_charsUsed_2(0); __this->set_encoding_3((Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 *)NULL); __this->set_stream_5((Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB *)NULL); __this->set_decoder_6((Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 *)NULL); __this->set_bytes_7((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL); __this->set_bytePos_8(0); __this->set_bytesUsed_9(0); __this->set_textReader_10((TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F *)NULL); __this->set_lineNo_11(1); __this->set_lineStartPos_12((-1)); String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_baseUriStr_13(L_0); __this->set_baseUri_14((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)NULL); __this->set_isEof_15((bool)0); __this->set_isStreamEof_16((bool)0); __this->set_eolNormalized_19((bool)1); __this->set_entityResolvedManually_20((bool)0); return; } } IL2CPP_EXTERN_C void ParsingState_Clear_m23A1DD27BCE9143D4C4E6D5A45C0F4AA1FECA004_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF * _thisAdjusted = reinterpret_cast(__this + _offset); ParsingState_Clear_m23A1DD27BCE9143D4C4E6D5A45C0F4AA1FECA004(_thisAdjusted, method); } // System.Void System.Xml.XmlTextReaderImpl/ParsingState::Close(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParsingState_Close_m689F0D29DA61913B5406B7E42E675DED08CEC10F (ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF * __this, bool ___closeInput0, const RuntimeMethod* method) { { bool L_0 = ___closeInput0; if (!L_0) { goto IL_002a; } } { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_1 = __this->get_stream_5(); if (!L_1) { goto IL_0017; } } { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_2 = __this->get_stream_5(); NullCheck(L_2); VirtActionInvoker0::Invoke(16 /* System.Void System.IO.Stream::Close() */, L_2); return; } IL_0017: { TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * L_3 = __this->get_textReader_10(); if (!L_3) { goto IL_002a; } } { TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * L_4 = __this->get_textReader_10(); NullCheck(L_4); VirtActionInvoker0::Invoke(7 /* System.Void System.IO.TextReader::Close() */, L_4); } IL_002a: { return; } } IL2CPP_EXTERN_C void ParsingState_Close_m689F0D29DA61913B5406B7E42E675DED08CEC10F_AdjustorThunk (RuntimeObject * __this, bool ___closeInput0, const RuntimeMethod* method) { int32_t _offset = 1; ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF * _thisAdjusted = reinterpret_cast(__this + _offset); ParsingState_Close_m689F0D29DA61913B5406B7E42E675DED08CEC10F(_thisAdjusted, ___closeInput0, method); } // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::get_LineNo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ParsingState_get_LineNo_m9C32240CFE61AE19697B7C9EFA5DE9B44D3C9610 (ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_lineNo_11(); return L_0; } } IL2CPP_EXTERN_C int32_t ParsingState_get_LineNo_m9C32240CFE61AE19697B7C9EFA5DE9B44D3C9610_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = ParsingState_get_LineNo_m9C32240CFE61AE19697B7C9EFA5DE9B44D3C9610_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::get_LinePos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ParsingState_get_LinePos_mB937EA68EFFA791C24EDC7C1DFFE45732EBFFD5C (ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_charPos_1(); int32_t L_1 = __this->get_lineStartPos_12(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } IL2CPP_EXTERN_C int32_t ParsingState_get_LinePos_mB937EA68EFFA791C24EDC7C1DFFE45732EBFFD5C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = ParsingState_get_LinePos_mB937EA68EFFA791C24EDC7C1DFFE45732EBFFD5C(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlTextReaderImpl/XmlContext::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlContext__ctor_m5785549B37BF1B5F5295E45AA99FB8057AA2C120 (XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); __this->set_xmlSpace_0(0); String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_xmlLang_1(L_0); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_defaultNamespace_2(L_1); __this->set_previousContext_3((XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D *)NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl/XmlContext::.ctor(System.Xml.XmlTextReaderImpl/XmlContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlContext__ctor_mBB5EC64A1865F609FEA54FC912CD4989934EC764 (XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D * __this, XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D * ___previousContext0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D * L_0 = ___previousContext0; NullCheck(L_0); int32_t L_1 = L_0->get_xmlSpace_0(); __this->set_xmlSpace_0(L_1); XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D * L_2 = ___previousContext0; NullCheck(L_2); String_t* L_3 = L_2->get_xmlLang_1(); __this->set_xmlLang_1(L_3); XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D * L_4 = ___previousContext0; NullCheck(L_4); String_t* L_5 = L_4->get_defaultNamespace_2(); __this->set_defaultNamespace_2(L_5); XmlContext_tAC94E49A4625E1E5BDD6390576509760DD2A162D * L_6 = ___previousContext0; __this->set_previousContext_3(L_6); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Xml.XmlTextWriter/Namespace IL2CPP_EXTERN_C void Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB_marshal_pinvoke(const Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB& unmarshaled, Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB_marshaled_pinvoke& marshaled) { marshaled.___prefix_0 = il2cpp_codegen_marshal_string(unmarshaled.get_prefix_0()); marshaled.___ns_1 = il2cpp_codegen_marshal_string(unmarshaled.get_ns_1()); marshaled.___declared_2 = static_cast(unmarshaled.get_declared_2()); marshaled.___prevNsIndex_3 = unmarshaled.get_prevNsIndex_3(); } IL2CPP_EXTERN_C void Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB_marshal_pinvoke_back(const Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB_marshaled_pinvoke& marshaled, Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB& unmarshaled) { unmarshaled.set_prefix_0(il2cpp_codegen_marshal_string_result(marshaled.___prefix_0)); unmarshaled.set_ns_1(il2cpp_codegen_marshal_string_result(marshaled.___ns_1)); bool unmarshaled_declared_temp_2 = false; unmarshaled_declared_temp_2 = static_cast(marshaled.___declared_2); unmarshaled.set_declared_2(unmarshaled_declared_temp_2); int32_t unmarshaled_prevNsIndex_temp_3 = 0; unmarshaled_prevNsIndex_temp_3 = marshaled.___prevNsIndex_3; unmarshaled.set_prevNsIndex_3(unmarshaled_prevNsIndex_temp_3); } // Conversion method for clean up from marshalling of: System.Xml.XmlTextWriter/Namespace IL2CPP_EXTERN_C void Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB_marshal_pinvoke_cleanup(Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB_marshaled_pinvoke& marshaled) { il2cpp_codegen_marshal_free(marshaled.___prefix_0); marshaled.___prefix_0 = NULL; il2cpp_codegen_marshal_free(marshaled.___ns_1); marshaled.___ns_1 = NULL; } // Conversion methods for marshalling of: System.Xml.XmlTextWriter/Namespace IL2CPP_EXTERN_C void Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB_marshal_com(const Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB& unmarshaled, Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB_marshaled_com& marshaled) { marshaled.___prefix_0 = il2cpp_codegen_marshal_bstring(unmarshaled.get_prefix_0()); marshaled.___ns_1 = il2cpp_codegen_marshal_bstring(unmarshaled.get_ns_1()); marshaled.___declared_2 = static_cast(unmarshaled.get_declared_2()); marshaled.___prevNsIndex_3 = unmarshaled.get_prevNsIndex_3(); } IL2CPP_EXTERN_C void Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB_marshal_com_back(const Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB_marshaled_com& marshaled, Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB& unmarshaled) { unmarshaled.set_prefix_0(il2cpp_codegen_marshal_bstring_result(marshaled.___prefix_0)); unmarshaled.set_ns_1(il2cpp_codegen_marshal_bstring_result(marshaled.___ns_1)); bool unmarshaled_declared_temp_2 = false; unmarshaled_declared_temp_2 = static_cast(marshaled.___declared_2); unmarshaled.set_declared_2(unmarshaled_declared_temp_2); int32_t unmarshaled_prevNsIndex_temp_3 = 0; unmarshaled_prevNsIndex_temp_3 = marshaled.___prevNsIndex_3; unmarshaled.set_prevNsIndex_3(unmarshaled_prevNsIndex_temp_3); } // Conversion method for clean up from marshalling of: System.Xml.XmlTextWriter/Namespace IL2CPP_EXTERN_C void Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB_marshal_com_cleanup(Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB_marshaled_com& marshaled) { il2cpp_codegen_marshal_free_bstring(marshaled.___prefix_0); marshaled.___prefix_0 = NULL; il2cpp_codegen_marshal_free_bstring(marshaled.___ns_1); marshaled.___ns_1 = NULL; } // System.Void System.Xml.XmlTextWriter/Namespace::Set(System.String,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Namespace_Set_m56A8063D5B2E5989807DF3472D0266CF828BBDA8 (Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB * __this, String_t* ___prefix0, String_t* ___ns1, bool ___declared2, const RuntimeMethod* method) { { String_t* L_0 = ___prefix0; __this->set_prefix_0(L_0); String_t* L_1 = ___ns1; __this->set_ns_1(L_1); bool L_2 = ___declared2; __this->set_declared_2(L_2); __this->set_prevNsIndex_3((-1)); return; } } IL2CPP_EXTERN_C void Namespace_Set_m56A8063D5B2E5989807DF3472D0266CF828BBDA8_AdjustorThunk (RuntimeObject * __this, String_t* ___prefix0, String_t* ___ns1, bool ___declared2, const RuntimeMethod* method) { int32_t _offset = 1; Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB * _thisAdjusted = reinterpret_cast(__this + _offset); Namespace_Set_m56A8063D5B2E5989807DF3472D0266CF828BBDA8(_thisAdjusted, ___prefix0, ___ns1, ___declared2, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Xml.XmlTextWriter/TagInfo IL2CPP_EXTERN_C void TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2_marshal_pinvoke(const TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2& unmarshaled, TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2_marshaled_pinvoke& marshaled) { marshaled.___name_0 = il2cpp_codegen_marshal_string(unmarshaled.get_name_0()); marshaled.___prefix_1 = il2cpp_codegen_marshal_string(unmarshaled.get_prefix_1()); marshaled.___defaultNs_2 = il2cpp_codegen_marshal_string(unmarshaled.get_defaultNs_2()); marshaled.___defaultNsState_3 = unmarshaled.get_defaultNsState_3(); marshaled.___xmlSpace_4 = unmarshaled.get_xmlSpace_4(); marshaled.___xmlLang_5 = il2cpp_codegen_marshal_string(unmarshaled.get_xmlLang_5()); marshaled.___prevNsTop_6 = unmarshaled.get_prevNsTop_6(); marshaled.___prefixCount_7 = unmarshaled.get_prefixCount_7(); marshaled.___mixed_8 = static_cast(unmarshaled.get_mixed_8()); } IL2CPP_EXTERN_C void TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2_marshal_pinvoke_back(const TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2_marshaled_pinvoke& marshaled, TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2& unmarshaled) { unmarshaled.set_name_0(il2cpp_codegen_marshal_string_result(marshaled.___name_0)); unmarshaled.set_prefix_1(il2cpp_codegen_marshal_string_result(marshaled.___prefix_1)); unmarshaled.set_defaultNs_2(il2cpp_codegen_marshal_string_result(marshaled.___defaultNs_2)); int32_t unmarshaled_defaultNsState_temp_3 = 0; unmarshaled_defaultNsState_temp_3 = marshaled.___defaultNsState_3; unmarshaled.set_defaultNsState_3(unmarshaled_defaultNsState_temp_3); int32_t unmarshaled_xmlSpace_temp_4 = 0; unmarshaled_xmlSpace_temp_4 = marshaled.___xmlSpace_4; unmarshaled.set_xmlSpace_4(unmarshaled_xmlSpace_temp_4); unmarshaled.set_xmlLang_5(il2cpp_codegen_marshal_string_result(marshaled.___xmlLang_5)); int32_t unmarshaled_prevNsTop_temp_6 = 0; unmarshaled_prevNsTop_temp_6 = marshaled.___prevNsTop_6; unmarshaled.set_prevNsTop_6(unmarshaled_prevNsTop_temp_6); int32_t unmarshaled_prefixCount_temp_7 = 0; unmarshaled_prefixCount_temp_7 = marshaled.___prefixCount_7; unmarshaled.set_prefixCount_7(unmarshaled_prefixCount_temp_7); bool unmarshaled_mixed_temp_8 = false; unmarshaled_mixed_temp_8 = static_cast(marshaled.___mixed_8); unmarshaled.set_mixed_8(unmarshaled_mixed_temp_8); } // Conversion method for clean up from marshalling of: System.Xml.XmlTextWriter/TagInfo IL2CPP_EXTERN_C void TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2_marshal_pinvoke_cleanup(TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2_marshaled_pinvoke& marshaled) { il2cpp_codegen_marshal_free(marshaled.___name_0); marshaled.___name_0 = NULL; il2cpp_codegen_marshal_free(marshaled.___prefix_1); marshaled.___prefix_1 = NULL; il2cpp_codegen_marshal_free(marshaled.___defaultNs_2); marshaled.___defaultNs_2 = NULL; il2cpp_codegen_marshal_free(marshaled.___xmlLang_5); marshaled.___xmlLang_5 = NULL; } // Conversion methods for marshalling of: System.Xml.XmlTextWriter/TagInfo IL2CPP_EXTERN_C void TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2_marshal_com(const TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2& unmarshaled, TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2_marshaled_com& marshaled) { marshaled.___name_0 = il2cpp_codegen_marshal_bstring(unmarshaled.get_name_0()); marshaled.___prefix_1 = il2cpp_codegen_marshal_bstring(unmarshaled.get_prefix_1()); marshaled.___defaultNs_2 = il2cpp_codegen_marshal_bstring(unmarshaled.get_defaultNs_2()); marshaled.___defaultNsState_3 = unmarshaled.get_defaultNsState_3(); marshaled.___xmlSpace_4 = unmarshaled.get_xmlSpace_4(); marshaled.___xmlLang_5 = il2cpp_codegen_marshal_bstring(unmarshaled.get_xmlLang_5()); marshaled.___prevNsTop_6 = unmarshaled.get_prevNsTop_6(); marshaled.___prefixCount_7 = unmarshaled.get_prefixCount_7(); marshaled.___mixed_8 = static_cast(unmarshaled.get_mixed_8()); } IL2CPP_EXTERN_C void TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2_marshal_com_back(const TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2_marshaled_com& marshaled, TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2& unmarshaled) { unmarshaled.set_name_0(il2cpp_codegen_marshal_bstring_result(marshaled.___name_0)); unmarshaled.set_prefix_1(il2cpp_codegen_marshal_bstring_result(marshaled.___prefix_1)); unmarshaled.set_defaultNs_2(il2cpp_codegen_marshal_bstring_result(marshaled.___defaultNs_2)); int32_t unmarshaled_defaultNsState_temp_3 = 0; unmarshaled_defaultNsState_temp_3 = marshaled.___defaultNsState_3; unmarshaled.set_defaultNsState_3(unmarshaled_defaultNsState_temp_3); int32_t unmarshaled_xmlSpace_temp_4 = 0; unmarshaled_xmlSpace_temp_4 = marshaled.___xmlSpace_4; unmarshaled.set_xmlSpace_4(unmarshaled_xmlSpace_temp_4); unmarshaled.set_xmlLang_5(il2cpp_codegen_marshal_bstring_result(marshaled.___xmlLang_5)); int32_t unmarshaled_prevNsTop_temp_6 = 0; unmarshaled_prevNsTop_temp_6 = marshaled.___prevNsTop_6; unmarshaled.set_prevNsTop_6(unmarshaled_prevNsTop_temp_6); int32_t unmarshaled_prefixCount_temp_7 = 0; unmarshaled_prefixCount_temp_7 = marshaled.___prefixCount_7; unmarshaled.set_prefixCount_7(unmarshaled_prefixCount_temp_7); bool unmarshaled_mixed_temp_8 = false; unmarshaled_mixed_temp_8 = static_cast(marshaled.___mixed_8); unmarshaled.set_mixed_8(unmarshaled_mixed_temp_8); } // Conversion method for clean up from marshalling of: System.Xml.XmlTextWriter/TagInfo IL2CPP_EXTERN_C void TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2_marshal_com_cleanup(TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2_marshaled_com& marshaled) { il2cpp_codegen_marshal_free_bstring(marshaled.___name_0); marshaled.___name_0 = NULL; il2cpp_codegen_marshal_free_bstring(marshaled.___prefix_1); marshaled.___prefix_1 = NULL; il2cpp_codegen_marshal_free_bstring(marshaled.___defaultNs_2); marshaled.___defaultNs_2 = NULL; il2cpp_codegen_marshal_free_bstring(marshaled.___xmlLang_5); marshaled.___xmlLang_5 = NULL; } // System.Void System.Xml.XmlTextWriter/TagInfo::Init(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TagInfo_Init_mFC65CB7C7A7D7852E3A2825365F1BD35CC38F8CF (TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 * __this, int32_t ___nsTop0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { __this->set_name_0((String_t*)NULL); String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_defaultNs_2(L_0); __this->set_defaultNsState_3(0); __this->set_xmlSpace_4(0); __this->set_xmlLang_5((String_t*)NULL); int32_t L_1 = ___nsTop0; __this->set_prevNsTop_6(L_1); __this->set_prefixCount_7(0); __this->set_mixed_8((bool)0); return; } } IL2CPP_EXTERN_C void TagInfo_Init_mFC65CB7C7A7D7852E3A2825365F1BD35CC38F8CF_AdjustorThunk (RuntimeObject * __this, int32_t ___nsTop0, const RuntimeMethod* method) { int32_t _offset = 1; TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 * _thisAdjusted = reinterpret_cast(__this + _offset); TagInfo_Init_mFC65CB7C7A7D7852E3A2825365F1BD35CC38F8CF(_thisAdjusted, ___nsTop0, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlUrlResolver/d__15::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEntityAsyncU3Ed__15_MoveNext_m6F75ADBC40411959ECD71C921F282AB4102D208E (U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC_TisU3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_m3B21BB85DA84F2172127634BA0CCA9EF4FFE865F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_SetResult_m3E4AB12877D4FE377F26708CF6899C49360007FA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaitable_1_GetAwaiter_m4F1ED70E3551027C342566D331FE99EB40F7C076_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaiter_GetResult_mAD154326007808FFD2047A47BD8C312B91A05FCD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfiguredTaskAwaiter_get_IsCompleted_mB7A99A944FAEF631A2EC109FADBF428D6A12FC0F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_1_ConfigureAwait_m4A6D2565EE9545645B9418B3B2CC34B6A3D260A8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1 * V_1 = NULL; RuntimeObject * V_2 = NULL; ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC V_3; memset((&V_3), 0, sizeof(V_3)); ConfiguredTaskAwaitable_1_t7EA81BB95AB4DBB79ADF06E9518D55B0721DC03C V_4; memset((&V_4), 0, sizeof(V_4)); Exception_t * V_5 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1 * L_1 = __this->get_U3CU3E4__this_4(); V_1 = L_1; } IL_000e: try { // begin try (depth: 1) { int32_t L_2 = V_0; if (!L_2) { goto IL_00ae; } } IL_0014: { Type_t * L_3 = __this->get_ofObjectToReturn_2(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_4; L_4 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_3, (Type_t *)NULL, /*hidden argument*/NULL); if (L_4) { goto IL_0053; } } IL_0022: { Type_t * L_5 = __this->get_ofObjectToReturn_2(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_6 = { reinterpret_cast (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7; L_7 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_6, /*hidden argument*/NULL); bool L_8; L_8 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_5, L_7, /*hidden argument*/NULL); if (L_8) { goto IL_0053; } } IL_0039: { Type_t * L_9 = __this->get_ofObjectToReturn_2(); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_10 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_11; L_11 = Type_GetTypeFromHandle_m180706985100778663E9C75D4FC001D367C0120F(L_10, /*hidden argument*/NULL); bool L_12; L_12 = Type_op_Equality_m01CE523ADAD8D6348C8247353F7C1E5FA3031732(L_9, L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_00d4; } } IL_0053: { XmlDownloadManager_t28FF2F536CFB5125C74928F7DC706692604D5A9D * L_13; L_13 = XmlUrlResolver_get_DownloadManager_m9EFD2C40A944C579EE8487E7FC194B44412D5001(/*hidden argument*/NULL); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_14 = __this->get_absoluteUri_3(); XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1 * L_15 = V_1; NullCheck(L_15); RuntimeObject* L_16 = L_15->get__credentials_1(); XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1 * L_17 = V_1; NullCheck(L_17); RuntimeObject* L_18 = L_17->get__proxy_2(); XmlUrlResolver_t341613B5C62E06DC2382255E0AE4D763AD302AE1 * L_19 = V_1; NullCheck(L_19); RequestCachePolicy_tC080799EE2DA10B7F24B2E69ABBF5636EB2D43ED * L_20 = L_19->get__cachePolicy_3(); NullCheck(L_13); Task_1_t9886BD44244DCD8CA9A7E5EF87684455E7FFF602 * L_21; L_21 = XmlDownloadManager_GetStreamAsync_m8651CC7437004016BCBB9742D71972CBAAB94E62(L_13, L_14, L_16, L_18, L_20, /*hidden argument*/NULL); NullCheck(L_21); ConfiguredTaskAwaitable_1_t7EA81BB95AB4DBB79ADF06E9518D55B0721DC03C L_22; L_22 = Task_1_ConfigureAwait_m4A6D2565EE9545645B9418B3B2CC34B6A3D260A8(L_21, (bool)0, /*hidden argument*/Task_1_ConfigureAwait_m4A6D2565EE9545645B9418B3B2CC34B6A3D260A8_RuntimeMethod_var); V_4 = L_22; ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC L_23; L_23 = ConfiguredTaskAwaitable_1_GetAwaiter_m4F1ED70E3551027C342566D331FE99EB40F7C076_inline((ConfiguredTaskAwaitable_1_t7EA81BB95AB4DBB79ADF06E9518D55B0721DC03C *)(&V_4), /*hidden argument*/ConfiguredTaskAwaitable_1_GetAwaiter_m4F1ED70E3551027C342566D331FE99EB40F7C076_RuntimeMethod_var); V_3 = L_23; bool L_24; L_24 = ConfiguredTaskAwaiter_get_IsCompleted_mB7A99A944FAEF631A2EC109FADBF428D6A12FC0F((ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC *)(&V_3), /*hidden argument*/ConfiguredTaskAwaiter_get_IsCompleted_mB7A99A944FAEF631A2EC109FADBF428D6A12FC0F_RuntimeMethod_var); if (L_24) { goto IL_00ca; } } IL_008e: { int32_t L_25 = 0; V_0 = L_25; __this->set_U3CU3E1__state_0(L_25); ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC L_26 = V_3; __this->set_U3CU3Eu__1_5(L_26); AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * L_27 = __this->get_address_of_U3CU3Et__builder_1(); AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC_TisU3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_m3B21BB85DA84F2172127634BA0CCA9EF4FFE865F((AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 *)L_27, (ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC *)(&V_3), (U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 *)__this, /*hidden argument*/AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC_TisU3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218_m3B21BB85DA84F2172127634BA0CCA9EF4FFE865F_RuntimeMethod_var); goto IL_0111; } IL_00ae: { ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC L_28 = __this->get_U3CU3Eu__1_5(); V_3 = L_28; ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC * L_29 = __this->get_address_of_U3CU3Eu__1_5(); il2cpp_codegen_initobj(L_29, sizeof(ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC )); int32_t L_30 = (-1); V_0 = L_30; __this->set_U3CU3E1__state_0(L_30); } IL_00ca: { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_31; L_31 = ConfiguredTaskAwaiter_GetResult_mAD154326007808FFD2047A47BD8C312B91A05FCD((ConfiguredTaskAwaiter_t8518ACD1F2872D675882BA604F5262DD7B2A62BC *)(&V_3), /*hidden argument*/ConfiguredTaskAwaiter_GetResult_mAD154326007808FFD2047A47BD8C312B91A05FCD_RuntimeMethod_var); V_2 = L_31; goto IL_00fd; } IL_00d4: { String_t* L_32 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->get_Empty_5(); XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 * L_33 = (XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_tBD65EFA0B5CA26D7D8F4906BEC7C83A76394C918_il2cpp_TypeInfo_var))); XmlException__ctor_m113008AE4B646E85154C99B3CBB55D536CBEFEB9(L_33, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD29CA80AA23F62C996542BD3373B35F12EBC874B)), L_32, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CGetEntityAsyncU3Ed__15_MoveNext_m6F75ADBC40411959ECD71C921F282AB4102D208E_RuntimeMethod_var))); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00e4; } throw e; } CATCH_00e4: { // begin catch(System.Exception) V_5 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); __this->set_U3CU3E1__state_0(((int32_t)-2)); AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * L_34 = __this->get_address_of_U3CU3Et__builder_1(); Exception_t * L_35 = V_5; AsyncTaskMethodBuilder_1_SetException_m29521EB618E38AF72FF0C4094070C1489F4129B3((AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 *)L_34, L_35, /*hidden argument*/((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AsyncTaskMethodBuilder_1_SetException_m29521EB618E38AF72FF0C4094070C1489F4129B3_RuntimeMethod_var))); IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0111; } // end catch (depth: 1) IL_00fd: { __this->set_U3CU3E1__state_0(((int32_t)-2)); AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * L_36 = __this->get_address_of_U3CU3Et__builder_1(); RuntimeObject * L_37 = V_2; AsyncTaskMethodBuilder_1_SetResult_m3E4AB12877D4FE377F26708CF6899C49360007FA((AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 *)L_36, L_37, /*hidden argument*/AsyncTaskMethodBuilder_1_SetResult_m3E4AB12877D4FE377F26708CF6899C49360007FA_RuntimeMethod_var); } IL_0111: { return; } } IL2CPP_EXTERN_C void U3CGetEntityAsyncU3Ed__15_MoveNext_m6F75ADBC40411959ECD71C921F282AB4102D208E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 * _thisAdjusted = reinterpret_cast(__this + _offset); U3CGetEntityAsyncU3Ed__15_MoveNext_m6F75ADBC40411959ECD71C921F282AB4102D208E(_thisAdjusted, method); } // System.Void System.Xml.XmlUrlResolver/d__15::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEntityAsyncU3Ed__15_SetStateMachine_m9A31F8EDD492D50FFA4F9FCC8F0FBAD9DD1D3E93 (U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncTaskMethodBuilder_1_SetStateMachine_m736C84D61B4AB2FCD150BD3945C6874471A9224D_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 * L_0 = __this->get_address_of_U3CU3Et__builder_1(); RuntimeObject* L_1 = ___stateMachine0; AsyncTaskMethodBuilder_1_SetStateMachine_m736C84D61B4AB2FCD150BD3945C6874471A9224D((AsyncTaskMethodBuilder_1_tDD2A3BA099C327938EA03C35FDB1A7502BA73020 *)L_0, L_1, /*hidden argument*/AsyncTaskMethodBuilder_1_SetStateMachine_m736C84D61B4AB2FCD150BD3945C6874471A9224D_RuntimeMethod_var); return; } } IL2CPP_EXTERN_C void U3CGetEntityAsyncU3Ed__15_SetStateMachine_m9A31F8EDD492D50FFA4F9FCC8F0FBAD9DD1D3E93_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) { int32_t _offset = 1; U3CGetEntityAsyncU3Ed__15_t20AEFF2EBE2252FD1B094E4F290D7BD745CFF218 * _thisAdjusted = reinterpret_cast(__this + _offset); U3CGetEntityAsyncU3Ed__15_SetStateMachine_m9A31F8EDD492D50FFA4F9FCC8F0FBAD9DD1D3E93(_thisAdjusted, ___stateMachine0, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Xml.Schema.XsdDateTime/Parser IL2CPP_EXTERN_C void Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_marshal_pinvoke(const Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855& unmarshaled, Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_marshaled_pinvoke& marshaled) { marshaled.___typeCode_0 = unmarshaled.get_typeCode_0(); marshaled.___year_1 = unmarshaled.get_year_1(); marshaled.___month_2 = unmarshaled.get_month_2(); marshaled.___day_3 = unmarshaled.get_day_3(); marshaled.___hour_4 = unmarshaled.get_hour_4(); marshaled.___minute_5 = unmarshaled.get_minute_5(); marshaled.___second_6 = unmarshaled.get_second_6(); marshaled.___fraction_7 = unmarshaled.get_fraction_7(); marshaled.___kind_8 = unmarshaled.get_kind_8(); marshaled.___zoneHour_9 = unmarshaled.get_zoneHour_9(); marshaled.___zoneMinute_10 = unmarshaled.get_zoneMinute_10(); marshaled.___text_11 = il2cpp_codegen_marshal_string(unmarshaled.get_text_11()); marshaled.___length_12 = unmarshaled.get_length_12(); } IL2CPP_EXTERN_C void Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_marshal_pinvoke_back(const Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_marshaled_pinvoke& marshaled, Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855& unmarshaled) { int32_t unmarshaled_typeCode_temp_0 = 0; unmarshaled_typeCode_temp_0 = marshaled.___typeCode_0; unmarshaled.set_typeCode_0(unmarshaled_typeCode_temp_0); int32_t unmarshaled_year_temp_1 = 0; unmarshaled_year_temp_1 = marshaled.___year_1; unmarshaled.set_year_1(unmarshaled_year_temp_1); int32_t unmarshaled_month_temp_2 = 0; unmarshaled_month_temp_2 = marshaled.___month_2; unmarshaled.set_month_2(unmarshaled_month_temp_2); int32_t unmarshaled_day_temp_3 = 0; unmarshaled_day_temp_3 = marshaled.___day_3; unmarshaled.set_day_3(unmarshaled_day_temp_3); int32_t unmarshaled_hour_temp_4 = 0; unmarshaled_hour_temp_4 = marshaled.___hour_4; unmarshaled.set_hour_4(unmarshaled_hour_temp_4); int32_t unmarshaled_minute_temp_5 = 0; unmarshaled_minute_temp_5 = marshaled.___minute_5; unmarshaled.set_minute_5(unmarshaled_minute_temp_5); int32_t unmarshaled_second_temp_6 = 0; unmarshaled_second_temp_6 = marshaled.___second_6; unmarshaled.set_second_6(unmarshaled_second_temp_6); int32_t unmarshaled_fraction_temp_7 = 0; unmarshaled_fraction_temp_7 = marshaled.___fraction_7; unmarshaled.set_fraction_7(unmarshaled_fraction_temp_7); int32_t unmarshaled_kind_temp_8 = 0; unmarshaled_kind_temp_8 = marshaled.___kind_8; unmarshaled.set_kind_8(unmarshaled_kind_temp_8); int32_t unmarshaled_zoneHour_temp_9 = 0; unmarshaled_zoneHour_temp_9 = marshaled.___zoneHour_9; unmarshaled.set_zoneHour_9(unmarshaled_zoneHour_temp_9); int32_t unmarshaled_zoneMinute_temp_10 = 0; unmarshaled_zoneMinute_temp_10 = marshaled.___zoneMinute_10; unmarshaled.set_zoneMinute_10(unmarshaled_zoneMinute_temp_10); unmarshaled.set_text_11(il2cpp_codegen_marshal_string_result(marshaled.___text_11)); int32_t unmarshaled_length_temp_12 = 0; unmarshaled_length_temp_12 = marshaled.___length_12; unmarshaled.set_length_12(unmarshaled_length_temp_12); } // Conversion method for clean up from marshalling of: System.Xml.Schema.XsdDateTime/Parser IL2CPP_EXTERN_C void Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_marshal_pinvoke_cleanup(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_marshaled_pinvoke& marshaled) { il2cpp_codegen_marshal_free(marshaled.___text_11); marshaled.___text_11 = NULL; } // Conversion methods for marshalling of: System.Xml.Schema.XsdDateTime/Parser IL2CPP_EXTERN_C void Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_marshal_com(const Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855& unmarshaled, Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_marshaled_com& marshaled) { marshaled.___typeCode_0 = unmarshaled.get_typeCode_0(); marshaled.___year_1 = unmarshaled.get_year_1(); marshaled.___month_2 = unmarshaled.get_month_2(); marshaled.___day_3 = unmarshaled.get_day_3(); marshaled.___hour_4 = unmarshaled.get_hour_4(); marshaled.___minute_5 = unmarshaled.get_minute_5(); marshaled.___second_6 = unmarshaled.get_second_6(); marshaled.___fraction_7 = unmarshaled.get_fraction_7(); marshaled.___kind_8 = unmarshaled.get_kind_8(); marshaled.___zoneHour_9 = unmarshaled.get_zoneHour_9(); marshaled.___zoneMinute_10 = unmarshaled.get_zoneMinute_10(); marshaled.___text_11 = il2cpp_codegen_marshal_bstring(unmarshaled.get_text_11()); marshaled.___length_12 = unmarshaled.get_length_12(); } IL2CPP_EXTERN_C void Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_marshal_com_back(const Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_marshaled_com& marshaled, Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855& unmarshaled) { int32_t unmarshaled_typeCode_temp_0 = 0; unmarshaled_typeCode_temp_0 = marshaled.___typeCode_0; unmarshaled.set_typeCode_0(unmarshaled_typeCode_temp_0); int32_t unmarshaled_year_temp_1 = 0; unmarshaled_year_temp_1 = marshaled.___year_1; unmarshaled.set_year_1(unmarshaled_year_temp_1); int32_t unmarshaled_month_temp_2 = 0; unmarshaled_month_temp_2 = marshaled.___month_2; unmarshaled.set_month_2(unmarshaled_month_temp_2); int32_t unmarshaled_day_temp_3 = 0; unmarshaled_day_temp_3 = marshaled.___day_3; unmarshaled.set_day_3(unmarshaled_day_temp_3); int32_t unmarshaled_hour_temp_4 = 0; unmarshaled_hour_temp_4 = marshaled.___hour_4; unmarshaled.set_hour_4(unmarshaled_hour_temp_4); int32_t unmarshaled_minute_temp_5 = 0; unmarshaled_minute_temp_5 = marshaled.___minute_5; unmarshaled.set_minute_5(unmarshaled_minute_temp_5); int32_t unmarshaled_second_temp_6 = 0; unmarshaled_second_temp_6 = marshaled.___second_6; unmarshaled.set_second_6(unmarshaled_second_temp_6); int32_t unmarshaled_fraction_temp_7 = 0; unmarshaled_fraction_temp_7 = marshaled.___fraction_7; unmarshaled.set_fraction_7(unmarshaled_fraction_temp_7); int32_t unmarshaled_kind_temp_8 = 0; unmarshaled_kind_temp_8 = marshaled.___kind_8; unmarshaled.set_kind_8(unmarshaled_kind_temp_8); int32_t unmarshaled_zoneHour_temp_9 = 0; unmarshaled_zoneHour_temp_9 = marshaled.___zoneHour_9; unmarshaled.set_zoneHour_9(unmarshaled_zoneHour_temp_9); int32_t unmarshaled_zoneMinute_temp_10 = 0; unmarshaled_zoneMinute_temp_10 = marshaled.___zoneMinute_10; unmarshaled.set_zoneMinute_10(unmarshaled_zoneMinute_temp_10); unmarshaled.set_text_11(il2cpp_codegen_marshal_bstring_result(marshaled.___text_11)); int32_t unmarshaled_length_temp_12 = 0; unmarshaled_length_temp_12 = marshaled.___length_12; unmarshaled.set_length_12(unmarshaled_length_temp_12); } // Conversion method for clean up from marshalling of: System.Xml.Schema.XsdDateTime/Parser IL2CPP_EXTERN_C void Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_marshal_com_cleanup(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_marshaled_com& marshaled) { il2cpp_codegen_marshal_free_bstring(marshaled.___text_11); marshaled.___text_11 = NULL; } // System.Boolean System.Xml.Schema.XsdDateTime/Parser::Parse(System.String,System.Xml.Schema.XsdDateTimeFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_Parse_m4967C6E2F360C1BCAAEDC78816BBADE6F5A6C297 (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, String_t* ___text0, int32_t ___kinds1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { String_t* L_0 = ___text0; __this->set_text_11(L_0); String_t* L_1 = ___text0; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_1, /*hidden argument*/NULL); __this->set_length_12(L_2); V_0 = 0; goto IL_001b; } IL_0017: { int32_t L_3 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); } IL_001b: { int32_t L_4 = V_0; int32_t L_5 = __this->get_length_12(); if ((((int32_t)L_4) >= ((int32_t)L_5))) { goto IL_0032; } } { String_t* L_6 = ___text0; int32_t L_7 = V_0; NullCheck(L_6); Il2CppChar L_8; L_8 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_6, L_7, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); bool L_9; L_9 = Char_IsWhiteSpace_mA78B7CA7BF0CA022525EA150EB6028F45E33C775(L_8, /*hidden argument*/NULL); if (L_9) { goto IL_0017; } } IL_0032: { int32_t L_10 = ___kinds1; IL2CPP_RUNTIME_CLASS_INIT(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); bool L_11; L_11 = Parser_Test_m7A3240669F6CEFAF3FF82E446591DB268BC86E38(L_10, ((int32_t)773), /*hidden argument*/NULL); if (!L_11) { goto IL_0125; } } { int32_t L_12 = V_0; bool L_13; L_13 = Parser_ParseDate_m23E3A2F31DFAA15C290E80E7D32F8981686A515F((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0125; } } { int32_t L_14 = ___kinds1; IL2CPP_RUNTIME_CLASS_INIT(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); bool L_15; L_15 = Parser_Test_m7A3240669F6CEFAF3FF82E446591DB268BC86E38(L_14, 1, /*hidden argument*/NULL); if (!L_15) { goto IL_0080; } } { int32_t L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_17 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_MM_dd_6(); bool L_18; L_18 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_17)), ((int32_t)84), /*hidden argument*/NULL); if (!L_18) { goto IL_0080; } } { int32_t L_19 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_20 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_MM_ddT_7(); bool L_21; L_21 = Parser_ParseTimeAndZoneAndWhitespace_mD3C814A74159B2A1D9833D62B387855AA750A7D7((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)L_20)), /*hidden argument*/NULL); if (!L_21) { goto IL_0080; } } { __this->set_typeCode_0(0); return (bool)1; } IL_0080: { int32_t L_22 = ___kinds1; IL2CPP_RUNTIME_CLASS_INIT(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); bool L_23; L_23 = Parser_Test_m7A3240669F6CEFAF3FF82E446591DB268BC86E38(L_22, 4, /*hidden argument*/NULL); if (!L_23) { goto IL_00a1; } } { int32_t L_24 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_25 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_MM_dd_6(); bool L_26; L_26 = Parser_ParseZoneAndWhitespace_m8AE1CD0249E328AD018311B36D4D7C8145B1F7FD((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)L_25)), /*hidden argument*/NULL); if (!L_26) { goto IL_00a1; } } { __this->set_typeCode_0(2); return (bool)1; } IL_00a1: { int32_t L_27 = ___kinds1; IL2CPP_RUNTIME_CLASS_INIT(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); bool L_28; L_28 = Parser_Test_m7A3240669F6CEFAF3FF82E446591DB268BC86E38(L_27, ((int32_t)512), /*hidden argument*/NULL); if (!L_28) { goto IL_00e6; } } { int32_t L_29 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_30 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_MM_dd_6(); bool L_31; L_31 = Parser_ParseZoneAndWhitespace_m8AE1CD0249E328AD018311B36D4D7C8145B1F7FD((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)L_30)), /*hidden argument*/NULL); if (L_31) { goto IL_00dd; } } { int32_t L_32 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_33 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_MM_dd_6(); bool L_34; L_34 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)L_33)), ((int32_t)84), /*hidden argument*/NULL); if (!L_34) { goto IL_00e6; } } { int32_t L_35 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_36 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_MM_ddT_7(); bool L_37; L_37 = Parser_ParseTimeAndZoneAndWhitespace_mD3C814A74159B2A1D9833D62B387855AA750A7D7((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)L_36)), /*hidden argument*/NULL); if (!L_37) { goto IL_00e6; } } IL_00dd: { __this->set_typeCode_0(8); return (bool)1; } IL_00e6: { int32_t L_38 = ___kinds1; IL2CPP_RUNTIME_CLASS_INIT(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); bool L_39; L_39 = Parser_Test_m7A3240669F6CEFAF3FF82E446591DB268BC86E38(L_38, ((int32_t)256), /*hidden argument*/NULL); if (!L_39) { goto IL_0125; } } { int32_t L_40 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_41 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_MM_dd_6(); bool L_42; L_42 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)L_41)), ((int32_t)84), /*hidden argument*/NULL); if (!L_42) { goto IL_011c; } } { int32_t L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_44 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_MM_ddT_7(); bool L_45; L_45 = Parser_ParseTimeAndWhitespace_mBCF164792A47E16B97330955841DCE66BC3EE76F((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)L_44)), /*hidden argument*/NULL); if (!L_45) { goto IL_0125; } } { __this->set_typeCode_0(8); return (bool)1; } IL_011c: { __this->set_typeCode_0(8); return (bool)1; } IL_0125: { int32_t L_46 = ___kinds1; IL2CPP_RUNTIME_CLASS_INIT(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); bool L_47; L_47 = Parser_Test_m7A3240669F6CEFAF3FF82E446591DB268BC86E38(L_46, 2, /*hidden argument*/NULL); if (!L_47) { goto IL_0159; } } { int32_t L_48 = V_0; bool L_49; L_49 = Parser_ParseTimeAndZoneAndWhitespace_mD3C814A74159B2A1D9833D62B387855AA750A7D7((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, L_48, /*hidden argument*/NULL); if (!L_49) { goto IL_0159; } } { __this->set_year_1(((int32_t)1904)); __this->set_month_2(1); __this->set_day_3(1); __this->set_typeCode_0(1); return (bool)1; } IL_0159: { int32_t L_50 = ___kinds1; IL2CPP_RUNTIME_CLASS_INIT(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); bool L_51; L_51 = Parser_Test_m7A3240669F6CEFAF3FF82E446591DB268BC86E38(L_50, ((int32_t)1024), /*hidden argument*/NULL); if (!L_51) { goto IL_0191; } } { int32_t L_52 = V_0; bool L_53; L_53 = Parser_ParseTimeAndWhitespace_mBCF164792A47E16B97330955841DCE66BC3EE76F((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, L_52, /*hidden argument*/NULL); if (!L_53) { goto IL_0191; } } { __this->set_year_1(((int32_t)1904)); __this->set_month_2(1); __this->set_day_3(1); __this->set_typeCode_0(1); return (bool)1; } IL_0191: { int32_t L_54 = ___kinds1; IL2CPP_RUNTIME_CLASS_INIT(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); bool L_55; L_55 = Parser_Test_m7A3240669F6CEFAF3FF82E446591DB268BC86E38(L_54, ((int32_t)24), /*hidden argument*/NULL); if (!L_55) { goto IL_024d; } } { int32_t L_56 = V_0; int32_t* L_57 = __this->get_address_of_year_1(); bool L_58; L_58 = Parser_Parse4Dig_m65BF5864AF2DAF8C2C5C4986EF5033E430211E85((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, L_56, (int32_t*)L_57, /*hidden argument*/NULL); if (!L_58) { goto IL_024d; } } { int32_t L_59 = __this->get_year_1(); if ((((int32_t)1) > ((int32_t)L_59))) { goto IL_024d; } } { int32_t L_60 = ___kinds1; IL2CPP_RUNTIME_CLASS_INIT(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); bool L_61; L_61 = Parser_Test_m7A3240669F6CEFAF3FF82E446591DB268BC86E38(L_60, 8, /*hidden argument*/NULL); if (!L_61) { goto IL_021d; } } { int32_t L_62 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_63 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_2(); bool L_64; L_64 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)L_63)), ((int32_t)45), /*hidden argument*/NULL); if (!L_64) { goto IL_021d; } } { int32_t L_65 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_66 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy__3(); int32_t* L_67 = __this->get_address_of_month_2(); bool L_68; L_68 = Parser_Parse2Dig_mDC407DA9C1765B371244EEE11A43CF233F655581((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_65, (int32_t)L_66)), (int32_t*)L_67, /*hidden argument*/NULL); if (!L_68) { goto IL_021d; } } { int32_t L_69 = __this->get_month_2(); if ((((int32_t)1) > ((int32_t)L_69))) { goto IL_021d; } } { int32_t L_70 = __this->get_month_2(); if ((((int32_t)L_70) > ((int32_t)((int32_t)12)))) { goto IL_021d; } } { int32_t L_71 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_72 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_MM_4(); bool L_73; L_73 = Parser_ParseZoneAndWhitespace_m8AE1CD0249E328AD018311B36D4D7C8145B1F7FD((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)L_72)), /*hidden argument*/NULL); if (!L_73) { goto IL_021d; } } { __this->set_day_3(1); __this->set_typeCode_0(3); return (bool)1; } IL_021d: { int32_t L_74 = ___kinds1; IL2CPP_RUNTIME_CLASS_INIT(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); bool L_75; L_75 = Parser_Test_m7A3240669F6CEFAF3FF82E446591DB268BC86E38(L_74, ((int32_t)16), /*hidden argument*/NULL); if (!L_75) { goto IL_024d; } } { int32_t L_76 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_77 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_2(); bool L_78; L_78 = Parser_ParseZoneAndWhitespace_m8AE1CD0249E328AD018311B36D4D7C8145B1F7FD((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_76, (int32_t)L_77)), /*hidden argument*/NULL); if (!L_78) { goto IL_024d; } } { __this->set_month_2(1); __this->set_day_3(1); __this->set_typeCode_0(4); return (bool)1; } IL_024d: { int32_t L_79 = ___kinds1; IL2CPP_RUNTIME_CLASS_INIT(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); bool L_80; L_80 = Parser_Test_m7A3240669F6CEFAF3FF82E446591DB268BC86E38(L_79, ((int32_t)160), /*hidden argument*/NULL); if (!L_80) { goto IL_038c; } } { int32_t L_81 = V_0; bool L_82; L_82 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, L_81, ((int32_t)45), /*hidden argument*/NULL); if (!L_82) { goto IL_038c; } } { int32_t L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_84 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__13(); bool L_85; L_85 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_83, (int32_t)L_84)), ((int32_t)45), /*hidden argument*/NULL); if (!L_85) { goto IL_038c; } } { int32_t L_86 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_87 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz___17(); int32_t* L_88 = __this->get_address_of_month_2(); bool L_89; L_89 = Parser_Parse2Dig_mDC407DA9C1765B371244EEE11A43CF233F655581((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_86, (int32_t)L_87)), (int32_t*)L_88, /*hidden argument*/NULL); if (!L_89) { goto IL_038c; } } { int32_t L_90 = __this->get_month_2(); if ((((int32_t)1) > ((int32_t)L_90))) { goto IL_038c; } } { int32_t L_91 = __this->get_month_2(); if ((((int32_t)L_91) > ((int32_t)((int32_t)12)))) { goto IL_038c; } } { int32_t L_92 = ___kinds1; IL2CPP_RUNTIME_CLASS_INIT(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); bool L_93; L_93 = Parser_Test_m7A3240669F6CEFAF3FF82E446591DB268BC86E38(L_92, ((int32_t)32), /*hidden argument*/NULL); if (!L_93) { goto IL_0324; } } { int32_t L_94 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_95 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__mm_18(); bool L_96; L_96 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_94, (int32_t)L_95)), ((int32_t)45), /*hidden argument*/NULL); if (!L_96) { goto IL_0324; } } { int32_t L_97 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_98 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__mm__19(); int32_t* L_99 = __this->get_address_of_day_3(); bool L_100; L_100 = Parser_Parse2Dig_mDC407DA9C1765B371244EEE11A43CF233F655581((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_97, (int32_t)L_98)), (int32_t*)L_99, /*hidden argument*/NULL); if (!L_100) { goto IL_0324; } } { int32_t L_101 = __this->get_day_3(); if ((((int32_t)1) > ((int32_t)L_101))) { goto IL_0324; } } { int32_t L_102 = __this->get_day_3(); int32_t L_103 = __this->get_month_2(); IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); int32_t L_104; L_104 = DateTime_DaysInMonth_m1437F1BDAA8ABA8AD85F30E58238F92974B6533B(((int32_t)1904), L_103, /*hidden argument*/NULL); if ((((int32_t)L_102) > ((int32_t)L_104))) { goto IL_0324; } } { int32_t L_105 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_106 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__mm_dd_21(); bool L_107; L_107 = Parser_ParseZoneAndWhitespace_m8AE1CD0249E328AD018311B36D4D7C8145B1F7FD((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_105, (int32_t)L_106)), /*hidden argument*/NULL); if (!L_107) { goto IL_0324; } } { __this->set_year_1(((int32_t)1904)); __this->set_typeCode_0(5); return (bool)1; } IL_0324: { int32_t L_108 = ___kinds1; IL2CPP_RUNTIME_CLASS_INIT(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); bool L_109; L_109 = Parser_Test_m7A3240669F6CEFAF3FF82E446591DB268BC86E38(L_108, ((int32_t)128), /*hidden argument*/NULL); if (!L_109) { goto IL_038c; } } { int32_t L_110 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_111 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__mm_18(); bool L_112; L_112 = Parser_ParseZoneAndWhitespace_m8AE1CD0249E328AD018311B36D4D7C8145B1F7FD((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_110, (int32_t)L_111)), /*hidden argument*/NULL); if (L_112) { goto IL_0371; } } { int32_t L_113 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_114 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__mm_18(); bool L_115; L_115 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_113, (int32_t)L_114)), ((int32_t)45), /*hidden argument*/NULL); if (!L_115) { goto IL_038c; } } { int32_t L_116 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_117 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__mm__19(); bool L_118; L_118 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_116, (int32_t)L_117)), ((int32_t)45), /*hidden argument*/NULL); if (!L_118) { goto IL_038c; } } { int32_t L_119 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_120 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__mm___20(); bool L_121; L_121 = Parser_ParseZoneAndWhitespace_m8AE1CD0249E328AD018311B36D4D7C8145B1F7FD((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_119, (int32_t)L_120)), /*hidden argument*/NULL); if (!L_121) { goto IL_038c; } } IL_0371: { __this->set_year_1(((int32_t)1904)); __this->set_day_3(1); __this->set_typeCode_0(7); return (bool)1; } IL_038c: { int32_t L_122 = ___kinds1; IL2CPP_RUNTIME_CLASS_INIT(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); bool L_123; L_123 = Parser_Test_m7A3240669F6CEFAF3FF82E446591DB268BC86E38(L_122, ((int32_t)64), /*hidden argument*/NULL); if (!L_123) { goto IL_0421; } } { int32_t L_124 = V_0; bool L_125; L_125 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, L_124, ((int32_t)45), /*hidden argument*/NULL); if (!L_125) { goto IL_0421; } } { int32_t L_126 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_127 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__13(); bool L_128; L_128 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_126, (int32_t)L_127)), ((int32_t)45), /*hidden argument*/NULL); if (!L_128) { goto IL_0421; } } { int32_t L_129 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_130 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz___17(); bool L_131; L_131 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_129, (int32_t)L_130)), ((int32_t)45), /*hidden argument*/NULL); if (!L_131) { goto IL_0421; } } { int32_t L_132 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_133 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz____22(); int32_t* L_134 = __this->get_address_of_day_3(); bool L_135; L_135 = Parser_Parse2Dig_mDC407DA9C1765B371244EEE11A43CF233F655581((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_132, (int32_t)L_133)), (int32_t*)L_134, /*hidden argument*/NULL); if (!L_135) { goto IL_0421; } } { int32_t L_136 = __this->get_day_3(); if ((((int32_t)1) > ((int32_t)L_136))) { goto IL_0421; } } { int32_t L_137 = __this->get_day_3(); IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); int32_t L_138; L_138 = DateTime_DaysInMonth_m1437F1BDAA8ABA8AD85F30E58238F92974B6533B(((int32_t)1904), 1, /*hidden argument*/NULL); if ((((int32_t)L_137) > ((int32_t)L_138))) { goto IL_0421; } } { int32_t L_139 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_140 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz___dd_23(); bool L_141; L_141 = Parser_ParseZoneAndWhitespace_m8AE1CD0249E328AD018311B36D4D7C8145B1F7FD((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_139, (int32_t)L_140)), /*hidden argument*/NULL); if (!L_141) { goto IL_0421; } } { __this->set_year_1(((int32_t)1904)); __this->set_month_2(1); __this->set_typeCode_0(6); return (bool)1; } IL_0421: { return (bool)0; } } IL2CPP_EXTERN_C bool Parser_Parse_m4967C6E2F360C1BCAAEDC78816BBADE6F5A6C297_AdjustorThunk (RuntimeObject * __this, String_t* ___text0, int32_t ___kinds1, const RuntimeMethod* method) { int32_t _offset = 1; Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Parser_Parse_m4967C6E2F360C1BCAAEDC78816BBADE6F5A6C297(_thisAdjusted, ___text0, ___kinds1, method); return _returnValue; } // System.Boolean System.Xml.Schema.XsdDateTime/Parser::ParseDate(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_ParseDate_m23E3A2F31DFAA15C290E80E7D32F8981686A515F (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, int32_t ___start0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___start0; int32_t* L_1 = __this->get_address_of_year_1(); bool L_2; L_2 = Parser_Parse4Dig_m65BF5864AF2DAF8C2C5C4986EF5033E430211E85((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, L_0, (int32_t*)L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_00a3; } } { int32_t L_3 = __this->get_year_1(); if ((((int32_t)1) > ((int32_t)L_3))) { goto IL_00a3; } } { int32_t L_4 = ___start0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_5 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_2(); bool L_6; L_6 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5)), ((int32_t)45), /*hidden argument*/NULL); if (!L_6) { goto IL_00a3; } } { int32_t L_7 = ___start0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_8 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy__3(); int32_t* L_9 = __this->get_address_of_month_2(); bool L_10; L_10 = Parser_Parse2Dig_mDC407DA9C1765B371244EEE11A43CF233F655581((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)), (int32_t*)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_00a3; } } { int32_t L_11 = __this->get_month_2(); if ((((int32_t)1) > ((int32_t)L_11))) { goto IL_00a3; } } { int32_t L_12 = __this->get_month_2(); if ((((int32_t)L_12) > ((int32_t)((int32_t)12)))) { goto IL_00a3; } } { int32_t L_13 = ___start0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_14 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_MM_4(); bool L_15; L_15 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)), ((int32_t)45), /*hidden argument*/NULL); if (!L_15) { goto IL_00a3; } } { int32_t L_16 = ___start0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_17 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lzyyyy_MM__5(); int32_t* L_18 = __this->get_address_of_day_3(); bool L_19; L_19 = Parser_Parse2Dig_mDC407DA9C1765B371244EEE11A43CF233F655581((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_17)), (int32_t*)L_18, /*hidden argument*/NULL); if (!L_19) { goto IL_00a3; } } { int32_t L_20 = __this->get_day_3(); if ((((int32_t)1) > ((int32_t)L_20))) { goto IL_00a3; } } { int32_t L_21 = __this->get_day_3(); int32_t L_22 = __this->get_year_1(); int32_t L_23 = __this->get_month_2(); IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); int32_t L_24; L_24 = DateTime_DaysInMonth_m1437F1BDAA8ABA8AD85F30E58238F92974B6533B(L_22, L_23, /*hidden argument*/NULL); return (bool)((((int32_t)((((int32_t)L_21) > ((int32_t)L_24))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_00a3: { return (bool)0; } } IL2CPP_EXTERN_C bool Parser_ParseDate_m23E3A2F31DFAA15C290E80E7D32F8981686A515F_AdjustorThunk (RuntimeObject * __this, int32_t ___start0, const RuntimeMethod* method) { int32_t _offset = 1; Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Parser_ParseDate_m23E3A2F31DFAA15C290E80E7D32F8981686A515F(_thisAdjusted, ___start0, method); return _returnValue; } // System.Boolean System.Xml.Schema.XsdDateTime/Parser::ParseTimeAndZoneAndWhitespace(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_ParseTimeAndZoneAndWhitespace_mD3C814A74159B2A1D9833D62B387855AA750A7D7 (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, int32_t ___start0, const RuntimeMethod* method) { { bool L_0; L_0 = Parser_ParseTime_m8B8F8087006D4BDFE3FF8E239ACE293C68A41339((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, (int32_t*)(&___start0), /*hidden argument*/NULL); if (!L_0) { goto IL_0015; } } { int32_t L_1 = ___start0; bool L_2; L_2 = Parser_ParseZoneAndWhitespace_m8AE1CD0249E328AD018311B36D4D7C8145B1F7FD((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0015; } } { return (bool)1; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool Parser_ParseTimeAndZoneAndWhitespace_mD3C814A74159B2A1D9833D62B387855AA750A7D7_AdjustorThunk (RuntimeObject * __this, int32_t ___start0, const RuntimeMethod* method) { int32_t _offset = 1; Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Parser_ParseTimeAndZoneAndWhitespace_mD3C814A74159B2A1D9833D62B387855AA750A7D7(_thisAdjusted, ___start0, method); return _returnValue; } // System.Boolean System.Xml.Schema.XsdDateTime/Parser::ParseTimeAndWhitespace(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_ParseTimeAndWhitespace_mBCF164792A47E16B97330955841DCE66BC3EE76F (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, int32_t ___start0, const RuntimeMethod* method) { { bool L_0; L_0 = Parser_ParseTime_m8B8F8087006D4BDFE3FF8E239ACE293C68A41339((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, (int32_t*)(&___start0), /*hidden argument*/NULL); if (!L_0) { goto IL_0024; } } { goto IL_0011; } IL_000c: { int32_t L_1 = ___start0; ___start0 = ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1)); } IL_0011: { int32_t L_2 = ___start0; int32_t L_3 = __this->get_length_12(); if ((((int32_t)L_2) < ((int32_t)L_3))) { goto IL_000c; } } { int32_t L_4 = ___start0; int32_t L_5 = __this->get_length_12(); return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0); } IL_0024: { return (bool)0; } } IL2CPP_EXTERN_C bool Parser_ParseTimeAndWhitespace_mBCF164792A47E16B97330955841DCE66BC3EE76F_AdjustorThunk (RuntimeObject * __this, int32_t ___start0, const RuntimeMethod* method) { int32_t _offset = 1; Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Parser_ParseTimeAndWhitespace_mBCF164792A47E16B97330955841DCE66BC3EE76F(_thisAdjusted, ___start0, method); return _returnValue; } // System.Boolean System.Xml.Schema.XsdDateTime/Parser::ParseTime(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_ParseTime_m8B8F8087006D4BDFE3FF8E239ACE293C68A41339 (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, int32_t* ___start0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { int32_t* L_0 = ___start0; int32_t L_1 = *((int32_t*)L_0); int32_t* L_2 = __this->get_address_of_hour_4(); bool L_3; L_3 = Parser_Parse2Dig_mDC407DA9C1765B371244EEE11A43CF233F655581((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, L_1, (int32_t*)L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0159; } } { int32_t L_4 = __this->get_hour_4(); if ((((int32_t)L_4) >= ((int32_t)((int32_t)24)))) { goto IL_0159; } } { int32_t* L_5 = ___start0; int32_t L_6 = *((int32_t*)L_5); IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_7 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_LzHH_8(); bool L_8; L_8 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_7)), ((int32_t)58), /*hidden argument*/NULL); if (!L_8) { goto IL_0159; } } { int32_t* L_9 = ___start0; int32_t L_10 = *((int32_t*)L_9); IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_11 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_LzHH__9(); int32_t* L_12 = __this->get_address_of_minute_5(); bool L_13; L_13 = Parser_Parse2Dig_mDC407DA9C1765B371244EEE11A43CF233F655581((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)), (int32_t*)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0159; } } { int32_t L_14 = __this->get_minute_5(); if ((((int32_t)L_14) >= ((int32_t)((int32_t)60)))) { goto IL_0159; } } { int32_t* L_15 = ___start0; int32_t L_16 = *((int32_t*)L_15); IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_17 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_LzHH_mm_10(); bool L_18; L_18 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_17)), ((int32_t)58), /*hidden argument*/NULL); if (!L_18) { goto IL_0159; } } { int32_t* L_19 = ___start0; int32_t L_20 = *((int32_t*)L_19); IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_21 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_LzHH_mm__11(); int32_t* L_22 = __this->get_address_of_second_6(); bool L_23; L_23 = Parser_Parse2Dig_mDC407DA9C1765B371244EEE11A43CF233F655581((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)L_21)), (int32_t*)L_22, /*hidden argument*/NULL); if (!L_23) { goto IL_0159; } } { int32_t L_24 = __this->get_second_6(); if ((((int32_t)L_24) >= ((int32_t)((int32_t)60)))) { goto IL_0159; } } { int32_t* L_25 = ___start0; int32_t* L_26 = ___start0; int32_t L_27 = *((int32_t*)L_26); IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_28 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_LzHH_mm_ss_12(); *((int32_t*)L_25) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)L_28)); int32_t* L_29 = ___start0; int32_t L_30 = *((int32_t*)L_29); bool L_31; L_31 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, L_30, ((int32_t)46), /*hidden argument*/NULL); if (!L_31) { goto IL_0157; } } { __this->set_fraction_7(0); V_0 = 0; V_1 = 0; goto IL_010a; } IL_00bc: { String_t* L_32 = __this->get_text_11(); int32_t* L_33 = ___start0; int32_t L_34 = *((int32_t*)L_33); NullCheck(L_32); Il2CppChar L_35; L_35 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_32, L_34, /*hidden argument*/NULL); V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)((int32_t)48))); int32_t L_36 = V_2; if ((!(((uint32_t)((int32_t)9)) >= ((uint32_t)L_36)))) { goto IL_011b; } } { int32_t L_37 = V_0; if ((((int32_t)L_37) >= ((int32_t)7))) { goto IL_00e9; } } { int32_t L_38 = __this->get_fraction_7(); int32_t L_39 = V_2; __this->set_fraction_7(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_38, (int32_t)((int32_t)10))), (int32_t)L_39))); goto IL_0106; } IL_00e9: { int32_t L_40 = V_0; if ((!(((uint32_t)L_40) == ((uint32_t)7)))) { goto IL_00fd; } } { int32_t L_41 = V_2; if ((((int32_t)5) >= ((int32_t)L_41))) { goto IL_00f5; } } { V_1 = 1; goto IL_0106; } IL_00f5: { int32_t L_42 = V_2; if ((!(((uint32_t)L_42) == ((uint32_t)5)))) { goto IL_0106; } } { V_1 = (-1); goto IL_0106; } IL_00fd: { int32_t L_43 = V_1; if ((((int32_t)L_43) >= ((int32_t)0))) { goto IL_0106; } } { int32_t L_44 = V_2; if (!L_44) { goto IL_0106; } } { V_1 = 1; } IL_0106: { int32_t L_45 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1)); } IL_010a: { int32_t* L_46 = ___start0; int32_t* L_47 = ___start0; int32_t L_48 = *((int32_t*)L_47); V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1)); int32_t L_49 = V_3; *((int32_t*)L_46) = (int32_t)L_49; int32_t L_50 = V_3; int32_t L_51 = __this->get_length_12(); if ((((int32_t)L_50) < ((int32_t)L_51))) { goto IL_00bc; } } IL_011b: { int32_t L_52 = V_0; if ((((int32_t)L_52) >= ((int32_t)7))) { goto IL_013c; } } { int32_t L_53 = V_0; if (L_53) { goto IL_0124; } } { return (bool)0; } IL_0124: { int32_t L_54 = __this->get_fraction_7(); IL2CPP_RUNTIME_CLASS_INIT(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_55 = ((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_StaticFields*)il2cpp_codegen_static_fields_for(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var))->get_Power10_13(); int32_t L_56 = V_0; NullCheck(L_55); int32_t L_57 = ((int32_t)il2cpp_codegen_subtract((int32_t)7, (int32_t)L_56)); int32_t L_58 = (L_55)->GetAt(static_cast(L_57)); __this->set_fraction_7(((int32_t)il2cpp_codegen_multiply((int32_t)L_54, (int32_t)L_58))); goto IL_0157; } IL_013c: { int32_t L_59 = V_1; if ((((int32_t)L_59) >= ((int32_t)0))) { goto IL_0149; } } { int32_t L_60 = __this->get_fraction_7(); V_1 = ((int32_t)((int32_t)L_60&(int32_t)1)); } IL_0149: { int32_t L_61 = __this->get_fraction_7(); int32_t L_62 = V_1; __this->set_fraction_7(((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)L_62))); } IL_0157: { return (bool)1; } IL_0159: { __this->set_hour_4(0); return (bool)0; } } IL2CPP_EXTERN_C bool Parser_ParseTime_m8B8F8087006D4BDFE3FF8E239ACE293C68A41339_AdjustorThunk (RuntimeObject * __this, int32_t* ___start0, const RuntimeMethod* method) { int32_t _offset = 1; Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Parser_ParseTime_m8B8F8087006D4BDFE3FF8E239ACE293C68A41339(_thisAdjusted, ___start0, method); return _returnValue; } // System.Boolean System.Xml.Schema.XsdDateTime/Parser::ParseZoneAndWhitespace(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_ParseZoneAndWhitespace_m8AE1CD0249E328AD018311B36D4D7C8145B1F7FD (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, int32_t ___start0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { int32_t L_0 = ___start0; int32_t L_1 = __this->get_length_12(); if ((((int32_t)L_0) >= ((int32_t)L_1))) { goto IL_00c4; } } { String_t* L_2 = __this->get_text_11(); int32_t L_3 = ___start0; NullCheck(L_2); Il2CppChar L_4; L_4 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_2, L_3, /*hidden argument*/NULL); V_0 = L_4; Il2CppChar L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)90)))) { goto IL_0023; } } { Il2CppChar L_6 = V_0; if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)122))))) { goto IL_0034; } } IL_0023: { __this->set_kind_8(1); int32_t L_7 = ___start0; ___start0 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); goto IL_00c4; } IL_0034: { int32_t L_8 = ___start0; int32_t L_9 = __this->get_length_12(); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)5))) >= ((int32_t)L_9))) { goto IL_00c4; } } { int32_t L_10 = ___start0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_11 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz__13(); int32_t* L_12 = __this->get_address_of_zoneHour_9(); bool L_13; L_13 = Parser_Parse2Dig_mDC407DA9C1765B371244EEE11A43CF233F655581((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)), (int32_t*)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_00c4; } } { int32_t L_14 = __this->get_zoneHour_9(); if ((((int32_t)L_14) > ((int32_t)((int32_t)99)))) { goto IL_00c4; } } { int32_t L_15 = ___start0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_16 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz_zz_14(); bool L_17; L_17 = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16)), ((int32_t)58), /*hidden argument*/NULL); if (!L_17) { goto IL_00c4; } } { int32_t L_18 = ___start0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_19 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz_zz__15(); int32_t* L_20 = __this->get_address_of_zoneMinute_10(); bool L_21; L_21 = Parser_Parse2Dig_mDC407DA9C1765B371244EEE11A43CF233F655581((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)L_19)), (int32_t*)L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_00c4; } } { int32_t L_22 = __this->get_zoneMinute_10(); if ((((int32_t)L_22) > ((int32_t)((int32_t)99)))) { goto IL_00c4; } } { Il2CppChar L_23 = V_0; if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)45))))) { goto IL_00a8; } } { __this->set_kind_8(2); int32_t L_24 = ___start0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_25 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz_zz_zz_16(); ___start0 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)L_25)); goto IL_00c4; } IL_00a8: { Il2CppChar L_26 = V_0; if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)43))))) { goto IL_00c4; } } { __this->set_kind_8(3); int32_t L_27 = ___start0; IL2CPP_RUNTIME_CLASS_INIT(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var); int32_t L_28 = ((XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_StaticFields*)il2cpp_codegen_static_fields_for(XsdDateTime_t2416CEAC52CB3C0387293D0C4C5F7471313C076D_il2cpp_TypeInfo_var))->get_Lz_zz_zz_16(); ___start0 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)L_28)); goto IL_00c4; } IL_00bf: { int32_t L_29 = ___start0; ___start0 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1)); } IL_00c4: { int32_t L_30 = ___start0; int32_t L_31 = __this->get_length_12(); if ((((int32_t)L_30) >= ((int32_t)L_31))) { goto IL_00e0; } } { String_t* L_32 = __this->get_text_11(); int32_t L_33 = ___start0; NullCheck(L_32); Il2CppChar L_34; L_34 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_32, L_33, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); bool L_35; L_35 = Char_IsWhiteSpace_mA78B7CA7BF0CA022525EA150EB6028F45E33C775(L_34, /*hidden argument*/NULL); if (L_35) { goto IL_00bf; } } IL_00e0: { int32_t L_36 = ___start0; int32_t L_37 = __this->get_length_12(); return (bool)((((int32_t)L_36) == ((int32_t)L_37))? 1 : 0); } } IL2CPP_EXTERN_C bool Parser_ParseZoneAndWhitespace_m8AE1CD0249E328AD018311B36D4D7C8145B1F7FD_AdjustorThunk (RuntimeObject * __this, int32_t ___start0, const RuntimeMethod* method) { int32_t _offset = 1; Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Parser_ParseZoneAndWhitespace_m8AE1CD0249E328AD018311B36D4D7C8145B1F7FD(_thisAdjusted, ___start0, method); return _returnValue; } // System.Boolean System.Xml.Schema.XsdDateTime/Parser::Parse4Dig(System.Int32,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_Parse4Dig_m65BF5864AF2DAF8C2C5C4986EF5033E430211E85 (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, int32_t ___start0, int32_t* ___num1, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { int32_t L_0 = ___start0; int32_t L_1 = __this->get_length_12(); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)3))) >= ((int32_t)L_1))) { goto IL_0089; } } { String_t* L_2 = __this->get_text_11(); int32_t L_3 = ___start0; NullCheck(L_2); Il2CppChar L_4; L_4 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_2, L_3, /*hidden argument*/NULL); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((int32_t)48))); String_t* L_5 = __this->get_text_11(); int32_t L_6 = ___start0; NullCheck(L_5); Il2CppChar L_7; L_7 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_5, ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)), /*hidden argument*/NULL); V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)((int32_t)48))); String_t* L_8 = __this->get_text_11(); int32_t L_9 = ___start0; NullCheck(L_8); Il2CppChar L_10; L_10 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_8, ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)2)), /*hidden argument*/NULL); V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)((int32_t)48))); String_t* L_11 = __this->get_text_11(); int32_t L_12 = ___start0; NullCheck(L_11); Il2CppChar L_13; L_13 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_11, ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)3)), /*hidden argument*/NULL); V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)((int32_t)48))); int32_t L_14 = V_0; if ((((int32_t)0) > ((int32_t)L_14))) { goto IL_0089; } } { int32_t L_15 = V_0; if ((((int32_t)L_15) >= ((int32_t)((int32_t)10)))) { goto IL_0089; } } { int32_t L_16 = V_1; if ((((int32_t)0) > ((int32_t)L_16))) { goto IL_0089; } } { int32_t L_17 = V_1; if ((((int32_t)L_17) >= ((int32_t)((int32_t)10)))) { goto IL_0089; } } { int32_t L_18 = V_2; if ((((int32_t)0) > ((int32_t)L_18))) { goto IL_0089; } } { int32_t L_19 = V_2; if ((((int32_t)L_19) >= ((int32_t)((int32_t)10)))) { goto IL_0089; } } { int32_t L_20 = V_3; if ((((int32_t)0) > ((int32_t)L_20))) { goto IL_0089; } } { int32_t L_21 = V_3; if ((((int32_t)L_21) >= ((int32_t)((int32_t)10)))) { goto IL_0089; } } { int32_t* L_22 = ___num1; int32_t L_23 = V_0; int32_t L_24 = V_1; int32_t L_25 = V_2; int32_t L_26 = V_3; *((int32_t*)L_22) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_23, (int32_t)((int32_t)10))), (int32_t)L_24)), (int32_t)((int32_t)10))), (int32_t)L_25)), (int32_t)((int32_t)10))), (int32_t)L_26)); return (bool)1; } IL_0089: { return (bool)0; } } IL2CPP_EXTERN_C bool Parser_Parse4Dig_m65BF5864AF2DAF8C2C5C4986EF5033E430211E85_AdjustorThunk (RuntimeObject * __this, int32_t ___start0, int32_t* ___num1, const RuntimeMethod* method) { int32_t _offset = 1; Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Parser_Parse4Dig_m65BF5864AF2DAF8C2C5C4986EF5033E430211E85(_thisAdjusted, ___start0, ___num1, method); return _returnValue; } // System.Boolean System.Xml.Schema.XsdDateTime/Parser::Parse2Dig(System.Int32,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_Parse2Dig_mDC407DA9C1765B371244EEE11A43CF233F655581 (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, int32_t ___start0, int32_t* ___num1, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___start0; int32_t L_1 = __this->get_length_12(); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))) >= ((int32_t)L_1))) { goto IL_0049; } } { String_t* L_2 = __this->get_text_11(); int32_t L_3 = ___start0; NullCheck(L_2); Il2CppChar L_4; L_4 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_2, L_3, /*hidden argument*/NULL); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((int32_t)48))); String_t* L_5 = __this->get_text_11(); int32_t L_6 = ___start0; NullCheck(L_5); Il2CppChar L_7; L_7 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_5, ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)), /*hidden argument*/NULL); V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)((int32_t)48))); int32_t L_8 = V_0; if ((((int32_t)0) > ((int32_t)L_8))) { goto IL_0049; } } { int32_t L_9 = V_0; if ((((int32_t)L_9) >= ((int32_t)((int32_t)10)))) { goto IL_0049; } } { int32_t L_10 = V_1; if ((((int32_t)0) > ((int32_t)L_10))) { goto IL_0049; } } { int32_t L_11 = V_1; if ((((int32_t)L_11) >= ((int32_t)((int32_t)10)))) { goto IL_0049; } } { int32_t* L_12 = ___num1; int32_t L_13 = V_0; int32_t L_14 = V_1; *((int32_t*)L_12) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_13, (int32_t)((int32_t)10))), (int32_t)L_14)); return (bool)1; } IL_0049: { return (bool)0; } } IL2CPP_EXTERN_C bool Parser_Parse2Dig_mDC407DA9C1765B371244EEE11A43CF233F655581_AdjustorThunk (RuntimeObject * __this, int32_t ___start0, int32_t* ___num1, const RuntimeMethod* method) { int32_t _offset = 1; Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Parser_Parse2Dig_mDC407DA9C1765B371244EEE11A43CF233F655581(_thisAdjusted, ___start0, ___num1, method); return _returnValue; } // System.Boolean System.Xml.Schema.XsdDateTime/Parser::ParseChar(System.Int32,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C (Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * __this, int32_t ___start0, Il2CppChar ___ch1, const RuntimeMethod* method) { { int32_t L_0 = ___start0; int32_t L_1 = __this->get_length_12(); if ((((int32_t)L_0) >= ((int32_t)L_1))) { goto IL_0019; } } { String_t* L_2 = __this->get_text_11(); int32_t L_3 = ___start0; NullCheck(L_2); Il2CppChar L_4; L_4 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_2, L_3, /*hidden argument*/NULL); Il2CppChar L_5 = ___ch1; return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0); } IL_0019: { return (bool)0; } } IL2CPP_EXTERN_C bool Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C_AdjustorThunk (RuntimeObject * __this, int32_t ___start0, Il2CppChar ___ch1, const RuntimeMethod* method) { int32_t _offset = 1; Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Parser_ParseChar_mA930C408F85983CD044A747F8C0F7BBFC30D9D6C(_thisAdjusted, ___start0, ___ch1, method); return _returnValue; } // System.Boolean System.Xml.Schema.XsdDateTime/Parser::Test(System.Xml.Schema.XsdDateTimeFlags,System.Xml.Schema.XsdDateTimeFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Parser_Test_m7A3240669F6CEFAF3FF82E446591DB268BC86E38 (int32_t ___left0, int32_t ___right1, const RuntimeMethod* method) { { int32_t L_0 = ___left0; int32_t L_1 = ___right1; return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)L_1))) <= ((uint32_t)0)))? 1 : 0); } } // System.Void System.Xml.Schema.XsdDateTime/Parser::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Parser__cctor_mC8BE49F4B5897EFA539CD441987758B3BAC6EB31 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____9E31F24F64765FCAA589F589324D17C9FCF6A06D_3_FieldInfo_var); s_Il2CppMethodInitialized = true; } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)7); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = L_0; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_2 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_tAA330E6B4295DC1363094EDE988D3B524C40486E____9E31F24F64765FCAA589F589324D17C9FCF6A06D_3_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m37345890E8136134556D27E57315B584AC51D53F((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL); ((Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_StaticFields*)il2cpp_codegen_static_fields_for(Parser_tDDE3EDB5C06630226AE405E4CBE5341EC9B8E855_il2cpp_TypeInfo_var))->set_Power10_13(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator::.ctor(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleObjectEnumerator__ctor_m604B995B6FF07963B203415E5DD1284159E65BA2 (SingleObjectEnumerator_t00B492D3B841924569E3EB466D5675163D6EF62E * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { __this->set_position_1((-1)); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); RuntimeObject * L_0 = ___value0; __this->set_loneValue_0(L_0); return; } } // System.Object System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SingleObjectEnumerator_get_Current_m76C9830F6FA5F3D4B444A13856E438EBDA9E0EDD (SingleObjectEnumerator_t00B492D3B841924569E3EB466D5675163D6EF62E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_position_1(); if (!L_0) { goto IL_000e; } } { InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_m26BD2B620B5FBFA4376C16011C60E18A2EDC8E96(L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SingleObjectEnumerator_get_Current_m76C9830F6FA5F3D4B444A13856E438EBDA9E0EDD_RuntimeMethod_var))); } IL_000e: { RuntimeObject * L_2 = __this->get_loneValue_0(); return L_2; } } // System.Boolean System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SingleObjectEnumerator_MoveNext_m5E4AA2E70A4D50ACB2278A53914638D29357C977 (SingleObjectEnumerator_t00B492D3B841924569E3EB466D5675163D6EF62E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_position_1(); if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0012; } } { __this->set_position_1(0); return (bool)1; } IL_0012: { __this->set_position_1(1); return (bool)0; } } // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleObjectEnumerator_Reset_m98858E6483F42729E73D27B42927CD0AC431F81D (SingleObjectEnumerator_t00B492D3B841924569E3EB466D5675163D6EF62E * __this, const RuntimeMethod* method) { { __this->set_position_1((-1)); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTextEncoder_set_QuoteChar_m1897FBEC0EAB4616C3FD961A12AFC0F7ED771824_inline (XmlTextEncoder_tA6BBE279AC4571C495CD910D11CA79B33979ED0E * __this, Il2CppChar ___value0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___value0; __this->set_quoteChar_2(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_stringLength_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * XmlTypeMapElementInfo_get_TypeData_m926B6BA45030F83BEB77AE80F065E79A8558B415_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_0 = __this->get__type_8(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeData_get_XmlType_m79314EDB6142712A3C0EFB1BAE5316BFDD01E088_inline (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_elementName_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_XmlType_m97D3C310989DEA0D8C5DDE2A74BA1866DA7E5C99_inline (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_xmlType_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_MultiReferenceType_m1CC9E9FBF8E50725CD969D26D3547A600E274079_inline (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_multiReferenceType_10(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_ElementName_m1B5D0CAFCC6513CBCFCF1BD3977A519B21C4BFFC_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__elementName_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_ElementName_mD96BF1649FA7885FA25FE2144CB7DC116B194FAB_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set__elementName_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_Namespace_m428970C4B7182555B6636BF9AC3945F634705F69_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set__namespace_1(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_Namespace_mC9E436A358B8900AFDB3C7E5E91002873ACF84B2_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__namespace_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * XmlTypeMapElementInfo_get_ChoiceValue_m76212C3475099487DB1A4BF6AFB9FE3E2C04D8B1_inline (XmlTypeMapElementInfo_t3A7D1AE422820C143D55C7E6FC86AFD8E2236B3A * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get__choiceValue_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * TypeData_get_Type_mE27C48C269E3CC11EDE71C4D9C45B3C51C2B1B3D_inline (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_type_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeData_get_FullTypeName_mFFCC7D2CB2D25AB7EB9FB3B395515A52B19D9A29_inline (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_fullTypeName_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * XmlTypeMapping_get_TypeData_m4087973CAFF6B74AACEDCFF8FCA51E7CD183FD11_inline (XmlTypeMapping_t9036F7EC275C8DEDD6387832CE5C4F83AA6DC581 * __this, const RuntimeMethod* method) { { TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * L_0 = __this->get_type_8(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TypeData_get_SchemaType_m1E1859E6B8F79B692587EB29D4E8E2917F8112D4_inline (TypeData_tB17E29DFB22C7153FB6084744BCE4FC8F91135C2 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_sType_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Name_m919683334C36B7677143103C12A051FACD698095_inline (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_name_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Namespace_m2693E9023068C90F95C47FDB5685F1563ECE0025_inline (XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_ns_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * DatatypeImplementation_get_UntypedAtomicType_mB4B8AE5E88DC7A38C2D2232D533992B225A61AC7_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_il2cpp_TypeInfo_var); XmlSchemaSimpleType_tC0ABB2E0CDA541FB1D3AAF14180DF86A4C25697C * L_0 = ((DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_StaticFields*)il2cpp_codegen_static_fields_for(DatatypeImplementation_t8243B569BC6821FF8A6C2A544BDE1C522A416B15_il2cpp_TypeInfo_var))->get_untypedAtomicType_9(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XmlBaseConverter_get_DefaultClrType_mEF68FF73D1C89C298241F8D7323D7F230DDDFD0C_inline (XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_clrTypeDefault_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * XmlBaseConverter_get_SchemaType_mD3A5F0E824179488B3DF92C29A26D06956B869FE_inline (XmlBaseConverter_t4F695A2F48A15F26227A564201074D2EBF094C55 * __this, const RuntimeMethod* method) { { XmlSchemaType_t390DB79F0EB746B12C400BD1897CDB9F3557FCBA * L_0 = __this->get_schemaType_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocument_get_IsLoading_m3B73B787E62F30F277275598CF50D1258706E681_inline (XmlDocument_t513899C58F800C43E8D78C0B72BD18C2C036233F * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isLoading_20(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_mE4C9E1F27DC794028CEDCF7CB5BD092D16DBACD4_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get__ticks_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimeSpan__ctor_mC80FA729ECA3A7AF31D9F517A95E60FC23EB86B0_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, int64_t ___ticks0, const RuntimeMethod* method) { { int64_t L_0 = ___ticks0; __this->set__ticks_3(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Years_mDA4C69E8DB55C1DD412741A0F47176E4021E2911_inline (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_years_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Months_mAF5B74D40485298A0D9DF45A1FA40E781A40D66F_inline (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_months_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Days_mD221ED31E12AA2286AE4E7E049001EB46067C5DB_inline (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_days_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Hours_m278484E3214644ADD6FA059E2F00CBFB005BE2EC_inline (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_hours_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Minutes_mC7D59F3CB2623050C9F10A98AA485102BAD7B2B5_inline (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_minutes_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XsdDuration_get_Seconds_mBE0DB463333CF0BD75A8671FE51F019760F91D7F_inline (XsdDuration_t38BBF457DA297B81823E3687209291CEDFD6F96F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_seconds_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * HttpWebRequest_get_Address_m8B4240A8AD46F12716B28F8549750BA30D2E368B_inline (HttpWebRequest_tDF8F794F1E3A8A19A63C2B57C1A28A42698BF07A * __this, const RuntimeMethod* method) { { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = __this->get_actualUri_13(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlMapping_get_ElementName_m325D48DC1385A3577E5B4948F1F116861A215CEF_inline (XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__elementName_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlMapping_get_Namespace_mC81A8F368DA39CCD355792888D951BE2A8B21835_inline (XmlMapping_t98D53F12A90FEA32EB59D51D4461C16AE85978F9 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__namespace_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * XmlTextReaderImpl_get_DtdParserProxy_NameTable_mA567221B0BD05C6BF365121EF52549079FF67D9B_inline (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method) { { XmlNameTable_t5A8AA505CA799E0DC25E9815E4106817D2E1E280 * L_0 = __this->get_nameTable_19(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReaderImpl_get_DtdParserProxy_NamespaceResolver_m6A9BA136D735089A09CEB096E0D839AAC7E281FC_inline (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method) { { XmlNamespaceManager_t6A4FCF4236F34CF069932BF51B62FD2E62402465 * L_0 = __this->get_namespaceManager_37(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReaderImpl_get_DtdParserProxy_ValidationEventHandling_m86F807BDC2BEF934D72F2A65FC7F97262735A219_inline (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->get_validationEventHandling_56(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_Normalization_m114C15F2776A94727A5992DB26D65BDC1D670543_inline (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_normalize_23(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_Namespaces_m8D805DAFFE1332B0E23F2D3AE2959A29C8190FD3_inline (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_supportNamespaces_24(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_V1CompatibilityMode_m1B3ACC4435FE2768144414FF216E145916403325_inline (XmlTextReaderImpl_t3273E3D9A69C5BB959CD528E05DB4B3E9215BBB4 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_v1Compat_36(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ParsingState_get_LineNo_m9C32240CFE61AE19697B7C9EFA5DE9B44D3C9610_inline (ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_lineNo_11(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * Task_1_get_Factory_mB06FBCCE06A35CB0562F526C870C8071ADEEC8F3_gshared_inline (const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)); TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 * L_0 = ((Task_1_tC1805497876E88B78A2B0CB81C6409E0B381AC17_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8)))->get_s_Factory_41(); return (TaskFactory_1_t16A95DD17BBA3D00F0A85C5077BB248421EF3A55 *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED ConfiguredTaskAwaitable_1_GetAwaiter_mFCE2327CEE19607ABB1CDCC8A6B145BDCF9820BC_gshared_inline (ConfiguredTaskAwaitable_1_t226372B9DEDA3AA0FC1B43D6C03CEC9111045F18 * __this, const RuntimeMethod* method) { { ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED L_0 = (ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED )__this->get_m_configuredTaskAwaiter_0(); return (ConfiguredTaskAwaiter_t2CE498F9A6CE5405242AE2D77F03E58985B7C3ED )L_0; } }