#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #include struct VirtualActionInvoker0 { 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 VirtualActionInvoker1 { 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); } }; template struct VirtualActionInvoker2 { 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 VirtualActionInvoker3 { 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 VirtualFuncInvoker0 { 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 VirtualFuncInvoker1 { 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 VirtualFuncInvoker2 { 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 VirtualFuncInvoker3 { 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 VirtualFuncInvoker4 { typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; template struct VirtualFuncInvoker6 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, invokeData.method); } }; template struct GenericVirtualActionInvoker1 { 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); } }; 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 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 InterfaceActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void 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); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, 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); } }; template struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, 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 InterfaceFuncInvoker6 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, 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 InvokerActionInvoker2; template struct InvokerActionInvoker2 { static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2) { void* params[2] = { p1, p2 }; method->invoker_method(methodPtr, method, obj, params, NULL); } }; template struct InvokerActionInvoker3; template struct InvokerActionInvoker3 { static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3) { void* params[3] = { p1, p2, p3 }; method->invoker_method(methodPtr, method, obj, params, NULL); } }; // System.Runtime.CompilerServices.ConditionalWeakTable`2 struct ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tEBCC19EF04541DFE092A495F8C364BF917DA466D; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t17D0D125440AC627FCF80F189C6CBCB02856063C; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t129029582481E96143BD747690E92DB7E444261E; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t8E385BAD05584AB244D10E6FAAA2C60FB9BA5F64; // System.Collections.Generic.IComparer`1 struct IComparer_1_tC0A12A847AF97F369A5CE9A0CCE71CE18EE1440E; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t34D541B5FA7B648B0BA88CB13474D1CE66138B8D; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t5D8F69434F54ADB75F5F7E8F5F6C8EE84A3ACC5A; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_tAC5857868E78413258567286465D888874B2985E; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t982B62EC18A65A3F52F0FA723D7A5B51D3EACE44; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t2FCB408F1EB9CA12888AE6E0ACEA3FA995A5DAA3; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t3F2FECD4AC086FD3ABAE5D31881677BABA02B0D0; // System.Collections.Generic.List`1 struct List_1_tF7608B82384542DEB200F8E211D9D36AE02EAB58; // System.Collections.Generic.List`1 struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D; // System.Collections.Generic.List`1 struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD; // System.Collections.Generic.Stack`1 struct Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5; // System.Collections.Generic.Stack`1 struct Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8; // System.Threading.Tasks.Task`1> struct Task_1_tB493F74D58DB1761E087206849D953E99D07600B; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t038245E04B5D2A80048D9F8021A23E69A0C9DBAA; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t8898F5330699C43BF4307CDFD83DB8DC4ED26F1F; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t499BCEBD608E294D297D05F15B0261C6141FF089; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t16158FF974E6076F10354D4F3FC08E7FFF87086F; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_tBA3CDE187BE7665A5798B190605F306816272791; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tD75588C64683EE9F29934F54AF3282733AA0E53A; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t17CE8D8F56CC6F62D77D7826D711AA84E2B46ED0; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tCAC26DCAE98AD40E0B5A1AA16EC1FC8F233ACDE3; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t0C8848FA8C979298F3C182D8EB03570D8FA26FA7; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tD59BF430101A4C2080228ED133FC9737B0A030EE; // System.Byte[] struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031; // System.Char[] struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB; // System.Delegate[] struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; // System.Int32[] struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; // System.IntPtr[] struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832; // System.Object[] struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF; // System.String[] struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248; // System.Type[] struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB; // System.Xml.XmlName[] struct XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC; // System.Xml.DtdParser/ParseElementOnlyContent_LocalFrame[] struct ParseElementOnlyContent_LocalFrameU5BU5D_t611D26D044101E53D04B538C85A8214818CA615B; // System.Collections.Hashtable/bucket[] struct bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587; // System.Xml.NameTable/Entry[] struct EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A; // System.Xml.XmlNamespaceManager/NamespaceDeclaration[] struct NamespaceDeclarationU5BU5D_t4DF48D3A2EB82C491A60E8748DE4BAFAA95A0F60; // System.Xml.XmlTextReaderImpl/NodeData[] struct NodeDataU5BU5D_t1945F048F8DECB62636A155E1182995E8FAA9610; // System.Xml.XmlTextReaderImpl/ParsingState[] struct ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29; // System.ArgumentException struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263; // System.ArgumentNullException struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F; // System.Collections.ArrayList struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A; // System.Xml.BinHexDecoder struct BinHexDecoder_tB77546D79B7899F37DF674F845BC5FB69A8EF02E; // System.Reflection.Binder struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235; // System.Globalization.Calendar struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B; // System.Globalization.CodePageDataItem struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2; // System.Globalization.CompareInfo struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57; // System.Xml.Schema.ContentValidator struct ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE; // System.Globalization.CultureData struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D; // System.Globalization.CultureInfo struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A; // System.Text.Decoder struct Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC; // System.Text.DecoderFallback struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90; // System.Text.DecoderFallbackBuffer struct DecoderFallbackBuffer_t02E41C0BEC894A17CFE1A1FE88A2388DFDA05A73; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E; // System.Xml.DomNameTable struct DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45; // System.Xml.DtdParser struct DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53; // System.Xml.EmptyEnumerator struct EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA; // System.Text.EncoderFallback struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293; // System.Text.Encoding struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095; // System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2; // System.EventArgs struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377; // System.Exception struct Exception_t; // System.Collections.Hashtable struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D; // System.Collections.ICollection struct ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E; // System.Net.ICredentials struct ICredentials_t8FDA6AF64B852DA0631D4BE66962B20E51E230F0; // System.Collections.IDictionary struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220; // System.Xml.IDtdDefaultAttributeInfo struct IDtdDefaultAttributeInfo_t57776183C360FBC7DA2F7A2829C62E8D59C61613; // System.Xml.IDtdEntityInfo struct IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27; // System.Xml.IDtdInfo struct IDtdInfo_tD6983F7C3E35C4997BE28F42ED50EF866DAE14F8; // System.Xml.IDtdParser struct IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B; // System.Xml.IDtdParserAdapter struct IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311; // System.Xml.IDtdParserAdapterWithValidation struct IDtdParserAdapterWithValidation_tC370E742FC1C08EECE2E2741D97D6985EF1ED347; // System.Collections.IEnumerator struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA; // System.Collections.IEqualityComparer struct IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1; // System.IFormatProvider struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52; // System.Xml.IValidationEventHandling struct IValidationEventHandling_t5929D7539D965D446556F7740F36A2BF7C6CC57E; // System.Net.IWebProxy struct IWebProxy_t3ECD2C773539B48B18734D61E87B685A9C93076D; // System.Xml.IXmlNamespaceResolver struct IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1; // System.Xml.Schema.IXmlSchemaInfo struct IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB; // System.Xml.IncrementalReadDecoder struct IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B; // System.Xml.IncrementalReadDummyDecoder struct IncrementalReadDummyDecoder_t514FBAC6CC3FF737F6EAF3AF3523D89A933DAB86; // System.IndexOutOfRangeException struct IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82; // System.InvalidOperationException struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB; // System.Reflection.MemberFilter struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Xml.NameTable struct NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472; // System.Xml.Schema.ParticleContentValidator struct ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF; // System.Xml.Schema.Positions struct Positions_tA1718BCD59D1E183041E480D7602A5DF38182B4B; // System.Net.Cache.RequestCachePolicy struct RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6; // System.Xml.Schema.SchemaAttDef struct SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553; // System.Xml.Schema.SchemaDeclBase struct SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B; // System.Xml.Schema.SchemaElementDecl struct SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD; // System.Xml.Schema.SchemaEntity struct SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7; // System.Xml.Schema.SchemaInfo struct SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E; // System.Xml.Schema.SchemaNotation struct SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2; // System.Collections.SortedList struct SortedList_t847331629BA06B518F1B5203BD22B59746EDDBF3; // System.Collections.Stack struct Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47; // System.IO.Stream struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE; // System.String struct String_t; // System.Text.StringBuilder struct StringBuilder_t; // System.IO.StringReader struct StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8; // System.Xml.Schema.SymbolsDictionary struct SymbolsDictionary_t6294BD40672E01F1C87B524AE88C84A267C78CF3; // System.Xml.Schema.SyntaxTreeNode struct SyntaxTreeNode_t1165A00492617EF072B11DECC26AA0AA3BF72EBE; // System.Globalization.TextInfo struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4; // System.IO.TextReader struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7; // System.Type struct Type_t; // System.Uri struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E; // System.UriParser struct UriParser_t920B0868286118827C08B08A15A9456AF6C19D81; // System.Xml.Schema.ValidationEventHandler struct ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A; // System.Void struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915; // System.WeakReference struct WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E; // System.Xml.XmlAttribute struct XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18; // System.Xml.XmlAttributeCollection struct XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0; // System.Xml.XmlCDataSection struct XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA; // System.Xml.XmlCharacterData struct XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B; // System.Xml.XmlChildEnumerator struct XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939; // System.Xml.XmlChildNodes struct XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2; // System.Xml.XmlComment struct XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9; // System.Xml.XmlDeclaration struct XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79; // System.Xml.XmlDocument struct XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B; // System.Xml.XmlDocumentFragment struct XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD; // System.Xml.XmlDocumentType struct XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E; // System.Xml.XmlElement struct XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1; // System.Xml.XmlEntity struct XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE; // System.Xml.XmlEntityReference struct XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684; // System.Xml.XmlException struct XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596; // System.Xml.XmlImplementation struct XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D; // System.Xml.XmlLinkedNode struct XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C; // System.Xml.XmlLoader struct XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D; // System.Xml.XmlName struct XmlName_t0704430D24D202146901D342E34D878246E14F33; // System.Xml.XmlNameEx struct XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947; // System.Xml.XmlNameTable struct XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8; // System.Xml.XmlNamedNodeMap struct XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C; // System.Xml.XmlNamespaceManager struct XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F; // System.Xml.XmlNode struct XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF; // System.Xml.XmlNodeChangedEventArgs struct XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A; // System.Xml.XmlNodeChangedEventHandler struct XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B; // System.Xml.XmlNodeList struct XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85; // System.Xml.XmlNotation struct XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D; // System.Xml.XmlParserContext struct XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B; // System.Xml.XmlProcessingInstruction struct XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3; // System.Xml.XmlQualifiedName struct XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9; // System.Xml.XmlReader struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD; // System.Xml.XmlReaderSettings struct XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA; // System.Xml.XmlResolver struct XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF; // System.Xml.Schema.XmlSchemaAnyAttribute struct XmlSchemaAnyAttribute_t2674CD673C9358AEDF1F318A8CF5DE9EB01AF601; // System.Xml.Schema.XmlSchemaAttribute struct XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F; // System.Xml.Schema.XmlSchemaCompilationSettings struct XmlSchemaCompilationSettings_tAD528503343C490A9030FEF019E313661390249C; // System.Xml.Schema.XmlSchemaDatatype struct XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D; // System.Xml.Schema.XmlSchemaElement struct XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970; // System.Xml.Schema.XmlSchemaException struct XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B; // System.Xml.Schema.XmlSchemaInfo struct XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B; // System.Xml.Schema.XmlSchemaObject struct XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D; // System.Xml.Schema.XmlSchemaSet struct XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1; // System.Xml.Schema.XmlSchemaSimpleType struct XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8; // System.Xml.Schema.XmlSchemaSimpleTypeContent struct XmlSchemaSimpleTypeContent_t84C9B4F059E687FBF7845373F5A6B2795F982091; // System.Xml.Schema.XmlSchemaType struct XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF; // System.Xml.XmlSignificantWhitespace struct XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE; // System.Xml.XmlText struct XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A; // System.Xml.XmlTextReader struct XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B; // System.Xml.XmlTextReaderImpl struct XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B; // System.Xml.XmlUnspecifiedAttribute struct XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC; // System.Xml.XmlUrlResolver struct XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E; // System.Xml.XmlWhitespace struct XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24; // System.Xml.DtdParser/ParseElementOnlyContent_LocalFrame struct ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8; // System.Xml.DtdParser/UndeclaredNotation struct UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E; // System.Xml.NameTable/Entry struct Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05; // System.Uri/UriInfo struct UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09; // System.Xml.XmlQualifiedName/HashCodeOfStringDelegate struct HashCodeOfStringDelegate_t25F1FA9B737C4313ED341BA7AAB31694DC3669DA; // System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer struct DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1; // System.Xml.XmlTextReaderImpl/DtdParserProxy struct DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3; // System.Xml.XmlTextReaderImpl/LaterInitParam struct LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6; // System.Xml.XmlTextReaderImpl/NoNamespaceManager struct NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4; // System.Xml.XmlTextReaderImpl/NodeData struct NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF; // System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate struct OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499; // System.Xml.XmlTextReaderImpl/XmlContext struct XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE; // System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator struct SingleObjectEnumerator_t4A92C1B8B2E37167742E12C10D13D6B3D6124D91; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DtdValidator_tF916F1805E2290242B688583602409378173CF17_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Enumerator_t42F4E0E4BE9FD853E9D5EE3D3B048C8C08ECCD28_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdDefaultAttributeInfo_t57776183C360FBC7DA2F7A2829C62E8D59C61613_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdParserAdapterV1_t92703F78527FE332BF3631B8374DC793D1E82E6D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdParserAdapterWithValidation_tC370E742FC1C08EECE2E2741D97D6985EF1ED347_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IValidationEventHandling_t5929D7539D965D446556F7740F36A2BF7C6CC57E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Il2CppComObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SingleObjectEnumerator_t4A92C1B8B2E37167742E12C10D13D6B3D6124D91_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ValidateNames_tC1994E2C538F499DFEBBA2705010DC4C770E7598_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlName_t0704430D24D202146901D342E34D878246E14F33_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD; IL2CPP_EXTERN_C String_t* _stringLiteral010415DFD810DA785E5CD8173EA9688EDA5E73FE; IL2CPP_EXTERN_C String_t* _stringLiteral025C1ECF21AD54C7CC6639C629602C3F7FE62FAA; IL2CPP_EXTERN_C String_t* _stringLiteral033D1A6AEAFA549F3817926A246C7A61244A174C; IL2CPP_EXTERN_C String_t* _stringLiteral035877D5564A6EA6B11C79A48808B85A323C2F5C; IL2CPP_EXTERN_C String_t* _stringLiteral044BADD70F84141B60AE555B5513ABA7D660F738; IL2CPP_EXTERN_C String_t* _stringLiteral06C6EF334A248557A31ACC1740CAA2A6A788ECD5; IL2CPP_EXTERN_C String_t* _stringLiteral07624473F417C06C74D59C64840A1532FCE2C626; IL2CPP_EXTERN_C String_t* _stringLiteral09B11B6CC411D8B9FFB75EAAE9A35B2AF248CE40; IL2CPP_EXTERN_C String_t* _stringLiteral10E3A7873DD45D61AB6068175777B54A049F04A1; IL2CPP_EXTERN_C String_t* _stringLiteral11834E4FA4D4CDE4FFF1896BC2B609DB8CBF216A; IL2CPP_EXTERN_C String_t* _stringLiteral1608C82B466107946B52772199E59009D15CA084; IL2CPP_EXTERN_C String_t* _stringLiteral168C49673280639EC773D92BF193FBACAED8BF52; IL2CPP_EXTERN_C String_t* _stringLiteral1710B4477A01FFE20514D8AA61891F364D71C25B; IL2CPP_EXTERN_C String_t* _stringLiteral17372CA6EE06884491DF8D3AEFE02DC203DF0717; IL2CPP_EXTERN_C String_t* _stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29; IL2CPP_EXTERN_C String_t* _stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91; IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745; IL2CPP_EXTERN_C String_t* _stringLiteral265063C5E5B7055CDC527A6D234A14747DC2D71E; IL2CPP_EXTERN_C String_t* _stringLiteral26E478A40A804C5FF9FB7A90DCD4F5E8539E8E38; IL2CPP_EXTERN_C String_t* _stringLiteral26FEE84CC21450278EF3064F22658C1FBAD97632; IL2CPP_EXTERN_C String_t* _stringLiteral292FFF1AFC6A39FAE710753C820C4EC3DD0D4613; IL2CPP_EXTERN_C String_t* _stringLiteral29988D0F9BCADFABFF66CBF5AB73096D1CAE3128; IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1; IL2CPP_EXTERN_C String_t* _stringLiteral2E08A69B160B273B33CB600405C55F98F76617CC; IL2CPP_EXTERN_C String_t* _stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7; IL2CPP_EXTERN_C String_t* _stringLiteral30C13821C826B173FCA1891444657D393513F574; IL2CPP_EXTERN_C String_t* _stringLiteral324ECCE6E181944A23FC9126AE81680CA09C93D4; IL2CPP_EXTERN_C String_t* _stringLiteral34202956739DA5FD8C25F589724F7651D367199C; IL2CPP_EXTERN_C String_t* _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917; IL2CPP_EXTERN_C String_t* _stringLiteral35B44AA64754DEDC52915E7F763C081CF5B004D9; IL2CPP_EXTERN_C String_t* _stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0; IL2CPP_EXTERN_C String_t* _stringLiteral3A0F3831F5DAFB45C7CF0BE8E3E631BFEE684F0D; IL2CPP_EXTERN_C String_t* _stringLiteral3AFC0DE819870B50AA0F59F4823CD7064A39BC72; IL2CPP_EXTERN_C String_t* _stringLiteral3C67F6F3D5AD1DF5DD1E3B7F8583419767796154; IL2CPP_EXTERN_C String_t* _stringLiteral412CDD51CEFF0076D98025A6A06AA2AF9F83EF80; IL2CPP_EXTERN_C String_t* _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5; IL2CPP_EXTERN_C String_t* _stringLiteral41EF1659C5E772235CFEA4B5A94D5DF6799C5608; IL2CPP_EXTERN_C String_t* _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE; IL2CPP_EXTERN_C String_t* _stringLiteral423005E70CFADA0548835DDF582542DD5BDCFBD3; IL2CPP_EXTERN_C String_t* _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D; IL2CPP_EXTERN_C String_t* _stringLiteral427B5CD0C06701810B3C126A307EAE3A6260A3C9; IL2CPP_EXTERN_C String_t* _stringLiteral44C14DBC6A9EE22DDA5FE2FABA5577B801DFAD89; IL2CPP_EXTERN_C String_t* _stringLiteral465E30F3D21D06E0DA20D8DA61A1DEC0DAB8C6A5; IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8; IL2CPP_EXTERN_C String_t* _stringLiteral4760011519A4AB7E8521F6795430114E80AA83E4; IL2CPP_EXTERN_C String_t* _stringLiteral49457BCC8BD0CC8C758CAB29E29AAC6EE6A36D9A; IL2CPP_EXTERN_C String_t* _stringLiteral4F04E415359BAAEA12C3DA482EAACC98D2F7EDC8; IL2CPP_EXTERN_C String_t* _stringLiteral501B98A6E74F1C51225E59A5DAE2EE433B125499; IL2CPP_EXTERN_C String_t* _stringLiteral50F39E434D2F5790A2F8998AC61DFE974815FC8C; IL2CPP_EXTERN_C String_t* _stringLiteral513659CEF285C73478E9829E41D7E4C23DB53E12; IL2CPP_EXTERN_C String_t* _stringLiteral52E7AA29D33516D76AAE995603260C880821A398; IL2CPP_EXTERN_C String_t* _stringLiteral5591FEB8D450C0589982D61E5715CF6270C18952; IL2CPP_EXTERN_C String_t* _stringLiteral59EB542A9E6EFCBFACCAE7DFE982B1F399E566DA; IL2CPP_EXTERN_C String_t* _stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84; IL2CPP_EXTERN_C String_t* _stringLiteral5BAA302A400A1B9C6F712ED9DBE1D7010A5034BF; IL2CPP_EXTERN_C String_t* _stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B; IL2CPP_EXTERN_C String_t* _stringLiteral5EA907DF837264718D0DC8D41DDEAFB889AC5C57; IL2CPP_EXTERN_C String_t* _stringLiteral601E51A43FF6581ACBC417FEE88AE4098CBBB1A4; IL2CPP_EXTERN_C String_t* _stringLiteral6A27EFA262531B73C56149281CD01E877253B609; IL2CPP_EXTERN_C String_t* _stringLiteral6AB660E1248762B48B0356F19FC1CB2FC99F1ABF; IL2CPP_EXTERN_C String_t* _stringLiteral6BF61ABC5F7B64F3477624AFB1B9EBB636A0543B; IL2CPP_EXTERN_C String_t* _stringLiteral6C370F917A6284F4D431AD8EB3AD2C86D406AB52; IL2CPP_EXTERN_C String_t* _stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB; IL2CPP_EXTERN_C String_t* _stringLiteral6CF85EA4A9725419E00C90B0EC2DCE10FD2E8CE7; IL2CPP_EXTERN_C String_t* _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044; IL2CPP_EXTERN_C String_t* _stringLiteral7180DA204588CF41B56FA236B1DEFF0D3CB61C60; IL2CPP_EXTERN_C String_t* _stringLiteral725B1CAFF9B49E1231FDA15B85166BBEFAA36A11; IL2CPP_EXTERN_C String_t* _stringLiteral72AA82468046288272E323F13B397B70AFA72BDD; IL2CPP_EXTERN_C String_t* _stringLiteral72B68EC7EE16DACDB68DF6B1DB68A228CDEC0C10; IL2CPP_EXTERN_C String_t* _stringLiteral744DBAE461E32AD381B1A38CE73D4E473E600816; IL2CPP_EXTERN_C String_t* _stringLiteral791879DECB3477AD61FF2F50186DCF089516C2FA; IL2CPP_EXTERN_C String_t* _stringLiteral798FAE79042022F0E20CDBB3AD4A4E26A3AA7677; IL2CPP_EXTERN_C String_t* _stringLiteral7A7B03EDCCEC1AA676CFA2D7002A577C44FC6A13; IL2CPP_EXTERN_C String_t* _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49; IL2CPP_EXTERN_C String_t* _stringLiteral7CA3591A74B899B2FB7AAADBB9C6AA9722CD2C06; IL2CPP_EXTERN_C String_t* _stringLiteral7CCE57C5D7E1EEE86D308C81EAB8B71D0964327F; IL2CPP_EXTERN_C String_t* _stringLiteral7E813A351BDAF588C5F27BAF94CA6FA9357A2BD3; IL2CPP_EXTERN_C String_t* _stringLiteral7FF349F9C3C625219F1F7A7D29EEEF01064CD1C1; IL2CPP_EXTERN_C String_t* _stringLiteral81C6A150C740E85EF7BDB2DE76CBED7BCCC3797F; IL2CPP_EXTERN_C String_t* _stringLiteral831ED6EC0D1759EC26A1E876BA9836719586C6D1; IL2CPP_EXTERN_C String_t* _stringLiteral83B3ACB1C0AB14BABA0BD386F8695E096686811C; IL2CPP_EXTERN_C String_t* _stringLiteral83B75ABE2D6148C9AF405ED548AE801DC19C6A02; IL2CPP_EXTERN_C String_t* _stringLiteral84B787B593EEF7C3B662B25A9ACCB9A9CF164BDB; IL2CPP_EXTERN_C String_t* _stringLiteral85E61EF83FCD7B08C40AA3B100CA8FC4B41A934C; IL2CPP_EXTERN_C String_t* _stringLiteral872479F10B4968F255B608A3698CA1A7EE09888B; IL2CPP_EXTERN_C String_t* _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D; IL2CPP_EXTERN_C String_t* _stringLiteral88FE25385F8BFC1F8C027A8AD8AECE97C41561D6; IL2CPP_EXTERN_C String_t* _stringLiteral893D84FF4ED81AC205FBC0C67CBEE1C0C752B406; IL2CPP_EXTERN_C String_t* _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA; IL2CPP_EXTERN_C String_t* _stringLiteral8B0ED13848CE950B6978D8664D9AA86276D1D7EC; IL2CPP_EXTERN_C String_t* _stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E; IL2CPP_EXTERN_C String_t* _stringLiteral8DF28038BAE3947FE2A10B2562359E7D3A2BF989; IL2CPP_EXTERN_C String_t* _stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48; IL2CPP_EXTERN_C String_t* _stringLiteral93B59C6870171FCFAA8A0D2F3A21C5B0CEFC7FDD; IL2CPP_EXTERN_C String_t* _stringLiteral93D87E1629A331F43CB25BB3CFE69C4D3418FA7E; IL2CPP_EXTERN_C String_t* _stringLiteral951CCB49640C8F9E81FB4E0D82730321F4E15BB3; IL2CPP_EXTERN_C String_t* _stringLiteral9581D9240473127371BCEE2DE4DB4A276F510956; IL2CPP_EXTERN_C String_t* _stringLiteral96930EC8C6FD5250BB36A5E1040AB06A9588FD62; IL2CPP_EXTERN_C String_t* _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694; IL2CPP_EXTERN_C String_t* _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3; IL2CPP_EXTERN_C String_t* _stringLiteralA02A8489B78BE60779EEA12413113D4FBC8C5E36; IL2CPP_EXTERN_C String_t* _stringLiteralA2ADAC70CFE2DCB556D061A93CBD008778646655; IL2CPP_EXTERN_C String_t* _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73; IL2CPP_EXTERN_C String_t* _stringLiteralA42779B09629BCE81B76EF626A57A0B40F2AD827; IL2CPP_EXTERN_C String_t* _stringLiteralA5D214974A6E3CCDE1B595EE7A016D3FEA5FAA61; IL2CPP_EXTERN_C String_t* _stringLiteralA73D573DF83D11DB88B9E63E9DF538F46194507D; IL2CPP_EXTERN_C String_t* _stringLiteralA849558816A84F373F471C0275248DA08F91A4A6; IL2CPP_EXTERN_C String_t* _stringLiteralA98C4EB777C388F69EC48A492C07DBBBEBF41DC1; IL2CPP_EXTERN_C String_t* _stringLiteralAFB36F69DD323FF604AB5F1235E31F803043EA10; IL2CPP_EXTERN_C String_t* _stringLiteralB04A560846A93D4D813C44EFBD0968D2875C5049; IL2CPP_EXTERN_C String_t* _stringLiteralB080109AD5D6C864D18C1BFD1A3B9116504CCC72; IL2CPP_EXTERN_C String_t* _stringLiteralB0AADDDCB10777660C04FFF62EE090971E9CB5CA; IL2CPP_EXTERN_C String_t* _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D; IL2CPP_EXTERN_C String_t* _stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05; IL2CPP_EXTERN_C String_t* _stringLiteralB77C51162F9B76C1135D72465C09B899FF505927; IL2CPP_EXTERN_C String_t* _stringLiteralB8592558A3214B8F63A256B8806C4A8EF96EF5FB; IL2CPP_EXTERN_C String_t* _stringLiteralB9895E6DD32A29F645457E316DC78EBC804C2C86; IL2CPP_EXTERN_C String_t* _stringLiteralBA35549D8219B5F5409D55485656844283EB1A95; IL2CPP_EXTERN_C String_t* _stringLiteralBE8285B3FBB68E69672F471D9C7CD01AFC710E52; IL2CPP_EXTERN_C String_t* _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158; IL2CPP_EXTERN_C String_t* _stringLiteralC3304C21E7F8F3D25BF870F3A00FB0D196C695E5; IL2CPP_EXTERN_C String_t* _stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC; IL2CPP_EXTERN_C String_t* _stringLiteralC5D6C64CCB50E5090409E08FDF71792E4E9A8F6D; IL2CPP_EXTERN_C String_t* _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677; IL2CPP_EXTERN_C String_t* _stringLiteralC7A4DCEE2BCE29D8E3625DA7D1C87881873A907C; IL2CPP_EXTERN_C String_t* _stringLiteralC84E568C2748F9FEA10B49CBF3076D4B6DA24940; IL2CPP_EXTERN_C String_t* _stringLiteralCA5E1CA6F7C4B79C4153E5E7A887FD406FDC5545; IL2CPP_EXTERN_C String_t* _stringLiteralCDFFBF7695883D821E64C727304FFE2682330A22; IL2CPP_EXTERN_C String_t* _stringLiteralCE6A4511D58A9B6C235D9E76F3BADFD11EFD8892; IL2CPP_EXTERN_C String_t* _stringLiteralCF06C8F24964E50FF1069A8CEE33E689908FFB7E; IL2CPP_EXTERN_C String_t* _stringLiteralD0CFC77D43A44B5A4A2B697D7DB3704358153834; IL2CPP_EXTERN_C String_t* _stringLiteralD120A25823B4E6A16F847243FD4B4494D53A017C; IL2CPP_EXTERN_C String_t* _stringLiteralD259EE6AB580E33090940BF472020FA738C8617A; IL2CPP_EXTERN_C String_t* _stringLiteralD27E638C5F6B34DE55DDC1E7B33B6C164CB88CAC; IL2CPP_EXTERN_C String_t* _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052; IL2CPP_EXTERN_C String_t* _stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560; IL2CPP_EXTERN_C String_t* _stringLiteralD515C8E4D2BD0B64EE134AD25058BE95BF0175BC; IL2CPP_EXTERN_C String_t* _stringLiteralD5750306EEF268CDF7C94C9DB0356DB272D8B5C1; IL2CPP_EXTERN_C String_t* _stringLiteralD5CF37169D518173369F326C4BECA4FF192E3DF4; IL2CPP_EXTERN_C String_t* _stringLiteralD93DDB9BA74539B5989A13715EBB5158C4B43486; IL2CPP_EXTERN_C String_t* _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1; IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; IL2CPP_EXTERN_C String_t* _stringLiteralDB06DE16F44A88CD00ED1FDBEB9E9BFE0F4D1C2A; IL2CPP_EXTERN_C String_t* _stringLiteralDB28C3D7E7F56FAA480CEF9C7D0E3BF741423901; IL2CPP_EXTERN_C String_t* _stringLiteralDE9AA762B72BCD6BE256CC115B658BDBC21C36EA; IL2CPP_EXTERN_C String_t* _stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2; IL2CPP_EXTERN_C String_t* _stringLiteralE280D065A824A791F8305234D3E093FC9A5A90C7; IL2CPP_EXTERN_C String_t* _stringLiteralE37FDA7277F15534CECEDAEFDA7350672DC07A1D; IL2CPP_EXTERN_C String_t* _stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6; IL2CPP_EXTERN_C String_t* _stringLiteralE9BAFB0222941360F2752ADB95BF13DFDF07C373; IL2CPP_EXTERN_C String_t* _stringLiteralECBDA2D88A8582D98728DD584F3E41B98CC4893D; IL2CPP_EXTERN_C String_t* _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331; IL2CPP_EXTERN_C String_t* _stringLiteralEF5E4E7AE49599D22FDECF4CBDE50AE7C9C1DD38; IL2CPP_EXTERN_C String_t* _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5; IL2CPP_EXTERN_C String_t* _stringLiteralF011FDE885C7455F8FB042D3EC51AFA0D2624878; IL2CPP_EXTERN_C String_t* _stringLiteralF270172D9DCB1A35388598EC124CE3AE08AC3E54; IL2CPP_EXTERN_C String_t* _stringLiteralF2F28D0DCD35D90C0A1A591C99FD816AC6E36CB9; IL2CPP_EXTERN_C String_t* _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D; IL2CPP_EXTERN_C String_t* _stringLiteralF3FED9B982102FDD475F39E2487268020045A46E; IL2CPP_EXTERN_C String_t* _stringLiteralF67CF5B59E32B552C2C143E0A3990B9794C84DA7; IL2CPP_EXTERN_C String_t* _stringLiteralF6C0C11953123BBAC57A7E215512C2CA4CF68520; IL2CPP_EXTERN_C String_t* _stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21; IL2CPP_EXTERN_C String_t* _stringLiteralFD8C61EC8DBC1376295F70EFEF4B5FDF50F09FBE; IL2CPP_EXTERN_C const RuntimeMethod* BinHexDecoder_Decode_m4602ECA3CC85D2D02553D6EC003FB3D6F9282A2B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* BinHexDecoder_Decode_m8444AE034602DD90BF3FCA1E311A62A2EDDDE178_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* BinHexDecoder_Decode_mBA6DD74F0DA913E291317A519069F0AA61E9EF76_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* BinHexEncoder_Encode_m81FC286D1A9025C6406DEA5DA7F23ED6D9164D53_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m0BD19F784F1A789C4FE92B64782BE1667D25902B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m1BD6D03E43DE090315E2B473EC6665083565F73E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m889D62A946A279647B91BF4A4D8B1B2C4DBBCDF3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_mF9A60D8A0C976AFEE10941219915771AE92C4AA2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_mA166669C5531C48393C18457E76480F075E923CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_mE95F6F2001E3CA07C37D145E3D22F9A261874206_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_mB2F07FA4420E7E08C4E8C50C4FB940647EE584AA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m1E37C29A7B6036E5D212EDE08E94808C0020EE55_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m620783E54E80B6F38403C978D1134BC1613768B2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m0691587A5208D87AFCC3DD80D1AF2FC784239F01_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mF8AA7901FEFABA7D6FCE95EB586FD42E58B1F0A7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mE03838E6B9827A6EFC4AF300FBEFAEFECFC20210_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Values_m7BA818B29BA9A89901482C6D5E24DAFD8495DBAA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Values_mA410F24C86421E016F25DFE10F06ED2CC94E8279_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Values_mD416BBB037BD250D7C597A72EB36BB50CD033DC6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DtdDefaultAttributeInfoToNodeDataComparer_Compare_m2429249F0018AC286655A7D6301AB2B5A36791DB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* DtdParser_InitializeFreeFloatingDtd_m1508B91CB75E55A064D4DC2EC796EF2B35785B13_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EmptyEnumerator_System_Collections_IEnumerator_get_Current_m7F54B324E8E3410019E56521EE61CF97A7CED9B5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m8ED1DCC22330B97D3DD70AD4094E53E84535AF06_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m9C22E03CBE0A5943CB4EEED769A719610719A106_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mE25067D838FB5D1F613D8A1D7743D120ADB5BF1A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m2039C64E26497D750FE7545A20B128FDB78A87BC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m3D12963AA9A1E78352AD17756F85E7F8E0281CAA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mFB28D9AB4BB5B94192AFBCF8727A992DD8A3EA23_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m5F4A12451C66B8106D041A8FDF9254A9B563E0DB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mAD814A76564116AD71DFC76D3FCAF39F2A454DF2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mBB1E0A2F071C3C58AD52810FA1C157F300EB85FF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_m359254483BE42CAD4DCA8FBAFB87473FB4CF00E1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NameTable_Add_m5ACB3656DCB4016DAA199A6CC1ACEF6E6B01F363_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* NameTable_Get_m3E92F325593978B474D3BDF7E2DCEC77DEA956D8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SingleObjectEnumerator_get_Current_m465597EB2D9DBFBDA23A03FDB233FAEDA88E9BAF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlNodeList_Insert_m8DCFF8C4C69AAA8B19C891D4A7304EA420946344_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlNodeList_RemoveAt_m36308613FA8129C77990E7650BB0A1CE49ABC882_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Peek_m0C074AC550A3838F3407E0C3699055604445DB7A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_mB31BECBC0F3FF13AE5D0EC3C5F3738DBCA64F93D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_m5E3D559C3BC63ADA67D5F6B8574A292AA3703C70_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_m859E9CA447DBF5EE9DD9D0ECDBDA9D98D49CD0CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_get_Count_mF5D38961851C67F431DDC6AA9FA9BC2BE63DBE2A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_GetEnumerator_m5C66A03B215EDB5E0833880DC07DA5A2C6283A0A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_GetEnumerator_mABC01CB19F774F69E736CCAB8E79BFEFC3702C8C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_GetEnumerator_mDF1A568A63118C3FCC8962A66BFF7CA4FD701F63_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAttributeCollection_Append_mF5AFDC3C4547DA089353B76241A5B46437CA8484_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAttributeCollection_SetNamedItem_m6FD982A7ED3D6A1148184B682A1382BFFFE25C2B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAttributeCollection_get_ItemOf_m8F968C39C03DFEB9998B2122F4A26B76B1DB2EDB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlAttribute__ctor_m5043E9D85560FDFE80DED6438F97110608F1393B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlChildEnumerator_get_Current_m149208EFC92AEDC42F82839102B3D5F017DA4C46_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlDeclaration__ctor_mBAEA7104B9DA9F3DAE632B9063BF96BF6A40B116_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlDeclaration_set_Standalone_m867389C9FBF0064E3FDA7EBDEAD4CF30E84F49C2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlDocumentFragment__ctor_m5DFF7FEE2576ED62871EDD2EE4B03279630D1BC2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlDocument_AppendChildForLoad_m9159EA6AC056C417AB1B80C23C770341FB454D22_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlDocument_CheckName_mD87B320087DABFF0D226204D89BDF67AC323BB5A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlDocument_ImportNodeInternal_m7E70DD674E7D0CB39DC6F14B5E806AE284E9C17B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlDocument_IsValidChildType_m9140E7E6187566178EBF6F505125509D5EDC9AC9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlElement_SetAttributeNode_mE0B17D7E755A784A25152EAF2B67C5B45FB0698E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlElement__ctor_m44A8D5841FC2F1A5ACC6A03DD0ACA9AB37300588_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlEntityReference__ctor_m7AAF0A5672B04060ECEAFAB3DF7E93DA8A7B6A94_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlEntity_CloneNode_m98D079EB599F50756351086C356E6010C0283C49_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlEntity_set_InnerXml_m0EFAA9C52B2F23F483E6F135D920BC04F46D19A1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlLoader_ExpandEntityReference_m99D6DCC2F0FA00E28E73698D333FCC12EFCA7B2F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlLoader_LoadAttributeNode_mD21D3FF205915C01F5EAA89291E816AEDE5E8567_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlLoader_LoadDocumentType_mC301F9962BC7D2F1134EDE1CD6D71D2EE68E9247_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlLoader_LoadNodeDirect_m2C0D5301FFB96CA298EF768E2CE903B6C6D459B7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlLoader_LoadNode_mDFD824F250FA615C734180BF6141A472610F7E68_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlLoader_Load_m3B85C836D8C6DE323B85E868DED6E8E36D56C124_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlNode_AppendChild_mABBDB6DB312AE2C3D643F91CA400745ED4317E61_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlNode_GetEventArgs_m2D6DA637B26DD91794FE79C7612A02FDCB90E2F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlNode_RemoveChild_mC3FD98E0F9D7CF77B7CA309E39E67CB5128EFB6D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlNode__ctor_m4EBED07EBE4C8D8191BE58A23594E381A8E43DCA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlNode_set_InnerXml_m9BB7FDC3294F63F301B8C3CEF9299B0422EE1E99_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlNotation_CloneNode_m80D1F12EC01AB84F1B7FBE736BE186E37EABA50B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlNotation_set_InnerXml_m622282FD814F18EAABCF209E0D94BEE3027C6708_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlParserContext__ctor_mC64E56EF024288949DD69AE5F8620E5BE7BCA561_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReaderSettings_set_ConformanceLevel_m5D9CF37D9B4EC2E5E82B40A52BC07E2062BA1A76_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReaderSettings_set_DtdProcessing_mDC4E1119E3381F9C237565E3FFFC5B2CFF7C0043_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReaderSettings_set_MaxCharactersFromEntities_m717EF5BB122D0875DA5A4CBB4AC7BCE649B0910E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReaderSettings_set_MaxCharactersInDocument_m507F7669F33FBE7BC790E84058206529099F5054_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlReader_CalcBufferSize_mC82D99C2F221E3BE45FBCF3FE498F304B29DE78A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSignificantWhitespace__ctor_mCE8AE4FC827464B5A5A54191D5D62E2AF41E078F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlWhitespace__ctor_m95E6CA1AFEECB5C1B3EDDAA039864BDF315FD0AE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_0_0_0_var; struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com; struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke; struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com; struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031; struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB; struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248; struct XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC; struct EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A; 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 // struct U3CModuleU3E_t4791F64F4B6411D4D033A002CAD365D597AA2451 { }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1 : public RuntimeObject { // System.Int32[] System.Collections.Generic.Dictionary`2::_buckets Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::_entries EntryU5BU5D_tD75588C64683EE9F29934F54AF3282733AA0E53A* ____entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::_count int32_t ____count_2; // System.Int32 System.Collections.Generic.Dictionary`2::_freeList int32_t ____freeList_3; // System.Int32 System.Collections.Generic.Dictionary`2::_freeCount int32_t ____freeCount_4; // System.Int32 System.Collections.Generic.Dictionary`2::_version int32_t ____version_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_t5D8F69434F54ADB75F5F7E8F5F6C8EE84A3ACC5A* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_t8898F5330699C43BF4307CDFD83DB8DC4ED26F1F* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698 : public RuntimeObject { // System.Int32[] System.Collections.Generic.Dictionary`2::_buckets Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::_entries EntryU5BU5D_t17CE8D8F56CC6F62D77D7826D711AA84E2B46ED0* ____entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::_count int32_t ____count_2; // System.Int32 System.Collections.Generic.Dictionary`2::_freeList int32_t ____freeList_3; // System.Int32 System.Collections.Generic.Dictionary`2::_freeCount int32_t ____freeCount_4; // System.Int32 System.Collections.Generic.Dictionary`2::_version int32_t ____version_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_tAC5857868E78413258567286465D888874B2985E* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_t499BCEBD608E294D297D05F15B0261C6141FF089* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1 : public RuntimeObject { // System.Int32[] System.Collections.Generic.Dictionary`2::_buckets Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::_entries EntryU5BU5D_tCAC26DCAE98AD40E0B5A1AA16EC1FC8F233ACDE3* ____entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::_count int32_t ____count_2; // System.Int32 System.Collections.Generic.Dictionary`2::_freeList int32_t ____freeList_3; // System.Int32 System.Collections.Generic.Dictionary`2::_freeCount int32_t ____freeCount_4; // System.Int32 System.Collections.Generic.Dictionary`2::_version int32_t ____version_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_t982B62EC18A65A3F52F0FA723D7A5B51D3EACE44* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_t16158FF974E6076F10354D4F3FC08E7FFF87086F* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A : public RuntimeObject { // System.Int32[] System.Collections.Generic.Dictionary`2::_buckets Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::_entries EntryU5BU5D_t0C8848FA8C979298F3C182D8EB03570D8FA26FA7* ____entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::_count int32_t ____count_2; // System.Int32 System.Collections.Generic.Dictionary`2::_freeList int32_t ____freeList_3; // System.Int32 System.Collections.Generic.Dictionary`2::_freeCount int32_t ____freeCount_4; // System.Int32 System.Collections.Generic.Dictionary`2::_version int32_t ____version_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_t2FCB408F1EB9CA12888AE6E0ACEA3FA995A5DAA3* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_tBA3CDE187BE7665A5798B190605F306816272791* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t129029582481E96143BD747690E92DB7E444261E : public RuntimeObject { // System.Int32[] System.Collections.Generic.Dictionary`2::_buckets Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::_entries EntryU5BU5D_tD59BF430101A4C2080228ED133FC9737B0A030EE* ____entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::_count int32_t ____count_2; // System.Int32 System.Collections.Generic.Dictionary`2::_freeList int32_t ____freeList_3; // System.Int32 System.Collections.Generic.Dictionary`2::_freeCount int32_t ____freeCount_4; // System.Int32 System.Collections.Generic.Dictionary`2::_version int32_t ____version_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_t3F2FECD4AC086FD3ABAE5D31881677BABA02B0D0* ____keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::_values ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431* ____values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject* ____syncRoot_9; }; // System.Collections.Generic.List`1 struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; // System.Collections.Generic.Stack`1 struct Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5 : public RuntimeObject { // T[] System.Collections.Generic.Stack`1::_array ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____array_0; // System.Int32 System.Collections.Generic.Stack`1::_size int32_t ____size_1; // System.Int32 System.Collections.Generic.Stack`1::_version int32_t ____version_2; // System.Object System.Collections.Generic.Stack`1::_syncRoot RuntimeObject* ____syncRoot_3; }; // System.Collections.Generic.Stack`1 struct Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8 : public RuntimeObject { // T[] System.Collections.Generic.Stack`1::_array ParseElementOnlyContent_LocalFrameU5BU5D_t611D26D044101E53D04B538C85A8214818CA615B* ____array_0; // System.Int32 System.Collections.Generic.Stack`1::_size int32_t ____size_1; // System.Int32 System.Collections.Generic.Stack`1::_version int32_t ____version_2; // System.Object System.Collections.Generic.Stack`1::_syncRoot RuntimeObject* ____syncRoot_3; }; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t8898F5330699C43BF4307CDFD83DB8DC4ED26F1F : public RuntimeObject { // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/ValueCollection::_dictionary Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* ____dictionary_0; }; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t499BCEBD608E294D297D05F15B0261C6141FF089 : public RuntimeObject { // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/ValueCollection::_dictionary Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698* ____dictionary_0; }; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431 : public RuntimeObject { // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/ValueCollection::_dictionary Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* ____dictionary_0; }; // System.Collections.ArrayList struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A : public RuntimeObject { // System.Object[] System.Collections.ArrayList::_items ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____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; }; // System.Xml.BinHexEncoder struct BinHexEncoder_tE4EF722053469C8B6A1617B62E21BA762B9E6FFA : public RuntimeObject { }; // System.Xml.Bits struct Bits_t4D52329DF865E191908AE96952B27312B4FD1355 : public RuntimeObject { }; // System.Xml.Schema.ContentValidator struct ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE : public RuntimeObject { // System.Xml.Schema.XmlSchemaContentType System.Xml.Schema.ContentValidator::contentType int32_t ___contentType_0; // System.Boolean System.Xml.Schema.ContentValidator::isOpen bool ___isOpen_1; // System.Boolean System.Xml.Schema.ContentValidator::isEmptiable bool ___isEmptiable_2; }; // System.Globalization.CultureInfo struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0 : public RuntimeObject { // 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_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11; // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___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_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___native_calendar_names_20; // System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___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_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24; // System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___parent_culture_25; // System.Boolean System.Globalization.CultureInfo::constructed bool ___constructed_26; // System.Byte[] System.Globalization.CultureInfo::cached_serialized_form ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___cached_serialized_form_27; // System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData_28; // System.Boolean System.Globalization.CultureInfo::m_isInherited bool ___m_isInherited_29; }; // Native definition for P/Invoke marshalling of System.Globalization.CultureInfo struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_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_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10; DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11; TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___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_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24; CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // Native definition for COM marshalling of System.Globalization.CultureInfo struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_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_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10; DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11; TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___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_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24; CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // System.Text.Decoder struct Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC : public RuntimeObject { // System.Text.DecoderFallback System.Text.Decoder::_fallback DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ____fallback_0; // System.Text.DecoderFallbackBuffer System.Text.Decoder::_fallbackBuffer DecoderFallbackBuffer_t02E41C0BEC894A17CFE1A1FE88A2388DFDA05A73* ____fallbackBuffer_1; }; // System.Xml.DomNameTable struct DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45 : public RuntimeObject { // System.Xml.XmlName[] System.Xml.DomNameTable::entries XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* ___entries_0; // System.Int32 System.Xml.DomNameTable::count int32_t ___count_1; // System.Int32 System.Xml.DomNameTable::mask int32_t ___mask_2; // System.Xml.XmlDocument System.Xml.DomNameTable::ownerDocument XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___ownerDocument_3; // System.Xml.XmlNameTable System.Xml.DomNameTable::nameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_4; }; // System.Xml.EmptyEnumerator struct EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA : public RuntimeObject { }; // System.Text.Encoding struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095 : public RuntimeObject { // System.Int32 System.Text.Encoding::m_codePage int32_t ___m_codePage_9; // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2* ___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_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___encoderFallback_13; // System.Text.DecoderFallback System.Text.Encoding::decoderFallback DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ___decoderFallback_14; }; // System.EventArgs struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 : public RuntimeObject { }; // System.Collections.Hashtable struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D : public RuntimeObject { // System.Collections.Hashtable/bucket[] System.Collections.Hashtable::_buckets bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* ____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; }; // System.Xml.IncrementalReadDecoder struct IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B : public RuntimeObject { }; // System.MarshalByRefObject struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject { // System.Object System.MarshalByRefObject::_identity RuntimeObject* ____identity_0; }; // Native definition for P/Invoke marshalling of System.MarshalByRefObject struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke { Il2CppIUnknown* ____identity_0; }; // Native definition for COM marshalling of System.MarshalByRefObject struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com { Il2CppIUnknown* ____identity_0; }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { }; // System.Xml.Ref struct Ref_t4AE893B7D0F8A6F31DFD7F8B30847A9050BA5AFF : public RuntimeObject { }; // SR struct SR_t89C10D8172151F8A1D55AEE28C31D3233CD919B3 : public RuntimeObject { }; // System.Xml.Schema.SchemaDeclBase struct SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B : public RuntimeObject { // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaDeclBase::name XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___name_0; // System.String System.Xml.Schema.SchemaDeclBase::prefix String_t* ___prefix_1; // System.Boolean System.Xml.Schema.SchemaDeclBase::isDeclaredInExternal bool ___isDeclaredInExternal_2; // System.Xml.Schema.SchemaDeclBase/Use System.Xml.Schema.SchemaDeclBase::presence int32_t ___presence_3; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.SchemaDeclBase::schemaType XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___schemaType_4; // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.SchemaDeclBase::datatype XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* ___datatype_5; // System.String System.Xml.Schema.SchemaDeclBase::defaultValueRaw String_t* ___defaultValueRaw_6; // System.Object System.Xml.Schema.SchemaDeclBase::defaultValueTyped RuntimeObject* ___defaultValueTyped_7; // System.Int64 System.Xml.Schema.SchemaDeclBase::maxLength int64_t ___maxLength_8; // System.Int64 System.Xml.Schema.SchemaDeclBase::minLength int64_t ___minLength_9; // System.Collections.Generic.List`1 System.Xml.Schema.SchemaDeclBase::values List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___values_10; }; // System.Xml.Schema.SchemaEntity struct SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7 : public RuntimeObject { // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaEntity::qname XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qname_0; // System.String System.Xml.Schema.SchemaEntity::url String_t* ___url_1; // System.String System.Xml.Schema.SchemaEntity::pubid String_t* ___pubid_2; // System.String System.Xml.Schema.SchemaEntity::text String_t* ___text_3; // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaEntity::ndata XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___ndata_4; // System.Int32 System.Xml.Schema.SchemaEntity::lineNumber int32_t ___lineNumber_5; // System.Int32 System.Xml.Schema.SchemaEntity::linePosition int32_t ___linePosition_6; // System.Boolean System.Xml.Schema.SchemaEntity::isParameter bool ___isParameter_7; // System.Boolean System.Xml.Schema.SchemaEntity::isExternal bool ___isExternal_8; // System.Boolean System.Xml.Schema.SchemaEntity::parsingInProgress bool ___parsingInProgress_9; // System.Boolean System.Xml.Schema.SchemaEntity::isDeclaredInExternal bool ___isDeclaredInExternal_10; // System.String System.Xml.Schema.SchemaEntity::baseURI String_t* ___baseURI_11; // System.String System.Xml.Schema.SchemaEntity::declaredURI String_t* ___declaredURI_12; }; // System.Xml.Schema.SchemaInfo struct SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E : public RuntimeObject { // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::elementDecls Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* ___elementDecls_0; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::undeclaredElementDecls Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* ___undeclaredElementDecls_1; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::generalEntities Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* ___generalEntities_2; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::parameterEntities Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* ___parameterEntities_3; // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaInfo::docTypeName XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___docTypeName_4; // System.String System.Xml.Schema.SchemaInfo::internalDtdSubset String_t* ___internalDtdSubset_5; // System.Boolean System.Xml.Schema.SchemaInfo::hasNonCDataAttributes bool ___hasNonCDataAttributes_6; // System.Boolean System.Xml.Schema.SchemaInfo::hasDefaultAttributes bool ___hasDefaultAttributes_7; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::targetNamespaces Dictionary_2_t17D0D125440AC627FCF80F189C6CBCB02856063C* ___targetNamespaces_8; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::attributeDecls Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* ___attributeDecls_9; // System.Xml.Schema.SchemaType System.Xml.Schema.SchemaInfo::schemaType int32_t ___schemaType_10; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::elementDeclsByType Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* ___elementDeclsByType_11; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::notations Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* ___notations_12; }; // System.Xml.Schema.SchemaNotation struct SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269 : public RuntimeObject { // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNotation::name XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___name_0; // System.String System.Xml.Schema.SchemaNotation::systemLiteral String_t* ___systemLiteral_1; // System.String System.Xml.Schema.SchemaNotation::pubid String_t* ___pubid_2; }; // System.String struct String_t : public RuntimeObject { // System.Int32 System.String::_stringLength int32_t ____stringLength_4; // System.Char System.String::_firstChar Il2CppChar ____firstChar_5; }; // System.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___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; }; // System.Uri struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E : public RuntimeObject { // 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_t920B0868286118827C08B08A15A9456AF6C19D81* ___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_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09* ___m_Info_18; // System.Boolean System.Uri::m_iriParsing bool ___m_iriParsing_19; }; // System.ValueType struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject { }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com { }; // System.Xml.XmlChildEnumerator struct XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939 : public RuntimeObject { // System.Xml.XmlNode System.Xml.XmlChildEnumerator::container XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___container_0; // System.Xml.XmlNode System.Xml.XmlChildEnumerator::child XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___child_1; // System.Boolean System.Xml.XmlChildEnumerator::isFirst bool ___isFirst_2; }; // System.Xml.XmlImplementation struct XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D : public RuntimeObject { // System.Xml.XmlNameTable System.Xml.XmlImplementation::nameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_0; }; // System.Xml.XmlLoader struct XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D : public RuntimeObject { // System.Xml.XmlDocument System.Xml.XmlLoader::doc XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___doc_0; // System.Xml.XmlReader System.Xml.XmlLoader::reader XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader_1; // System.Boolean System.Xml.XmlLoader::preserveWhitespace bool ___preserveWhitespace_2; }; // System.Xml.XmlName struct XmlName_t0704430D24D202146901D342E34D878246E14F33 : public RuntimeObject { // System.String System.Xml.XmlName::prefix String_t* ___prefix_0; // System.String System.Xml.XmlName::localName String_t* ___localName_1; // System.String System.Xml.XmlName::ns String_t* ___ns_2; // System.String System.Xml.XmlName::name String_t* ___name_3; // System.Int32 System.Xml.XmlName::hashCode int32_t ___hashCode_4; // System.Xml.XmlDocument System.Xml.XmlName::ownerDoc XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___ownerDoc_5; // System.Xml.XmlName System.Xml.XmlName::next XmlName_t0704430D24D202146901D342E34D878246E14F33* ___next_6; }; // System.Xml.XmlNameTable struct XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8 : public RuntimeObject { }; // System.Xml.XmlNamespaceManager struct XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F : public RuntimeObject { // System.Xml.XmlNamespaceManager/NamespaceDeclaration[] System.Xml.XmlNamespaceManager::nsdecls NamespaceDeclarationU5BU5D_t4DF48D3A2EB82C491A60E8748DE4BAFAA95A0F60* ___nsdecls_0; // System.Int32 System.Xml.XmlNamespaceManager::lastDecl int32_t ___lastDecl_1; // System.Xml.XmlNameTable System.Xml.XmlNamespaceManager::nameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_2; // System.Int32 System.Xml.XmlNamespaceManager::scopeId int32_t ___scopeId_3; // System.Collections.Generic.Dictionary`2 System.Xml.XmlNamespaceManager::hashTable Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___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; }; // System.Xml.XmlNode struct XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF : public RuntimeObject { // System.Xml.XmlNode System.Xml.XmlNode::parentNode XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parentNode_0; }; // System.Xml.XmlNodeList struct XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85 : public RuntimeObject { }; // System.Xml.XmlParserContext struct XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B : public RuntimeObject { // System.Xml.XmlNameTable System.Xml.XmlParserContext::_nt XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ____nt_0; // System.Xml.XmlNamespaceManager System.Xml.XmlParserContext::_nsMgr XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ____nsMgr_1; // System.String System.Xml.XmlParserContext::_docTypeName String_t* ____docTypeName_2; // System.String System.Xml.XmlParserContext::_pubId String_t* ____pubId_3; // System.String System.Xml.XmlParserContext::_sysId String_t* ____sysId_4; // System.String System.Xml.XmlParserContext::_internalSubset String_t* ____internalSubset_5; // System.String System.Xml.XmlParserContext::_xmlLang String_t* ____xmlLang_6; // System.Xml.XmlSpace System.Xml.XmlParserContext::_xmlSpace int32_t ____xmlSpace_7; // System.String System.Xml.XmlParserContext::_baseURI String_t* ____baseURI_8; // System.Text.Encoding System.Xml.XmlParserContext::_encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ____encoding_9; }; // System.Xml.XmlQualifiedName struct XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9 : public RuntimeObject { // 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; }; // System.Xml.XmlReader struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD : public RuntimeObject { }; // System.Xml.XmlResolver struct XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF : public RuntimeObject { }; // System.Xml.Schema.XmlSchemaDatatype struct XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D : public RuntimeObject { }; // System.Xml.Schema.XmlSchemaInfo struct XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B : public RuntimeObject { // System.Boolean System.Xml.Schema.XmlSchemaInfo::isDefault bool ___isDefault_0; // System.Boolean System.Xml.Schema.XmlSchemaInfo::isNil bool ___isNil_1; // System.Xml.Schema.XmlSchemaElement System.Xml.Schema.XmlSchemaInfo::schemaElement XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* ___schemaElement_2; // System.Xml.Schema.XmlSchemaAttribute System.Xml.Schema.XmlSchemaInfo::schemaAttribute XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* ___schemaAttribute_3; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaInfo::schemaType XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___schemaType_4; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaInfo::memberType XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* ___memberType_5; // System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.XmlSchemaInfo::validity int32_t ___validity_6; // System.Xml.Schema.XmlSchemaContentType System.Xml.Schema.XmlSchemaInfo::contentType int32_t ___contentType_7; }; // System.Xml.Schema.XmlSchemaObject struct XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D : public RuntimeObject { }; // System.Xml.Schema.XmlSchemaSet struct XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1 : public RuntimeObject { // System.Xml.XmlNameTable System.Xml.Schema.XmlSchemaSet::nameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_0; // System.Collections.SortedList System.Xml.Schema.XmlSchemaSet::schemas SortedList_t847331629BA06B518F1B5203BD22B59746EDDBF3* ___schemas_1; // System.Xml.Schema.ValidationEventHandler System.Xml.Schema.XmlSchemaSet::internalEventHandler ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___internalEventHandler_2; // System.Xml.Schema.ValidationEventHandler System.Xml.Schema.XmlSchemaSet::eventHandler ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___eventHandler_3; // System.Collections.Hashtable System.Xml.Schema.XmlSchemaSet::schemaLocations Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___schemaLocations_4; // System.Collections.Hashtable System.Xml.Schema.XmlSchemaSet::chameleonSchemas Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___chameleonSchemas_5; // System.Collections.Hashtable System.Xml.Schema.XmlSchemaSet::targetNamespaces Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___targetNamespaces_6; // System.Boolean System.Xml.Schema.XmlSchemaSet::compileAll bool ___compileAll_7; // System.Xml.Schema.SchemaInfo System.Xml.Schema.XmlSchemaSet::cachedCompiledInfo SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___cachedCompiledInfo_8; // System.Xml.XmlReaderSettings System.Xml.Schema.XmlSchemaSet::readerSettings XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___readerSettings_9; // System.Xml.Schema.XmlSchemaCompilationSettings System.Xml.Schema.XmlSchemaSet::compilationSettings XmlSchemaCompilationSettings_tAD528503343C490A9030FEF019E313661390249C* ___compilationSettings_10; }; // System.Xml.DtdParser/ParseElementOnlyContent_LocalFrame struct ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8 : public RuntimeObject { // 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; }; // System.Xml.DtdParser/UndeclaredNotation struct UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E : public RuntimeObject { // 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_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* ___next_3; }; // System.Xml.NameTable/Entry struct Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC : public RuntimeObject { // 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_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* ___next_2; }; // System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer struct DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1 : public RuntimeObject { }; // System.Xml.XmlTextReaderImpl/DtdParserProxy struct DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3 : public RuntimeObject { // System.Xml.XmlTextReaderImpl System.Xml.XmlTextReaderImpl/DtdParserProxy::reader XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___reader_0; }; // System.Xml.XmlTextReaderImpl/LaterInitParam struct LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6 : public RuntimeObject { // System.Boolean System.Xml.XmlTextReaderImpl/LaterInitParam::useAsync bool ___useAsync_0; // System.IO.Stream System.Xml.XmlTextReaderImpl/LaterInitParam::inputStream Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___inputStream_1; // System.Byte[] System.Xml.XmlTextReaderImpl/LaterInitParam::inputBytes ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___inputBytes_2; // System.Int32 System.Xml.XmlTextReaderImpl/LaterInitParam::inputByteCount int32_t ___inputByteCount_3; // System.Uri System.Xml.XmlTextReaderImpl/LaterInitParam::inputbaseUri Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___inputbaseUri_4; // System.String System.Xml.XmlTextReaderImpl/LaterInitParam::inputUriStr String_t* ___inputUriStr_5; // System.Xml.XmlResolver System.Xml.XmlTextReaderImpl/LaterInitParam::inputUriResolver XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___inputUriResolver_6; // System.Xml.XmlParserContext System.Xml.XmlTextReaderImpl/LaterInitParam::inputContext XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___inputContext_7; // System.IO.TextReader System.Xml.XmlTextReaderImpl/LaterInitParam::inputTextReader TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___inputTextReader_8; // System.Xml.XmlTextReaderImpl/InitInputType System.Xml.XmlTextReaderImpl/LaterInitParam::initType int32_t ___initType_9; }; // System.Xml.XmlTextReaderImpl/XmlContext struct XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE : public RuntimeObject { // 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_tE28147847949C52356E6B899971C50E1444FB8EE* ___previousContext_3; }; // System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator struct SingleObjectEnumerator_t4A92C1B8B2E37167742E12C10D13D6B3D6124D91 : public RuntimeObject { // System.Object System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator::loneValue RuntimeObject* ___loneValue_0; // System.Int32 System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator::position int32_t ___position_1; }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator struct Enumerator_t44124D16E0B2F7308FF4069BE06369B5A83896EB { // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_dictionary Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* ____dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_version int32_t ____version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_currentValue RuntimeObject* ____currentValue_3; }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator struct Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218 { // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_dictionary Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* ____dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_version int32_t ____version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_currentValue SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* ____currentValue_3; }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator struct Enumerator_tFFB123B32E0A29A9F7621A05A0F893DF21310060 { // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_dictionary Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698* ____dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_version int32_t ____version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_currentValue UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* ____currentValue_3; }; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator struct Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F { // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_dictionary Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* ____dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_version int32_t ____version_2; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::_currentValue SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* ____currentValue_3; }; // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 { // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject* ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject* ___value_1; }; // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_t9111838FA7D6AE78EED02B65A1E8B97E42A8BE57 { // TKey System.Collections.Generic.KeyValuePair`2::key XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___value_1; }; // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_t83E1B0BDF3436F091A5C09273711FD7CED0D2D4E { // TKey System.Collections.Generic.KeyValuePair`2::key XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* ___value_1; }; // System.Nullable`1 struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value bool ___value_1; }; // System.Xml.BinHexDecoder struct BinHexDecoder_tB77546D79B7899F37DF674F845BC5FB69A8EF02E : public IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B { // System.Byte[] System.Xml.BinHexDecoder::buffer ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer_0; // System.Int32 System.Xml.BinHexDecoder::curIndex int32_t ___curIndex_1; // System.Int32 System.Xml.BinHexDecoder::endIndex int32_t ___endIndex_2; // System.Boolean System.Xml.BinHexDecoder::hasHalfByteCached bool ___hasHalfByteCached_3; // System.Byte System.Xml.BinHexDecoder::cachedHalfByte uint8_t ___cachedHalfByte_4; }; // System.Boolean struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22 { // System.Boolean System.Boolean::m_value bool ___m_value_0; }; // System.Byte struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3 { // System.Byte System.Byte::m_value uint8_t ___m_value_0; }; // System.Char struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17 { // System.Char System.Char::m_value Il2CppChar ___m_value_0; }; // System.Decimal struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F { union { #pragma pack(push, tp, 1) struct { // System.Int32 System.Decimal::flags int32_t ___flags_8; }; #pragma pack(pop, tp) struct { int32_t ___flags_8_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___hi_9_OffsetPadding[4]; // System.Int32 System.Decimal::hi int32_t ___hi_9; }; #pragma pack(pop, tp) struct { char ___hi_9_OffsetPadding_forAlignmentOnly[4]; int32_t ___hi_9_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___lo_10_OffsetPadding[8]; // System.Int32 System.Decimal::lo int32_t ___lo_10; }; #pragma pack(pop, tp) struct { char ___lo_10_OffsetPadding_forAlignmentOnly[8]; int32_t ___lo_10_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___mid_11_OffsetPadding[12]; // System.Int32 System.Decimal::mid int32_t ___mid_11; }; #pragma pack(pop, tp) struct { char ___mid_11_OffsetPadding_forAlignmentOnly[12]; int32_t ___mid_11_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___ulomidLE_12_OffsetPadding[8]; // System.UInt64 System.Decimal::ulomidLE uint64_t ___ulomidLE_12; }; #pragma pack(pop, tp) struct { char ___ulomidLE_12_OffsetPadding_forAlignmentOnly[8]; uint64_t ___ulomidLE_12_forAlignmentOnly; }; }; }; // System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F { }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com { }; // System.Xml.IncrementalReadDummyDecoder struct IncrementalReadDummyDecoder_t514FBAC6CC3FF737F6EAF3AF3523D89A933DAB86 : public IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B { }; // System.Int32 struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C { // System.Int32 System.Int32::m_value int32_t ___m_value_0; }; // System.Int64 struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3 { // System.Int64 System.Int64::m_value int64_t ___m_value_0; }; // System.IntPtr struct IntPtr_t { // System.Void* System.IntPtr::m_value void* ___m_value_0; }; // System.Xml.LineInfo struct LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 { // System.Int32 System.Xml.LineInfo::lineNo int32_t ___lineNo_0; // System.Int32 System.Xml.LineInfo::linePos int32_t ___linePos_1; }; // System.Xml.NameTable struct NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46 : public XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8 { // System.Xml.NameTable/Entry[] System.Xml.NameTable::entries EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* ___entries_0; // System.Int32 System.Xml.NameTable::count int32_t ___count_1; // System.Int32 System.Xml.NameTable::mask int32_t ___mask_2; // System.Int32 System.Xml.NameTable::hashCodeRandomizer int32_t ___hashCodeRandomizer_3; }; // System.Xml.Schema.ParticleContentValidator struct ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF : public ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE { // System.Xml.Schema.SymbolsDictionary System.Xml.Schema.ParticleContentValidator::symbols SymbolsDictionary_t6294BD40672E01F1C87B524AE88C84A267C78CF3* ___symbols_7; // System.Xml.Schema.Positions System.Xml.Schema.ParticleContentValidator::positions Positions_tA1718BCD59D1E183041E480D7602A5DF38182B4B* ___positions_8; // System.Collections.Stack System.Xml.Schema.ParticleContentValidator::stack Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* ___stack_9; // System.Xml.Schema.SyntaxTreeNode System.Xml.Schema.ParticleContentValidator::contentNode SyntaxTreeNode_t1165A00492617EF072B11DECC26AA0AA3BF72EBE* ___contentNode_10; // System.Boolean System.Xml.Schema.ParticleContentValidator::isPartial bool ___isPartial_11; // System.Int32 System.Xml.Schema.ParticleContentValidator::minMaxNodesCount int32_t ___minMaxNodesCount_12; // System.Boolean System.Xml.Schema.ParticleContentValidator::enableUpaCheck bool ___enableUpaCheck_13; }; // System.Xml.Schema.SchemaAttDef struct SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553 : public SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B { // System.String System.Xml.Schema.SchemaAttDef::defExpanded String_t* ___defExpanded_11; // System.Int32 System.Xml.Schema.SchemaAttDef::lineNum int32_t ___lineNum_12; // System.Int32 System.Xml.Schema.SchemaAttDef::linePos int32_t ___linePos_13; // System.Int32 System.Xml.Schema.SchemaAttDef::valueLineNum int32_t ___valueLineNum_14; // System.Int32 System.Xml.Schema.SchemaAttDef::valueLinePos int32_t ___valueLinePos_15; // System.Xml.Schema.SchemaAttDef/Reserve System.Xml.Schema.SchemaAttDef::reserved int32_t ___reserved_16; }; // System.Xml.Schema.SchemaElementDecl struct SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD : public SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B { // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaElementDecl::attdefs Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* ___attdefs_11; // System.Collections.Generic.List`1 System.Xml.Schema.SchemaElementDecl::defaultAttdefs List_1_tF7608B82384542DEB200F8E211D9D36AE02EAB58* ___defaultAttdefs_12; // System.Boolean System.Xml.Schema.SchemaElementDecl::isIdDeclared bool ___isIdDeclared_13; // System.Boolean System.Xml.Schema.SchemaElementDecl::hasNonCDataAttribute bool ___hasNonCDataAttribute_14; // System.Boolean System.Xml.Schema.SchemaElementDecl::hasRequiredAttribute bool ___hasRequiredAttribute_15; // System.Boolean System.Xml.Schema.SchemaElementDecl::isNotationDeclared bool ___isNotationDeclared_16; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaElementDecl::prohibitedAttributes Dictionary_2_t8E385BAD05584AB244D10E6FAAA2C60FB9BA5F64* ___prohibitedAttributes_17; // System.Xml.Schema.ContentValidator System.Xml.Schema.SchemaElementDecl::contentValidator ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* ___contentValidator_18; // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.SchemaElementDecl::anyAttribute XmlSchemaAnyAttribute_t2674CD673C9358AEDF1F318A8CF5DE9EB01AF601* ___anyAttribute_19; }; // System.IO.Stream struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE { // System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05* ____activeReadWriteTask_2; // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2* ____asyncActiveSemaphore_3; }; // System.IO.TextReader struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE { }; // System.UInt32 struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B { // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; }; // System.Void struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915 { union { struct { }; uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1]; }; }; // System.Xml.XmlAttribute struct XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18 : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF { // System.Xml.XmlName System.Xml.XmlAttribute::name XmlName_t0704430D24D202146901D342E34D878246E14F33* ___name_1; // System.Xml.XmlLinkedNode System.Xml.XmlAttribute::lastChild XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_2; }; // System.Xml.XmlCharType struct XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 { // System.Byte[] System.Xml.XmlCharType::charProperties ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___charProperties_2; }; // Native definition for P/Invoke marshalling of System.Xml.XmlCharType struct XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3_marshaled_pinvoke { Il2CppSafeArray/*NONE*/* ___charProperties_2; }; // Native definition for COM marshalling of System.Xml.XmlCharType struct XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3_marshaled_com { Il2CppSafeArray/*NONE*/* ___charProperties_2; }; // System.Xml.XmlChildNodes struct XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2 : public XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85 { // System.Xml.XmlNode System.Xml.XmlChildNodes::container XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___container_0; }; // System.Xml.XmlDocument struct XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF { // System.Xml.XmlImplementation System.Xml.XmlDocument::implementation XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* ___implementation_1; // System.Xml.DomNameTable System.Xml.XmlDocument::domNameTable DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* ___domNameTable_2; // System.Xml.XmlLinkedNode System.Xml.XmlDocument::lastChild XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_3; // System.Xml.XmlNamedNodeMap System.Xml.XmlDocument::entities XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* ___entities_4; // System.Collections.Hashtable System.Xml.XmlDocument::htElementIdMap Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___htElementIdMap_5; // System.Collections.Hashtable System.Xml.XmlDocument::htElementIDAttrDecl Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___htElementIDAttrDecl_6; // System.Xml.Schema.SchemaInfo System.Xml.XmlDocument::schemaInfo SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___schemaInfo_7; // System.Xml.Schema.XmlSchemaSet System.Xml.XmlDocument::schemas XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___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_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeInsertingDelegate_11; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeInsertedDelegate XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeInsertedDelegate_12; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeRemovingDelegate XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeRemovingDelegate_13; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeRemovedDelegate XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeRemovedDelegate_14; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeChangingDelegate XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeChangingDelegate_15; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeChangedDelegate XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___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_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___resolver_38; // System.Boolean System.Xml.XmlDocument::bSetResolver bool ___bSetResolver_39; // System.Object System.Xml.XmlDocument::objLock RuntimeObject* ___objLock_40; }; // System.Xml.XmlDocumentFragment struct XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF { // System.Xml.XmlLinkedNode System.Xml.XmlDocumentFragment::lastChild XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_1; }; // System.Xml.XmlEntity struct XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF { // System.String System.Xml.XmlEntity::publicId String_t* ___publicId_1; // System.String System.Xml.XmlEntity::systemId String_t* ___systemId_2; // System.String System.Xml.XmlEntity::notationName String_t* ___notationName_3; // System.String System.Xml.XmlEntity::name String_t* ___name_4; // System.String System.Xml.XmlEntity::unparsedReplacementStr String_t* ___unparsedReplacementStr_5; // System.String System.Xml.XmlEntity::baseURI String_t* ___baseURI_6; // System.Xml.XmlLinkedNode System.Xml.XmlEntity::lastChild XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_7; // System.Boolean System.Xml.XmlEntity::childrenFoliating bool ___childrenFoliating_8; }; // System.Xml.XmlLinkedNode struct XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF { // System.Xml.XmlLinkedNode System.Xml.XmlLinkedNode::next XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___next_1; }; // System.Xml.XmlNameEx struct XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947 : public XmlName_t0704430D24D202146901D342E34D878246E14F33 { // System.Byte System.Xml.XmlNameEx::flags uint8_t ___flags_7; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.XmlNameEx::memberType XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* ___memberType_8; // System.Xml.Schema.XmlSchemaType System.Xml.XmlNameEx::schemaType XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___schemaType_9; // System.Object System.Xml.XmlNameEx::decl RuntimeObject* ___decl_10; }; // System.Xml.XmlNodeChangedEventArgs struct XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 { // System.Xml.XmlNodeChangedAction System.Xml.XmlNodeChangedEventArgs::action int32_t ___action_1; // System.Xml.XmlNode System.Xml.XmlNodeChangedEventArgs::node XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___node_2; // System.Xml.XmlNode System.Xml.XmlNodeChangedEventArgs::oldParent XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___oldParent_3; // System.Xml.XmlNode System.Xml.XmlNodeChangedEventArgs::newParent XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___newParent_4; // System.String System.Xml.XmlNodeChangedEventArgs::oldValue String_t* ___oldValue_5; // System.String System.Xml.XmlNodeChangedEventArgs::newValue String_t* ___newValue_6; }; // System.Xml.XmlNotation struct XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF { // System.String System.Xml.XmlNotation::publicId String_t* ___publicId_1; // System.String System.Xml.XmlNotation::systemId String_t* ___systemId_2; // System.String System.Xml.XmlNotation::name String_t* ___name_3; }; // System.Xml.Schema.XmlSchemaAnnotated struct XmlSchemaAnnotated_t41DBE9DF8776C6C639B33A712F25497C672B4E04 : public XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D { }; // System.Xml.XmlTextReader struct XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD { // System.Xml.XmlTextReaderImpl System.Xml.XmlTextReader::impl XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___impl_3; }; // System.Xml.XmlUrlResolver struct XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E : public XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF { // 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_tF15C94C5E458478914D5EB17753294BD488B0550* ____cachePolicy_3; }; // System.Xml.XmlNamedNodeMap/SmallXmlNodeList struct SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0 { // System.Object System.Xml.XmlNamedNodeMap/SmallXmlNodeList::field RuntimeObject* ___field_0; }; // Native definition for P/Invoke marshalling of System.Xml.XmlNamedNodeMap/SmallXmlNodeList struct SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshaled_pinvoke { Il2CppIUnknown* ___field_0; }; // Native definition for COM marshalling of System.Xml.XmlNamedNodeMap/SmallXmlNodeList struct SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshaled_com { Il2CppIUnknown* ___field_0; }; // System.Xml.XmlTextReaderImpl/NoNamespaceManager struct NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4 : public XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F { }; // System.Xml.XmlTextReaderImpl/ParsingState struct ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886 { // System.Char[] System.Xml.XmlTextReaderImpl/ParsingState::chars CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___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_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_3; // System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::appendMode bool ___appendMode_4; // System.IO.Stream System.Xml.XmlTextReaderImpl/ParsingState::stream Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream_5; // System.Text.Decoder System.Xml.XmlTextReaderImpl/ParsingState::decoder Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* ___decoder_6; // System.Byte[] System.Xml.XmlTextReaderImpl/ParsingState::bytes ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___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_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___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_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___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; }; // Native definition for P/Invoke marshalling of System.Xml.XmlTextReaderImpl/ParsingState struct ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886_marshaled_pinvoke { uint8_t* ___chars_0; int32_t ___charPos_1; int32_t ___charsUsed_2; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_3; int32_t ___appendMode_4; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream_5; Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* ___decoder_6; Il2CppSafeArray/*NONE*/* ___bytes_7; int32_t ___bytePos_8; int32_t ___bytesUsed_9; TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___textReader_10; int32_t ___lineNo_11; int32_t ___lineStartPos_12; char* ___baseUriStr_13; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___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_tF0FABA16483FCC2DB710460D11CD79D35C4E2886_marshaled_com { uint8_t* ___chars_0; int32_t ___charPos_1; int32_t ___charsUsed_2; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_3; int32_t ___appendMode_4; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___stream_5; Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* ___decoder_6; Il2CppSafeArray/*NONE*/* ___bytes_7; int32_t ___bytePos_8; int32_t ___bytesUsed_9; TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___textReader_10; int32_t ___lineNo_11; int32_t ___lineStartPos_12; Il2CppChar* ___baseUriStr_13; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___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.Collections.Generic.Dictionary`2/Enumerator struct Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9 { // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* ____dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_version int32_t ____version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_index int32_t ____index_2; // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator::_current KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 ____current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_getEnumeratorRetType int32_t ____getEnumeratorRetType_4; }; // System.Collections.Generic.Dictionary`2/Enumerator struct Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 { // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* ____dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_version int32_t ____version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_index int32_t ____index_2; // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator::_current KeyValuePair_2_t9111838FA7D6AE78EED02B65A1E8B97E42A8BE57 ____current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_getEnumeratorRetType int32_t ____getEnumeratorRetType_4; }; // System.Collections.Generic.Dictionary`2/Enumerator struct Enumerator_t42F4E0E4BE9FD853E9D5EE3D3B048C8C08ECCD28 { // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* ____dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_version int32_t ____version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_index int32_t ____index_2; // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator::_current KeyValuePair_2_t83E1B0BDF3436F091A5C09273711FD7CED0D2D4E ____current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_getEnumeratorRetType int32_t ____getEnumeratorRetType_4; }; // System.Delegate struct Delegate_t : public RuntimeObject { // 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.IntPtr System.Delegate::interp_method intptr_t ___interp_method_7; // System.IntPtr System.Delegate::interp_invoke_impl intptr_t ___interp_invoke_impl_8; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t* ___method_info_9; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t* ___original_method_info_10; // System.DelegateData System.Delegate::data DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_12; }; // 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; intptr_t ___interp_method_7; intptr_t ___interp_invoke_impl_8; MethodInfo_t* ___method_info_9; MethodInfo_t* ___original_method_info_10; DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11; int32_t ___method_is_virtual_12; }; // 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; intptr_t ___interp_method_7; intptr_t ___interp_invoke_impl_8; MethodInfo_t* ___method_info_9; MethodInfo_t* ___original_method_info_10; DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11; int32_t ___method_is_virtual_12; }; // System.Xml.DtdParser struct DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53 : public RuntimeObject { // System.Xml.IDtdParserAdapter System.Xml.DtdParser::readerAdapter RuntimeObject* ___readerAdapter_0; // System.Xml.IDtdParserAdapterWithValidation System.Xml.DtdParser::readerAdapterWithValidation RuntimeObject* ___readerAdapterWithValidation_1; // System.Xml.XmlNameTable System.Xml.DtdParser::nameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_2; // System.Xml.Schema.SchemaInfo System.Xml.DtdParser::schemaInfo SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___schemaInfo_3; // System.Xml.XmlCharType System.Xml.DtdParser::xmlCharType XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_4; // System.String System.Xml.DtdParser::systemId String_t* ___systemId_5; // System.String System.Xml.DtdParser::publicId String_t* ___publicId_6; // System.Boolean System.Xml.DtdParser::normalize bool ___normalize_7; // System.Boolean System.Xml.DtdParser::validate bool ___validate_8; // System.Boolean System.Xml.DtdParser::supportNamespaces bool ___supportNamespaces_9; // System.Boolean System.Xml.DtdParser::v1Compat bool ___v1Compat_10; // System.Char[] System.Xml.DtdParser::chars CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___chars_11; // System.Int32 System.Xml.DtdParser::charsUsed int32_t ___charsUsed_12; // System.Int32 System.Xml.DtdParser::curPos int32_t ___curPos_13; // System.Xml.DtdParser/ScanningFunction System.Xml.DtdParser::scanningFunction int32_t ___scanningFunction_14; // System.Xml.DtdParser/ScanningFunction System.Xml.DtdParser::nextScaningFunction int32_t ___nextScaningFunction_15; // System.Xml.DtdParser/ScanningFunction System.Xml.DtdParser::savedScanningFunction int32_t ___savedScanningFunction_16; // System.Boolean System.Xml.DtdParser::whitespaceSeen bool ___whitespaceSeen_17; // System.Int32 System.Xml.DtdParser::tokenStartPos int32_t ___tokenStartPos_18; // System.Int32 System.Xml.DtdParser::colonPos int32_t ___colonPos_19; // System.Text.StringBuilder System.Xml.DtdParser::internalSubsetValueSb StringBuilder_t* ___internalSubsetValueSb_20; // System.Int32 System.Xml.DtdParser::externalEntitiesDepth int32_t ___externalEntitiesDepth_21; // System.Int32 System.Xml.DtdParser::currentEntityId int32_t ___currentEntityId_22; // System.Boolean System.Xml.DtdParser::freeFloatingDtd bool ___freeFloatingDtd_23; // System.Boolean System.Xml.DtdParser::hasFreeFloatingInternalSubset bool ___hasFreeFloatingInternalSubset_24; // System.Text.StringBuilder System.Xml.DtdParser::stringBuilder StringBuilder_t* ___stringBuilder_25; // System.Int32 System.Xml.DtdParser::condSectionDepth int32_t ___condSectionDepth_26; // System.Xml.LineInfo System.Xml.DtdParser::literalLineInfo LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___literalLineInfo_27; // System.Char System.Xml.DtdParser::literalQuoteChar Il2CppChar ___literalQuoteChar_28; // System.String System.Xml.DtdParser::documentBaseUri String_t* ___documentBaseUri_29; // System.String System.Xml.DtdParser::externalDtdBaseUri String_t* ___externalDtdBaseUri_30; // System.Collections.Generic.Dictionary`2 System.Xml.DtdParser::undeclaredNotations Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698* ___undeclaredNotations_31; // System.Int32[] System.Xml.DtdParser::condSectionEntityIds Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___condSectionEntityIds_32; }; // System.Exception struct Exception_t : public RuntimeObject { // 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_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15; // System.Int32 System.Exception::caught_in_unmanaged int32_t ___caught_in_unmanaged_16; }; // 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_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13; StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; int32_t ___caught_in_unmanaged_16; }; // 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_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13; StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; int32_t ___caught_in_unmanaged_16; }; // System.Runtime.InteropServices.GCHandle struct GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC { // System.IntPtr System.Runtime.InteropServices.GCHandle::handle intptr_t ___handle_0; }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B { // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; }; // System.IO.StringReader struct StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8 : public TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7 { // System.String System.IO.StringReader::_s String_t* ____s_2; // System.Int32 System.IO.StringReader::_pos int32_t ____pos_3; // System.Int32 System.IO.StringReader::_length int32_t ____length_4; }; // System.Xml.XmlCharacterData struct XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B : public XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C { // System.String System.Xml.XmlCharacterData::data String_t* ___data_2; }; // System.Xml.XmlDeclaration struct XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79 : public XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C { // System.String System.Xml.XmlDeclaration::version String_t* ___version_2; // System.String System.Xml.XmlDeclaration::encoding String_t* ___encoding_3; // System.String System.Xml.XmlDeclaration::standalone String_t* ___standalone_4; }; // System.Xml.XmlDocumentType struct XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E : public XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C { // System.String System.Xml.XmlDocumentType::name String_t* ___name_2; // System.String System.Xml.XmlDocumentType::publicId String_t* ___publicId_3; // System.String System.Xml.XmlDocumentType::systemId String_t* ___systemId_4; // System.String System.Xml.XmlDocumentType::internalSubset String_t* ___internalSubset_5; // System.Boolean System.Xml.XmlDocumentType::namespaces bool ___namespaces_6; // System.Xml.XmlNamedNodeMap System.Xml.XmlDocumentType::entities XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* ___entities_7; // System.Xml.XmlNamedNodeMap System.Xml.XmlDocumentType::notations XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* ___notations_8; // System.Xml.Schema.SchemaInfo System.Xml.XmlDocumentType::schemaInfo SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___schemaInfo_9; }; // System.Xml.XmlElement struct XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1 : public XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C { // System.Xml.XmlName System.Xml.XmlElement::name XmlName_t0704430D24D202146901D342E34D878246E14F33* ___name_2; // System.Xml.XmlAttributeCollection System.Xml.XmlElement::attributes XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* ___attributes_3; // System.Xml.XmlLinkedNode System.Xml.XmlElement::lastChild XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_4; }; // System.Xml.XmlEntityReference struct XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684 : public XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C { // System.String System.Xml.XmlEntityReference::name String_t* ___name_2; // System.Xml.XmlLinkedNode System.Xml.XmlEntityReference::lastChild XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_3; }; // System.Xml.XmlNamedNodeMap struct XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C : public RuntimeObject { // System.Xml.XmlNode System.Xml.XmlNamedNodeMap::parent XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parent_0; // System.Xml.XmlNamedNodeMap/SmallXmlNodeList System.Xml.XmlNamedNodeMap::nodes SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0 ___nodes_1; }; // System.Xml.XmlProcessingInstruction struct XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3 : public XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C { // System.String System.Xml.XmlProcessingInstruction::target String_t* ___target_2; // System.String System.Xml.XmlProcessingInstruction::data String_t* ___data_3; }; // System.Xml.XmlReaderSettings struct XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA : public RuntimeObject { // System.Boolean System.Xml.XmlReaderSettings::useAsync bool ___useAsync_0; // System.Xml.XmlNameTable System.Xml.XmlReaderSettings::nameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_1; // System.Xml.XmlResolver System.Xml.XmlReaderSettings::xmlResolver XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___xmlResolver_2; // System.Int32 System.Xml.XmlReaderSettings::lineNumberOffset int32_t ___lineNumberOffset_3; // System.Int32 System.Xml.XmlReaderSettings::linePositionOffset int32_t ___linePositionOffset_4; // System.Xml.ConformanceLevel System.Xml.XmlReaderSettings::conformanceLevel int32_t ___conformanceLevel_5; // System.Boolean System.Xml.XmlReaderSettings::checkCharacters bool ___checkCharacters_6; // System.Int64 System.Xml.XmlReaderSettings::maxCharactersInDocument int64_t ___maxCharactersInDocument_7; // System.Int64 System.Xml.XmlReaderSettings::maxCharactersFromEntities int64_t ___maxCharactersFromEntities_8; // System.Boolean System.Xml.XmlReaderSettings::ignoreWhitespace bool ___ignoreWhitespace_9; // System.Boolean System.Xml.XmlReaderSettings::ignorePIs bool ___ignorePIs_10; // System.Boolean System.Xml.XmlReaderSettings::ignoreComments bool ___ignoreComments_11; // System.Xml.DtdProcessing System.Xml.XmlReaderSettings::dtdProcessing int32_t ___dtdProcessing_12; // System.Xml.ValidationType System.Xml.XmlReaderSettings::validationType int32_t ___validationType_13; // System.Xml.Schema.XmlSchemaValidationFlags System.Xml.XmlReaderSettings::validationFlags int32_t ___validationFlags_14; // System.Xml.Schema.XmlSchemaSet System.Xml.XmlReaderSettings::schemas XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___schemas_15; // System.Boolean System.Xml.XmlReaderSettings::closeInput bool ___closeInput_16; // System.Boolean System.Xml.XmlReaderSettings::isReadOnly bool ___isReadOnly_17; // System.Boolean System.Xml.XmlReaderSettings::k__BackingField bool ___U3CIsXmlResolverSetU3Ek__BackingField_18; }; // System.Xml.Schema.XmlSchemaAttribute struct XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F : public XmlSchemaAnnotated_t41DBE9DF8776C6C639B33A712F25497C672B4E04 { }; // System.Xml.Schema.XmlSchemaParticle struct XmlSchemaParticle_t9A7544A3F66C6E4B8900456CF705A6F9D95655EE : public XmlSchemaAnnotated_t41DBE9DF8776C6C639B33A712F25497C672B4E04 { // System.Decimal System.Xml.Schema.XmlSchemaParticle::minOccurs Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___minOccurs_0; // System.Decimal System.Xml.Schema.XmlSchemaParticle::maxOccurs Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___maxOccurs_1; // System.Xml.Schema.XmlSchemaParticle/Occurs System.Xml.Schema.XmlSchemaParticle::flags int32_t ___flags_2; }; // System.Xml.Schema.XmlSchemaType struct XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF : public XmlSchemaAnnotated_t41DBE9DF8776C6C639B33A712F25497C672B4E04 { // 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_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___baseSchemaType_2; // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaType::datatype XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* ___datatype_3; // System.Xml.Schema.SchemaElementDecl modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.Schema.XmlSchemaType::elementDecl SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* ___elementDecl_4; // System.Xml.XmlQualifiedName modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.Schema.XmlSchemaType::qname XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qname_5; // System.Xml.Schema.XmlSchemaContentType System.Xml.Schema.XmlSchemaType::contentType int32_t ___contentType_6; }; // System.Xml.XmlTextReaderImpl struct XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD { // System.Xml.XmlTextReaderImpl/LaterInitParam System.Xml.XmlTextReaderImpl::laterInitParam LaterInitParam_tF074262B62208D4086044C17F89F18AC8598DBA6* ___laterInitParam_3; // System.Xml.XmlCharType System.Xml.XmlTextReaderImpl::xmlCharType XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_4; // System.Xml.XmlTextReaderImpl/ParsingState System.Xml.XmlTextReaderImpl::ps ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886 ___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_t1945F048F8DECB62636A155E1182995E8FAA9610* ___nodes_9; // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl::curNode NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___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_t1945F048F8DECB62636A155E1182995E8FAA9610* ___attrDuplSortingArray_18; // System.Xml.XmlNameTable System.Xml.XmlTextReaderImpl::nameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_19; // System.Boolean System.Xml.XmlTextReaderImpl::nameTableFromSettings bool ___nameTableFromSettings_20; // System.Xml.XmlResolver System.Xml.XmlTextReaderImpl::xmlResolver XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___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_t95431ADE7A94108629DFF894819FB1A9709D810F* ___namespaceManager_37; // System.String System.Xml.XmlTextReaderImpl::lastPrefix String_t* ___lastPrefix_38; // System.Xml.XmlTextReaderImpl/XmlContext System.Xml.XmlTextReaderImpl::xmlContext XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* ___xmlContext_39; // System.Xml.XmlTextReaderImpl/ParsingState[] System.Xml.XmlTextReaderImpl::parsingStatesStack ParsingStateU5BU5D_t6DBF0A43B3A9658C0218546F90EC15DCF17F3E29* ___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_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___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_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___fragmentParserContext_46; // System.Boolean System.Xml.XmlTextReaderImpl::fragment bool ___fragment_47; // System.Xml.IncrementalReadDecoder System.Xml.XmlTextReaderImpl::incReadDecoder IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B* ___incReadDecoder_48; // System.Xml.XmlTextReaderImpl/IncrementalReadState System.Xml.XmlTextReaderImpl::incReadState int32_t ___incReadState_49; // System.Xml.LineInfo System.Xml.XmlTextReaderImpl::incReadLineInfo LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___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_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* ___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_tEBCC19EF04541DFE092A495F8C364BF917DA466D* ___currentEntities_72; // System.Boolean System.Xml.XmlTextReaderImpl::disableUndeclaredEntityCheck bool ___disableUndeclaredEntityCheck_73; // System.Xml.XmlReader System.Xml.XmlTextReaderImpl::outerReader XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___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_tB493F74D58DB1761E087206849D953E99D07600B* ___parseText_dummyTask_78; }; // System.Xml.XmlUnspecifiedAttribute struct XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC : public XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18 { // System.Boolean System.Xml.XmlUnspecifiedAttribute::fSpecified bool ___fSpecified_3; }; // System.Xml.XmlTextReaderImpl/NodeData struct NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF : public RuntimeObject { // 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_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___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_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___lineInfo_10; // System.Xml.LineInfo System.Xml.XmlTextReaderImpl/NodeData::lineInfo2 LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___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_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___nextAttrValueChunk_17; // System.Object System.Xml.XmlTextReaderImpl/NodeData::schemaType RuntimeObject* ___schemaType_18; // System.Object System.Xml.XmlTextReaderImpl/NodeData::typedValue RuntimeObject* ___typedValue_19; }; // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13; }; // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_13; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_13; }; // System.SystemException struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t { }; // System.Type struct Type_t : public MemberInfo_t { // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8; }; // System.WeakReference struct WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E : public RuntimeObject { // System.Boolean System.WeakReference::isLongReference bool ___isLongReference_0; // System.Runtime.InteropServices.GCHandle System.WeakReference::gcHandle GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ___gcHandle_1; }; // System.Xml.XmlAttributeCollection struct XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0 : public XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C { }; // System.Xml.XmlCDataSection struct XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA : public XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B { }; // System.Xml.XmlComment struct XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9 : public XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B { }; // System.Xml.Schema.XmlSchemaElement struct XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970 : public XmlSchemaParticle_t9A7544A3F66C6E4B8900456CF705A6F9D95655EE { }; // System.Xml.Schema.XmlSchemaSimpleType struct XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8 : public XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF { // System.Xml.Schema.XmlSchemaSimpleTypeContent System.Xml.Schema.XmlSchemaSimpleType::content XmlSchemaSimpleTypeContent_t84C9B4F059E687FBF7845373F5A6B2795F982091* ___content_7; }; // System.Xml.XmlSignificantWhitespace struct XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE : public XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B { }; // System.Xml.XmlText struct XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A : public XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B { }; // System.Xml.XmlWhitespace struct XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24 : public XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B { }; // System.ArgumentException struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { // System.String System.ArgumentException::_paramName String_t* ____paramName_18; }; // System.IndexOutOfRangeException struct IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.InvalidOperationException struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.Xml.XmlException struct XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { // System.String System.Xml.XmlException::res String_t* ___res_18; // System.String[] System.Xml.XmlException::args StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args_19; // System.Int32 System.Xml.XmlException::lineNumber int32_t ___lineNumber_20; // System.Int32 System.Xml.XmlException::linePosition int32_t ___linePosition_21; // System.String System.Xml.XmlException::sourceUri String_t* ___sourceUri_22; // System.String System.Xml.XmlException::message String_t* ___message_23; }; // System.Xml.XmlNodeChangedEventHandler struct XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B : public MulticastDelegate_t { }; // System.Xml.Schema.XmlSchemaException struct XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { // System.String System.Xml.Schema.XmlSchemaException::res String_t* ___res_18; // System.String[] System.Xml.Schema.XmlSchemaException::args StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args_19; // System.String System.Xml.Schema.XmlSchemaException::sourceUri String_t* ___sourceUri_20; // System.Int32 System.Xml.Schema.XmlSchemaException::lineNumber int32_t ___lineNumber_21; // System.Int32 System.Xml.Schema.XmlSchemaException::linePosition int32_t ___linePosition_22; // System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaException::sourceSchemaObject XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D* ___sourceSchemaObject_23; // System.String System.Xml.Schema.XmlSchemaException::message String_t* ___message_24; }; // System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate struct OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499 : public MulticastDelegate_t { }; // System.ArgumentNullException struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 { }; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 { // System.Object System.ArgumentOutOfRangeException::_actualValue RuntimeObject* ____actualValue_19; }; // // // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.Dictionary`2 // System.Collections.Generic.List`1 struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 // System.Collections.Generic.Stack`1 // System.Collections.Generic.Stack`1 // System.Collections.Generic.Stack`1 // System.Collections.Generic.Stack`1 // System.Collections.Generic.Dictionary`2/ValueCollection // System.Collections.Generic.Dictionary`2/ValueCollection // System.Collections.Generic.Dictionary`2/ValueCollection // System.Collections.Generic.Dictionary`2/ValueCollection // System.Collections.Generic.Dictionary`2/ValueCollection // System.Collections.Generic.Dictionary`2/ValueCollection // System.Collections.ArrayList // System.Collections.ArrayList // System.Xml.BinHexEncoder // System.Xml.BinHexEncoder // System.Xml.Bits struct Bits_t4D52329DF865E191908AE96952B27312B4FD1355_StaticFields { // System.UInt32 System.Xml.Bits::MASK_0101010101010101 uint32_t ___MASK_0101010101010101_0; // System.UInt32 System.Xml.Bits::MASK_0011001100110011 uint32_t ___MASK_0011001100110011_1; // System.UInt32 System.Xml.Bits::MASK_0000111100001111 uint32_t ___MASK_0000111100001111_2; // System.UInt32 System.Xml.Bits::MASK_0000000011111111 uint32_t ___MASK_0000000011111111_3; // System.UInt32 System.Xml.Bits::MASK_1111111111111111 uint32_t ___MASK_1111111111111111_4; }; // System.Xml.Bits // System.Xml.Schema.ContentValidator struct ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE_StaticFields { // System.Xml.Schema.ContentValidator System.Xml.Schema.ContentValidator::Empty ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* ___Empty_3; // System.Xml.Schema.ContentValidator System.Xml.Schema.ContentValidator::TextOnly ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* ___TextOnly_4; // System.Xml.Schema.ContentValidator System.Xml.Schema.ContentValidator::Mixed ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* ___Mixed_5; // System.Xml.Schema.ContentValidator System.Xml.Schema.ContentValidator::Any ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* ___Any_6; }; // System.Xml.Schema.ContentValidator // System.Globalization.CultureInfo struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_StaticFields { // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___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_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___default_current_culture_2; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentUICulture_34; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentCulture_35; // System.Collections.Generic.Dictionary`2 System.Globalization.CultureInfo::shared_by_number Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number_36; // System.Collections.Generic.Dictionary`2 System.Globalization.CultureInfo::shared_by_name Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name_37; // System.Globalization.CultureInfo System.Globalization.CultureInfo::s_UserPreferredCultureInfoInAppX CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX_38; // System.Boolean System.Globalization.CultureInfo::IsTaiwanSku bool ___IsTaiwanSku_39; }; // System.Globalization.CultureInfo // System.Text.Decoder // System.Text.Decoder // System.Xml.DomNameTable // System.Xml.DomNameTable // System.Xml.EmptyEnumerator // System.Xml.EmptyEnumerator // System.Text.Encoding struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_StaticFields { // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___defaultEncoding_0; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___unicodeEncoding_1; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___bigEndianUnicode_2; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf7Encoding_3; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf8Encoding_4; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf32Encoding_5; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___asciiEncoding_6; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___latin1Encoding_7; // System.Collections.Generic.Dictionary`2 modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54* ___encodings_8; // System.Object System.Text.Encoding::s_InternalSyncObject RuntimeObject* ___s_InternalSyncObject_15; }; // System.Text.Encoding // System.EventArgs struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_StaticFields { // System.EventArgs System.EventArgs::Empty EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___Empty_0; }; // System.EventArgs // System.Collections.Hashtable struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_StaticFields { // System.Runtime.CompilerServices.ConditionalWeakTable`2 System.Collections.Hashtable::s_serializationInfoTable ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* ___s_serializationInfoTable_21; }; // System.Collections.Hashtable // System.Xml.IncrementalReadDecoder // System.Xml.IncrementalReadDecoder // System.Reflection.MemberInfo // System.Reflection.MemberInfo // System.Xml.Ref // System.Xml.Ref // SR // SR // System.Xml.Schema.SchemaDeclBase // System.Xml.Schema.SchemaDeclBase // System.Xml.Schema.SchemaEntity // System.Xml.Schema.SchemaEntity // System.Xml.Schema.SchemaInfo // System.Xml.Schema.SchemaInfo // System.Xml.Schema.SchemaNotation // System.Xml.Schema.SchemaNotation // System.String struct String_t_StaticFields { // System.String System.String::Empty String_t* ___Empty_6; }; // System.String // System.Text.StringBuilder // System.Text.StringBuilder // System.Uri struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_StaticFields { // 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_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___HexLowerChars_27; // System.Char[] System.Uri::_WSchars CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____WSchars_28; }; // System.Uri // System.Xml.XmlChildEnumerator // System.Xml.XmlChildEnumerator // System.Xml.XmlImplementation // System.Xml.XmlImplementation // System.Xml.XmlLoader // System.Xml.XmlLoader // System.Xml.XmlName // System.Xml.XmlName // System.Xml.XmlNameTable // System.Xml.XmlNameTable // System.Xml.XmlNamespaceManager // System.Xml.XmlNamespaceManager // System.Xml.XmlNode // System.Xml.XmlNode // System.Xml.XmlNodeList // System.Xml.XmlNodeList // System.Xml.XmlParserContext // System.Xml.XmlParserContext // System.Xml.XmlQualifiedName struct XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_StaticFields { // System.Xml.XmlQualifiedName/HashCodeOfStringDelegate System.Xml.XmlQualifiedName::hashCodeDelegate HashCodeOfStringDelegate_t25F1FA9B737C4313ED341BA7AAB31694DC3669DA* ___hashCodeDelegate_0; // System.Xml.XmlQualifiedName System.Xml.XmlQualifiedName::Empty XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___Empty_4; }; // System.Xml.XmlQualifiedName // System.Xml.XmlReader struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_StaticFields { // 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; }; // System.Xml.XmlReader // System.Xml.XmlResolver // System.Xml.XmlResolver // System.Xml.Schema.XmlSchemaDatatype // System.Xml.Schema.XmlSchemaDatatype // System.Xml.Schema.XmlSchemaInfo // System.Xml.Schema.XmlSchemaInfo // System.Xml.Schema.XmlSchemaSet // System.Xml.Schema.XmlSchemaSet // System.Xml.DtdParser/ParseElementOnlyContent_LocalFrame // System.Xml.DtdParser/ParseElementOnlyContent_LocalFrame // System.Xml.DtdParser/UndeclaredNotation // System.Xml.DtdParser/UndeclaredNotation // System.Xml.NameTable/Entry // System.Xml.NameTable/Entry // System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer struct DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_StaticFields { // System.Collections.Generic.IComparer`1 System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer::s_instance RuntimeObject* ___s_instance_0; }; // System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer // System.Xml.XmlTextReaderImpl/DtdParserProxy // System.Xml.XmlTextReaderImpl/DtdParserProxy // System.Xml.XmlTextReaderImpl/LaterInitParam // System.Xml.XmlTextReaderImpl/LaterInitParam // System.Xml.XmlTextReaderImpl/XmlContext // System.Xml.XmlTextReaderImpl/XmlContext // System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator // System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator // System.Nullable`1 // System.Nullable`1 // System.Xml.BinHexDecoder // System.Xml.BinHexDecoder // System.Boolean struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields { // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; }; // System.Boolean // System.Byte // System.Byte // System.Char struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields { // System.Byte[] System.Char::s_categoryForLatin1 ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3; }; // System.Char // System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields { // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray_0; }; // System.Enum // System.Xml.IncrementalReadDummyDecoder // System.Xml.IncrementalReadDummyDecoder // System.Int32 // System.Int32 // System.Int64 // System.Int64 // System.IntPtr struct IntPtr_t_StaticFields { // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; }; // System.IntPtr // System.Xml.LineInfo // System.Xml.LineInfo // System.Xml.NameTable // System.Xml.NameTable // System.Xml.Schema.ParticleContentValidator // System.Xml.Schema.ParticleContentValidator // System.Xml.Schema.SchemaAttDef struct SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_StaticFields { // System.Xml.Schema.SchemaAttDef System.Xml.Schema.SchemaAttDef::Empty SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___Empty_17; }; // System.Xml.Schema.SchemaAttDef // System.Xml.Schema.SchemaElementDecl struct SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD_StaticFields { // System.Xml.Schema.SchemaElementDecl System.Xml.Schema.SchemaElementDecl::Empty SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* ___Empty_20; }; // System.Xml.Schema.SchemaElementDecl // System.IO.Stream struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_StaticFields { // System.IO.Stream System.IO.Stream::Null Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___Null_1; }; // System.IO.Stream // System.IO.TextReader struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7_StaticFields { // System.IO.TextReader System.IO.TextReader::Null TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___Null_1; }; // System.IO.TextReader // System.UInt32 // System.UInt32 // System.Void // System.Void // System.Xml.XmlAttribute // System.Xml.XmlAttribute // System.Xml.XmlCharType struct XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3_StaticFields { // System.Object System.Xml.XmlCharType::s_Lock RuntimeObject* ___s_Lock_0; // System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.XmlCharType::s_CharProperties ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_CharProperties_1; }; // System.Xml.XmlCharType // System.Xml.XmlChildNodes // System.Xml.XmlChildNodes // System.Xml.XmlDocument struct XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields { // System.Xml.EmptyEnumerator System.Xml.XmlDocument::EmptyEnumerator EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA* ___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; }; // System.Xml.XmlDocument // System.Xml.XmlDocumentFragment // System.Xml.XmlDocumentFragment // System.Xml.XmlEntity // System.Xml.XmlEntity // System.Xml.XmlLinkedNode // System.Xml.XmlLinkedNode // System.Xml.XmlNameEx // System.Xml.XmlNameEx // System.Xml.XmlNodeChangedEventArgs // System.Xml.XmlNodeChangedEventArgs // System.Xml.XmlNotation // System.Xml.XmlNotation // System.Xml.XmlTextReader // System.Xml.XmlTextReader // System.Xml.XmlUrlResolver struct XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_StaticFields { // System.Object System.Xml.XmlUrlResolver::s_DownloadManager RuntimeObject* ___s_DownloadManager_0; }; // System.Xml.XmlUrlResolver // System.Xml.XmlNamedNodeMap/SmallXmlNodeList // System.Xml.XmlNamedNodeMap/SmallXmlNodeList // System.Xml.XmlTextReaderImpl/NoNamespaceManager // System.Xml.XmlTextReaderImpl/NoNamespaceManager // System.Xml.XmlTextReaderImpl/ParsingState // System.Xml.XmlTextReaderImpl/ParsingState // System.Collections.Generic.Dictionary`2/Enumerator // System.Collections.Generic.Dictionary`2/Enumerator // System.Collections.Generic.Dictionary`2/Enumerator // System.Collections.Generic.Dictionary`2/Enumerator // System.Collections.Generic.Dictionary`2/Enumerator // System.Collections.Generic.Dictionary`2/Enumerator // System.Delegate // System.Delegate // System.Xml.DtdParser // System.Xml.DtdParser // System.Exception struct Exception_t_StaticFields { // System.Object System.Exception::s_EDILock RuntimeObject* ___s_EDILock_0; }; // System.Exception // System.RuntimeTypeHandle // System.RuntimeTypeHandle // System.IO.StringReader // System.IO.StringReader // System.Xml.XmlCharacterData // System.Xml.XmlCharacterData // System.Xml.XmlDeclaration // System.Xml.XmlDeclaration // System.Xml.XmlDocumentType // System.Xml.XmlDocumentType // System.Xml.XmlElement // System.Xml.XmlElement // System.Xml.XmlEntityReference // System.Xml.XmlEntityReference // System.Xml.XmlNamedNodeMap // System.Xml.XmlNamedNodeMap // System.Xml.XmlProcessingInstruction // System.Xml.XmlProcessingInstruction // System.Xml.XmlReaderSettings struct XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_StaticFields { // System.Nullable`1 System.Xml.XmlReaderSettings::s_enableLegacyXmlSettings Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___s_enableLegacyXmlSettings_19; }; // System.Xml.XmlReaderSettings // System.Xml.Schema.XmlSchemaAttribute // System.Xml.Schema.XmlSchemaAttribute // System.Xml.Schema.XmlSchemaType // System.Xml.Schema.XmlSchemaType // System.Xml.XmlTextReaderImpl // System.Xml.XmlTextReaderImpl // System.Xml.XmlUnspecifiedAttribute // System.Xml.XmlUnspecifiedAttribute // System.Xml.XmlTextReaderImpl/NodeData struct NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_StaticFields { // System.Xml.XmlTextReaderImpl/NodeData modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.XmlTextReaderImpl/NodeData::s_None NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* ___s_None_0; }; // System.Xml.XmlTextReaderImpl/NodeData // System.Type struct Type_t_StaticFields { // System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_1; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2; // System.Object System.Type::Missing RuntimeObject* ___Missing_3; // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6; }; // System.Type // System.WeakReference // System.WeakReference // System.Xml.XmlAttributeCollection // System.Xml.XmlAttributeCollection // System.Xml.XmlCDataSection // System.Xml.XmlCDataSection // System.Xml.XmlComment // System.Xml.XmlComment // System.Xml.Schema.XmlSchemaElement // System.Xml.Schema.XmlSchemaElement // System.Xml.Schema.XmlSchemaSimpleType // System.Xml.Schema.XmlSchemaSimpleType // System.Xml.XmlSignificantWhitespace // System.Xml.XmlSignificantWhitespace // System.Xml.XmlText // System.Xml.XmlText // System.Xml.XmlWhitespace // System.Xml.XmlWhitespace // System.ArgumentException // System.ArgumentException // System.IndexOutOfRangeException // System.IndexOutOfRangeException // System.InvalidOperationException // System.InvalidOperationException // System.Xml.XmlException // System.Xml.XmlException // System.Xml.XmlNodeChangedEventHandler // System.Xml.XmlNodeChangedEventHandler // System.Xml.Schema.XmlSchemaException // System.Xml.Schema.XmlSchemaException // System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate // System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate // System.ArgumentNullException // System.ArgumentNullException // System.ArgumentOutOfRangeException // System.ArgumentOutOfRangeException #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Object[] struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray { ALIGN_FIELD (8) RuntimeObject* m_Items[1]; 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.Char[] struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB : public RuntimeArray { ALIGN_FIELD (8) Il2CppChar m_Items[1]; 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.Byte[] struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray { ALIGN_FIELD (8) uint8_t m_Items[1]; 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.Delegate[] struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray { ALIGN_FIELD (8) Delegate_t* m_Items[1]; 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.Xml.XmlName[] struct XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC : public RuntimeArray { ALIGN_FIELD (8) XmlName_t0704430D24D202146901D342E34D878246E14F33* m_Items[1]; inline XmlName_t0704430D24D202146901D342E34D878246E14F33* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XmlName_t0704430D24D202146901D342E34D878246E14F33** 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, XmlName_t0704430D24D202146901D342E34D878246E14F33* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline XmlName_t0704430D24D202146901D342E34D878246E14F33* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XmlName_t0704430D24D202146901D342E34D878246E14F33** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XmlName_t0704430D24D202146901D342E34D878246E14F33* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.String[] struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray { ALIGN_FIELD (8) String_t* m_Items[1]; 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.Xml.NameTable/Entry[] struct EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A : public RuntimeArray { ALIGN_FIELD (8) Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* m_Items[1]; inline Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC** 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, Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Int32[] struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray { ALIGN_FIELD (8) int32_t m_Items[1]; 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.Boolean System.Nullable`1::get_HasValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) ; // T System.Nullable`1::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_gshared (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) ; // System.Void System.Nullable`1::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_gshared (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Collections.Generic.Dictionary`2/Enumerator System.Collections.Generic.Dictionary`2::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9 Dictionary_2_GetEnumerator_m52AB12790B0B9B46B1DFB1F861C9DBEAB07C1FDA_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method) ; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_t038245E04B5D2A80048D9F8021A23E69A0C9DBAA* Dictionary_2_get_Values_mA0C01DEA55329E55380E96BBD04D4D228B437EC5_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ; // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator System.Collections.Generic.Dictionary`2/ValueCollection::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t44124D16E0B2F7308FF4069BE06369B5A83896EB ValueCollection_GetEnumerator_m025EE28BE2F31676E08BC3D7C8E39D8232BDBBF8_gshared (ValueCollection_t038245E04B5D2A80048D9F8021A23E69A0C9DBAA* __this, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mFD8FAB8D9FF5EDF9AE3B14CF539A8A34AA9527A8_gshared (Enumerator_t44124D16E0B2F7308FF4069BE06369B5A83896EB* __this, const RuntimeMethod* method) ; // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_mB407E755F3B4C51C54D24338D00A352E5B16E7F3_gshared_inline (Enumerator_t44124D16E0B2F7308FF4069BE06369B5A83896EB* __this, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mBE11DA1DAFC756EB87E884AADC5EDC4BB72FB032_gshared (Enumerator_t44124D16E0B2F7308FF4069BE06369B5A83896EB* __this, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.Dictionary`2::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2::ContainsKey(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m703047C213F7AB55C9DC346596287773A1F670CD_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.List`1::Contains(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m4C9139C2A6B23E9343D3F87807B32C6E2CFE660D_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2::Remove(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m5C7C45E75D951A75843F3F7AADD56ECD64F6BC86_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.Stack`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1__ctor_m70E8EDA96A608CE9BAB7FC8313B233AADA573BD4_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.Stack`1::Push(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Push_m709DD11BC1291A905814182CF9A367DE7399A778_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ; // T System.Collections.Generic.Stack`1::Pop() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stack_1_Pop_m2AFF69249659372F07EE25817DBCAFE74E1CF778_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ; // System.Int32 System.Collections.Generic.Stack`1::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ; // T System.Collections.Generic.Stack`1::Peek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stack_1_Peek_mF0ECF6A61726B66E6D9B33D8C4DEAA47E586E6E4_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.Dictionary`2::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ; // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6 (const RuntimeMethod* method) ; // System.String SR::GetString(System.Globalization.CultureInfo,System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_mA5E85933B81C0C44BF2C3784451187A0C9514E3C (CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___0_culture, String_t* ___1_name, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___2_args, const RuntimeMethod* method) ; // System.String System.String::Format(System.IFormatProvider,System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m447B585713E5EB3EBF5D9D0710706D01E8A56D75 (RuntimeObject* ___0_provider, String_t* ___1_format, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___2_args, const RuntimeMethod* method) ; // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, const RuntimeMethod* method) ; // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, const RuntimeMethod* method) ; // System.Void System.Xml.BinHexDecoder::Decode(System.Char*,System.Char*,System.Byte*,System.Byte*,System.Boolean&,System.Byte&,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinHexDecoder_Decode_m8444AE034602DD90BF3FCA1E311A62A2EDDDE178 (Il2CppChar* ___0_pChars, Il2CppChar* ___1_pCharsEndPos, uint8_t* ___2_pBytes, uint8_t* ___3_pBytesEndPos, bool* ___4_hasHalfByteCached, uint8_t* ___5_cachedHalfByte, int32_t* ___6_charsDecoded, int32_t* ___7_bytesDecoded, const RuntimeMethod* method) ; // System.String System.String::CreateString(System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mFBC28D2E3EB87D497F7E702E4FFAD65F635E44DF (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_val, const RuntimeMethod* method) ; // System.Void System.Xml.XmlException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87 (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, String_t* ___0_res, String_t* ___1_arg, const RuntimeMethod* method) ; // System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41 (RuntimeArray* ___0_sourceArray, int32_t ___1_sourceIndex, RuntimeArray* ___2_destinationArray, int32_t ___3_destinationIndex, int32_t ___4_length, const RuntimeMethod* method) ; // System.Xml.XmlCharType System.Xml.XmlCharType::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 XmlCharType_get_Instance_m1279A3FC91B74599A9BC76979E50DBFC07F67C55 (const RuntimeMethod* method) ; // System.String System.String::CreateString(System.Char*,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m3F8794FEB452558B8A68C65E1F0B603B3D94E0E2 (String_t* __this, Il2CppChar* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method) ; // System.Int32 System.Xml.BinHexEncoder::Encode(System.Byte[],System.Int32,System.Int32,System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinHexEncoder_Encode_mE31E74AEE0888795B4BA83F65759D1778B8B855F (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_inArray, int32_t ___1_offsetIn, int32_t ___2_count, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___3_outArray, const RuntimeMethod* method) ; // System.String System.String::CreateString(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_val, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method) ; // System.Char System.String::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___0_index, const RuntimeMethod* method) ; // System.Int32 System.Xml.Bits::Count(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bits_Count_mF7D768B2D3EBAA6C1F7EE53D4768FCEDCD0390CB (uint32_t ___0_num, const RuntimeMethod* method) ; // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ; // System.Void System.Xml.IncrementalReadDecoder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncrementalReadDecoder__ctor_mE733A01D272115149EA92BC8D2CA04B1E6087FB7 (IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlParserContext::.ctor(System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager,System.String,System.String,System.String,System.String,System.String,System.String,System.Xml.XmlSpace,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlParserContext__ctor_mC64E56EF024288949DD69AE5F8620E5BE7BCA561 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___0_nt, XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___1_nsMgr, String_t* ___2_docTypeName, String_t* ___3_pubId, String_t* ___4_sysId, String_t* ___5_internalSubset, String_t* ___6_baseURI, String_t* ___7_xmlLang, int32_t ___8_xmlSpace, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___9_enc, const RuntimeMethod* method) ; // System.Boolean System.String::op_Inequality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ; // System.Int32 System.String::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ; // System.String System.String::Concat(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_Initialize_mC0DBEC15D6168D01836D2F7874E775DB14F63B76 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::CheckReadOnly(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, String_t* ___0_propertyName, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::set_IsXmlResolverSet(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlReaderSettings_set_IsXmlResolverSet_m871B57224C2E3918C193D03425F0F409E4A44A03_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.XmlSchemaSet::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaSet__ctor_m3D365A1BB668EC9DBFBE314F44F00B1AFB3257BD (XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* __this, const RuntimeMethod* method) ; // System.Type System.Object::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlReaderSettings::Initialize(System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_Initialize_m06C6F113289807FBE5B5E248DC1E1C9B199CD477 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___0_resolver, const RuntimeMethod* method) ; // System.Xml.XmlResolver System.Xml.XmlReaderSettings::CreateDefaultResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlReaderSettings_CreateDefaultResolver_m0D158301CF988E9310F894C9C74F1404DDE5B44E (const RuntimeMethod* method) ; // System.Void System.Xml.XmlUrlResolver::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUrlResolver__ctor_m2BF23C41038D2825C0854A4C01DCE078E171A7BB (XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E* __this, const RuntimeMethod* method) ; // System.Boolean System.Nullable`1::get_HasValue() inline bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, const RuntimeMethod*))Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_gshared_inline)(__this, method); } // T System.Nullable`1::get_Value() inline bool Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, const RuntimeMethod*))Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_gshared)(__this, method); } // System.Boolean System.Xml.BinaryCompatibility::get_TargetsAtLeast_Desktop_V4_5_2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BinaryCompatibility_get_TargetsAtLeast_Desktop_V4_5_2_mE4A14EA75A72E8E6220A4E7562FC22DF20399F2F (const RuntimeMethod* method) ; // System.Void System.Nullable`1::.ctor(T) inline void Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, bool ___0_value, const RuntimeMethod* method) { (( void (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, bool, const RuntimeMethod*))Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_gshared)(__this, ___0_value, method); } // System.Void System.Xml.XmlReader::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.IO.TextReader,System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_m4EB73D665A505FC387AAC744C3FB7246556BFF5B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___0_input, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___1_nt, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::set_OuterReader(System.Xml.XmlReader) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_OuterReader_mF7512246D5575745BD1DB502B6C778F3FD54456D_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___0_value, const RuntimeMethod* method) ; // System.String System.Xml.XmlTextReaderImpl::LookupPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_LookupPrefix_mF6D85FCBDA270E1AFC2F1AC19719111A1169BD3D (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___0_namespaceName, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::set_EntityHandling(System.Xml.EntityHandling) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_EntityHandling_m045BFFB3499FB53F97124F68F659FF0E5975B24C (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::set_XmlResolver(System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_XmlResolver_mE88E51BCF47AE861AAB9121C0B023EEE73D29775 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::set_XmlValidatingReaderCompatibilityMode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_XmlValidatingReaderCompatibilityMode_mBBE46175DBCCE969AC2B298119581E91A17FA380 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/ParsingState::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParsingState_Clear_mA3F9CDD851956A92A6F8BAFAA70A20192BB1FED4 (ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/ParsingState::Close(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParsingState_Close_mA2ACDB0CCE0955A1C3B7FA9431E23F3B4C2B2008 (ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* __this, bool ___0_closeInput, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::get_LineNo() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline (ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::get_LinePos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810 (ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNamespaceManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNamespaceManager__ctor_m6485992B6D88F2C7276E1D562B9F643AD60AD4CD (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* __this, const RuntimeMethod* method) ; // System.Xml.XmlNameTable System.Xml.XmlTextReaderImpl::get_DtdParserProxy_NameTable() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlTextReaderImpl_get_DtdParserProxy_NameTable_m9D90E1683C95F7DB7AA9244FF91A472B3BD48685_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __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_m801F8EFB95433131030357031EF73C68EB43F490_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Uri System.Xml.XmlTextReaderImpl::get_DtdParserProxy_BaseUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* XmlTextReaderImpl_get_DtdParserProxy_BaseUri_m1390E43C8B3E4033041B8594E8B0D7C215C38C32 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_IsEof() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_IsEof_m83F5C6AD3C68EE41EE0E6F1862A813CC2DE83362 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Char[] System.Xml.XmlTextReaderImpl::get_DtdParserProxy_ParsingBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* XmlTextReaderImpl_get_DtdParserProxy_ParsingBuffer_mECC04A7A08B2E4D88BCF379D8EC403C54B2ADA16 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::get_DtdParserProxy_ParsingBufferLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_DtdParserProxy_ParsingBufferLength_m7508584AD802A8495380E88E670D44CE67871AAD (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::get_DtdParserProxy_CurrentPosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_DtdParserProxy_CurrentPosition_m5D6EEB470416C100210BAEA1BA750D6369663014 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __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_mB6EAE6AEA049EA5B1B54E5D850C6695CDC349DBD (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::get_DtdParserProxy_EntityStackLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_DtdParserProxy_EntityStackLength_mB534B77ECA1FDF5F92373BDF1EAA3A1CF29AB4F1 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_IsEntityEolNormalized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_IsEntityEolNormalized_mE5F5019380401A88366A88D938925389F6160A6E (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_OnNewLine(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_OnNewLine_m4FE25050BC72D4CDC7A20568DE9C28D7FA5CA41A (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, int32_t ___0_pos, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::get_DtdParserProxy_LineNo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_DtdParserProxy_LineNo_m26AF48CCD7B764E9ADCD2492703F5C4D56C92B17 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::get_DtdParserProxy_LineStartPosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_get_DtdParserProxy_LineStartPosition_m64E2F43379705C24F6D37C20E520E51B5AE96D14 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlTextReaderImpl::DtdParserProxy_ReadData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReaderImpl_DtdParserProxy_ReadData_m07882349E92F53D1FEFF74F0EF346861E6DE5290 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __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_m99D3A1CCEE205686A9333400EDA4A3F241F0C603 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, StringBuilder_t* ___0_internalSubsetBuilder, 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_m0AFB5F8D6C79FBE3505A7034821BC238C17C8017 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___0_expand, StringBuilder_t* ___1_internalSubsetBuilder, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_ParsePI(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_ParsePI_mA3AA8585594D5B9DD9AA34185F5B812ABF112DA6 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, StringBuilder_t* ___0_sb, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_ParseComment(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_ParseComment_mC220CD16264F0F8C4F26103E91CB932FC16A6539 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, StringBuilder_t* ___0_sb, 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_mF7D0B660B83C4A38D3E595C899D5957FE25C1ABD (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___0_entity, int32_t* ___1_entityId, 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_m0D03A5FA761537C5B673C7D083C63F5F3C525E4B (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject** ___0_oldEntity, int32_t* ___1_newEntityId, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::DtdParserProxy_PushExternalSubset(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_DtdParserProxy_PushExternalSubset_mBAF82FF6D19641134F1453DA17C20E9A33D74ED3 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___0_systemId, String_t* ___1_publicId, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_PushInternalDtd(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_PushInternalDtd_mAF1BEB6EA4615537D9D43878CD26250AEE7D5A04 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___0_baseUri, String_t* ___1_internalDtd, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::DtdParserProxy_Throw(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_DtdParserProxy_Throw_m007CFAA6CC0A55B37895E3A9B242C33FE5F11702 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, Exception_t* ___0_e, 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_mFAEF87EE55FE4C1BEAAE833099C5E6BD25B6537F (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___0_systemId, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___1_keywordLineInfo, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___2_systemLiteralLineInfo, 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_mA9AE0CA29E94DDDF99C7675F1361E67775ABE11E (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___0_publicId, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___1_keywordLineInfo, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___2_publicLiteralLineInfo, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_DtdValidation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_DtdValidation_mA08BCC8111CAD98A8F247770DC6C5023E7A1C071 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __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_mB2F5898C6DDF21BDA19FB52D66B0EC56F10908C3_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_Normalization() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_Normalization_m69989B2A994543AFE386FFF064EA7C9C674AF212_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_Namespaces() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_Namespaces_mDE78BC151B29E932636DF2B4521450C3FF8F25F6_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl::get_DtdParserProxy_V1CompatibilityMode() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_V1CompatibilityMode_mFA338124C3C5FF871125360FA041C8E74C7AE978_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData__ctor_m0EDB77C0D5BDFD2B2F74516B9E37106ACD355350 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::Clear(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_Clear_m947A266026A00AB3BC65DC55B7BCE727B3D0004F (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___0_type, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlTextReaderImpl/NodeData::get_ValueBuffered() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NodeData_get_ValueBuffered_mD9B7D4C2C055BC6DC3641D960844A05821EAE1F4 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __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_mD7FD9662A6CC09D000AF4E2A6D489D79267520AC (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_value, int32_t ___1_index, int32_t* ___2_len, const RuntimeMethod* method) ; // System.String System.Xml.XmlTextReaderImpl::StripSpaces(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReaderImpl_StripSpaces_m45E9B5FC3CFA2377C827CF9D5B29ABB443913D6D (String_t* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/NodeData::ClearName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_ClearName_m33AF87BF5512718AE6E0920CF814BADCF8EB7BEC (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.LineInfo::Set(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineInfo_Set_m5D59B42332EDBA296FA9AED5CF63D8BECC18214E (LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* __this, int32_t ___0_lineNo, int32_t ___1_linePos, 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_mC99F6739610C0257126208B4CF498E1771DF5DDA (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___0_type, String_t* ___1_localName, String_t* ___2_prefix, String_t* ___3_nameWPrefix, 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_mC09A30993B77CC4D8E906720683B6386F0E15747 (StringBuilder_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_value, int32_t ___1_startIndex, int32_t ___2_charCount, const RuntimeMethod* method) ; // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___0_value, 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_mE7CA22532FEF1545B8BC357CB7CAA304BA264703 (StringBuilder_t* __this, String_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_count, const RuntimeMethod* method) ; // System.String System.Xml.XmlTextReaderImpl/NodeData::CreateNameWPrefix(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NodeData_CreateNameWPrefix_mC14BB0DB05523F946E9DA65EB1C2D08F22E474AB (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___0_nt, const RuntimeMethod* method) ; // System.Boolean System.Xml.Ref::Equal(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Ref_Equal_m60FD3EF02546279815B785F856568B01F60FE1AF (String_t* ___0_strA, String_t* ___1_strB, const RuntimeMethod* method) ; // System.Int32 System.String::CompareOrdinal(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareOrdinal_mC6F612DEA1F7B3BF24A44C79D17AF7F8C29C9D3C (String_t* ___0_strA, String_t* ___1_strB, const RuntimeMethod* method) ; // System.Int32 System.String::Compare(System.String,System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_mB21E4512DAFACE027D2DD3FE75DD6E69CE315009 (String_t* ___0_strA, String_t* ___1_strB, int32_t ___2_comparisonType, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdDefaultAttributeInfoToNodeDataComparer__ctor_m0B55E97728B1943F9E8B87A3C51B95B2BDA4767B (DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1* __this, const RuntimeMethod* method) ; // System.Xml.XmlNameTable System.Xml.XmlDocument::get_NameTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlName::GetHashCode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlName_GetHashCode_mC2C5513D62B0E10E556D1241BC33C4AFFAD1DDCD (String_t* ___0_name, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlName::get_HashCode() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlName_get_HashCode_m329A9FEAF3BDEAA5F1F40CB84F7E51E1BDE58B2D_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlName::get_LocalName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) ; // System.Boolean System.String::Equals(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D (String_t* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.String System.Xml.XmlName::get_Prefix() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlName::get_NamespaceURI() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) ; // System.Xml.XmlName System.Xml.XmlName::Create(System.String,System.String,System.String,System.Int32,System.Xml.XmlDocument,System.Xml.XmlName,System.Xml.Schema.IXmlSchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlName_Create_m8B23A272C20C2ACD00B4F98D341BD01E23EF290C (String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_ns, int32_t ___3_hashCode, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___4_ownerDoc, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___5_next, RuntimeObject* ___6_schemaInfo, const RuntimeMethod* method) ; // System.Void System.Xml.DomNameTable::Grow() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DomNameTable_Grow_m6D16497A6E2D1C44AB174DA56A974A7E3DDDE487 (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNode::.ctor(System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode__ctor_m4EBED07EBE4C8D8191BE58A23594E381A8E43DCA (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___0_doc, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlDocument::get_IsLoading() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDocument::CheckName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_CheckName_mD87B320087DABFF0D226204D89BDF67AC323BB5A (String_t* ___0_name, const RuntimeMethod* method) ; // System.String System.Xml.Res::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364 (String_t* ___0_name, const RuntimeMethod* method) ; // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, const RuntimeMethod* method) ; // System.Xml.XmlName System.Xml.XmlDocument::AddAttrXmlName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_namespaceURI, RuntimeObject* ___3_schemaInfo, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAttribute::.ctor(System.Xml.XmlName,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute__ctor_m5043E9D85560FDFE80DED6438F97110608F1393B (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___0_name, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) ; // System.String System.Xml.XmlName::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlName_get_Name_m77B33DD36549E6E3E728EA1AD3325E339EC30435 (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) ; // System.Xml.XmlDocument System.Xml.XmlName::get_OwnerDocument() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlName_get_OwnerDocument_m330FA0574F04486B56352FA1E5F4336890C02A0C_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) ; // System.Xml.Schema.SchemaInfo System.Xml.XmlDocument::get_DtdSchemaInfo() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* XmlDocument_get_DtdSchemaInfo_mF52E9F32AB9D1914DBC6D91A8277AE843B6E1E6E_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlAttributeCollection::PrepareParentInElementIdAttrMap(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttributeCollection_PrepareParentInElementIdAttrMap_m2E7B9A4254641950851BE28E96829160EEAABA04 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, String_t* ___0_attrPrefix, String_t* ___1_attrLocalName, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAttributeCollection::ResetParentInElementIdAttrMap(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_ResetParentInElementIdAttrMap_m9E06B8B75D985035BA0C9E43A398206B8E7F59FD (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, String_t* ___0_oldVal, String_t* ___1_newVal, const RuntimeMethod* method) ; // System.Xml.XmlNodeChangedEventArgs System.Xml.XmlDocument::GetInsertEventArgsForLoad(System.Xml.XmlNode,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* XmlDocument_GetInsertEventArgsForLoad_mC008CD74A188F1B0ECBCFFBFD99A5F7B3DAB2661 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_newParent, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNode::NestTextNodes(System.Xml.XmlNode,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_NestTextNodes_m0B17D4B94E3375748B4604EE250F88E59C3454EF (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_prevNode, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_nextNode, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlAttribute::PrepareOwnerElementInElementIdAttrMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttribute_PrepareOwnerElementInElementIdAttrMap_m93CEBD56F06BD0F84212A081358EBB5E9453DA18 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) ; // System.Xml.XmlNode System.Xml.XmlNode::RemoveChild(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_RemoveChild_mC3FD98E0F9D7CF77B7CA309E39E67CB5128EFB6D (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_oldChild, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAttribute::ResetOwnerElementInElementIdAttrMap(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_ResetOwnerElementInElementIdAttrMap_m054D1FAF550A1B6DC9E061F3F20008686D6F143F (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, String_t* ___0_oldInnerText, const RuntimeMethod* method) ; // System.Xml.XmlNode System.Xml.XmlNode::AppendChild(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_AppendChild_mABBDB6DB312AE2C3D643F91CA400745ED4317E61 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_newChild, const RuntimeMethod* method) ; // System.Void System.Xml.XmlLoader::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlLoader::LoadInnerXmlAttribute(System.Xml.XmlAttribute,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadInnerXmlAttribute_mBCE3F2F2B11410937B71BA993E5E1151BE4B6C98 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_node, String_t* ___1_innerxmltext, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNamedNodeMap::.ctor(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNamedNodeMap__ctor_mA91F36D1CB05380C6F5E60F31062962B6DE2FF08 (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_parent, const RuntimeMethod* method) ; // System.Object System.Xml.XmlNamedNodeMap/SmallXmlNodeList::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576 (SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* __this, int32_t ___0_index, const RuntimeMethod* method) ; // System.Void System.IndexOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_mFD06819F05B815BE2D6E826D4E04F4C449D0A425 (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* __this, String_t* ___0_message, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlNamedNodeMap::FindNodeOffset(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlNamedNodeMap_FindNodeOffset_mC74472DEDF90B693B1BB71E3B136CD32854E0A66 (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, String_t* ___0_localName, String_t* ___1_namespaceURI, const RuntimeMethod* method) ; // System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::InternalAppendAttribute(System.Xml.XmlAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_InternalAppendAttribute_m4F65B9C065CD96947359F97184962FD480989BCB (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_node, const RuntimeMethod* method) ; // System.Xml.XmlNode System.Xml.XmlNamedNodeMap::RemoveNodeAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNamedNodeMap_RemoveNodeAt_mA1F6B64903412EDC18F19D1CCE1D890207C6FEF3 (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, int32_t ___0_i, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAttributeCollection::Detach(System.Xml.XmlAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_Detach_m1CF27E782F026A299CDBFB3CFCA08F4B615DF4B0 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_attr, const RuntimeMethod* method) ; // System.Xml.XmlNode System.Xml.XmlNamedNodeMap::AddNodeForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNamedNodeMap_AddNodeForLoad_m95A9C1624ACF142E0FD29FC4B572A750F5D600AF (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAttributeCollection::InsertParentIntoElementIdAttrMap(System.Xml.XmlAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_InsertParentIntoElementIdAttrMap_mE1B11EE0246D167AA4CB81F8BC7C0D5C00DFFBB9 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_attr, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlNamedNodeMap/SmallXmlNodeList::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SmallXmlNodeList_get_Count_m79F61C89FC8ABD73BCB56938310461EFF1DF14BF (SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* __this, const RuntimeMethod* method) ; // System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_RemoveAt_m583E3956863E0E138940CEA8231B8491743785F0 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, int32_t ___0_i, const RuntimeMethod* method) ; // System.Void System.Array::SetValue(System.Object,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8 (RuntimeArray* __this, RuntimeObject* ___0_value, int32_t ___1_index, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlNamedNodeMap::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlNamedNodeMap_get_Count_m383C4A91707F8FE7D905507CD35A043A5A7CFF29 (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlAttributeCollection::RemoveDuplicateAttribute(System.Xml.XmlAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAttributeCollection_RemoveDuplicateAttribute_m22D27663607A8A33332FA60A4FE2A0D122AE3F48 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_attr, const RuntimeMethod* method) ; // System.Xml.XmlNode System.Xml.XmlNamedNodeMap::AddNode(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNamedNodeMap_AddNode_m8312C3D9AAF475E11F679C7165079360BD04FA6D (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) ; // System.Xml.XmlNode System.Xml.XmlNamedNodeMap::InsertNodeAt(System.Int32,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNamedNodeMap_InsertNodeAt_m72074E17CA4EC55CE99997C5BC15681BECBA0ACE (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, int32_t ___0_i, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_node, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAttributeCollection::RemoveParentFromElementIdAttrMap(System.Xml.XmlAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_RemoveParentFromElementIdAttrMap_m40FD15B914F888F0EB42B6E35AD9DD95BE5C28BE (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_attr, const RuntimeMethod* method) ; // System.Xml.XmlAttribute System.Xml.XmlDocument::GetDefaultAttribute(System.Xml.XmlElement,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlDocument_GetDefaultAttribute_m09254F3903D8971371770B085DEB0C8E4B879D96 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___0_elem, String_t* ___1_attrPrefix, String_t* ___2_attrLocalname, String_t* ___3_attrNamespaceURI, const RuntimeMethod* method) ; // System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::Remove(System.Xml.XmlAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_Remove_m9E8FF71B36C641EAB4EE1F08F6344DFB1E380235 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_node, const RuntimeMethod* method) ; // System.Xml.XmlName System.Xml.XmlElement::get_XmlName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlElement_get_XmlName_mA93482D1053CABDD02D7E3B23EBA56F74904101D_inline (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) ; // System.Xml.XmlName System.Xml.XmlDocument::GetIDInfoByElement(System.Xml.XmlName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_GetIDInfoByElement_mF4F7DDBFA3126D06D4AA526B1536BEC20D677AC8 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___0_eleName, const RuntimeMethod* method) ; // System.Xml.XmlName System.Xml.XmlAttribute::get_XmlName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlAttribute_get_XmlName_m27554E8E37DD8255E54A68102CE270316933FFB9_inline (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) ; // System.Boolean System.String::op_Equality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDocument::AddElementWithId(System.String,System.Xml.XmlElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_AddElementWithId_m179458DD48014AD4C76126306A42F49A98433187 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_id, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___1_elem, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDocument::RemoveElementWithId(System.String,System.Xml.XmlElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_RemoveElementWithId_mD930DEA6A023E00A7D376D2F5B7D5283414ECE03 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_id, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___1_elem, const RuntimeMethod* method) ; // System.Void System.Xml.XmlCharacterData::.ctor(System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCharacterData__ctor_m8B84C0BD8FF7329F4C5190230FA2495D808B34AF (XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B* __this, String_t* ___0_data, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) ; // System.Void System.Xml.XmlLinkedNode::.ctor(System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLinkedNode__ctor_mBAF93AD97DBA998E16940918D8F7EF3E585C7633 (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___0_doc, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharType::IsOnlyWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsOnlyWhitespace_m6A7AD69BFF7BE6878F6984C952284C0755601490 (XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* __this, String_t* ___0_str, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlChildEnumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlChildEnumerator_MoveNext_m038B637C00AC0482CAD4E35995F2CF2AE8E3D556 (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, const RuntimeMethod* method) ; // System.Xml.XmlNode System.Xml.XmlChildEnumerator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlChildEnumerator_get_Current_m149208EFC92AEDC42F82839102B3D5F017DA4C46 (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, const RuntimeMethod* method) ; // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNodeList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNodeList__ctor_m29940F85BF8D20E6FFB9732648DC6DAD10539BD3 (XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlChildEnumerator::.ctor(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlChildEnumerator__ctor_mC51E8B709CB2FCB079D44B180D5EF3DF9DBC3671 (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_container, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlDeclaration::IsValidXmlVersion(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDeclaration_IsValidXmlVersion_m215F8DC273DFBBD9077EF86BEAB9C3EC3C590684 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___0_ver, const RuntimeMethod* method) ; // System.String System.Xml.Res::GetString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Res_GetString_m088600B9D0FC319A206451B009A0583C600B9A83 (String_t* ___0_name, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_args, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDeclaration::set_Encoding(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration_set_Encoding_m743178C17460B204CFFEFFC0960A77E4A6289A8B (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDeclaration::set_Standalone(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration_set_Standalone_m867389C9FBF0064E3FDA7EBDEAD4CF30E84F49C2 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDeclaration::set_Version(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDeclaration_set_Version_m0B2CCCDE1930526B6429925E8139340ED17C26D0_inline (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.String System.Xml.XmlDeclaration::get_Version() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Version_m50261F1E46B645E69A99504F494FFD3BF915E633_inline (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method) ; // System.Void System.Text.StringBuilder::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60 (StringBuilder_t* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.String System.Xml.XmlDeclaration::get_Encoding() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Encoding_m09D89DCD8457C62A6E49B9506A65A271DDBD011F_inline (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlDeclaration::get_Standalone() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Standalone_m46CC1833EE3C478318FF865E98A6899E440DDC6C_inline (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharType::IsOnlyDigits(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsOnlyDigits_m63DC800DB28B54CBAB7A16E04F8D9E4C2E01FC93 (String_t* ___0_str, int32_t ___1_startPos, int32_t ___2_len, const RuntimeMethod* method) ; // System.Void System.Xml.XmlImplementation::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlImplementation__ctor_mEBE20EB37760F63620D9DFAEF3341D2F4E138DC9 (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDocument::.ctor(System.Xml.XmlImplementation) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument__ctor_m90653BB0CD6863B4328A3B32B72ED4383C97D1A8 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* ___0_imp, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode__ctor_m48EA7E8280259972A9AE46D0220C05CEA99E9350 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DomNameTable::.ctor(System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DomNameTable__ctor_m5A5BC654B5068463A5363A4C5F944DBA31D68C29 (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___0_document, const RuntimeMethod* method) ; // System.Int32 System.Xml.ValidateNames::ParseNmtoken(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValidateNames_ParseNmtoken_m833C3208C2F99EDAE6867D01B1BC73C0D9158448 (String_t* ___0_s, int32_t ___1_offset, const RuntimeMethod* method) ; // System.String[] System.Xml.XmlException::BuildCharExceptionArgs(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* XmlException_BuildCharExceptionArgs_m0420A013644159380BB744A41E3AF1F4CEA5E9D8 (String_t* ___0_data, int32_t ___1_invCharIndex, const RuntimeMethod* method) ; // System.Void System.Xml.XmlException::.ctor(System.String,System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_mAAF5616098D1552646D4C4FDF1B381CB63822A21 (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, String_t* ___0_res, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_args, const RuntimeMethod* method) ; // System.Xml.XmlName System.Xml.DomNameTable::AddName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* DomNameTable_AddName_m5EADC9D7600CB5AB4285BF18DCA911E042C7F4C2 (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_ns, RuntimeObject* ___3_schemaInfo, const RuntimeMethod* method) ; // System.Xml.XmlName System.Xml.DomNameTable::GetName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* DomNameTable_GetName_mCDD057C4F21297AF60F4C3E34DFB4A864067AD8C (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_ns, RuntimeObject* ___3_schemaInfo, const RuntimeMethod* method) ; // System.Xml.XmlName System.Xml.XmlDocument::AddXmlName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_namespaceURI, RuntimeObject* ___3_schemaInfo, const RuntimeMethod* method) ; // System.Void System.Collections.Hashtable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method) ; // System.Xml.XmlName System.Xml.XmlDocument::GetXmlName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_GetXmlName_m7145F5B6BE8E6CDB52918C96324CC489569932CB (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_namespaceURI, RuntimeObject* ___3_schemaInfo, const RuntimeMethod* method) ; // System.Xml.XmlName System.Xml.XmlDocument::GetIDInfoByElement_(System.Xml.XmlName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_GetIDInfoByElement__mB6858B03EFABCE5F79DBACEF671D8A76948FA086 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___0_eleName, const RuntimeMethod* method) ; // System.Void System.Collections.ArrayList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80 (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* __this, const RuntimeMethod* method) ; // System.Void System.WeakReference::.ctor(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WeakReference__ctor_m5F9E2F970CD85965A003C0B37ABDBFAA1F5CF241 (WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* __this, RuntimeObject* ___0_target, const RuntimeMethod* method) ; // System.WeakReference System.Xml.XmlDocument::GetElement(System.Collections.ArrayList,System.Xml.XmlElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* XmlDocument_GetElement_mC0411EE67C03B9FD52F41B70C7320E51A67C2463 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___0_elementList, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___1_elem, const RuntimeMethod* method) ; // System.Xml.XmlImplementation System.Xml.XmlDocument::get_Implementation() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* XmlDocument_get_Implementation_m627A29B6D4CA09108F494BBE9AE070155CA6AE10_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDocument::SetBaseURI(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_SetBaseURI_mE44F99B7DFBF6C63E7041125703303F9146C146E_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_inBaseURI, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDocument::ImportChildren(System.Xml.XmlNode,System.Xml.XmlNode,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_ImportChildren_mAB48DB0FA4C4964B00F4EC316E3942CE7AAB092B (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_fromNode, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_toNode, bool ___2_deep, const RuntimeMethod* method) ; // System.Xml.XmlElement System.Xml.XmlDocument::get_DocumentElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* XmlDocument_get_DocumentElement_mE87523DCD2D59F8BA6175DBA01D70133E202A2C8 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlDocument::HasNodeTypeInPrevSiblings(System.Xml.XmlNodeType,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_HasNodeTypeInPrevSiblings_m62FDB4009BEF04A3D1A291575A005966E0E21AC3 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, int32_t ___0_nt, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_refNode, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlDocument::HasNodeTypeInNextSiblings(System.Xml.XmlNodeType,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_HasNodeTypeInNextSiblings_mD65FA58F532B9875E1BB7AE149C98E608BAE44A4 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, int32_t ___0_nt, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_refNode, const RuntimeMethod* method) ; // System.Void System.Xml.XmlCDataSection::.ctor(System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCDataSection__ctor_m19CEC86EA9EFC8153A1293493E0B3E9EF89BE2BD (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, String_t* ___0_data, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) ; // System.Void System.Xml.XmlComment::.ctor(System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlComment__ctor_m74C0E3B050353E2B32B5218DF01F8EB8874BD819 (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* __this, String_t* ___0_comment, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDocumentType::.ctor(System.String,System.String,System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentType__ctor_m80A9D98B728A54F81611F785B3C6CB5E29D47344 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, String_t* ___0_name, String_t* ___1_publicId, String_t* ___2_systemId, String_t* ___3_internalSubset, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___4_doc, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDocumentFragment::.ctor(System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentFragment__ctor_m5DFF7FEE2576ED62871EDD2EE4B03279630D1BC2 (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___0_ownerDocument, const RuntimeMethod* method) ; // System.Xml.Schema.SchemaElementDecl System.Xml.XmlDocument::GetSchemaElementDecl(System.Xml.XmlElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* XmlDocument_GetSchemaElementDecl_m8096E8CA8850D889EF774A9DC2596486DFBA00A6 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___0_elem, const RuntimeMethod* method) ; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaElementDecl::get_AttDefs() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* SchemaElementDecl_get_AttDefs_m2E3114DFAB8D978CBFAA6E31C2CD18A9AA9DAC50_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, const RuntimeMethod* method) ; // System.Collections.Generic.Dictionary`2/Enumerator System.Collections.Generic.Dictionary`2::GetEnumerator() inline Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80 (Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* __this, const RuntimeMethod* method) { return (( Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 (*) (Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1*, const RuntimeMethod*))Dictionary_2_GetEnumerator_m52AB12790B0B9B46B1DFB1F861C9DBEAB07C1FDA_gshared)(__this, method); } // System.Xml.Schema.SchemaDeclBase/Use System.Xml.Schema.SchemaDeclBase::get_Presence() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaDeclBase_get_Presence_mCF2610A186758B71CAFF2FC2586D9B604C2AE539_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) ; // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaDeclBase::get_Name() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlQualifiedName::get_Name() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) ; // System.Xml.Schema.SchemaType System.Xml.Schema.SchemaInfo::get_SchemaType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaInfo_get_SchemaType_m44BE9221A63C4D13AE45A2054A875B533518B0FC_inline (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlQualifiedName::get_Namespace() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) ; // System.String System.Xml.Schema.SchemaDeclBase::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaDeclBase_get_Prefix_mE72A285F12958A0C40F8CDEDA2838B3A09233455 (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) ; // System.Xml.XmlAttribute System.Xml.XmlDocument::PrepareDefaultAttribute(System.Xml.Schema.SchemaAttDef,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlDocument_PrepareDefaultAttribute_mB209B5E427A134931A258026446829B816E9A526 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___0_attdef, String_t* ___1_attrPrefix, String_t* ___2_attrLocalname, String_t* ___3_attrNamespaceURI, const RuntimeMethod* method) ; // System.Void System.Xml.XmlQualifiedName::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) ; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::get_ElementDecls() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* SchemaInfo_get_ElementDecls_m238E5681BECA397E7010F7BEFBAC2D0FBEC43BD7_inline (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(TKey,TValue&) inline bool Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A (Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_key, SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD** ___1_value, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A*, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*, SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___0_key, ___1_value, method); } // System.Void System.Xml.XmlDocument::SetDefaultNamespace(System.String,System.String,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_SetDefaultNamespace_m29601B584036272B65DB2F31749975711A68E245 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t** ___2_namespaceURI, const RuntimeMethod* method) ; // System.String System.Xml.Schema.SchemaDeclBase::get_DefaultValueRaw() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaDeclBase_get_DefaultValueRaw_m794A7DCEA1AE2B3B4D71DB45B913FCAA16657936 (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlUnspecifiedAttribute::SetSpecified(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlUnspecifiedAttribute_SetSpecified_m1CF67FF3E90E62DC5B0983B8DE91B6E95228509B_inline (XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* __this, bool ___0_f, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEntityReference::.ctor(System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntityReference__ctor_m7AAF0A5672B04060ECEAFAB3DF7E93DA8A7B6A94 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, String_t* ___0_name, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) ; // System.Void System.Xml.XmlProcessingInstruction::.ctor(System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlProcessingInstruction__ctor_m80AB71B3DDC0E1164705B676AD06037ACEB2FD67 (XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* __this, String_t* ___0_target, String_t* ___1_data, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___2_doc, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDeclaration::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration__ctor_mBAEA7104B9DA9F3DAE632B9063BF96BF6A40B116 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___0_version, String_t* ___1_encoding, String_t* ___2_standalone, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___3_doc, const RuntimeMethod* method) ; // System.Void System.Xml.XmlText::.ctor(System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlText__ctor_m8FFB8DDBB2C9013F10FD94A1573DCF6A2F104059 (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* __this, String_t* ___0_strData, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) ; // System.Void System.Xml.XmlSignificantWhitespace::.ctor(System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSignificantWhitespace__ctor_mCE8AE4FC827464B5A5A54191D5D62E2AF41E078F (XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* __this, String_t* ___0_strData, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) ; // System.Void System.Xml.XmlWhitespace::.ctor(System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWhitespace__ctor_m95E6CA1AFEECB5C1B3EDDAA039864BDF315FD0AE (XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* __this, String_t* ___0_strData, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDocument::ImportAttributes(System.Xml.XmlNode,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_ImportAttributes_mD5D3157004F6C1B559E3FFF09F2D5FBBF916CC0A (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_fromElem, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_toElem, const RuntimeMethod* method) ; // System.String System.Xml.XmlDocumentType::get_PublicId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_PublicId_m9E81FAF2D0AA9DC847D118813CBEB085F0CE1955_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlDocumentType::get_SystemId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_SystemId_m17B225C509C0F5A4ECBB838AA81D15DED4016909_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlDocumentType::get_InternalSubset() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_InternalSubset_mBD8D585ED0401EE1FC02F6FD5445E2109B083FEF_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) ; // System.String System.Enum::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741 (RuntimeObject* __this, const RuntimeMethod* method) ; // System.String System.String::Format(System.IFormatProvider,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m3844098E7C18576D263AAF62F69BE5C70BF9A744 (RuntimeObject* ___0_provider, String_t* ___1_format, RuntimeObject* ___2_arg0, const RuntimeMethod* method) ; // System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::get_ItemOf(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_get_ItemOf_m8F968C39C03DFEB9998B2122F4A26B76B1DB2EDB (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, int32_t ___0_i, const RuntimeMethod* method) ; // System.Xml.XmlNode System.Xml.XmlDocument::ImportNodeInternal(System.Xml.XmlNode,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocument_ImportNodeInternal_m7E70DD674E7D0CB39DC6F14B5E806AE284E9C17B (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, bool ___1_deep, const RuntimeMethod* method) ; // System.Xml.XmlNameTable System.Xml.XmlImplementation::get_NameTable() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlImplementation_get_NameTable_m8951702F59619310BD4A9528D2FF471352518CDF_inline (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlUnspecifiedAttribute::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUnspecifiedAttribute__ctor_m44D3E93A1FE83F8B631B4BE61CC2EA76865E36A6 (XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_namespaceURI, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___3_doc, const RuntimeMethod* method) ; // System.Void System.Xml.XmlElement::.ctor(System.Xml.XmlName,System.Boolean,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement__ctor_m44A8D5841FC2F1A5ACC6A03DD0ACA9AB37300588 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___0_name, bool ___1_empty, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___2_doc, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDocument::AddDefaultAttributes(System.Xml.XmlElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_AddDefaultAttributes_mD1EF2D680D9891D533CBB7493E080240528F108C (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___0_elem, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReader::set_XmlValidatingReaderCompatibilityMode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_XmlValidatingReaderCompatibilityMode_m485400A0FF8B647B0BA4D98CB46354AC258B7C00 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReader::set_EntityHandling(System.Xml.EntityHandling) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_EntityHandling_m577ABFEC373C39B83965619901EF1492C950C3BF (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlDocument::get_HasSetResolver() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocument_get_HasSetResolver_m7CBB11C7E27D95CD697F177B965CEB2E1E71358D_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ; // System.Xml.XmlResolver System.Xml.XmlDocument::GetResolver() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlDocument_GetResolver_m0B1F443F2DF5510E0733052D42BC984CB83F9119_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReader::set_XmlResolver(System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_XmlResolver_mF617E3EC08480FE4693FF9A473BB9528126FCCDA (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDocument::set_IsLoading(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlLoader::Load(System.Xml.XmlDocument,System.Xml.XmlReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_Load_m3B85C836D8C6DE323B85E868DED6E8E36D56C124 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___0_doc, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___1_reader, bool ___2_preserveWhitespace, const RuntimeMethod* method) ; // System.Void System.IO.StringReader::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringReader__ctor_m72556EC1062F49E05CF41B0825AC7FA2DB2A81C0 (StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8* __this, String_t* ___0_s, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReader::.ctor(System.IO.TextReader,System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader__ctor_m71F11D57A03AFBB76268D2696DADFCAC582C0403 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___0_input, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___1_nt, const RuntimeMethod* method) ; // System.Xml.XmlTextReader System.Xml.XmlDocument::SetupReader(System.Xml.XmlTextReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* XmlDocument_SetupReader_mDBF0C1ECB089DCC5D892E790ED2ABBD794A4824E (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* ___0_tr, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNodeChangedEventArgs::.ctor(System.Xml.XmlNode,System.Xml.XmlNode,System.Xml.XmlNode,System.String,System.String,System.Xml.XmlNodeChangedAction) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNodeChangedEventArgs__ctor_m7EA3C66B1D0582A417E9ADE33F982B08ADDB69E9 (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_oldParent, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___2_newParent, String_t* ___3_oldValue, String_t* ___4_newValue, int32_t ___5_action, const RuntimeMethod* method) ; // System.Xml.XmlNodeChangedAction System.Xml.XmlNodeChangedEventArgs::get_Action() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlNodeChangedEventArgs_get_Action_mD307B00A56DE5422A4EE4915400EC966DF80BD04_inline (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNodeChangedEventHandler::Invoke(System.Object,System.Xml.XmlNodeChangedEventArgs) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_inline (XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* __this, RuntimeObject* ___0_sender, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___1_e, const RuntimeMethod* method) ; // System.Xml.XmlNamedNodeMap System.Xml.XmlDocumentType::get_Entities() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* XmlDocumentType_get_Entities_m0864AACCFEB94E7E935580DB42D07F5C2058B1B0 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) ; // System.Void System.Xml.EmptyEnumerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyEnumerator__ctor_m05DA73C42354A4E549CCA7E9485B294057ABA981 (EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.XmlSchemaInfo::.ctor(System.Xml.Schema.XmlSchemaValidity) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaInfo__ctor_mEB56BD698D44A8AAA47668230E0CDFE8463ABD08 (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* __this, int32_t ___0_validity, const RuntimeMethod* method) ; // System.Xml.XmlNamespaceManager System.Xml.XmlLoader::ParsePartialContent(System.Xml.XmlNode,System.String,System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlLoader_ParsePartialContent_mB3EF08CD6158AD1D1CB317AA3A712DFF7252C1EC (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_parentNode, String_t* ___1_innerxmltext, int32_t ___2_nt, const RuntimeMethod* method) ; // System.Void System.Xml.XmlLoader::ParseDocumentType(System.Xml.XmlDocumentType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ParseDocumentType_m7E6901C3E8CF530A50BFE027DE91E999307F2A02 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* ___0_dtNode, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlElement::get_IsEmpty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlElement_get_IsEmpty_m3FD670ABE3BE49AF263E1B75875FA606CC671B5F (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlElement::set_IsEmpty(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_set_IsEmpty_mA8B835AE5541C20296A231855F3ABF4296A475F7 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlElement::RemoveAllChildren() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_RemoveAllChildren_mF16BCED4E253E003DAD07D4CCB2D02644666C6CD (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) ; // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA (RuntimeObject* ___0_obj, const RuntimeMethod* method) ; // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149 (RuntimeObject* ___0_obj, bool* ___1_lockTaken, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAttributeCollection::.ctor(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection__ctor_m8308D817C07EF858304166193742564329293982 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_parent, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAttributeCollection::RemoveAll() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_RemoveAll_mF68383A7E9C4F688F73A27EDCBC926799E66DE47 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNode::RemoveAll() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_RemoveAll_mA708E0DA19F2C6D5BC6CD66D415EA2D966300EA0 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlLoader::LoadInnerXmlElement(System.Xml.XmlElement,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadInnerXmlElement_mE78D161D2D91C2082F77B90FAA4DF5181915DDEB (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___0_node, String_t* ___1_innerxmltext, const RuntimeMethod* method) ; // System.String System.Xml.XmlNode::get_InnerText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlNode_get_InnerText_mC66D119E27E20F4C1E473CB76C8209CDA7262C8D (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlLoader::ExpandEntity(System.Xml.XmlEntity) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ExpandEntity_mF48C80ADCAA60579178B00F9BB747D3FDA3B2616 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* ___0_ent, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNode::SetParent(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_SetParent_mC2F3D8403B21789BAC584DC19C1AF0B59865E5A6 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) ; // System.Void System.Xml.XmlLoader::ExpandEntityReference(System.Xml.XmlEntityReference) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ExpandEntityReference_m99D6DCC2F0FA00E28E73698D333FCC12EFCA7B2F (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* ___0_eref, const RuntimeMethod* method) ; // System.Int32 System.String::LastIndexOf(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E (String_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ; // System.String System.String::Substring(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE (String_t* __this, int32_t ___0_startIndex, int32_t ___1_length, const RuntimeMethod* method) ; // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ; // System.String System.String::Replace(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Replace_m86403DC5F422D8D5E1CFAAF255B103CB807EDAAF (String_t* __this, Il2CppChar ___0_oldChar, Il2CppChar ___1_newChar, const RuntimeMethod* method) ; // System.Xml.XmlEntity System.Xml.XmlDocument::GetEntityNode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* XmlDocument_GetEntityNode_m9A45EC68379AD8210E79FD8A88EB705D011E827A (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_name, const RuntimeMethod* method) ; // System.String System.Xml.XmlEntity::get_SystemId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlEntity_get_SystemId_mBD4E3AB5EBAE7C852E533B9E184A316BECF47FA7_inline (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlEntityReference::ConstructBaseURI(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntityReference_ConstructBaseURI_mCB7DDEFDCE5D272FA11026F4FE913CCA1339B4B2 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, String_t* ___0_baseURI, String_t* ___1_systemId, const RuntimeMethod* method) ; // System.Void System.Xml.NameTable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameTable__ctor_mB02EE27092095D81E839D51519C4FBDA2227C261 (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlImplementation::.ctor(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlImplementation__ctor_mE5899D3C7EA30F9EDB19D07211588DB4FEDEC04D (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___0_nt, const RuntimeMethod* method) ; // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ; // System.Boolean System.Type::op_Equality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC (Type_t* ___0_left, Type_t* ___1_right, const RuntimeMethod* method) ; // System.Xml.XmlTextReaderImpl System.Xml.XmlTextReader::get_Impl() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* XmlTextReader_get_Impl_m99AA88D6B2335764B7B4171CCC9D9C77329D72D8_inline (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) ; // System.Xml.ValidationType System.Xml.XmlReaderSettings::get_ValidationType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_ValidationType_mFF201BAC3A2B593BB69E691E0AA3814455185F8A_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Xml.Schema.XmlSchemaSet System.Xml.XmlReaderSettings::get_Schemas() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* XmlReaderSettings_get_Schemas_mCA60590694647CFB542019784F457006B33D2C62 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDocument::set_Schemas(System.Xml.Schema.XmlSchemaSet) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_set_Schemas_m434B1F13D18F926E959FCC426F4731C9AC385A3B_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlLoader::LoadDocSequence(System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadDocSequence_m7A96D61FBF4996383D5339AB7B416CE0D51D4526 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___0_parentDoc, const RuntimeMethod* method) ; // System.Xml.XmlNode System.Xml.XmlLoader::LoadNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlLoader_LoadNode_mDFD824F250FA615C734180BF6141A472610F7E68 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, bool ___0_skipOverWhitespace, const RuntimeMethod* method) ; // System.Xml.XmlAttribute System.Xml.XmlLoader::LoadAttributeNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlLoader_LoadAttributeNode_mD21D3FF205915C01F5EAA89291E816AEDE5E8567 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) ; // System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::Append(System.Xml.XmlAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_Append_mF5AFDC3C4547DA089353B76241A5B46437CA8484 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_node, const RuntimeMethod* method) ; // System.Void System.Xml.XmlElement::set_XmlName(System.Xml.XmlName) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlElement_set_XmlName_m15166904F386EAB60030EAB490CC0FD1CB624EFC_inline (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___0_value, const RuntimeMethod* method) ; // System.Xml.XmlEntityReference System.Xml.XmlLoader::LoadEntityReferenceNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* XmlLoader_LoadEntityReferenceNode_m26B083645AAB9B8E96E676B2EB5F19EADC24B628 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, bool ___0_direct, const RuntimeMethod* method) ; // System.Xml.XmlDeclaration System.Xml.XmlLoader::LoadDeclarationNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* XmlLoader_LoadDeclarationNode_m43A2FAF27DCB6A1CBFEABB7508DD4C94523F1AE6 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) ; // System.Xml.XmlDocumentType System.Xml.XmlLoader::LoadDocumentTypeNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* XmlLoader_LoadDocumentTypeNode_m8869BA2D6837AF67F10647453EA32681AA71E3A9 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) ; // System.Exception System.Xml.XmlLoader::UnexpectedNodeType(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlLoader_UnexpectedNodeType_m302DDB86C8F1F9C46BCBD9018F67FB807EB19083 (int32_t ___0_nodetype, const RuntimeMethod* method) ; // System.Xml.XmlAttribute System.Xml.XmlLoader::LoadDefaultAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlLoader_LoadDefaultAttribute_m020283A6DBFA29FF4B5D4C7D03D56DF43E4216D7 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlAttribute::set_XmlName(System.Xml.XmlName) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlAttribute_set_XmlName_m8D259D5CC4750809EACB5E213333E1E55D8BB6BB_inline (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlLoader::LoadAttributeValue(System.Xml.XmlNode,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_parent, bool ___1_direct, const RuntimeMethod* method) ; // System.Void System.Xml.XmlText::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlText__ctor_mD1D12098F7364C006DAAC8E7700C0C729CDEACDE (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* __this, String_t* ___0_strData, const RuntimeMethod* method) ; // System.Xml.XmlNode System.Xml.XmlLoader::LoadNodeDirect() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlLoader_LoadNodeDirect_m2C0D5301FFB96CA298EF768E2CE903B6C6D459B7 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlLoader::ParseXmlDeclarationValue(System.String,System.String&,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ParseXmlDeclarationValue_m7A0C36D8327F336C841C6DF3F74140FCE5D6333E (String_t* ___0_strValue, String_t** ___1_version, String_t** ___2_encoding, String_t** ___3_standalone, const RuntimeMethod* method) ; // System.Void System.Xml.XmlLoader::LoadDocumentType(System.Xml.IDtdInfo,System.Xml.XmlDocumentType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadDocumentType_mC301F9962BC7D2F1134EDE1CD6D71D2EE68E9247 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, RuntimeObject* ___0_dtdInfo, XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* ___1_dtNode, const RuntimeMethod* method) ; // System.Void System.Xml.XmlElement::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement__ctor_m1C80BD485FDDF4F947A67A6861C525E205D8F0C4 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_namespaceURI, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___3_doc, const RuntimeMethod* method) ; // System.Xml.XmlAttribute System.Xml.XmlLoader::LoadAttributeNodeDirect() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlLoader_LoadAttributeNodeDirect_m700A4AD66233956704AA6D82F1D59A9204F50B4B (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __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_m11339257CF537ACBDA1BC5ED16CD45BF0C318971 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_namespaceURI, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___3_doc, const RuntimeMethod* method) ; // System.Void System.Xml.XmlLoader::ParseDocumentType(System.Xml.XmlDocumentType,System.Boolean,System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ParseDocumentType_m19313190F3CDF2BBE2B717BFB84C5D86AE73DD41 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* ___0_dtNode, bool ___1_bUseResolver, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___2_resolver, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNamespaceManager::.ctor(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNamespaceManager__ctor_m18E69120CE5886E06630CCCC3215D2C67FC669DB (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___0_nameTable, const RuntimeMethod* method) ; // System.Void System.Xml.XmlParserContext::.ctor(System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager,System.String,System.String,System.String,System.String,System.String,System.String,System.Xml.XmlSpace) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlParserContext__ctor_mB2CD7CF0517A079CBB79700E6B410C8667AEA532 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___0_nt, XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___1_nsMgr, String_t* ___2_docTypeName, String_t* ___3_pubId, String_t* ___4_sysId, String_t* ___5_internalSubset, String_t* ___6_baseURI, String_t* ___7_xmlLang, int32_t ___8_xmlSpace, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.String,System.Xml.XmlNodeType,System.Xml.XmlParserContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_m1752EB0257B3129797C620899A5D76179EF65C85 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___0_xmlFragment, int32_t ___1_fragType, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___2_context, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlDocumentType::get_ParseWithNamespaces() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocumentType_get_ParseWithNamespaces_mC391046582C88CDC3C3496E4D2C0827C36D9B324_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::set_Namespaces(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_Namespaces_mBC1F7402DC209EE48DACECE94982BC6CC1E861CE (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Xml.IDtdParser System.Xml.DtdParser::Create() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DtdParser_Create_m8CE085C707E26956F079923F3F31616A27F88A3B (const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl/DtdParserProxy::.ctor(System.Xml.XmlTextReaderImpl) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParserProxy__ctor_m442621DC14ECF6CAB169962B3CAAF479A5F18D90 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___0_reader, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDocumentType::set_DtdSchemaInfo(System.Xml.Schema.SchemaInfo) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocumentType_set_DtdSchemaInfo_m6E419933465D42DAB30AD7C6FFF7ACCC6D78A4E6_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDocument::set_DtdSchemaInfo(System.Xml.Schema.SchemaInfo) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_set_DtdSchemaInfo_m95A0C58965F2B17BDA49D5F4E18304A11EEC7876_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___0_value, const RuntimeMethod* method) ; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::get_Notations() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* SchemaInfo_get_Notations_m922CD199C8750B3D6F5662DB0EA272805A7EA3A1 (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method) ; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::get_Values() inline ValueCollection_t8898F5330699C43BF4307CDFD83DB8DC4ED26F1F* Dictionary_2_get_Values_m7BA818B29BA9A89901482C6D5E24DAFD8495DBAA (Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* __this, const RuntimeMethod* method) { return (( ValueCollection_t8898F5330699C43BF4307CDFD83DB8DC4ED26F1F* (*) (Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1*, const RuntimeMethod*))Dictionary_2_get_Values_mA0C01DEA55329E55380E96BBD04D4D228B437EC5_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator System.Collections.Generic.Dictionary`2/ValueCollection::GetEnumerator() inline Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218 ValueCollection_GetEnumerator_m5C66A03B215EDB5E0833880DC07DA5A2C6283A0A (ValueCollection_t8898F5330699C43BF4307CDFD83DB8DC4ED26F1F* __this, const RuntimeMethod* method) { return (( Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218 (*) (ValueCollection_t8898F5330699C43BF4307CDFD83DB8DC4ED26F1F*, const RuntimeMethod*))ValueCollection_GetEnumerator_m025EE28BE2F31676E08BC3D7C8E39D8232BDBBF8_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::Dispose() inline void Enumerator_Dispose_mE25067D838FB5D1F613D8A1D7743D120ADB5BF1A (Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218* __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218*, const RuntimeMethod*))Enumerator_Dispose_mFD8FAB8D9FF5EDF9AE3B14CF539A8A34AA9527A8_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::get_Current() inline SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* Enumerator_get_Current_m5F4A12451C66B8106D041A8FDF9254A9B563E0DB_inline (Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218* __this, const RuntimeMethod* method) { return (( SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* (*) (Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218*, const RuntimeMethod*))Enumerator_get_Current_mB407E755F3B4C51C54D24338D00A352E5B16E7F3_gshared_inline)(__this, method); } // System.Xml.XmlNamedNodeMap System.Xml.XmlDocumentType::get_Notations() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* XmlDocumentType_get_Notations_mF39B90420713538FCE072C512A74575C6F25D117 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) ; // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaNotation::get_Name() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaNotation_get_Name_mF5CA9EBBD17ADAB3A31FC36FDB03B236C4847FCD_inline (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, const RuntimeMethod* method) ; // System.String System.Xml.Schema.SchemaNotation::get_Pubid() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaNotation_get_Pubid_m28D7BB40FF192EDC5B5461FBE0FF7E690A3B6BFE_inline (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, const RuntimeMethod* method) ; // System.String System.Xml.Schema.SchemaNotation::get_SystemLiteral() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaNotation_get_SystemLiteral_m0E99C9B3C22B1F8535F3C9334B91EEFD0C2F1DF3_inline (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNotation::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNotation__ctor_mB0560FA8AB3F3443FC6B1638265F00E268C4ED61 (XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D* __this, String_t* ___0_name, String_t* ___1_publicId, String_t* ___2_systemId, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___3_doc, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::MoveNext() inline bool Enumerator_MoveNext_mFB28D9AB4BB5B94192AFBCF8727A992DD8A3EA23 (Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218* __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218*, const RuntimeMethod*))Enumerator_MoveNext_mBE11DA1DAFC756EB87E884AADC5EDC4BB72FB032_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::get_GeneralEntities() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* SchemaInfo_get_GeneralEntities_mB8E4E7E02EB79C03BDEEB06638EBFA631DE9C9D2 (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method) ; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::get_Values() inline ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431* Dictionary_2_get_Values_mA410F24C86421E016F25DFE10F06ED2CC94E8279 (Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* __this, const RuntimeMethod* method) { return (( ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431* (*) (Dictionary_2_t129029582481E96143BD747690E92DB7E444261E*, const RuntimeMethod*))Dictionary_2_get_Values_mA0C01DEA55329E55380E96BBD04D4D228B437EC5_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator System.Collections.Generic.Dictionary`2/ValueCollection::GetEnumerator() inline Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F ValueCollection_GetEnumerator_mDF1A568A63118C3FCC8962A66BFF7CA4FD701F63 (ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431* __this, const RuntimeMethod* method) { return (( Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F (*) (ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431*, const RuntimeMethod*))ValueCollection_GetEnumerator_m025EE28BE2F31676E08BC3D7C8E39D8232BDBBF8_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::Dispose() inline void Enumerator_Dispose_m9C22E03CBE0A5943CB4EEED769A719610719A106 (Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F* __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F*, const RuntimeMethod*))Enumerator_Dispose_mFD8FAB8D9FF5EDF9AE3B14CF539A8A34AA9527A8_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::get_Current() inline SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* Enumerator_get_Current_mAD814A76564116AD71DFC76D3FCAF39F2A454DF2_inline (Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F* __this, const RuntimeMethod* method) { return (( SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* (*) (Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F*, const RuntimeMethod*))Enumerator_get_Current_mB407E755F3B4C51C54D24338D00A352E5B16E7F3_gshared_inline)(__this, method); } // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaEntity::get_Name() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaEntity_get_Name_m8A17CC3B68A15DCD4C3ACEC6AE82AB7BF5CDBEAC_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) ; // System.String System.Xml.Schema.SchemaEntity::get_Text() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Text_mDCF201E623D7A98F87E859ACDEE9B5B6B4E953AE_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) ; // System.String System.Xml.Schema.SchemaEntity::get_Pubid() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Pubid_m9845E8CD129266AFA62E58F857D88D0941C88C82_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) ; // System.String System.Xml.Schema.SchemaEntity::get_Url() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Url_m7519C52A444DFD11468483C299A6C9D6A92F1CFB_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) ; // System.Xml.XmlQualifiedName System.Xml.Schema.SchemaEntity::get_NData() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaEntity_get_NData_m7B05467BF6357AB27C1DAFBFE27F9720C79CEC3C_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlQualifiedName::get_IsEmpty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlQualifiedName_get_IsEmpty_m37942163D9A870E85BE8762845953C6A6579A400 (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEntity::.ctor(System.String,System.String,System.String,System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntity__ctor_m3F8F45510F797944A6386162E16A5FF4EA5BCD12 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, String_t* ___0_name, String_t* ___1_strdata, String_t* ___2_publicId, String_t* ___3_systemId, String_t* ___4_notationName, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___5_doc, const RuntimeMethod* method) ; // System.String System.Xml.Schema.SchemaEntity::get_DeclaredURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_DeclaredURI_mA5B2AACD3D552050C6318FD6383F32FB0CC0CEA0 (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlEntity::SetBaseURI(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlEntity_SetBaseURI_mFEBE0339CA3A522BDC09A278FFBA3A9D77A578B3_inline (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, String_t* ___0_inBaseURI, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::MoveNext() inline bool Enumerator_MoveNext_m2039C64E26497D750FE7545A20B128FDB78A87BC (Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F* __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F*, const RuntimeMethod*))Enumerator_MoveNext_mBE11DA1DAFC756EB87E884AADC5EDC4BB72FB032_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::get_ParameterEntities() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* SchemaInfo_get_ParameterEntities_m54F4C298FA2B2AAE10FAA43965E9DD2C84E76FBB (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlDocument::set_Entities(System.Xml.XmlNamedNodeMap) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_set_Entities_mBBF7C97889080847540A0F31B1751726E81FF756_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* ___0_value, const RuntimeMethod* method) ; // System.Collections.Generic.Dictionary`2/Enumerator System.Collections.Generic.Dictionary`2::GetEnumerator() inline Enumerator_t42F4E0E4BE9FD853E9D5EE3D3B048C8C08ECCD28 Dictionary_2_GetEnumerator_mB2F07FA4420E7E08C4E8C50C4FB940647EE584AA (Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* __this, const RuntimeMethod* method) { return (( Enumerator_t42F4E0E4BE9FD853E9D5EE3D3B048C8C08ECCD28 (*) (Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A*, const RuntimeMethod*))Dictionary_2_GetEnumerator_m52AB12790B0B9B46B1DFB1F861C9DBEAB07C1FDA_gshared)(__this, method); } // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.SchemaDeclBase::get_Datatype() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* SchemaDeclBase_get_Datatype_mE6DE13C3518B65A1CF6E464F12D7D7653247AF90_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlDocument::AddIdInfo(System.Xml.XmlName,System.Xml.XmlName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_AddIdInfo_mF6E5BE7379C76DA2C5E4D292380086D04009CC0E (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___0_eleName, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___1_attrName, const RuntimeMethod* method) ; // System.Xml.XmlParserContext System.Xml.XmlLoader::GetContext(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* XmlLoader_GetContext_mC3CED072E1A2C5E1B94C8542BDFE5D0B3BA48934 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) ; // System.Xml.XmlReader System.Xml.XmlLoader::CreateInnerXmlReader(System.String,System.Xml.XmlNodeType,System.Xml.XmlParserContext,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlLoader_CreateInnerXmlReader_m9F7F526E3D4E37EAFA9469C1FE61159D2FE5CCC6 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, String_t* ___0_xmlFragment, int32_t ___1_nt, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___2_context, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___3_doc, const RuntimeMethod* method) ; // System.Xml.XmlNamespaceManager System.Xml.XmlParserContext::get_NamespaceManager() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlLoader::RemoveDuplicateNamespace(System.Xml.XmlElement,System.Xml.XmlNamespaceManager,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_RemoveDuplicateNamespace_m451D261AC3A6D4918CA6661853B922BBBE39A148 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___0_elem, XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___1_mgr, bool ___2_fCheckElemAttrs, const RuntimeMethod* method) ; // System.String System.Xml.XmlLoader::EntitizeName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlLoader_EntitizeName_mA9639629370CE5837B6174542782588E6E1A682B (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, String_t* ___0_name, const RuntimeMethod* method) ; // System.Xml.XmlNamedNodeMap System.Xml.XmlDocument::get_Entities() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* XmlDocument_get_Entities_m72C0183C637A5D71BB38433D1D4CD9A4E87D3A80 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlDocument::get_ActualLoadingStatus() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocument_get_ActualLoadingStatus_m63B8F5AD9C82FEF1D9EFA47926E4AABED6CD9D99_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::set_DisableUndeclaredEntityCheck(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_DisableUndeclaredEntityCheck_m339683347E0D9F45C31C7602CBAF90F5497CACC5_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Xml.Schema.SchemaInfo System.Xml.XmlDocumentType::get_DtdSchemaInfo() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* XmlDocumentType_get_DtdSchemaInfo_mDF54B3A169B037A8C8A4F186206B143AF3068259_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::SetDtdInfo(System.Xml.IDtdInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl_SetDtdInfo_m8F11C3245888FFB1600893DBAD0135432EE06110 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, RuntimeObject* ___0_newDtdInfo, const RuntimeMethod* method) ; // System.String System.Xml.XmlParserContext::get_BaseURI() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlParserContext::get_DocTypeName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_DocTypeName_m8212FEC6DBA21A5B1E95538D40951B1CB0380CF0_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlParserContext::get_PublicId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_PublicId_mCE67EDDC8A9D73A0AADB77E0F7CCF53DEB5E300D_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlParserContext::get_SystemId() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_SystemId_mB4649C8C6DA52AFC5224E82BBD2B7C7A1D5CCB58_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlParserContext::get_InternalSubset() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_InternalSubset_mDD9703E47510C335AD4940AE7F761F56AA00E9DC_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReaderImpl::.ctor(System.String,System.Xml.XmlParserContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReaderImpl__ctor_mB17B348B4F2C16D6F06AB86A2803970CA0517303 (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, String_t* ___0_xmlFragment, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___1_context, const RuntimeMethod* method) ; // System.Void System.Xml.XmlName::.ctor(System.String,System.String,System.String,System.Int32,System.Xml.XmlDocument,System.Xml.XmlName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlName__ctor_m481CD54AACBDAC664A7E9E893CB364ED11C62B24 (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_ns, int32_t ___3_hashCode, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___4_ownerDoc, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___5_next, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNameEx::.ctor(System.String,System.String,System.String,System.Int32,System.Xml.XmlDocument,System.Xml.XmlName,System.Xml.Schema.IXmlSchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNameEx__ctor_m967B3032B050D5E535DC12B3F44822B3B14BE76C (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_ns, int32_t ___3_hashCode, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___4_ownerDoc, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___5_next, RuntimeObject* ___6_schemaInfo, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNameEx::SetValidity(System.Xml.Schema.XmlSchemaValidity) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNameEx_SetValidity_m6D466FF2344CA38C5D234FEE89AE009FC900095B (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNameEx::SetIsDefault(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNameEx_SetIsDefault_m74E42B17EEEDE9C419A979BD8A296B282F7ACB66 (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNameEx::SetIsNil(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNameEx_SetIsNil_mBEA95E9E386B8B461B171BCD5A5E88F9885630CF (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlDocument::get_CanReportValidity() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocument_get_CanReportValidity_m71D1E8A3FCDBF648B6E83D5B7690FD0FD40F8736_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlNamedNodeMap::FindNodeOffset(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlNamedNodeMap_FindNodeOffset_m99B44DA4690745D017579D4CE66A8B109B3E5BAE (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, String_t* ___0_name, const RuntimeMethod* method) ; // System.Xml.XmlNode System.Xml.XmlNamedNodeMap::ReplaceNodeAt(System.Int32,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNamedNodeMap_ReplaceNodeAt_mF8FDC2FDB6E09273E44EE8399CEBC314F0C1ECB2 (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, int32_t ___0_i, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_node, const RuntimeMethod* method) ; // System.Collections.IEnumerator System.Xml.XmlNamedNodeMap/SmallXmlNodeList::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SmallXmlNodeList_GetEnumerator_mB3807963AF68C5F75E6FF22AD8515F2F966F21CE (SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList::Add(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlNodeList_Add_m4BA68D6D8E4613E79365ACDF2413B287FA4A4F06 (SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlNodeList_RemoveAt_m36308613FA8129C77990E7650BB0A1CE49ABC882 (SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* __this, int32_t ___0_index, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList::Insert(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlNodeList_Insert_m8DCFF8C4C69AAA8B19C891D4A7304EA420946344 (SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* __this, int32_t ___0_index, RuntimeObject* ___1_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator::.ctor(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleObjectEnumerator__ctor_m4BB660A9DDBEED542CDBF9CC35980FAEA755DB1D (SingleObjectEnumerator_t4A92C1B8B2E37167742E12C10D13D6B3D6124D91* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ; // System.Void System.InvalidOperationException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlChildNodes::.ctor(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlChildNodes__ctor_mE297CC7E680D376A26339D6067C7E434271234B5 (XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_container, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNode::UnnestTextNodes(System.Xml.XmlNode,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_UnnestTextNodes_m2469818048DBF234BFFBDA111C6028982B61C802 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_prevNode, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_nextNode, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlNode::AncestorNode(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlNode_AncestorNode_m41AA63EB8FEC823566457E333ABF6AC8AC800348 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlNode::HasReadOnlyParent(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlNode_HasReadOnlyParent_m3DCAEEACC4FB58E95F8B90877659C4AA1B2274B2 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_n, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNode::AppendChildText(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_AppendChildText_m8C1493DF2F031942BD58F96DE8EFC365194561A1 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, StringBuilder_t* ___0_builder, const RuntimeMethod* method) ; // System.Void System.Text.StringBuilder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D (StringBuilder_t* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlEntityReference::get_ChildBaseURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntityReference_get_ChildBaseURI_m0436E0491FD7F8D12694E705C57AF11BD59B62A4 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method) ; // System.Void System.EventArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_mC6F9412D03203ADEF854117542C8EBF61624C8C3 (EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharacterData::CheckOnData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharacterData_CheckOnData_mD20947276C3B576599E015E4E19C0F2779862FBA (XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B* __this, String_t* ___0_data, const RuntimeMethod* method) ; // System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_get_ParentNode_mF576AC1CF834069B79BF32E497BB1A05E3E4AF63 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) ; // System.Xml.XmlNode System.Xml.XmlAttribute::RemoveChild(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttribute_RemoveChild_m81EEA6827E61E919CF45D3E4157ED643D3B81D18 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_oldChild, const RuntimeMethod* method) ; // System.Xml.XmlNode System.Xml.XmlAttribute::AppendChild(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttribute_AppendChild_mF31F0A172D904DEE1DF58B25093DCCF9E0C4CC75 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_newChild, const RuntimeMethod* method) ; // System.Void System.Xml.LineInfo::.ctor(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineInfo__ctor_mFF99DC657778EB3519A941F3CB7E7C33710B0EE0 (LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* __this, int32_t ___0_lineNo, int32_t ___1_linePos, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNameTable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNameTable__ctor_m165D6C26354AF163FA559778C1998B36A8A5FBF6 (XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* __this, const RuntimeMethod* method) ; // System.Int32 System.Environment::get_TickCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_TickCount_m183BFCF001E12849E3D898957F0B81FD88BA183C (const RuntimeMethod* method) ; // System.String System.Xml.NameTable::AddEntry(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NameTable_AddEntry_mF259DCB5A89DFE81744AF039838B918F52020C5F (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* __this, String_t* ___0_str, int32_t ___1_hashCode, const RuntimeMethod* method) ; // System.Boolean System.Xml.NameTable::TextEquals(System.String,System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NameTable_TextEquals_m2B314F6B5578F426D698E2896C3A329002CAB767 (String_t* ___0_str1, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___1_str2, int32_t ___2_str2Start, int32_t ___3_str2Length, const RuntimeMethod* method) ; // System.Void System.Xml.NameTable/Entry::.ctor(System.String,System.Int32,System.Xml.NameTable/Entry) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Entry__ctor_m659BC03FEAA3AE1874FE82AD8740CCDEAE1CDFED (Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* __this, String_t* ___0_str, int32_t ___1_hashCode, Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* ___2_next, const RuntimeMethod* method) ; // System.Void System.Xml.NameTable::Grow() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameTable_Grow_m34F300598474A63CEA90D7F7A71C6F9EB536D5B2 (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser__ctor_m4E3B38D8F814505EEBDC983BE9A9AAE448F9F279 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaInfo__ctor_mF2778D9A328648120368A2B00DC41949E52E0963 (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaInfo::set_SchemaType(System.Xml.Schema.SchemaType) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaInfo_set_SchemaType_m00F5B5934AC3BDDD71AAEB8CA3E307451FA51229_inline (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Boolean System.Uri::op_Inequality(System.Uri,System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Inequality_m64BE981CDF88B751677B80D883B201BF3CFD83F7 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_uri1, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___1_uri2, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::Initialize(System.Xml.IDtdParserAdapter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_Initialize_m0EBA9112535360FF3CB54D32A2F693231023460F (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, RuntimeObject* ___0_readerAdapter, const RuntimeMethod* method) ; // System.ArgumentException System.Xml.XmlConvert::CreateInvalidNameArgumentException(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* XmlConvert_CreateInvalidNameArgumentException_m8C7D4474D314DF1E203E65A09E377C098ACBBC59 (String_t* ___0_name, String_t* ___1_argumentName, const RuntimeMethod* method) ; // System.String System.Xml.XmlConvert::VerifyName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlConvert_VerifyName_mDE22F8CF21CB28A05C08D86EDBAA4AA798A1FB34 (String_t* ___0_name, const RuntimeMethod* method) ; // System.Int32 System.String::IndexOf(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlQualifiedName::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlQualifiedName__ctor_m2DD62019A76524587CC7204E1AB903CDAADA6545 (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, String_t* ___0_name, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaInfo::set_DocTypeName(System.Xml.XmlQualifiedName) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaInfo_set_DocTypeName_mB87F85301E58DCCDD63697CE790A4417A07A54B0_inline (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_value, const RuntimeMethod* method) ; // System.String System.String::Substring(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472 (String_t* __this, int32_t ___0_startIndex, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlCharType::IsOnlyCharData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlCharType_IsOnlyCharData_m5BFEFD55C4578A0117D1ED3305ACF4C062DCE9D3 (XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* __this, String_t* ___0_str, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ThrowInvalidChar(System.Int32,System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ThrowInvalidChar_mD2161D4741D7A76279757B830E981723BEB64CA3 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_pos, String_t* ___1_data, int32_t ___2_invCharPos, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlCharType::IsPublicId(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlCharType_IsPublicId_m1119A6921A99A357141333030F425EDD2AAFE2AE (XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* __this, String_t* ___0_str, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::Parse(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_Parse_m251123EFA9598E4851882EB21A72EDF13E3D6EC6 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, bool ___0_saveInternalSubset, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::InitializeFreeFloatingDtd(System.String,System.String,System.String,System.String,System.String,System.Xml.IDtdParserAdapter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_InitializeFreeFloatingDtd_m1508B91CB75E55A064D4DC2EC796EF2B35785B13 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, String_t* ___0_baseUri, String_t* ___1_docTypeName, String_t* ___2_publicId, String_t* ___3_systemId, String_t* ___4_internalSubset, RuntimeObject* ___5_adapter, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseFreeFloatingDtd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseFreeFloatingDtd_mD311D1717B2C75FCD8301944583EC6872085E967 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseInDocumentDtd(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseInDocumentDtd_m152ABA7579FAFD24B3F745D24B25C5210C584668 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, bool ___0_saveInternalSubset, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaInfo::Finish() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaInfo_Finish_m2819E8B404C31776D077502515C4BA78BD02F569 (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method) ; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::get_Values() inline ValueCollection_t499BCEBD608E294D297D05F15B0261C6141FF089* Dictionary_2_get_Values_mD416BBB037BD250D7C597A72EB36BB50CD033DC6 (Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698* __this, const RuntimeMethod* method) { return (( ValueCollection_t499BCEBD608E294D297D05F15B0261C6141FF089* (*) (Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698*, const RuntimeMethod*))Dictionary_2_get_Values_mA0C01DEA55329E55380E96BBD04D4D228B437EC5_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator System.Collections.Generic.Dictionary`2/ValueCollection::GetEnumerator() inline Enumerator_tFFB123B32E0A29A9F7621A05A0F893DF21310060 ValueCollection_GetEnumerator_mABC01CB19F774F69E736CCAB8E79BFEFC3702C8C (ValueCollection_t499BCEBD608E294D297D05F15B0261C6141FF089* __this, const RuntimeMethod* method) { return (( Enumerator_tFFB123B32E0A29A9F7621A05A0F893DF21310060 (*) (ValueCollection_t499BCEBD608E294D297D05F15B0261C6141FF089*, const RuntimeMethod*))ValueCollection_GetEnumerator_m025EE28BE2F31676E08BC3D7C8E39D8232BDBBF8_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::Dispose() inline void Enumerator_Dispose_m8ED1DCC22330B97D3DD70AD4094E53E84535AF06 (Enumerator_tFFB123B32E0A29A9F7621A05A0F893DF21310060* __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tFFB123B32E0A29A9F7621A05A0F893DF21310060*, const RuntimeMethod*))Enumerator_Dispose_mFD8FAB8D9FF5EDF9AE3B14CF539A8A34AA9527A8_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::get_Current() inline UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* Enumerator_get_Current_mBB1E0A2F071C3C58AD52810FA1C157F300EB85FF_inline (Enumerator_tFFB123B32E0A29A9F7621A05A0F893DF21310060* __this, const RuntimeMethod* method) { return (( UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* (*) (Enumerator_tFFB123B32E0A29A9F7621A05A0F893DF21310060*, const RuntimeMethod*))Enumerator_get_Current_mB407E755F3B4C51C54D24338D00A352E5B16E7F3_gshared_inline)(__this, method); } // System.String System.Xml.DtdParser::get_BaseUriStr() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DtdParser_get_BaseUriStr_m1A09B1A26119F87C048748007B59685399A1A0AE (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.XmlSchemaException::.ctor(System.String,System.String,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaException__ctor_m5EB9F0E36520DCB3AD78B355F5F120E1D7FF5EEB (XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B* __this, String_t* ___0_res, String_t* ___1_arg, String_t* ___2_sourceUri, int32_t ___3_lineNumber, int32_t ___4_linePosition, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::SendValidationEvent(System.Xml.Schema.XmlSeverityType,System.Xml.Schema.XmlSchemaException) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_SendValidationEvent_m874AFDBD3F0EEC5D3AE8A195B98AE90DC472438F (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_severity, XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B* ___1_e, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::MoveNext() inline bool Enumerator_MoveNext_m3D12963AA9A1E78352AD17756F85E7F8E0281CAA (Enumerator_tFFB123B32E0A29A9F7621A05A0F893DF21310060* __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tFFB123B32E0A29A9F7621A05A0F893DF21310060*, const RuntimeMethod*))Enumerator_MoveNext_mBE11DA1DAFC756EB87E884AADC5EDC4BB72FB032_gshared)(__this, method); } // System.Void System.Xml.DtdParser::LoadParsingBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_LoadParsingBuffer_mF05F85D2FBE70046CCFD312890F918B9D0961C14 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::GetToken(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, bool ___0_needWhiteSpace, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::OnUnexpectedError() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_OnUnexpectedError_m48B2712A07C18494946123F9947ED17F270DC4B6 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.XmlQualifiedName System.Xml.DtdParser::GetNameQualified(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* DtdParser_GetNameQualified_m90D851C0C284B3597B168491C6824733D42E1979 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, bool ___0_canHavePrefix, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseExternalId(System.Xml.DtdParser/Token,System.Xml.DtdParser/Token,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseExternalId_m2B6C7C539D6B9BAA81D2D39DD40915B0F8EE1680 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_idTokenType, int32_t ___1_declType, String_t** ___2_publicId, String_t** ___3_systemId, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::SaveParsingBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_SaveParsingBuffer_mA50879908E86FF9D354642A7BF0CDF85ACE35D8A (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseInternalSubset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseInternalSubset_m4CA8AEDF9E87543186DF6F820A4F1CB15F5EA0A8 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseExternalSubset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseExternalSubset_m32ACD9461EF71173C98644D59A4E0A82576D98B4 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseSubset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseSubset_mDF6AA95DF1D5EFF0A66211B1CD546977176D66B4 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseAttlistDecl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseAttlistDecl_m56790F6B55821549A8340D00586BA134FFDA28C1 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseElementDecl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseElementDecl_m04A22275D2342422E13554DD1FEA56FEDF7F7CA1 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseEntityDecl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseEntityDecl_mDDF946172429F7DBFB301FE5F113084713B48B57 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseNotationDecl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseNotationDecl_mBCCE845466278E35DDADC504075E85C358FA9EC1 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseComment() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseComment_mAAB19E9100AB4E6929F69BF9895CFE5430B39E96 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParsePI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParsePI_m78FD95C2338F0BCF9535C89A24CEFB6F0802E4C9 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.DtdParser::get_ParsingInternalSubset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_get_ParsingInternalSubset_mF2EDC8896A9EF87EFC4BFB9DC631B3079DF05399 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::Throw(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_curPos, String_t* ___1_res, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseCondSection() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseCondSection_m6DF82F4650A08BC0E920DEA62D346383C57C677D (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::SendValidationEvent(System.Int32,System.Xml.Schema.XmlSeverityType,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_pos, int32_t ___1_severity, String_t* ___2_code, String_t* ___3_arg, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::SaveParsingBuffer(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_SaveParsingBuffer_m002F46CF1017FA4228DEAE75ABD891C78F2505AF (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_internalSubsetValueEndPos, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaInfo::set_InternalDtdSubset(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaInfo_set_InternalDtdSubset_m8352C52C8065FDD87C562CC9AC5CC098B7697CD5_inline (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ThrowUnexpectedToken(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ThrowUnexpectedToken_mBCA8EBEE9CF9EC08AEEB6CA14BF75492689BF982 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_pos, String_t* ___1_expectedToken, const RuntimeMethod* method) ; // System.Collections.Generic.Dictionary`2 System.Xml.Schema.SchemaInfo::get_UndeclaredElementDecls() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* SchemaInfo_get_UndeclaredElementDecls_m0A88B7833EFC3AAFB9DC374257DB131D1902EF1D_inline (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaElementDecl::.ctor(System.Xml.XmlQualifiedName,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaElementDecl__ctor_m37D4F8688A2FCD66D64D442660B6E6BB0F30E70C (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_name, String_t* ___1_prefix, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.Dictionary`2::Add(TKey,TValue) inline void Dictionary_2_Add_m889D62A946A279647B91BF4A4D8B1B2C4DBBCDF3 (Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_key, SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* ___1_value, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A*, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*, SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___0_key, ___1_value, method); } // System.Void System.Xml.Schema.SchemaAttDef::.ctor(System.Xml.XmlQualifiedName,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaAttDef__ctor_mCE4B0F520716988FF7D1285FF25B92060D0DA76C (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_name, String_t* ___1_prefix, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaDeclBase::set_IsDeclaredInExternal(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaDeclBase_set_IsDeclaredInExternal_m3F57DA2AD9DBAC1C431293C53E4E052A8E915D96_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Int32 System.Xml.DtdParser::get_LineNo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_get_LineNo_m4D78AF8EFE8D05D61D89C0CC1C3CB46D0263E246 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaAttDef::set_LineNumber(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaAttDef_set_LineNumber_mA7F00D8F6FAB9626DBF9444371C2D5B0EF99E07E_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Int32 System.Xml.DtdParser::get_LinePos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_get_LinePos_m2FDB78628E84297247B78BA60AF304C084790005 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaAttDef::set_LinePosition(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaAttDef_set_LinePosition_mC3B43012E31CCE6784CCFE1B9FE8CC15B0C7E584_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaAttDef::set_Reserved(System.Xml.Schema.SchemaAttDef/Reserve) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaAttDef_set_Reserved_mA68CCD19A9DFB1D612973314A38245DCA338BDC4_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Int32 System.Xml.Schema.SchemaAttDef::get_LineNumber() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_LineNumber_m8A9494C90F0B132F2A84AF7203FE074046529A1C_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.Schema.SchemaAttDef::get_LinePosition() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_LinePosition_m192E37BC23204F940B4BC5BBBCC248EEAE4481D1_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::Throw(System.String,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_Throw_mB4CABDC7A50D3C7F339CC18B8F500A9DCD78CA95 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, String_t* ___0_res, String_t* ___1_arg, int32_t ___2_lineNo, int32_t ___3_linePos, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaAttDef::CheckXmlSpace(System.Xml.IValidationEventHandling) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaAttDef_CheckXmlSpace_m03EFF5426C02492D7C4EEFEC396DC7386E20DB74 (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, RuntimeObject* ___0_validationEventHandling, const RuntimeMethod* method) ; // System.Xml.Schema.SchemaAttDef System.Xml.Schema.SchemaElementDecl::GetAttDef(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* SchemaElementDecl_GetAttDef_m157EF6E66718BDD7F087323423296A4AF4719259 (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_qname, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseAttlistType(System.Xml.Schema.SchemaAttDef,System.Xml.Schema.SchemaElementDecl,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseAttlistType_mC7CF6695229010B0320A5311BA2FA9298F6A5D29 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___0_attrDef, SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* ___1_elementDecl, bool ___2_ignoreErrors, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseAttlistDefault(System.Xml.Schema.SchemaAttDef,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseAttlistDefault_m2E49FD966B82593A64DFCB15F7D49C30183D859A (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___0_attrDef, bool ___1_ignoreErrors, const RuntimeMethod* method) ; // System.String System.Xml.Schema.SchemaAttDef::get_DefaultValueExpanded() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SchemaAttDef_get_DefaultValueExpanded_m61569B11E4FBDEED7A35CD5A39675B57CE6DB78F (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) ; // System.String System.String::Trim() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5 (String_t* __this, const RuntimeMethod* method) ; // System.Xml.XmlTokenizedType System.Xml.Schema.SchemaAttDef::get_TokenizedType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_TokenizedType_m57FC667A4FC7D2904B78B639A39E872595F7EF86 (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaElementDecl::AddAttDef(System.Xml.Schema.SchemaAttDef) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaElementDecl_AddAttDef_mAF964F8485156FF16A7554A1B8DC76B7A83C12BA (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___0_attdef, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaElementDecl::set_HasNonCDataAttribute(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaElementDecl_set_HasNonCDataAttribute_m66C35DA3287AD11A2D0DD2E47FE3B8198851F01E_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Boolean System.Xml.DtdParser::IsAttributeValueType(System.Xml.DtdParser/Token) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_IsAttributeValueType_m973F7C314B5AC9D43A0AE8BAE06F879DE66F9115 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_token, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaAttDef::set_TokenizedType(System.Xml.XmlTokenizedType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaAttDef_set_TokenizedType_m66E5B35A86397A9C6E7B97C3DE2A47FC49B5D1FA (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaType::GetBuiltInSimpleType(System.Xml.Schema.XmlTypeCode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* XmlSchemaType_GetBuiltInSimpleType_m68FACA3B15481A61FB41E3282821660F27C7F57D (int32_t ___0_typeCode, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaDeclBase::set_SchemaType(System.Xml.Schema.XmlSchemaType) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaDeclBase_set_SchemaType_m4A34BA7ABAAD6A60F7AE3A2572EDD3E86893A21F_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___0_value, const RuntimeMethod* method) ; // System.Boolean System.Xml.Schema.SchemaElementDecl::get_IsIdDeclared() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaElementDecl_get_IsIdDeclared_m44ADA012ED628AF85A038CF178E9CA86806077B3_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::SendValidationEvent(System.Xml.Schema.XmlSeverityType,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_SendValidationEvent_m79ECFFB3D03874AE9095BA539FC8B7191018E58B (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_severity, String_t* ___1_code, String_t* ___2_arg, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaElementDecl::set_IsIdDeclared(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaElementDecl_set_IsIdDeclared_m88620A2DF06335275FD59A77CB5073E5707BA5AD_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Boolean System.Xml.Schema.SchemaElementDecl::get_IsNotationDeclared() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaElementDecl_get_IsNotationDeclared_m56FEF2BE202BF5AC41DDFB7BCA33983F71A0FB0B_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, const RuntimeMethod* method) ; // System.Xml.Schema.ContentValidator System.Xml.Schema.SchemaElementDecl::get_ContentValidator() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* SchemaElementDecl_get_ContentValidator_m687E7878F142CFC03B5D7B4FFD6FE1F4AE6526E1_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, const RuntimeMethod* method) ; // System.Xml.Schema.XmlSchemaContentType System.Xml.Schema.ContentValidator::get_ContentType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ContentValidator_get_ContentType_m2E9C64DB3522E5A29BE6CAA4A929CBABAD1CEF23_inline (ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaElementDecl::set_IsNotationDeclared(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaElementDecl_set_IsNotationDeclared_m33DFE77CEA01A59316738F4BC49110A7C98A2365_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, bool ___0_value, const RuntimeMethod* method) ; // System.String System.Xml.DtdParser::GetNameString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DtdParser_GetNameString_mA1D54806181E8700FF13260A88E2077F603C39FB (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2::ContainsKey(TKey) inline bool Dictionary_2_ContainsKey_mE95F6F2001E3CA07C37D145E3D22F9A261874206 (Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* __this, String_t* ___0_key, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1*, String_t*, const RuntimeMethod*))Dictionary_2_ContainsKey_m703047C213F7AB55C9DC346596287773A1F670CD_gshared)(__this, ___0_key, method); } // System.Void System.Xml.DtdParser::AddUndeclaredNotation(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_AddUndeclaredNotation_mF35809833D2C33608CD892441E552FAEA80F4A70 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, String_t* ___0_notationName, const RuntimeMethod* method) ; // System.Collections.Generic.List`1 System.Xml.Schema.SchemaDeclBase::get_Values() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* SchemaDeclBase_get_Values_m5CBE6E5DB4DE93179FEB87F1BBC0EAF43FAF0E06_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.List`1::Contains(T) inline bool List_1_Contains_m359254483BE42CAD4DCA8FBAFB87473FB4CF00E1 (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, String_t* ___0_item, const RuntimeMethod* method) { return (( bool (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, String_t*, const RuntimeMethod*))List_1_Contains_m4C9139C2A6B23E9343D3F87807B32C6E2CFE660D_gshared)(__this, ___0_item, method); } // System.Void System.Xml.Schema.SchemaDeclBase::AddValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaDeclBase_AddValue_m9C70610A093F7CD2287EB47D9FA619E1D29A1958 (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.String System.Xml.DtdParser::GetNmtokenString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DtdParser_GetNmtokenString_m2FBC77BC5054E435A4F99466E1E21D664260D1EB (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaDeclBase::set_Presence(System.Xml.Schema.SchemaDeclBase/Use) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaDeclBase_set_Presence_mB1FAF4B21DA1F38F9A40D57E54260010E54C1B91_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.String System.Xml.DtdParser::GetValueWithStrippedSpaces() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DtdParser_GetValueWithStrippedSpaces_mA7A8B5EF2DDCC7C0C1AE9845AF9EF4D149094FEA (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaAttDef::set_DefaultValueExpanded(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaAttDef_set_DefaultValueExpanded_mE4A42E55D630D5C41EAF3480F721749DBB59B801_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.String System.Xml.DtdParser::GetValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DtdParser_GetValue_m3A56A10A245D1CDB50CCBFE897A8BA1AB3F5F622 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaAttDef::set_ValueLineNumber(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaAttDef_set_ValueLineNumber_mD19157EDC780F89AA9FD6C07FEE28363DB7BDC91_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaAttDef::set_ValueLinePosition(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaAttDef_set_ValueLinePosition_m8AEAB2128F36C4F66C16E9CB778C94402E15D387_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.DtdValidator::SetDefaultTypedValue(System.Xml.Schema.SchemaAttDef,System.Xml.IDtdParserAdapter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdValidator_SetDefaultTypedValue_mE6989FDEBC8F5EFB61B0AD93B149FD7BA0B9ECA9 (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___0_attdef, RuntimeObject* ___1_readerAdapter, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2::Remove(TKey) inline bool Dictionary_2_Remove_m1E37C29A7B6036E5D212EDE08E94808C0020EE55 (Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_key, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A*, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*, const RuntimeMethod*))Dictionary_2_Remove_m5C7C45E75D951A75843F3F7AADD56ECD64F6BC86_gshared)(__this, ___0_key, method); } // System.Void System.Xml.Schema.SchemaElementDecl::set_ContentValidator(System.Xml.Schema.ContentValidator) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaElementDecl_set_ContentValidator_m9670779D24E74D3F1272FB1C378371719F9DFB0E_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.ParticleContentValidator::.ctor(System.Xml.Schema.XmlSchemaContentType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator__ctor_m3B7E26A1371336703F3B8B1A1A721C139E1E8078 (ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* __this, int32_t ___0_contentType, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.ParticleContentValidator::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_Start_mA9E5F5D3C90F19E23A9C60551E105DAE86DF45AC (ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.ParticleContentValidator::OpenGroup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_OpenGroup_mB1BC05C6D2410C538451E560BBB054D89259FD38 (ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseElementMixedContent(System.Xml.Schema.ParticleContentValidator,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseElementMixedContent_mF075DA5FDA964DB2A05D84C79204A37A2F4453D6 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* ___0_pcv, int32_t ___1_startParenEntityId, const RuntimeMethod* method) ; // System.Xml.Schema.ContentValidator System.Xml.Schema.ParticleContentValidator::Finish(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* ParticleContentValidator_Finish_mB1589F15458B320D1A6DC7179BB70F5C616ED192 (ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* __this, bool ___0_useDFA, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseElementOnlyContent(System.Xml.Schema.ParticleContentValidator,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseElementOnlyContent_m8227BEF84B1E93AE070877C03E77C9BA204F5F35 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* ___0_pcv, int32_t ___1_startParenEntityId, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.Stack`1::.ctor() inline void Stack_1__ctor_m859E9CA447DBF5EE9DD9D0ECDBDA9D98D49CD0CA (Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8* __this, const RuntimeMethod* method) { (( void (*) (Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8*, const RuntimeMethod*))Stack_1__ctor_m70E8EDA96A608CE9BAB7FC8313B233AADA573BD4_gshared)(__this, method); } // System.Void System.Xml.DtdParser/ParseElementOnlyContent_LocalFrame::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParseElementOnlyContent_LocalFrame__ctor_m7E1F8F1E449038C870E9A418F8597ECFE5E6FDD1 (ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* __this, int32_t ___0_startParentEntityIdParam, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.Stack`1::Push(T) inline void Stack_1_Push_m5E3D559C3BC63ADA67D5F6B8574A292AA3703C70 (Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8* __this, ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* ___0_item, const RuntimeMethod* method) { (( void (*) (Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8*, ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8*, const RuntimeMethod*))Stack_1_Push_m709DD11BC1291A905814182CF9A367DE7399A778_gshared)(__this, ___0_item, method); } // System.Void System.Xml.Schema.ParticleContentValidator::AddName(System.Xml.XmlQualifiedName,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_AddName_m664A347C22696BE8E7587622B923EEF8DBAD2025 (ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_name, RuntimeObject* ___1_particle, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ParseHowMany(System.Xml.Schema.ParticleContentValidator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseHowMany_mEA47F6A972504F1CE7D55AFACC025D61A0ED3126 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* ___0_pcv, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.ParticleContentValidator::AddSequence() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_AddSequence_m4E844C5C7E35EB35FD72B4A18F0FB55198EBA7DA (ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.ParticleContentValidator::AddChoice() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_AddChoice_mC56136642F8957A5E0450EBFECD4DC45CC5E0A60 (ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.ParticleContentValidator::CloseGroup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_CloseGroup_mA124590CE4ABB10E0E03B9EF146A249731616B30 (ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* __this, const RuntimeMethod* method) ; // T System.Collections.Generic.Stack`1::Pop() inline ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* Stack_1_Pop_mB31BECBC0F3FF13AE5D0EC3C5F3738DBCA64F93D (Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8* __this, const RuntimeMethod* method) { return (( ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* (*) (Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8*, const RuntimeMethod*))Stack_1_Pop_m2AFF69249659372F07EE25817DBCAFE74E1CF778_gshared)(__this, method); } // System.Int32 System.Collections.Generic.Stack`1::get_Count() inline int32_t Stack_1_get_Count_mF5D38961851C67F431DDC6AA9FA9BC2BE63DBE2A_inline (Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8* __this, const RuntimeMethod* method) { return (( int32_t (*) (Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8*, const RuntimeMethod*))Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline)(__this, method); } // T System.Collections.Generic.Stack`1::Peek() inline ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* Stack_1_Peek_m0C074AC550A3838F3407E0C3699055604445DB7A (Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8* __this, const RuntimeMethod* method) { return (( ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* (*) (Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8*, const RuntimeMethod*))Stack_1_Peek_mF0ECF6A61726B66E6D9B33D8C4DEAA47E586E6E4_gshared)(__this, method); } // System.Void System.Xml.Schema.ParticleContentValidator::AddStar() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_AddStar_mEE53402121A554278856D01DD84040B0DAF06017 (ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.ParticleContentValidator::AddQMark() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_AddQMark_m55D3B074D8781502F6A5093A434D1950C804A155 (ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.ParticleContentValidator::AddPlus() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParticleContentValidator_AddPlus_mA6877E25D2F1BBC78C9A16AE29B12F9CE955C7C5 (ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Schema.ParticleContentValidator::Exists(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ParticleContentValidator_Exists_mBCB763C6C4DA1D4732D98E21ECECFA2987132B9E (ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_name, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaEntity::.ctor(System.Xml.XmlQualifiedName,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity__ctor_m7444C0D862E0CC6A87EE2B39B4D058F657AA299C (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_qname, bool ___1_isParameter, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaEntity::set_BaseURI(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_BaseURI_mFC468DD1928AD24B87E405653FBB189A67042C61_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaEntity::set_DeclaredURI(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_DeclaredURI_m0411EACB64E056C515ADBBD2118036872D76AC96_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2::ContainsKey(TKey) inline bool Dictionary_2_ContainsKey_mA166669C5531C48393C18457E76480F075E923CA (Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_key, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t129029582481E96143BD747690E92DB7E444261E*, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*, const RuntimeMethod*))Dictionary_2_ContainsKey_m703047C213F7AB55C9DC346596287773A1F670CD_gshared)(__this, ___0_key, method); } // System.Void System.Collections.Generic.Dictionary`2::Add(TKey,TValue) inline void Dictionary_2_Add_m0BD19F784F1A789C4FE92B64782BE1667D25902B (Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_key, SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* ___1_value, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t129029582481E96143BD747690E92DB7E444261E*, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*, SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___0_key, ___1_value, method); } // System.Void System.Xml.Schema.SchemaEntity::set_DeclaredInExternal(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_DeclaredInExternal_mE6A46D7897D9CDBF7400135BF42A153AB313D66F_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaEntity::set_ParsingInProgress(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_ParsingInProgress_m6DA2762E08D1C44455A0E1CF86B7B208A6BD1480_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaEntity::set_IsExternal(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_IsExternal_mEA049015A7FB2840CFC3870A2F41FAC927612D12_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaEntity::set_Url(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity_set_Url_m39051E42954FC32EF9283C192653BA148CB41249 (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaEntity::set_Pubid(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_Pubid_m38932D2D6C40B066741B4F3C85478DA7A49F1FC2_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::Throw(System.Int32,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_Throw_mA82BAD834C0CCDE0E9325996E4560953761B62D0 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_curPos, String_t* ___1_res, String_t* ___2_arg, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaEntity::set_NData(System.Xml.XmlQualifiedName) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_NData_mB7C417287EC6223758560683CFEF6961CCA9DD4F_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaEntity::set_Text(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaEntity_set_Text_m62FCB261049A0B400D7C27470AFC73EA227861AF (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaEntity::set_Line(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_Line_m3F4EBBBF917403C4F93292B873B64063DD3850F3_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaEntity::set_Pos(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_Pos_mD4124AF35C72621D401E02AED280FF8A8934FABB_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2::Remove(TKey) inline bool Dictionary_2_Remove_m620783E54E80B6F38403C978D1134BC1613768B2 (Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698* __this, String_t* ___0_key, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698*, String_t*, const RuntimeMethod*))Dictionary_2_Remove_m5C7C45E75D951A75843F3F7AADD56ECD64F6BC86_gshared)(__this, ___0_key, method); } // System.Void System.Xml.Schema.SchemaNotation::.ctor(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SchemaNotation__ctor_m2C7E7540A7A33F4B18E31AEB896806C301466457 (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_name, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.Dictionary`2::Add(TKey,TValue) inline void Dictionary_2_Add_m1BD6D03E43DE090315E2B473EC6665083565F73E (Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* __this, String_t* ___0_key, SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* ___1_value, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1*, String_t*, SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___0_key, ___1_value, method); } // System.Void System.Xml.Schema.SchemaNotation::set_SystemLiteral(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaNotation_set_SystemLiteral_mE508FA22D4C2368801F3A5AA2B5797F1221234CD_inline (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.SchemaNotation::set_Pubid(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaNotation_set_Pubid_m3829B9FB66E7CB42DBAE04A487127361BFF4357B_inline (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_mE03838E6B9827A6EFC4AF300FBEFAEFECFC20210 (Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698* __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method); } // System.Void System.Xml.DtdParser/UndeclaredNotation::.ctor(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UndeclaredNotation__ctor_m6237B782B12B39FB8BF173A6ABA4C298D685F300 (UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* __this, String_t* ___0_name, int32_t ___1_lineNo, int32_t ___2_linePos, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(TKey,TValue&) inline bool Dictionary_2_TryGetValue_mF8AA7901FEFABA7D6FCE95EB586FD42E58B1F0A7 (Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698* __this, String_t* ___0_key, UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E** ___1_value, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698*, String_t*, UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___0_key, ___1_value, method); } // System.Void System.Collections.Generic.Dictionary`2::Add(TKey,TValue) inline void Dictionary_2_Add_mF9A60D8A0C976AFEE10941219915771AE92C4AA2 (Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698* __this, String_t* ___0_key, UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* ___1_value, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698*, String_t*, UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___0_key, ___1_value, method); } // System.Boolean System.Xml.DtdParser::get_SaveInternalSubsetValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_get_SaveInternalSubsetValue_m85DB5C7308BF525EE652E944E696CD7A3505DF66 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlException::get_ResString() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlException_get_ResString_m977084C1A1F883C2BED73B1F956D980E62649C7A_inline (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ThrowUnexpectedToken(System.Int32,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ThrowUnexpectedToken_mE75F8A57E36D0ED9A0E029E79C5D0F5E71B82570 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_pos, String_t* ___1_expectedToken1, String_t* ___2_expectedToken2, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::Throw(System.Int32,System.String,System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_Throw_mEE35AE1DA02A2343A42F062D85BA7D04AA9666C5 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_curPos, String_t* ___1_res, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___2_args, const RuntimeMethod* method) ; // System.String System.String::CreateString(System.Char,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mAA0705B41B390BDB42F67894B9B67C956814C71B (String_t* __this, Il2CppChar ___0_c, int32_t ___1_count, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ThrowInvalidChar(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ThrowInvalidChar_m67D089CB4F65FC2275C1FE545C178FF42CB61944 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_data, int32_t ___1_length, int32_t ___2_invCharPos, const RuntimeMethod* method) ; // System.Boolean System.Xml.DtdParser::get_Normalize() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DtdParser_get_Normalize_mA95ED98D422B35FDBDAE26FA37F593B389FD122C_inline (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharType::IsWhiteSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsWhiteSpace_m6F9F3A19B8A95FF5CBF1B197E400A0F194AC9387 (XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* __this, Il2CppChar ___0_ch, const RuntimeMethod* method) ; // System.Boolean System.Xml.DtdParser::get_IgnoreEntityReferences() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_get_IgnoreEntityReferences_m2DC8E61DFCB1C09453864CAC4031C467FB7340D8 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.DtdParser::HandleEntityReference(System.Boolean,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_HandleEntityReference_mEE956B6F9F4B05B092B23769C7446B988111557C (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, bool ___0_paramEntity, bool ___1_inLiteral, bool ___2_inAttribute, const RuntimeMethod* method) ; // System.String System.Xml.DtdParser::ParseUnexpectedToken(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DtdParser_ParseUnexpectedToken_m207C66A0CCCD7B01EC54A015C8F1CB228665119C (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_startPos, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanNameExpected() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanNameExpected_mE86BA18BAC4E482467ACBF7324AC50A7A036612C (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanQNameExpected() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanQNameExpected_mA3CEF7926D1ADB4516533C14CA5AC11B577780DD (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanNmtokenExpected() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanNmtokenExpected_mA1C480DC3339EDB16295740B126CD6E065C1A9EB (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanSubsetContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanSubsetContent_m3DDC1C5F54961537AD8EFC21533E8B079CD3CFE4 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanDoctype1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanDoctype1_m8CC5B6D8A23BC79BC7D24753A9283D4B7678BBD9 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanDoctype2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanDoctype2_m49CE285688D0AF32C97161251B5BAED8DC35CAC6 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanElement1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanElement1_m72C790C87EF7495318BB9181081FFB608299E94D (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanElement2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanElement2_m8B93B60343DFF685D0BD5A6769BD73FB39E39F45 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanElement3() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanElement3_m28CF7EC133A70479C5F5740091A0F58D03E70EA6 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanElement4() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanElement4_m6F360CB881C17BFFB2C688BBF7FA4C9751AB284E (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanElement5() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanElement5_m88E34616D6F10E1061C7B3CADEF68E1FF1DF7126 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanElement6() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanElement6_m5B40A19C9CD3EAED210B4829382140426A14E936 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanElement7() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanElement7_m3F94F17E421650A3A8D8BDEC02F8201CD2AB1BC7 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanAttlist1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanAttlist1_m83EEEF8CFE21CC81A36DA270900584135021C828 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanAttlist2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanAttlist2_m7E560A6A423783BEB4E7F99C9B4FF69C833D061D (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanAttlist3() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanAttlist3_mF035EBFC23BF70F98B6DFD34112D12607DC8E74D (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanAttlist4() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanAttlist4_mCD308E6A3D25EB060DBC8C35FADB8F6A67991587 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanAttlist5() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanAttlist5_m35AA80B4939B569B63EACFBD15C3A7A279E08C82 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanAttlist6() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanAttlist6_mF627B2ACA8D7005BF6E61B406E7D9016E817B0AE (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanAttlist7() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanAttlist7_m180D2F146EE05F9ED0732FDA13ADF88F8A0AB239 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanNotation1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanNotation1_m4C4E5782C3B83C24E6F9F08D87B22C4B82E780FB (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanSystemId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanSystemId_m4BFDE8AB3CAEF9D217E5FDEBEA038712AC85F601 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanPublicId1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanPublicId1_m1095E6AE70E11A9B956708FFBE530301689F82A5 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanPublicId2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanPublicId2_mFDAA7AB884FAFD43C7864DA3C22C00BD0024B9DD (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanEntity1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanEntity1_mE0247D128601F57689966E73F7F89597F017AC53 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanEntity2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanEntity2_m2C5A6BB88090ADF0B9649F21210AAD33A4FB7115 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanEntity3() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanEntity3_m83E67C0E0412FC7E29A40113DFBD9663F1832487 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanCondSection1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanCondSection1_mC6FDCA0100720F5289856689A51097AA12C05FDC (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanCondSection2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanCondSection2_m4F6CA7E86BF773FA2EAA8ACA577C4F96A1DC7A9A (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanCondSection3() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanCondSection3_m1A14F74065167EFD8938C66911DA82D34F5B1429 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanClosingTag() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanClosingTag_m5AB673393CE16B30CE50A23B70DE0B8EC66E23B5 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.DtdParser::ReadData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ReadData_m02D6859FB085D58E010B7F25EF813156B8CC3109 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.DtdParser::HandleEntityEnd(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_HandleEntityEnd_m741F32D866045C1FEBD97EE495E22BECA25B453D (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, bool ___0_inLiteral, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ScanName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ScanName_mC452081ACDFAE2FB825E73D7F7F506FD967F3DB0 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ScanQName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ScanQName_mAD528C25DE449B69809006B17DF6015439150DE3 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ScanNmtoken() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ScanNmtoken_mD2A9057AA5C523117A422FBB2B5119B915133919 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.DtdParser::EatPublicKeyword() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_EatPublicKeyword_m36E41ED431E35D882457C69703585B584F86D47E (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.DtdParser::EatSystemKeyword() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_EatSystemKeyword_mA6344D8F8E24209177DE25810ECC484A5202D452 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanLiteral(System.Xml.DtdParser/LiteralType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanLiteral_m04C307F1A42A05A09ED322C754538E90C2ED0026 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_literalType, const RuntimeMethod* method) ; // System.Void System.Text.StringBuilder::set_Length(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414 (StringBuilder_t* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Int32 System.Text.StringBuilder::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8 (StringBuilder_t* __this, const RuntimeMethod* method) ; // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ; // System.String[] System.Xml.XmlException::BuildCharExceptionArgs(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* XmlException_BuildCharExceptionArgs_m5C3D183AB941552746F7DC656366F28CA5BAFC65 (Il2CppChar ___0_invChar, Il2CppChar ___1_nextChar, const RuntimeMethod* method) ; // System.Xml.XmlQualifiedName System.Xml.DtdParser::ScanEntityName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* DtdParser_ScanEntityName_m88D8D0B3BD33BEB5120E1AA008E13FEBC4B03482 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Xml.Schema.SchemaEntity System.Xml.DtdParser::VerifyEntityReference(System.Xml.XmlQualifiedName,System.Boolean,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* DtdParser_VerifyEntityReference_m84A330F3B961DFFD33E4BFA07F60013BCF96665E (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_entityName, bool ___1_paramEntity, bool ___2_mustBeDeclared, bool ___3_inAttribute, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharType::IsHighSurrogate(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsHighSurrogate_mB3E741B22E4B47DC85F7F18A411F031D8717BA60 (int32_t ___0_ch, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharType::IsLowSurrogate(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsLowSurrogate_m8D27C4276BE118C7FF3ECC1707EEE026D28FC456 (int32_t ___0_ch, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlException::get_LineNumber() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlException_get_LineNumber_m4DBE53D0E13988CF2A5055C4B853F1399DE1A926_inline (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.XmlException::get_LinePosition() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlException_get_LinePosition_m8045E03E183F6B07D6394A1B1FBD55E2CBE2DCB4_inline (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharType::IsNameSingleChar(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsNameSingleChar_mA5C27AEE5BABB098031EA8BE197F9E2E63F0478A (XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* __this, Il2CppChar ___0_ch, const RuntimeMethod* method) ; // System.Void System.Xml.DtdParser::ScanQName(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ScanQName_mA660766FD83DC7827E0C5B52412321F8E9A0EDC4 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, bool ___0_isQName, const RuntimeMethod* method) ; // System.Boolean System.Xml.DtdParser::get_SupportNamespaces() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DtdParser_get_SupportNamespaces_m868EACB0340AAB10A0A36D3E54391F6B721A7791_inline (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.DtdParser::ReadDataInName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_ReadDataInName_mD211C27DF640D9443E3258AE20A48F095699717B (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.String[] System.Xml.XmlException::BuildCharExceptionArgs(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* XmlException_BuildCharExceptionArgs_mCD358DAB8D23BF377EEC6C41C523161FE2B9A2A5 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_data, int32_t ___1_length, int32_t ___2_invCharIndex, const RuntimeMethod* method) ; // System.String System.Xml.DtdParser::StripSpaces(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DtdParser_StripSpaces_m779772633AEEDFC9310BF2C339B1A011B22A9615 (String_t* ___0_value, const RuntimeMethod* method) ; // System.Boolean System.Xml.DtdParser::HandleEntityReference(System.Xml.XmlQualifiedName,System.Boolean,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_HandleEntityReference_m372D3BB5C39D1333272D001572C4337128FD411B (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_entityName, bool ___1_paramEntity, bool ___2_inLiteral, bool ___3_inAttribute, const RuntimeMethod* method) ; // System.Boolean System.Xml.DtdParser::get_ParsingTopLevelMarkup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_get_ParsingTopLevelMarkup_m4836E76B7F5C3C3CA7D8574377C0F00BA2BB0BCF (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Schema.SchemaEntity::get_ParsingInProgress() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaEntity_get_ParsingInProgress_m1A11FBE9700163EB33B81751FB96EA42F99F90EC_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Schema.SchemaEntity::get_IsExternal() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaEntity_get_IsExternal_mBFBDEF21B96AE11DAF242E5B7E2C3B63693FC8CE_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) ; // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(TKey,TValue&) inline bool Dictionary_2_TryGetValue_m0691587A5208D87AFCC3DD80D1AF2FC784239F01 (Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_key, SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7** ___1_value, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t129029582481E96143BD747690E92DB7E444261E*, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*, SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___0_key, ___1_value, method); } // System.Boolean System.Uri::op_Equality(System.Uri,System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_uri1, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___1_uri2, const RuntimeMethod* method) ; // System.Void System.Xml.XmlException::.ctor(System.String,System.String,System.Int32,System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_m93B63C9E4FE7C5B4DAE86D7F5B9FA23451CC7077 (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, String_t* ___0_res, String_t* ___1_arg, int32_t ___2_lineNumber, int32_t ___3_linePosition, String_t* ___4_sourceUri, const RuntimeMethod* method) ; // System.Void System.Xml.XmlException::.ctor(System.String,System.String[],System.Int32,System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlException__ctor_m9BF115E3E8CAC81B474E36A76805DC4F2E856879 (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, String_t* ___0_res, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_args, int32_t ___2_lineNumber, int32_t ___3_linePosition, String_t* ___4_sourceUri, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlCharType::IsNCNameSingleChar(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharType_IsNCNameSingleChar_mAE9940C767975DB6F8EA438AAE5F7DFC7666DB54 (XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* __this, Il2CppChar ___0_ch, const RuntimeMethod* method) ; // System.Void System.Text.StringBuilder::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5 (StringBuilder_t* __this, int32_t ___0_capacity, const RuntimeMethod* method) ; #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 SR::GetString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_mBBCFC8C3B18DF600D0FAED49E703251D2250D41B (String_t* ___0_name, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_args, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0; L_0 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL); String_t* L_1 = ___0_name; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = ___1_args; String_t* L_3; L_3 = SR_GetString_mA5E85933B81C0C44BF2C3784451187A0C9514E3C(L_0, L_1, L_2, NULL); return L_3; } } // System.String SR::GetString(System.Globalization.CultureInfo,System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_mA5E85933B81C0C44BF2C3784451187A0C9514E3C (CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___0_culture, String_t* ___1_name, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___2_args, const RuntimeMethod* method) { { CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0 = ___0_culture; String_t* L_1 = ___1_name; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = ___2_args; String_t* L_3; L_3 = String_Format_m447B585713E5EB3EBF5D9D0710706D01E8A56D75(L_0, L_1, L_2, NULL); return L_3; } } #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.BinHexDecoder::get_IsFull() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BinHexDecoder_get_IsFull_m9A27656B208D861CCFC0067FF1D79CF023ACEE23 (BinHexDecoder_tB77546D79B7899F37DF674F845BC5FB69A8EF02E* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___curIndex_1; int32_t L_1 = __this->___endIndex_2; return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0); } } // System.Int32 System.Xml.BinHexDecoder::Decode(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinHexDecoder_Decode_mBA6DD74F0DA913E291317A519069F0AA61E9EF76 (BinHexDecoder_tB77546D79B7899F37DF674F845BC5FB69A8EF02E* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_chars, int32_t ___1_startPos, int32_t ___2_len, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; Il2CppChar* V_2 = NULL; uint8_t* V_3 = NULL; uint8_t* V_4 = NULL; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_chars; if (L_0) { goto IL_000e; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4F04E415359BAAEA12C3DA482EAACC98D2F7EDC8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinHexDecoder_Decode_mBA6DD74F0DA913E291317A519069F0AA61E9EF76_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___2_len; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_001d; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral50F39E434D2F5790A2F8998AC61DFE974815FC8C)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinHexDecoder_Decode_mBA6DD74F0DA913E291317A519069F0AA61E9EF76_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___1_startPos; if ((((int32_t)L_4) >= ((int32_t)0))) { goto IL_002c; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_5); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD0CFC77D43A44B5A4A2B697D7DB3704358153834)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinHexDecoder_Decode_mBA6DD74F0DA913E291317A519069F0AA61E9EF76_RuntimeMethod_var))); } IL_002c: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = ___0_chars; NullCheck(L_6); int32_t L_7 = ___1_startPos; int32_t L_8 = ___2_len; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_6)->max_length)), L_7))) >= ((int32_t)L_8))) { goto IL_003f; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_9); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral50F39E434D2F5790A2F8998AC61DFE974815FC8C)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinHexDecoder_Decode_mBA6DD74F0DA913E291317A519069F0AA61E9EF76_RuntimeMethod_var))); } IL_003f: { int32_t L_10 = ___2_len; if (L_10) { goto IL_0044; } } { return 0; } IL_0044: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = ___0_chars; int32_t L_12 = ___1_startPos; NullCheck(L_11); V_2 = ((L_11)->GetAddressAt(static_cast(L_12))); Il2CppChar* L_13 = V_2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = __this->___buffer_0; int32_t L_15 = __this->___curIndex_1; NullCheck(L_14); V_4 = ((L_14)->GetAddressAt(static_cast(L_15))); uint8_t* L_16 = V_4; V_3 = (uint8_t*)((uintptr_t)L_16); uintptr_t L_17 = ((uintptr_t)L_13); int32_t L_18 = ___2_len; uint8_t* L_19 = V_3; uint8_t* L_20 = V_3; int32_t L_21 = __this->___endIndex_2; int32_t L_22 = __this->___curIndex_1; bool* L_23 = (&__this->___hasHalfByteCached_3); uint8_t* L_24 = (&__this->___cachedHalfByte_4); BinHexDecoder_Decode_m8444AE034602DD90BF3FCA1E311A62A2EDDDE178((Il2CppChar*)L_17, (Il2CppChar*)((intptr_t)il2cpp_codegen_add((intptr_t)L_17, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_18), 2)))), L_19, ((uint8_t*)il2cpp_codegen_add((intptr_t)L_20, ((int32_t)il2cpp_codegen_subtract(L_21, L_22)))), L_23, L_24, (&V_1), (&V_0), NULL); V_4 = (uint8_t*)((uintptr_t)0); V_2 = (Il2CppChar*)((uintptr_t)0); int32_t L_25 = __this->___curIndex_1; int32_t L_26 = V_0; __this->___curIndex_1 = ((int32_t)il2cpp_codegen_add(L_25, L_26)); int32_t L_27 = V_1; return L_27; } } // System.Byte[] System.Xml.BinHexDecoder::Decode(System.Char[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BinHexDecoder_Decode_m4602ECA3CC85D2D02553D6EC003FB3D6F9282A2B (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_chars, bool ___1_allowOddChars, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; bool V_4 = false; uint8_t V_5 = 0x0; Il2CppChar* V_6 = NULL; uint8_t* V_7 = NULL; uint8_t* V_8 = NULL; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_9 = NULL; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_chars; if (L_0) { goto IL_000e; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4F04E415359BAAEA12C3DA482EAACC98D2F7EDC8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinHexDecoder_Decode_m4602ECA3CC85D2D02553D6EC003FB3D6F9282A2B_RuntimeMethod_var))); } IL_000e: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = ___0_chars; NullCheck(L_2); V_0 = ((int32_t)(((RuntimeArray*)L_2)->max_length)); int32_t L_3 = V_0; if (L_3) { goto IL_001c; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)0); return L_4; } IL_001c: { int32_t L_5 = V_0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((int32_t)il2cpp_codegen_add(L_5, 1))/2))); V_1 = L_6; V_4 = (bool)0; V_5 = (uint8_t)0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = ___0_chars; NullCheck(L_7); V_6 = ((L_7)->GetAddressAt(static_cast(0))); Il2CppChar* L_8 = V_6; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = V_1; NullCheck(L_9); V_8 = ((L_9)->GetAddressAt(static_cast(0))); uint8_t* L_10 = V_8; V_7 = (uint8_t*)((uintptr_t)L_10); uintptr_t L_11 = ((uintptr_t)L_8); int32_t L_12 = V_0; uint8_t* L_13 = V_7; uint8_t* L_14 = V_7; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15 = V_1; NullCheck(L_15); BinHexDecoder_Decode_m8444AE034602DD90BF3FCA1E311A62A2EDDDE178((Il2CppChar*)L_11, (Il2CppChar*)((intptr_t)il2cpp_codegen_add((intptr_t)L_11, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_12), 2)))), L_13, ((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, ((int32_t)(((RuntimeArray*)L_15)->max_length)))), (&V_4), (&V_5), (&V_3), (&V_2), NULL); V_8 = (uint8_t*)((uintptr_t)0); V_6 = (Il2CppChar*)((uintptr_t)0); bool L_16 = V_4; if (!L_16) { goto IL_0082; } } { bool L_17 = ___1_allowOddChars; if (L_17) { goto IL_0082; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_18 = ___0_chars; String_t* L_19; L_19 = String_CreateString_mFBC28D2E3EB87D497F7E702E4FFAD65F635E44DF(NULL, L_18, NULL); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_20 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_20); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA5E1CA6F7C4B79C4153E5E7A887FD406FDC5545)), L_19, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinHexDecoder_Decode_m4602ECA3CC85D2D02553D6EC003FB3D6F9282A2B_RuntimeMethod_var))); } IL_0082: { int32_t L_21 = V_2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_22 = V_1; NullCheck(L_22); if ((((int32_t)L_21) >= ((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length))))) { goto IL_009e; } } { int32_t L_23 = V_2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_24 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_23); V_9 = L_24; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_25 = V_1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26 = V_9; int32_t L_27 = V_2; Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_25, 0, (RuntimeArray*)L_26, 0, L_27, NULL); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_28 = V_9; V_1 = L_28; } IL_009e: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_29 = V_1; return L_29; } } // System.Void System.Xml.BinHexDecoder::Decode(System.Char*,System.Char*,System.Byte*,System.Byte*,System.Boolean&,System.Byte&,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinHexDecoder_Decode_m8444AE034602DD90BF3FCA1E311A62A2EDDDE178 (Il2CppChar* ___0_pChars, Il2CppChar* ___1_pCharsEndPos, uint8_t* ___2_pBytes, uint8_t* ___3_pBytesEndPos, bool* ___4_hasHalfByteCached, uint8_t* ___5_cachedHalfByte, int32_t* ___6_charsDecoded, int32_t* ___7_bytesDecoded, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; uint8_t* V_1 = NULL; XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 V_2; memset((&V_2), 0, sizeof(V_2)); uint8_t V_3 = 0x0; Il2CppChar V_4 = 0x0; { Il2CppChar* L_0 = ___0_pChars; V_0 = L_0; uint8_t* L_1 = ___2_pBytes; V_1 = L_1; XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 L_2; L_2 = XmlCharType_get_Instance_m1279A3FC91B74599A9BC76979E50DBFC07F67C55(NULL); V_2 = L_2; goto IL_00a3; } IL_000f: { Il2CppChar* L_3 = V_0; Il2CppChar* L_4 = L_3; V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, 2)); int32_t L_5 = *((uint16_t*)L_4); V_4 = L_5; Il2CppChar L_6 = V_4; if ((((int32_t)L_6) < ((int32_t)((int32_t)97)))) { goto IL_002f; } } { Il2CppChar L_7 = V_4; if ((((int32_t)L_7) > ((int32_t)((int32_t)102)))) { goto IL_002f; } } { Il2CppChar L_8 = V_4; V_3 = (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract((int32_t)L_8, ((int32_t)97))), ((int32_t)10)))); goto IL_0082; } IL_002f: { Il2CppChar L_9 = V_4; if ((((int32_t)L_9) < ((int32_t)((int32_t)65)))) { goto IL_0047; } } { Il2CppChar L_10 = V_4; if ((((int32_t)L_10) > ((int32_t)((int32_t)70)))) { goto IL_0047; } } { Il2CppChar L_11 = V_4; V_3 = (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract((int32_t)L_11, ((int32_t)65))), ((int32_t)10)))); goto IL_0082; } IL_0047: { Il2CppChar L_12 = V_4; if ((((int32_t)L_12) < ((int32_t)((int32_t)48)))) { goto IL_005c; } } { Il2CppChar L_13 = V_4; if ((((int32_t)L_13) > ((int32_t)((int32_t)57)))) { goto IL_005c; } } { Il2CppChar L_14 = V_4; V_3 = (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_14, ((int32_t)48)))); goto IL_0082; } IL_005c: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 L_15 = V_2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = L_15.___charProperties_2; Il2CppChar L_17 = V_4; NullCheck(L_16); Il2CppChar L_18 = L_17; uint8_t L_19 = (L_16)->GetAt(static_cast(L_18)); if (((int32_t)((int32_t)L_19&1))) { goto IL_00a3; } } { Il2CppChar* L_20 = ___0_pChars; Il2CppChar* L_21 = ___1_pCharsEndPos; Il2CppChar* L_22 = ___0_pChars; String_t* L_23; L_23 = String_CreateString_m3F8794FEB452558B8A68C65E1F0B603B3D94E0E2(NULL, L_20, 0, ((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_21, (intptr_t)L_22))/2)))), NULL); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_24 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_24); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_24, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD120A25823B4E6A16F847243FD4B4494D53A017C)), L_23, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinHexDecoder_Decode_m8444AE034602DD90BF3FCA1E311A62A2EDDDE178_RuntimeMethod_var))); } IL_0082: { bool* L_25 = ___4_hasHalfByteCached; int32_t L_26 = *((uint8_t*)L_25); if (!L_26) { goto IL_009b; } } { uint8_t* L_27 = V_1; uint8_t* L_28 = L_27; V_1 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_28, 1)); uint8_t* L_29 = ___5_cachedHalfByte; int32_t L_30 = *((uint8_t*)L_29); uint8_t L_31 = V_3; *((int8_t*)L_28) = (int8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add(((int32_t)(L_30<<4)), (int32_t)L_31))); bool* L_32 = ___4_hasHalfByteCached; *((int8_t*)L_32) = (int8_t)0; goto IL_00a3; } IL_009b: { uint8_t* L_33 = ___5_cachedHalfByte; uint8_t L_34 = V_3; *((int8_t*)L_33) = (int8_t)L_34; bool* L_35 = ___4_hasHalfByteCached; *((int8_t*)L_35) = (int8_t)1; } IL_00a3: { Il2CppChar* L_36 = V_0; Il2CppChar* L_37 = ___1_pCharsEndPos; if ((!(((uintptr_t)L_36) < ((uintptr_t)L_37)))) { goto IL_00ae; } } { uint8_t* L_38 = V_1; uint8_t* L_39 = ___3_pBytesEndPos; if ((!(((uintptr_t)L_38) >= ((uintptr_t)L_39)))) { goto IL_000f; } } IL_00ae: { int32_t* L_40 = ___7_bytesDecoded; uint8_t* L_41 = V_1; uint8_t* L_42 = ___2_pBytes; *((int32_t*)L_40) = (int32_t)((int32_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_41, (intptr_t)L_42))/1)))); int32_t* L_43 = ___6_charsDecoded; Il2CppChar* L_44 = V_0; Il2CppChar* L_45 = ___0_pChars; *((int32_t*)L_43) = (int32_t)((int32_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_44, (intptr_t)L_45))/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 // System.String System.Xml.BinHexEncoder::Encode(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BinHexEncoder_Encode_m81FC286D1A9025C6406DEA5DA7F23ED6D9164D53 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_inArray, int32_t ___1_offsetIn, int32_t ___2_count, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL; int32_t V_1 = 0; { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_inArray; if (L_0) { goto IL_000e; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB77C51162F9B76C1135D72465C09B899FF505927)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinHexEncoder_Encode_m81FC286D1A9025C6406DEA5DA7F23ED6D9164D53_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___1_offsetIn; if ((((int32_t)0) <= ((int32_t)L_2))) { goto IL_001d; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAFB36F69DD323FF604AB5F1235E31F803043EA10)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinHexEncoder_Encode_m81FC286D1A9025C6406DEA5DA7F23ED6D9164D53_RuntimeMethod_var))); } IL_001d: { int32_t L_4 = ___2_count; if ((((int32_t)0) <= ((int32_t)L_4))) { goto IL_002c; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_5); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinHexEncoder_Encode_m81FC286D1A9025C6406DEA5DA7F23ED6D9164D53_RuntimeMethod_var))); } IL_002c: { int32_t L_6 = ___2_count; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ___0_inArray; NullCheck(L_7); int32_t L_8 = ___1_offsetIn; if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_7)->max_length)), L_8))))) { goto IL_003f; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_9); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinHexEncoder_Encode_m81FC286D1A9025C6406DEA5DA7F23ED6D9164D53_RuntimeMethod_var))); } IL_003f: { int32_t L_10 = ___2_count; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(2, L_10))); V_0 = L_11; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = ___0_inArray; int32_t L_13 = ___1_offsetIn; int32_t L_14 = ___2_count; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_15 = V_0; int32_t L_16; L_16 = BinHexEncoder_Encode_mE31E74AEE0888795B4BA83F65759D1778B8B855F(L_12, L_13, L_14, L_15, NULL); V_1 = L_16; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = V_0; int32_t L_18 = V_1; String_t* L_19; L_19 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_17, 0, L_18, NULL); return L_19; } } // System.Int32 System.Xml.BinHexEncoder::Encode(System.Byte[],System.Int32,System.Int32,System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinHexEncoder_Encode_mE31E74AEE0888795B4BA83F65759D1778B8B855F (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_inArray, int32_t ___1_offsetIn, int32_t ___2_count, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___3_outArray, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint8_t V_2 = 0x0; int32_t V_3 = 0; int32_t V_4 = 0; { V_0 = 0; V_1 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___3_outArray; NullCheck(L_0); V_3 = ((int32_t)(((RuntimeArray*)L_0)->max_length)); V_4 = 0; goto IL_004d; } IL_000d: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_inArray; int32_t L_2 = ___1_offsetIn; int32_t L_3 = L_2; ___1_offsetIn = ((int32_t)il2cpp_codegen_add(L_3, 1)); NullCheck(L_1); int32_t L_4 = L_3; uint8_t L_5 = (L_1)->GetAt(static_cast(L_4)); V_2 = L_5; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = ___3_outArray; int32_t L_7 = V_0; int32_t L_8 = L_7; V_0 = ((int32_t)il2cpp_codegen_add(L_8, 1)); uint8_t L_9 = V_2; NullCheck(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84); Il2CppChar L_10; L_10 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84, ((int32_t)((int32_t)L_9>>4)), NULL); NullCheck(L_6); (L_6)->SetAt(static_cast(L_8), (Il2CppChar)L_10); int32_t L_11 = V_0; int32_t L_12 = V_3; if ((((int32_t)L_11) == ((int32_t)L_12))) { goto IL_0052; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_13 = ___3_outArray; int32_t L_14 = V_0; int32_t L_15 = L_14; V_0 = ((int32_t)il2cpp_codegen_add(L_15, 1)); uint8_t L_16 = V_2; NullCheck(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84); Il2CppChar L_17; L_17 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84, ((int32_t)((int32_t)L_16&((int32_t)15))), NULL); NullCheck(L_13); (L_13)->SetAt(static_cast(L_15), (Il2CppChar)L_17); int32_t L_18 = V_0; int32_t L_19 = V_3; if ((((int32_t)L_18) == ((int32_t)L_19))) { goto IL_0052; } } { int32_t L_20 = V_4; V_4 = ((int32_t)il2cpp_codegen_add(L_20, 1)); } IL_004d: { int32_t L_21 = V_4; int32_t L_22 = ___2_count; if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_000d; } } IL_0052: { int32_t L_23 = V_0; int32_t L_24 = V_1; return ((int32_t)il2cpp_codegen_subtract(L_23, L_24)); } } #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.Bits::Count(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bits_Count_mF7D768B2D3EBAA6C1F7EE53D4768FCEDCD0390CB (uint32_t ___0_num, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___0_num; il2cpp_codegen_runtime_class_init_inline(Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var); uint32_t L_1 = ((Bits_t4D52329DF865E191908AE96952B27312B4FD1355_StaticFields*)il2cpp_codegen_static_fields_for(Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var))->___MASK_0101010101010101_0; uint32_t L_2 = ___0_num; uint32_t L_3 = ((Bits_t4D52329DF865E191908AE96952B27312B4FD1355_StaticFields*)il2cpp_codegen_static_fields_for(Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var))->___MASK_0101010101010101_0; ___0_num = ((int32_t)il2cpp_codegen_add(((int32_t)((int32_t)L_0&(int32_t)L_1)), ((int32_t)(((int32_t)((uint32_t)L_2>>1))&(int32_t)L_3)))); uint32_t L_4 = ___0_num; uint32_t L_5 = ((Bits_t4D52329DF865E191908AE96952B27312B4FD1355_StaticFields*)il2cpp_codegen_static_fields_for(Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var))->___MASK_0011001100110011_1; uint32_t L_6 = ___0_num; uint32_t L_7 = ((Bits_t4D52329DF865E191908AE96952B27312B4FD1355_StaticFields*)il2cpp_codegen_static_fields_for(Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var))->___MASK_0011001100110011_1; ___0_num = ((int32_t)il2cpp_codegen_add(((int32_t)((int32_t)L_4&(int32_t)L_5)), ((int32_t)(((int32_t)((uint32_t)L_6>>2))&(int32_t)L_7)))); uint32_t L_8 = ___0_num; uint32_t L_9 = ((Bits_t4D52329DF865E191908AE96952B27312B4FD1355_StaticFields*)il2cpp_codegen_static_fields_for(Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var))->___MASK_0000111100001111_2; uint32_t L_10 = ___0_num; uint32_t L_11 = ((Bits_t4D52329DF865E191908AE96952B27312B4FD1355_StaticFields*)il2cpp_codegen_static_fields_for(Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var))->___MASK_0000111100001111_2; ___0_num = ((int32_t)il2cpp_codegen_add(((int32_t)((int32_t)L_8&(int32_t)L_9)), ((int32_t)(((int32_t)((uint32_t)L_10>>4))&(int32_t)L_11)))); uint32_t L_12 = ___0_num; uint32_t L_13 = ((Bits_t4D52329DF865E191908AE96952B27312B4FD1355_StaticFields*)il2cpp_codegen_static_fields_for(Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var))->___MASK_0000000011111111_3; uint32_t L_14 = ___0_num; uint32_t L_15 = ((Bits_t4D52329DF865E191908AE96952B27312B4FD1355_StaticFields*)il2cpp_codegen_static_fields_for(Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var))->___MASK_0000000011111111_3; ___0_num = ((int32_t)il2cpp_codegen_add(((int32_t)((int32_t)L_12&(int32_t)L_13)), ((int32_t)(((int32_t)((uint32_t)L_14>>8))&(int32_t)L_15)))); uint32_t L_16 = ___0_num; uint32_t L_17 = ((Bits_t4D52329DF865E191908AE96952B27312B4FD1355_StaticFields*)il2cpp_codegen_static_fields_for(Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var))->___MASK_1111111111111111_4; uint32_t L_18 = ___0_num; ___0_num = ((int32_t)il2cpp_codegen_add(((int32_t)((int32_t)L_16&(int32_t)L_17)), ((int32_t)((uint32_t)L_18>>((int32_t)16))))); uint32_t L_19 = ___0_num; return L_19; } } // System.Int32 System.Xml.Bits::LeastPosition(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bits_LeastPosition_mE02945243BB6CC1C04FDE6B963BB351319E03B50 (uint32_t ___0_num, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___0_num; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { uint32_t L_1 = ___0_num; uint32_t L_2 = ___0_num; il2cpp_codegen_runtime_class_init_inline(Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var); int32_t L_3; L_3 = Bits_Count_mF7D768B2D3EBAA6C1F7EE53D4768FCEDCD0390CB(((int32_t)((int32_t)L_1^((int32_t)il2cpp_codegen_subtract((int32_t)L_2, 1)))), NULL); return L_3; } } // System.Void System.Xml.Bits::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Bits__cctor_m94149AB5E4FBE1093FAD0DF30DF1145A2B1BEF1C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ((Bits_t4D52329DF865E191908AE96952B27312B4FD1355_StaticFields*)il2cpp_codegen_static_fields_for(Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var))->___MASK_0101010101010101_0 = ((int32_t)1431655765); ((Bits_t4D52329DF865E191908AE96952B27312B4FD1355_StaticFields*)il2cpp_codegen_static_fields_for(Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var))->___MASK_0011001100110011_1 = ((int32_t)858993459); ((Bits_t4D52329DF865E191908AE96952B27312B4FD1355_StaticFields*)il2cpp_codegen_static_fields_for(Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var))->___MASK_0000111100001111_2 = ((int32_t)252645135); ((Bits_t4D52329DF865E191908AE96952B27312B4FD1355_StaticFields*)il2cpp_codegen_static_fields_for(Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var))->___MASK_0000000011111111_3 = ((int32_t)16711935); ((Bits_t4D52329DF865E191908AE96952B27312B4FD1355_StaticFields*)il2cpp_codegen_static_fields_for(Bits_t4D52329DF865E191908AE96952B27312B4FD1355_il2cpp_TypeInfo_var))->___MASK_1111111111111111_4 = ((int32_t)65535); 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.IncrementalReadDecoder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncrementalReadDecoder__ctor_mE733A01D272115149EA92BC8D2CA04B1E6087FB7 (IncrementalReadDecoder_t55EB8A2FB2A5FFCB1B68AE7F784C4E00DCE1E55B* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, 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.IncrementalReadDummyDecoder::get_IsFull() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IncrementalReadDummyDecoder_get_IsFull_mC29A581FD93E84059A53DCF15CDB26837317F39B (IncrementalReadDummyDecoder_t514FBAC6CC3FF737F6EAF3AF3523D89A933DAB86* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Int32 System.Xml.IncrementalReadDummyDecoder::Decode(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IncrementalReadDummyDecoder_Decode_m7ED5F7AB4C32FEA75B335377FC5CAACCB4756D41 (IncrementalReadDummyDecoder_t514FBAC6CC3FF737F6EAF3AF3523D89A933DAB86* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_chars, int32_t ___1_startPos, int32_t ___2_len, const RuntimeMethod* method) { { int32_t L_0 = ___2_len; return L_0; } } // System.Void System.Xml.IncrementalReadDummyDecoder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IncrementalReadDummyDecoder__ctor_m45F0FCE3E794783ED3EB1C279BE4C655FF8E2EE6 (IncrementalReadDummyDecoder_t514FBAC6CC3FF737F6EAF3AF3523D89A933DAB86* __this, const RuntimeMethod* method) { { IncrementalReadDecoder__ctor_mE733A01D272115149EA92BC8D2CA04B1E6087FB7(__this, 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.XmlParserContext::.ctor(System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager,System.String,System.String,System.String,System.String,System.String,System.String,System.Xml.XmlSpace) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlParserContext__ctor_mB2CD7CF0517A079CBB79700E6B410C8667AEA532 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___0_nt, XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___1_nsMgr, String_t* ___2_docTypeName, String_t* ___3_pubId, String_t* ___4_sysId, String_t* ___5_internalSubset, String_t* ___6_baseURI, String_t* ___7_xmlLang, int32_t ___8_xmlSpace, const RuntimeMethod* method) { { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = ___0_nt; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_1 = ___1_nsMgr; String_t* L_2 = ___2_docTypeName; String_t* L_3 = ___3_pubId; String_t* L_4 = ___4_sysId; String_t* L_5 = ___5_internalSubset; String_t* L_6 = ___6_baseURI; String_t* L_7 = ___7_xmlLang; int32_t L_8 = ___8_xmlSpace; XmlParserContext__ctor_mC64E56EF024288949DD69AE5F8620E5BE7BCA561(__this, L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, L_8, (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL, NULL); return; } } // System.Void System.Xml.XmlParserContext::.ctor(System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager,System.String,System.String,System.String,System.String,System.String,System.String,System.Xml.XmlSpace,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlParserContext__ctor_mC64E56EF024288949DD69AE5F8620E5BE7BCA561 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___0_nt, XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___1_nsMgr, String_t* ___2_docTypeName, String_t* ___3_pubId, String_t* ___4_sysId, String_t* ___5_internalSubset, String_t* ___6_baseURI, String_t* ___7_xmlLang, int32_t ___8_xmlSpace, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___9_enc, 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; } XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B9_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B8_0 = NULL; String_t* G_B10_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B10_1 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B12_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B11_0 = NULL; String_t* G_B13_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B13_1 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B15_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B14_0 = NULL; String_t* G_B16_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B16_1 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B18_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B17_0 = NULL; String_t* G_B19_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B19_1 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B21_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B20_0 = NULL; String_t* G_B22_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B22_1 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B24_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B23_0 = NULL; String_t* G_B25_0 = NULL; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* G_B25_1 = NULL; { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->____docTypeName_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____docTypeName_2), (void*)L_0); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->____pubId_3 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->____pubId_3), (void*)L_1); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->____sysId_4 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->____sysId_4), (void*)L_2); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->____internalSubset_5 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->____internalSubset_5), (void*)L_3); String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->____xmlLang_6 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->____xmlLang_6), (void*)L_4); String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->____baseURI_8 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->____baseURI_8), (void*)L_5); Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_6 = ___1_nsMgr; if (!L_6) { goto IL_007e; } } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_7 = ___0_nt; if (L_7) { goto IL_005c; } } { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_8 = ___1_nsMgr; NullCheck(L_8); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_9; L_9 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(7 /* System.Xml.XmlNameTable System.Xml.XmlNamespaceManager::get_NameTable() */, L_8); __this->____nt_0 = L_9; Il2CppCodeGenWriteBarrier((void**)(&__this->____nt_0), (void*)L_9); goto IL_0085; } IL_005c: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_10 = ___0_nt; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_11 = ___1_nsMgr; NullCheck(L_11); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_12; L_12 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(7 /* System.Xml.XmlNameTable System.Xml.XmlNamespaceManager::get_NameTable() */, L_11); if ((((RuntimeObject*)(XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)L_10) == ((RuntimeObject*)(XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)L_12))) { goto IL_0075; } } { String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_14 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_14); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5591FEB8D450C0589982D61E5715CF6270C18952)), L_13, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlParserContext__ctor_mC64E56EF024288949DD69AE5F8620E5BE7BCA561_RuntimeMethod_var))); } IL_0075: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_15 = ___0_nt; __this->____nt_0 = L_15; Il2CppCodeGenWriteBarrier((void**)(&__this->____nt_0), (void*)L_15); goto IL_0085; } IL_007e: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_16 = ___0_nt; __this->____nt_0 = L_16; Il2CppCodeGenWriteBarrier((void**)(&__this->____nt_0), (void*)L_16); } IL_0085: { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_17 = ___1_nsMgr; __this->____nsMgr_1 = L_17; Il2CppCodeGenWriteBarrier((void**)(&__this->____nsMgr_1), (void*)L_17); String_t* L_18 = ___2_docTypeName; G_B8_0 = __this; if (!L_18) { G_B9_0 = __this; goto IL_0093; } } { String_t* L_19 = ___2_docTypeName; G_B10_0 = L_19; G_B10_1 = G_B8_0; goto IL_0098; } IL_0093: { String_t* L_20 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B10_0 = L_20; G_B10_1 = G_B9_0; } IL_0098: { NullCheck(G_B10_1); G_B10_1->____docTypeName_2 = G_B10_0; Il2CppCodeGenWriteBarrier((void**)(&G_B10_1->____docTypeName_2), (void*)G_B10_0); String_t* L_21 = ___3_pubId; G_B11_0 = __this; if (!L_21) { G_B12_0 = __this; goto IL_00a6; } } { String_t* L_22 = ___3_pubId; G_B13_0 = L_22; G_B13_1 = G_B11_0; goto IL_00ab; } IL_00a6: { String_t* L_23 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B13_0 = L_23; G_B13_1 = G_B12_0; } IL_00ab: { NullCheck(G_B13_1); G_B13_1->____pubId_3 = G_B13_0; Il2CppCodeGenWriteBarrier((void**)(&G_B13_1->____pubId_3), (void*)G_B13_0); String_t* L_24 = ___4_sysId; G_B14_0 = __this; if (!L_24) { G_B15_0 = __this; goto IL_00b9; } } { String_t* L_25 = ___4_sysId; G_B16_0 = L_25; G_B16_1 = G_B14_0; goto IL_00be; } IL_00b9: { String_t* L_26 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B16_0 = L_26; G_B16_1 = G_B15_0; } IL_00be: { NullCheck(G_B16_1); G_B16_1->____sysId_4 = G_B16_0; Il2CppCodeGenWriteBarrier((void**)(&G_B16_1->____sysId_4), (void*)G_B16_0); String_t* L_27 = ___5_internalSubset; G_B17_0 = __this; if (!L_27) { G_B18_0 = __this; goto IL_00cc; } } { String_t* L_28 = ___5_internalSubset; G_B19_0 = L_28; G_B19_1 = G_B17_0; goto IL_00d1; } IL_00cc: { String_t* L_29 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B19_0 = L_29; G_B19_1 = G_B18_0; } IL_00d1: { NullCheck(G_B19_1); G_B19_1->____internalSubset_5 = G_B19_0; Il2CppCodeGenWriteBarrier((void**)(&G_B19_1->____internalSubset_5), (void*)G_B19_0); String_t* L_30 = ___6_baseURI; G_B20_0 = __this; if (!L_30) { G_B21_0 = __this; goto IL_00df; } } { String_t* L_31 = ___6_baseURI; G_B22_0 = L_31; G_B22_1 = G_B20_0; goto IL_00e4; } IL_00df: { String_t* L_32 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B22_0 = L_32; G_B22_1 = G_B21_0; } IL_00e4: { NullCheck(G_B22_1); G_B22_1->____baseURI_8 = G_B22_0; Il2CppCodeGenWriteBarrier((void**)(&G_B22_1->____baseURI_8), (void*)G_B22_0); String_t* L_33 = ___7_xmlLang; G_B23_0 = __this; if (!L_33) { G_B24_0 = __this; goto IL_00f2; } } { String_t* L_34 = ___7_xmlLang; G_B25_0 = L_34; G_B25_1 = G_B23_0; goto IL_00f7; } IL_00f2: { String_t* L_35 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B25_0 = L_35; G_B25_1 = G_B24_0; } IL_00f7: { NullCheck(G_B25_1); G_B25_1->____xmlLang_6 = G_B25_0; Il2CppCodeGenWriteBarrier((void**)(&G_B25_1->____xmlLang_6), (void*)G_B25_0); int32_t L_36 = ___8_xmlSpace; __this->____xmlSpace_7 = L_36; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ___9_enc; __this->____encoding_9 = L_37; Il2CppCodeGenWriteBarrier((void**)(&__this->____encoding_9), (void*)L_37); return; } } // System.Xml.XmlNameTable System.Xml.XmlParserContext::get_NameTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlParserContext_get_NameTable_mA0033F700F66AED746CCC1DF69E97A1524096528 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->____nt_0; return L_0; } } // System.Xml.XmlNamespaceManager System.Xml.XmlParserContext::get_NamespaceManager() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_0 = __this->____nsMgr_1; return L_0; } } // System.String System.Xml.XmlParserContext::get_DocTypeName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_DocTypeName_m8212FEC6DBA21A5B1E95538D40951B1CB0380CF0 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____docTypeName_2; return L_0; } } // System.String System.Xml.XmlParserContext::get_PublicId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_PublicId_mCE67EDDC8A9D73A0AADB77E0F7CCF53DEB5E300D (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____pubId_3; return L_0; } } // System.String System.Xml.XmlParserContext::get_SystemId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_SystemId_mB4649C8C6DA52AFC5224E82BBD2B7C7A1D5CCB58 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____sysId_4; return L_0; } } // System.String System.Xml.XmlParserContext::get_BaseURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____baseURI_8; return L_0; } } // System.String System.Xml.XmlParserContext::get_InternalSubset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_InternalSubset_mDD9703E47510C335AD4940AE7F761F56AA00E9DC (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____internalSubset_5; return L_0; } } // System.String System.Xml.XmlParserContext::get_XmlLang() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_XmlLang_m15AAD2E5AA247235638A436E68596B9A89BFE443 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____xmlLang_6; return L_0; } } // System.Xml.XmlSpace System.Xml.XmlParserContext::get_XmlSpace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlParserContext_get_XmlSpace_m52BE2428971EFFCBE9922F1B37FEEE9940AF1891 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____xmlSpace_7; return L_0; } } // System.Text.Encoding System.Xml.XmlParserContext::get_Encoding() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* XmlParserContext_get_Encoding_m70D0D1E92582C7F95EE6E9024771C44129B1AC52 (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0 = __this->____encoding_9; return L_0; } } // System.Boolean System.Xml.XmlParserContext::get_HasDtdInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlParserContext_get_HasDtdInfo_m4237CC163D41F547BDB4ED1A7A5D9A08E90C222B (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __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->____internalSubset_5; String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; bool L_2; L_2 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_0, L_1, NULL); if (L_2) { goto IL_0035; } } { String_t* L_3 = __this->____pubId_3; String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; bool L_5; L_5 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_3, L_4, NULL); if (L_5) { goto IL_0035; } } { String_t* L_6 = __this->____sysId_4; String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; bool L_8; L_8 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_6, L_7, NULL); return L_8; } IL_0035: { 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.Xml.XmlReaderSettings System.Xml.XmlReader::get_Settings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* XmlReader_get_Settings_m0D9572E3C7ECC83E15DB82E1C69449448BC5433E (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { return (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA*)NULL; } } // System.String System.Xml.XmlReader::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlReader_get_Name_m584CCDFC01FC6C2679778096652800364589F784 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, 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; L_0 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, __this); NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL); if (L_1) { goto IL_0014; } } { String_t* L_2; L_2 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, __this); return L_2; } IL_0014: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_3; L_3 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(24 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, __this); String_t* L_4; L_4 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, __this); String_t* L_5; L_5 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, __this); String_t* L_6; L_6 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_4, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, L_5, NULL); NullCheck(L_3); String_t* L_7; L_7 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_3, L_6); return L_7; } } // System.Boolean System.Xml.XmlReader::get_IsDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReader_get_IsDefault_m8E9B24348ADEAC8DB66DB57DBA63DADDF147BA91 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlReader::get_SchemaInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlReader_get_SchemaInfo_mB7CCD23344205CBD3BC3845DF753AEAF1B43E3CE (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { return ((RuntimeObject*)IsInst((RuntimeObject*)__this, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var)); } } // System.Void System.Xml.XmlReader::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_Close_m00916203478E72B2D955F87F902F1CB3B8A8A5F7 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { return; } } // System.Boolean System.Xml.XmlReader::get_CanResolveEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReader_get_CanResolveEntity_m0CC577FB52644A99BA9ABDA3B23D8A84E8A452E9 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Xml.XmlReader::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_Dispose_m48A2333E0A2A858E7F6B3B0B7DE63E33B819929D (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { VirtualActionInvoker1< bool >::Invoke(28 /* System.Void System.Xml.XmlReader::Dispose(System.Boolean) */, __this, (bool)1); return; } } // System.Void System.Xml.XmlReader::Dispose(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader_Dispose_mDB60699E5094B26D8BF472C67CCF7DB2A8DF57ED (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, bool ___0_disposing, const RuntimeMethod* method) { { bool L_0 = ___0_disposing; if (!L_0) { goto IL_0012; } } { int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, __this); if ((((int32_t)L_1) == ((int32_t)4))) { goto IL_0012; } } { VirtualActionInvoker0::Invoke(22 /* System.Void System.Xml.XmlReader::Close() */, __this); } IL_0012: { return; } } // System.Xml.IDtdInfo System.Xml.XmlReader::get_DtdInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlReader_get_DtdInfo_m42D157D136CDD9C8946A52144DC96D2B568B7040 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { return (RuntimeObject*)NULL; } } // System.Int32 System.Xml.XmlReader::CalcBufferSize(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlReader_CalcBufferSize_mC82D99C2F221E3BE45FBCF3FE498F304B29DE78A (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___0_input, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_CalcBufferSize_mC82D99C2F221E3BE45FBCF3FE498F304B29DE78A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int64_t V_1 = 0; { V_0 = ((int32_t)4096); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___0_input; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, L_0); if (!L_1) { goto IL_002e; } } { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_2 = ___0_input; NullCheck(L_2); int64_t L_3; L_3 = VirtualFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Length() */, L_2); V_1 = L_3; int64_t L_4 = V_1; int32_t L_5 = V_0; if ((((int64_t)L_4) >= ((int64_t)((int64_t)L_5)))) { goto IL_001f; } } { int64_t L_6 = V_1; if ((int64_t)(L_6) > 2147483647LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), XmlReader_CalcBufferSize_mC82D99C2F221E3BE45FBCF3FE498F304B29DE78A_RuntimeMethod_var); V_0 = ((int32_t)L_6); goto IL_002e; } IL_001f: { int64_t L_7 = V_1; if ((((int64_t)L_7) <= ((int64_t)((int64_t)((int32_t)65536))))) { goto IL_002e; } } { V_0 = ((int32_t)8192); } IL_002e: { int32_t L_8 = V_0; return L_8; } } // System.Void System.Xml.XmlReader::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477 (XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.Void System.Xml.XmlReader::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReader__cctor_m9FF3BD38D3644E099B8305E251679A77A0DF493E (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ((XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_StaticFields*)il2cpp_codegen_static_fields_for(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var))->___IsTextualNodeBitmap_0 = ((int32_t)24600); ((XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_StaticFields*)il2cpp_codegen_static_fields_for(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var))->___CanReadContentAsBitmap_1 = ((int32_t)123324); ((XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_StaticFields*)il2cpp_codegen_static_fields_for(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var))->___HasValueBitmap_2 = ((int32_t)157084); 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.XmlReaderSettings::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings__ctor_m1BAF1E969D42F7C5D453B381FA763F333C715364 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); XmlReaderSettings_Initialize_mC0DBEC15D6168D01836D2F7874E775DB14F63B76(__this, NULL); return; } } // System.Void System.Xml.XmlReaderSettings::set_NameTable(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_NameTable_m5FE079006C8F4D4FF3924D1B976C335C17058900 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral81C6A150C740E85EF7BDB2DE76CBED7BCCC3797F); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral81C6A150C740E85EF7BDB2DE76CBED7BCCC3797F, NULL); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = ___0_value; __this->___nameTable_1 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameTable_1), (void*)L_0); return; } } // System.Void System.Xml.XmlReaderSettings::set_IsXmlResolverSet(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_IsXmlResolverSet_m871B57224C2E3918C193D03425F0F409E4A44A03 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___U3CIsXmlResolverSetU3Ek__BackingField_18 = L_0; return; } } // System.Void System.Xml.XmlReaderSettings::set_XmlResolver(System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_XmlResolver_m44B84031BAC224C07AFD233C3DF9A6383216D883 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral93B59C6870171FCFAA8A0D2F3A21C5B0CEFC7FDD); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral93B59C6870171FCFAA8A0D2F3A21C5B0CEFC7FDD, NULL); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = ___0_value; __this->___xmlResolver_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlResolver_2), (void*)L_0); XmlReaderSettings_set_IsXmlResolverSet_m871B57224C2E3918C193D03425F0F409E4A44A03_inline(__this, (bool)1, NULL); return; } } // System.Xml.XmlResolver System.Xml.XmlReaderSettings::GetXmlResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlReaderSettings_GetXmlResolver_mA62976BC07B261C3193008BB941B111EC60B4010 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = __this->___xmlResolver_2; return L_0; } } // System.Void System.Xml.XmlReaderSettings::set_LineNumberOffset(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_LineNumberOffset_m2D65499EE921190F3E4AFEF8910A4320F446132A (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral423005E70CFADA0548835DDF582542DD5BDCFBD3); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral423005E70CFADA0548835DDF582542DD5BDCFBD3, NULL); int32_t L_0 = ___0_value; __this->___lineNumberOffset_3 = L_0; return; } } // System.Void System.Xml.XmlReaderSettings::set_LinePositionOffset(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_LinePositionOffset_m9421A24A7DF15D954B1301E8E2B6FD1FB27C084A (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral035877D5564A6EA6B11C79A48808B85A323C2F5C); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral035877D5564A6EA6B11C79A48808B85A323C2F5C, NULL); int32_t L_0 = ___0_value; __this->___linePositionOffset_4 = L_0; return; } } // System.Void System.Xml.XmlReaderSettings::set_ConformanceLevel(System.Xml.ConformanceLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_ConformanceLevel_m5D9CF37D9B4EC2E5E82B40A52BC07E2062BA1A76 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral93D87E1629A331F43CB25BB3CFE69C4D3418FA7E); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral93D87E1629A331F43CB25BB3CFE69C4D3418FA7E, NULL); int32_t L_0 = ___0_value; if ((!(((uint32_t)L_0) > ((uint32_t)2)))) { goto IL_001a; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReaderSettings_set_ConformanceLevel_m5D9CF37D9B4EC2E5E82B40A52BC07E2062BA1A76_RuntimeMethod_var))); } IL_001a: { int32_t L_2 = ___0_value; __this->___conformanceLevel_5 = L_2; return; } } // System.Void System.Xml.XmlReaderSettings::set_CheckCharacters(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_CheckCharacters_m16E3594CB4D8977197AEC7CAE390D688C8E23481 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral025C1ECF21AD54C7CC6639C629602C3F7FE62FAA); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral025C1ECF21AD54C7CC6639C629602C3F7FE62FAA, NULL); bool L_0 = ___0_value; __this->___checkCharacters_6 = L_0; return; } } // System.Void System.Xml.XmlReaderSettings::set_MaxCharactersInDocument(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_MaxCharactersInDocument_m507F7669F33FBE7BC790E84058206529099F5054 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int64_t ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBA35549D8219B5F5409D55485656844283EB1A95); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteralBA35549D8219B5F5409D55485656844283EB1A95, NULL); int64_t L_0 = ___0_value; if ((((int64_t)L_0) >= ((int64_t)((int64_t)0)))) { goto IL_001b; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReaderSettings_set_MaxCharactersInDocument_m507F7669F33FBE7BC790E84058206529099F5054_RuntimeMethod_var))); } IL_001b: { int64_t L_2 = ___0_value; __this->___maxCharactersInDocument_7 = L_2; return; } } // System.Void System.Xml.XmlReaderSettings::set_MaxCharactersFromEntities(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_MaxCharactersFromEntities_m717EF5BB122D0875DA5A4CBB4AC7BCE649B0910E (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int64_t ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A7B03EDCCEC1AA676CFA2D7002A577C44FC6A13); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral7A7B03EDCCEC1AA676CFA2D7002A577C44FC6A13, NULL); int64_t L_0 = ___0_value; if ((((int64_t)L_0) >= ((int64_t)((int64_t)0)))) { goto IL_001b; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReaderSettings_set_MaxCharactersFromEntities_m717EF5BB122D0875DA5A4CBB4AC7BCE649B0910E_RuntimeMethod_var))); } IL_001b: { int64_t L_2 = ___0_value; __this->___maxCharactersFromEntities_8 = L_2; return; } } // System.Void System.Xml.XmlReaderSettings::set_IgnoreWhitespace(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_IgnoreWhitespace_m4BD0B66D712AF9636F562222077CB830E887FF60 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral010415DFD810DA785E5CD8173EA9688EDA5E73FE); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral010415DFD810DA785E5CD8173EA9688EDA5E73FE, NULL); bool L_0 = ___0_value; __this->___ignoreWhitespace_9 = L_0; return; } } // System.Void System.Xml.XmlReaderSettings::set_IgnoreProcessingInstructions(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_IgnoreProcessingInstructions_m965368E00B6CD619916BE73B03ACD3AAA5BE708C (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFD8C61EC8DBC1376295F70EFEF4B5FDF50F09FBE); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteralFD8C61EC8DBC1376295F70EFEF4B5FDF50F09FBE, NULL); bool L_0 = ___0_value; __this->___ignorePIs_10 = L_0; return; } } // System.Void System.Xml.XmlReaderSettings::set_IgnoreComments(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_IgnoreComments_mA62566F443A53E7FECC98C0D317F47988559DCB4 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral831ED6EC0D1759EC26A1E876BA9836719586C6D1); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteral831ED6EC0D1759EC26A1E876BA9836719586C6D1, NULL); bool L_0 = ___0_value; __this->___ignoreComments_11 = L_0; return; } } // System.Void System.Xml.XmlReaderSettings::set_DtdProcessing(System.Xml.DtdProcessing) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_DtdProcessing_mDC4E1119E3381F9C237565E3FFFC5B2CFF7C0043 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, int32_t ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD515C8E4D2BD0B64EE134AD25058BE95BF0175BC); s_Il2CppMethodInitialized = true; } { XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B(__this, _stringLiteralD515C8E4D2BD0B64EE134AD25058BE95BF0175BC, NULL); int32_t L_0 = ___0_value; if ((!(((uint32_t)L_0) > ((uint32_t)2)))) { goto IL_001a; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReaderSettings_set_DtdProcessing_mDC4E1119E3381F9C237565E3FFFC5B2CFF7C0043_RuntimeMethod_var))); } IL_001a: { int32_t L_2 = ___0_value; __this->___dtdProcessing_12 = L_2; return; } } // System.Xml.ValidationType System.Xml.XmlReaderSettings::get_ValidationType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_ValidationType_mFF201BAC3A2B593BB69E691E0AA3814455185F8A (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___validationType_13; return L_0; } } // System.Xml.Schema.XmlSchemaSet System.Xml.XmlReaderSettings::get_Schemas() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* XmlReaderSettings_get_Schemas_mCA60590694647CFB542019784F457006B33D2C62 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_0 = __this->___schemas_15; if (L_0) { goto IL_0013; } } { XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_1 = (XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1*)il2cpp_codegen_object_new(XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1_il2cpp_TypeInfo_var); NullCheck(L_1); XmlSchemaSet__ctor_m3D365A1BB668EC9DBFBE314F44F00B1AFB3257BD(L_1, NULL); __this->___schemas_15 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___schemas_15), (void*)L_1); } IL_0013: { XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_2 = __this->___schemas_15; return L_2; } } // System.Void System.Xml.XmlReaderSettings::set_ReadOnly(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_set_ReadOnly_mE9D803936E0E2E8A22464C57D96C71AB35D1A6CB (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___isReadOnly_17 = L_0; return; } } // System.Void System.Xml.XmlReaderSettings::CheckReadOnly(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, String_t* ___0_propertyName, const RuntimeMethod* method) { { bool L_0 = __this->___isReadOnly_17; if (!L_0) { goto IL_0029; } } { Type_t* L_1; L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(__this, NULL); NullCheck(L_1); String_t* L_2; L_2 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_1); String_t* L_3 = ___0_propertyName; String_t* L_4; L_4 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D)), L_3, NULL); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_5 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_5); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral044BADD70F84141B60AE555B5513ABA7D660F738)), L_4, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlReaderSettings_CheckReadOnly_m637E1546098F107C8DD71AF528A89D69D352757B_RuntimeMethod_var))); } IL_0029: { return; } } // System.Void System.Xml.XmlReaderSettings::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_Initialize_mC0DBEC15D6168D01836D2F7874E775DB14F63B76 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { XmlReaderSettings_Initialize_m06C6F113289807FBE5B5E248DC1E1C9B199CD477(__this, (XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF*)NULL, NULL); return; } } // System.Void System.Xml.XmlReaderSettings::Initialize(System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReaderSettings_Initialize_m06C6F113289807FBE5B5E248DC1E1C9B199CD477 (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___0_resolver, const RuntimeMethod* method) { XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* G_B2_0 = NULL; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* G_B1_0 = NULL; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* G_B3_0 = NULL; XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* G_B3_1 = NULL; { __this->___nameTable_1 = (XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameTable_1), (void*)(XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)NULL); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = ___0_resolver; G_B1_0 = __this; if (!L_0) { G_B2_0 = __this; goto IL_000e; } } { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_1 = ___0_resolver; G_B3_0 = L_1; G_B3_1 = G_B1_0; goto IL_0013; } IL_000e: { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_2; L_2 = XmlReaderSettings_CreateDefaultResolver_m0D158301CF988E9310F894C9C74F1404DDE5B44E(NULL); G_B3_0 = L_2; G_B3_1 = G_B2_0; } IL_0013: { NullCheck(G_B3_1); G_B3_1->___xmlResolver_2 = G_B3_0; Il2CppCodeGenWriteBarrier((void**)(&G_B3_1->___xmlResolver_2), (void*)G_B3_0); __this->___maxCharactersFromEntities_8 = ((int64_t)0); __this->___lineNumberOffset_3 = 0; __this->___linePositionOffset_4 = 0; __this->___checkCharacters_6 = (bool)1; __this->___conformanceLevel_5 = 2; __this->___ignoreWhitespace_9 = (bool)0; __this->___ignorePIs_10 = (bool)0; __this->___ignoreComments_11 = (bool)0; __this->___dtdProcessing_12 = 0; __this->___closeInput_16 = (bool)0; __this->___maxCharactersInDocument_7 = ((int64_t)0); __this->___schemas_15 = (XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___schemas_15), (void*)(XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1*)NULL); __this->___validationType_13 = 0; __this->___validationFlags_14 = 8; int32_t L_3 = __this->___validationFlags_14; __this->___validationFlags_14 = ((int32_t)((int32_t)L_3|((int32_t)16))); __this->___useAsync_0 = (bool)0; __this->___isReadOnly_17 = (bool)0; XmlReaderSettings_set_IsXmlResolverSet_m871B57224C2E3918C193D03425F0F409E4A44A03_inline(__this, (bool)0, NULL); return; } } // System.Xml.XmlResolver System.Xml.XmlReaderSettings::CreateDefaultResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlReaderSettings_CreateDefaultResolver_m0D158301CF988E9310F894C9C74F1404DDE5B44E (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E* L_0 = (XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E*)il2cpp_codegen_object_new(XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var); NullCheck(L_0); XmlUrlResolver__ctor_m2BF23C41038D2825C0854A4C01DCE078E171A7BB(L_0, NULL); return L_0; } } // System.Boolean System.Xml.XmlReaderSettings::EnableLegacyXmlSettings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReaderSettings_EnableLegacyXmlSettings_mE04ABCDC86EA268BDAC1BC8F29C15F958150F424 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0; L_0 = Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_inline((&((XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_StaticFields*)il2cpp_codegen_static_fields_for(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var))->___s_enableLegacyXmlSettings_19), Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var); if (!L_0) { goto IL_0017; } } { bool L_1; L_1 = Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28((&((XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_StaticFields*)il2cpp_codegen_static_fields_for(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var))->___s_enableLegacyXmlSettings_19), Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_RuntimeMethod_var); return L_1; } IL_0017: { bool L_2; L_2 = BinaryCompatibility_get_TargetsAtLeast_Desktop_V4_5_2_mE4A14EA75A72E8E6220A4E7562FC22DF20399F2F(NULL); if (L_2) { goto IL_0034; } } { Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_3; memset((&L_3), 0, sizeof(L_3)); Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5((&L_3), (bool)1, /*hidden argument*/Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var); ((XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_StaticFields*)il2cpp_codegen_static_fields_for(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var))->___s_enableLegacyXmlSettings_19 = L_3; bool L_4; L_4 = Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28((&((XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_StaticFields*)il2cpp_codegen_static_fields_for(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var))->___s_enableLegacyXmlSettings_19), Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_RuntimeMethod_var); return L_4; } IL_0034: { Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_5; memset((&L_5), 0, sizeof(L_5)); Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5((&L_5), (bool)0, /*hidden argument*/Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var); ((XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_StaticFields*)il2cpp_codegen_static_fields_for(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var))->___s_enableLegacyXmlSettings_19 = L_5; bool L_6; L_6 = Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28((&((XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_StaticFields*)il2cpp_codegen_static_fields_for(XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA_il2cpp_TypeInfo_var))->___s_enableLegacyXmlSettings_19), Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_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.XmlTextReader::.ctor(System.IO.TextReader,System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader__ctor_m71F11D57A03AFBB76268D2696DADFCAC582C0403 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___0_input, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___1_nt, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_il2cpp_TypeInfo_var); XmlReader__ctor_m4E3A6201CC692B2B2F05ED58652056E893995477(__this, NULL); TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_0 = ___0_input; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1 = ___1_nt; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_2 = (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*)il2cpp_codegen_object_new(XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); NullCheck(L_2); XmlTextReaderImpl__ctor_m4EB73D665A505FC387AAC744C3FB7246556BFF5B(L_2, L_0, L_1, NULL); __this->___impl_3 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___impl_3), (void*)L_2); XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_3 = __this->___impl_3; NullCheck(L_3); XmlTextReaderImpl_set_OuterReader_mF7512246D5575745BD1DB502B6C778F3FD54456D_inline(L_3, __this, NULL); return; } } // System.Xml.XmlNodeType System.Xml.XmlTextReader::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReader_get_NodeType_m3B9F67AD367D3F6C91C758FE1FBD99A0360F0867 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_0); return L_1; } } // System.String System.Xml.XmlTextReader::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_get_Name_m2158E920A23DB55E6D7334998B2B92E099018E45 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_0); return L_1; } } // System.String System.Xml.XmlTextReader::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_get_LocalName_mE25EF4B095DED60CBFB044A18BD255CD15B888C6 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_0); return L_1; } } // System.String System.Xml.XmlTextReader::get_NamespaceURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_get_NamespaceURI_m8BC37F439DF925261CF7D566AFD80F6FC3582A94 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_0); return L_1; } } // System.String System.Xml.XmlTextReader::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_get_Prefix_mA971C9AD832EC9412FAD88B62926ED05BAE9EA37 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_0); return L_1; } } // System.String System.Xml.XmlTextReader::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_get_Value_m18A432F22D89A7CFB3D0C2E73CF347D33C5978C3 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_0); return L_1; } } // System.String System.Xml.XmlTextReader::get_BaseURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_get_BaseURI_m1FA5A02D6698D3466ABD9C1DE66ACA62E46C07FF (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(12 /* System.String System.Xml.XmlReader::get_BaseURI() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlTextReader::get_IsEmptyElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_get_IsEmptyElement_mEBCDEDE13FFDA542E7BEA22C94E6DAA8A5C9E851 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(13 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlTextReader::get_IsDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_get_IsDefault_m4F636AEF2002474E7520D2D06D391328FF62E238 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsDefault() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlTextReader::MoveToAttribute(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_MoveToAttribute_m7CB1E27086FEB3C6DB2EF9A0F5F18BB8C6C4AC7E (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, String_t* ___0_name, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; String_t* L_1 = ___0_name; NullCheck(L_0); bool L_2; L_2 = VirtualFuncInvoker1< bool, String_t* >::Invoke(16 /* System.Boolean System.Xml.XmlReader::MoveToAttribute(System.String) */, L_0, L_1); return L_2; } } // System.Boolean System.Xml.XmlTextReader::MoveToFirstAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_MoveToFirstAttribute_m19EEE5278A2250D196DA1C3302CBCCC7E41E223D (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Xml.XmlReader::MoveToFirstAttribute() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlTextReader::MoveToNextAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_MoveToNextAttribute_m671BBC553423B71FE4E59EEBEED52033F4BA3DA0 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(18 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlTextReader::MoveToElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_MoveToElement_mEC029E57AF4FC25BEBBD9964946C233DC6567DF7 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(19 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlTextReader::ReadAttributeValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_ReadAttributeValue_mCAC4969AF9AEEB35FA119A50A80CB6810D8A9B42 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(20 /* System.Boolean System.Xml.XmlReader::ReadAttributeValue() */, L_0); return L_1; } } // System.Boolean System.Xml.XmlTextReader::Read() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_Read_m2E4021768F7E65665701C27CBA53E128E06B7E08 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(21 /* System.Boolean System.Xml.XmlReader::Read() */, L_0); return L_1; } } // System.Void System.Xml.XmlTextReader::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_Close_m39251FF232DC0EAF4282F1FA2771B056C20128C2 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(22 /* System.Void System.Xml.XmlReader::Close() */, L_0); return; } } // System.Xml.ReadState System.Xml.XmlTextReader::get_ReadState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTextReader_get_ReadState_mEFCF4D4928EE1A0FBF4478BAF8108B28B5A8ECFB (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, L_0); return L_1; } } // System.Xml.XmlNameTable System.Xml.XmlTextReader::get_NameTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlTextReader_get_NameTable_m9D151BB26753EB396DB80F8AC1C91546106A54B3 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1; L_1 = VirtualFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(24 /* System.Xml.XmlNameTable System.Xml.XmlReader::get_NameTable() */, L_0); return L_1; } } // System.String System.Xml.XmlTextReader::LookupNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_LookupNamespace_mF502C3A2FBAD46C2D490FDDBCAF45B08B507B11A (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, String_t* ___0_prefix, const RuntimeMethod* method) { String_t* V_0 = NULL; { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; String_t* L_1 = ___0_prefix; NullCheck(L_0); String_t* L_2; L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(25 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_0, L_1); V_0 = L_2; String_t* L_3 = V_0; if (!L_3) { goto IL_001a; } } { String_t* L_4 = V_0; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL); if (L_5) { goto IL_001a; } } { V_0 = (String_t*)NULL; } IL_001a: { String_t* L_6 = V_0; return L_6; } } // System.Boolean System.Xml.XmlTextReader::get_CanResolveEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTextReader_get_CanResolveEntity_mB924E13DFA450427786839768522724B0D784070 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Xml.XmlTextReader::ResolveEntity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_ResolveEntity_m7714D3979922FB0F29A8C9E8E1786632626C5637 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); VirtualActionInvoker0::Invoke(27 /* System.Void System.Xml.XmlReader::ResolveEntity() */, L_0); return; } } // System.String System.Xml.XmlTextReader::System.Xml.IXmlNamespaceResolver.LookupNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_System_Xml_IXmlNamespaceResolver_LookupNamespace_m34BF5EF84C012BA70EB5F55252B4305ECE0A8543 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, String_t* ___0_prefix, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; String_t* L_1 = ___0_prefix; NullCheck(L_0); String_t* L_2; L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(25 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_0, L_1); return L_2; } } // System.String System.Xml.XmlTextReader::System.Xml.IXmlNamespaceResolver.LookupPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextReader_System_Xml_IXmlNamespaceResolver_LookupPrefix_mA0737B58812DAC3B128E5C75ED67A4E3BCD69638 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, String_t* ___0_namespaceName, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; String_t* L_1 = ___0_namespaceName; NullCheck(L_0); String_t* L_2; L_2 = XmlTextReaderImpl_LookupPrefix_mF6D85FCBDA270E1AFC2F1AC19719111A1169BD3D(L_0, L_1, NULL); return L_2; } } // System.Void System.Xml.XmlTextReader::set_EntityHandling(System.Xml.EntityHandling) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_EntityHandling_m577ABFEC373C39B83965619901EF1492C950C3BF (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, int32_t ___0_value, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; int32_t L_1 = ___0_value; NullCheck(L_0); XmlTextReaderImpl_set_EntityHandling_m045BFFB3499FB53F97124F68F659FF0E5975B24C(L_0, L_1, NULL); return; } } // System.Void System.Xml.XmlTextReader::set_XmlResolver(System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_XmlResolver_mF617E3EC08480FE4693FF9A473BB9528126FCCDA (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___0_value, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_1 = ___0_value; NullCheck(L_0); XmlTextReaderImpl_set_XmlResolver_mE88E51BCF47AE861AAB9121C0B023EEE73D29775(L_0, L_1, NULL); return; } } // System.Xml.XmlTextReaderImpl System.Xml.XmlTextReader::get_Impl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* XmlTextReader_get_Impl_m99AA88D6B2335764B7B4171CCC9D9C77329D72D8 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; return L_0; } } // System.Void System.Xml.XmlTextReader::set_XmlValidatingReaderCompatibilityMode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_XmlValidatingReaderCompatibilityMode_m485400A0FF8B647B0BA4D98CB46354AC258B7C00 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, bool ___0_value, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; bool L_1 = ___0_value; NullCheck(L_0); XmlTextReaderImpl_set_XmlValidatingReaderCompatibilityMode_mBBE46175DBCCE969AC2B298119581E91A17FA380(L_0, L_1, NULL); return; } } // System.Xml.IDtdInfo System.Xml.XmlTextReader::get_DtdInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReader_get_DtdInfo_mDC18B7E28951B920566CD40801890B1EA41EB993 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; NullCheck(L_0); RuntimeObject* L_1; L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(29 /* System.Xml.IDtdInfo System.Xml.XmlReader::get_DtdInfo() */, L_0); 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 // Conversion methods for marshalling of: System.Xml.XmlTextReaderImpl/ParsingState IL2CPP_EXTERN_C void ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886_marshal_pinvoke(const ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886& unmarshaled, ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886_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_tF0FABA16483FCC2DB710460D11CD79D35C4E2886_marshal_pinvoke_back(const ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886_marshaled_pinvoke& marshaled, ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886& 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_tF0FABA16483FCC2DB710460D11CD79D35C4E2886_marshal_pinvoke_cleanup(ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Xml.XmlTextReaderImpl/ParsingState IL2CPP_EXTERN_C void ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886_marshal_com(const ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886& unmarshaled, ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886_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_tF0FABA16483FCC2DB710460D11CD79D35C4E2886_marshal_com_back(const ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886_marshaled_com& marshaled, ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886& 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_tF0FABA16483FCC2DB710460D11CD79D35C4E2886_marshal_com_cleanup(ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886_marshaled_com& marshaled) { } // System.Void System.Xml.XmlTextReaderImpl/ParsingState::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParsingState_Clear_mA3F9CDD851956A92A6F8BAFAA70A20192BB1FED4 (ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* __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->___chars_0 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___chars_0), (void*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL); __this->___charPos_1 = 0; __this->___charsUsed_2 = 0; __this->___encoding_3 = (Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___encoding_3), (void*)(Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)NULL); __this->___stream_5 = (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___stream_5), (void*)(Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)NULL); __this->___decoder_6 = (Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___decoder_6), (void*)(Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC*)NULL); __this->___bytes_7 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___bytes_7), (void*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL); __this->___bytePos_8 = 0; __this->___bytesUsed_9 = 0; __this->___textReader_10 = (TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___textReader_10), (void*)(TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7*)NULL); __this->___lineNo_11 = 1; __this->___lineStartPos_12 = (-1); String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___baseUriStr_13 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___baseUriStr_13), (void*)L_0); __this->___baseUri_14 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___baseUri_14), (void*)(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL); __this->___isEof_15 = (bool)0; __this->___isStreamEof_16 = (bool)0; __this->___eolNormalized_19 = (bool)1; __this->___entityResolvedManually_20 = (bool)0; return; } } IL2CPP_EXTERN_C void ParsingState_Clear_mA3F9CDD851956A92A6F8BAFAA70A20192BB1FED4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); ParsingState_Clear_mA3F9CDD851956A92A6F8BAFAA70A20192BB1FED4(_thisAdjusted, method); } // System.Void System.Xml.XmlTextReaderImpl/ParsingState::Close(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParsingState_Close_mA2ACDB0CCE0955A1C3B7FA9431E23F3B4C2B2008 (ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* __this, bool ___0_closeInput, const RuntimeMethod* method) { { bool L_0 = ___0_closeInput; if (!L_0) { goto IL_002a; } } { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = __this->___stream_5; if (!L_1) { goto IL_0017; } } { Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_2 = __this->___stream_5; NullCheck(L_2); VirtualActionInvoker0::Invoke(18 /* System.Void System.IO.Stream::Close() */, L_2); return; } IL_0017: { TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_3 = __this->___textReader_10; if (!L_3) { goto IL_002a; } } { TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_4 = __this->___textReader_10; NullCheck(L_4); VirtualActionInvoker0::Invoke(7 /* System.Void System.IO.TextReader::Close() */, L_4); } IL_002a: { return; } } IL2CPP_EXTERN_C void ParsingState_Close_mA2ACDB0CCE0955A1C3B7FA9431E23F3B4C2B2008_AdjustorThunk (RuntimeObject* __this, bool ___0_closeInput, const RuntimeMethod* method) { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); ParsingState_Close_mA2ACDB0CCE0955A1C3B7FA9431E23F3B4C2B2008(_thisAdjusted, ___0_closeInput, method); } // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::get_LineNo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F (ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___lineNo_11; return L_0; } } IL2CPP_EXTERN_C int32_t ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 System.Xml.XmlTextReaderImpl/ParsingState::get_LinePos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810 (ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___charPos_1; int32_t L_1 = __this->___lineStartPos_12; return ((int32_t)il2cpp_codegen_subtract(L_0, L_1)); } } IL2CPP_EXTERN_C int32_t ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = ParsingState_get_LinePos_mB1B743FEEB24A5442698AEF3FD1FEB5826F4C810(_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_m25BE385DE1A217481A4723BC19A422E3982B3AA8 (XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* __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_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); __this->___xmlSpace_0 = 0; String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___xmlLang_1 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlLang_1), (void*)L_0); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___defaultNamespace_2 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___defaultNamespace_2), (void*)L_1); __this->___previousContext_3 = (XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___previousContext_3), (void*)(XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE*)NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl/XmlContext::.ctor(System.Xml.XmlTextReaderImpl/XmlContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlContext__ctor_m36F921052A4E95CFAF89B426EF20D602C5F16C7D (XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* __this, XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* ___0_previousContext, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_0 = ___0_previousContext; NullCheck(L_0); int32_t L_1 = L_0->___xmlSpace_0; __this->___xmlSpace_0 = L_1; XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_2 = ___0_previousContext; NullCheck(L_2); String_t* L_3 = L_2->___xmlLang_1; __this->___xmlLang_1 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlLang_1), (void*)L_3); XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_4 = ___0_previousContext; NullCheck(L_4); String_t* L_5 = L_4->___defaultNamespace_2; __this->___defaultNamespace_2 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___defaultNamespace_2), (void*)L_5); XmlContext_tE28147847949C52356E6B899971C50E1444FB8EE* L_6 = ___0_previousContext; __this->___previousContext_3 = L_6; Il2CppCodeGenWriteBarrier((void**)(&__this->___previousContext_3), (void*)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 // System.Void System.Xml.XmlTextReaderImpl/NoNamespaceManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoNamespaceManager__ctor_m879F0538BA1CC8B725BA652BCC9868981D23FCE8 (NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4* __this, const RuntimeMethod* method) { { XmlNamespaceManager__ctor_m6485992B6D88F2C7276E1D562B9F643AD60AD4CD(__this, NULL); return; } } // System.String System.Xml.XmlTextReaderImpl/NoNamespaceManager::get_DefaultNamespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NoNamespaceManager_get_DefaultNamespace_mF47320CA9E12FCBC0A24F8767DDC132DFA2AA7AB (NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4* __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))->___Empty_6; return L_0; } } // System.Void System.Xml.XmlTextReaderImpl/NoNamespaceManager::PushScope() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoNamespaceManager_PushScope_m81452F773B15590A73FCE904C88239B9A96E65AE (NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4* __this, const RuntimeMethod* method) { { return; } } // System.Boolean System.Xml.XmlTextReaderImpl/NoNamespaceManager::PopScope() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NoNamespaceManager_PopScope_m4C571EDC2E7E75B65EDE0B3B2AD683AC473C4282 (NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4* __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_m08175514C8CD2D8C8D1089C7C1828864E8FFFBE6 (NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4* __this, String_t* ___0_prefix, String_t* ___1_uri, const RuntimeMethod* method) { { return; } } // System.Collections.IEnumerator System.Xml.XmlTextReaderImpl/NoNamespaceManager::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NoNamespaceManager_GetEnumerator_m26D31D792ECF09E36C226CF8C3ADC11E447F43AD (NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4* __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_mE15386D1B9595F1AAEADB05355372144D5FE8E14 (NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4* __this, String_t* ___0_prefix, 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))->___Empty_6; return L_0; } } // System.String System.Xml.XmlTextReaderImpl/NoNamespaceManager::LookupPrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NoNamespaceManager_LookupPrefix_m1E1CF7B210192A9D169B035A14D8489DE5B29D35 (NoNamespaceManager_t2914A37089D780A639C5769A68FCF35E0FE622B4* __this, String_t* ___0_uri, 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.Void System.Xml.XmlTextReaderImpl/DtdParserProxy::.ctor(System.Xml.XmlTextReaderImpl) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParserProxy__ctor_m442621DC14ECF6CAB169962B3CAAF479A5F18D90 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___0_reader, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = ___0_reader; __this->___reader_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___reader_0), (void*)L_0); return; } } // System.Xml.XmlNameTable System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.get_NameTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* DtdParserProxy_System_Xml_IDtdParserAdapter_get_NameTable_mCD060A30CBB036CBE4771DD1B43630E3BAF2348A (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_NameTable_m9D90E1683C95F7DB7AA9244FF91A472B3BD48685_inline(L_0, 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_m5CF460E259C1A0E085F40748E31AFCBCFF4090A3 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); RuntimeObject* L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_NamespaceResolver_m801F8EFB95433131030357031EF73C68EB43F490_inline(L_0, NULL); return L_1; } } // System.Uri System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.get_BaseUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* DtdParserProxy_System_Xml_IDtdParserAdapter_get_BaseUri_m5B1DA548ADDED326C9116710B7488FD55C1830F9 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_BaseUri_m1390E43C8B3E4033041B8594E8B0D7C215C38C32(L_0, 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_m878E128D39DEDF628C377BC2D2C63C70F61F0EB9 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); bool L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_IsEof_m83F5C6AD3C68EE41EE0E6F1862A813CC2DE83362(L_0, NULL); return L_1; } } // System.Char[] System.Xml.XmlTextReaderImpl/DtdParserProxy::System.Xml.IDtdParserAdapter.get_ParsingBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* DtdParserProxy_System_Xml_IDtdParserAdapter_get_ParsingBuffer_m3F868F4D5A5B04CCB95F284A701F83B05F0CC9F8 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_ParsingBuffer_mECC04A7A08B2E4D88BCF379D8EC403C54B2ADA16(L_0, 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_m615844151C8671BF24DB8E20BDCBEA52165CEA2D (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); int32_t L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_ParsingBufferLength_m7508584AD802A8495380E88E670D44CE67871AAD(L_0, 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_m4876DA6B485EA63B228E780F64B1C912BA074FB7 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); int32_t L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_CurrentPosition_m5D6EEB470416C100210BAEA1BA750D6369663014(L_0, 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_m32AF290A1C3D8F8C8226E2B150C81E29CB2762F9 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, int32_t ___0_value, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; int32_t L_1 = ___0_value; NullCheck(L_0); XmlTextReaderImpl_set_DtdParserProxy_CurrentPosition_mB6EAE6AEA049EA5B1B54E5D850C6695CDC349DBD(L_0, L_1, 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_m5BC191F8AF8D2B93278D00DD711A50D20FD12CA6 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); int32_t L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_EntityStackLength_mB534B77ECA1FDF5F92373BDF1EAA3A1CF29AB4F1(L_0, 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_m0AE43895222CADD3FB1C30E2129D0F4642114B59 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); bool L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_IsEntityEolNormalized_mE5F5019380401A88366A88D938925389F6160A6E(L_0, 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_m01CBD7115F317391EF9C682AC0C44E6C0C37F273 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, int32_t ___0_pos, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; int32_t L_1 = ___0_pos; NullCheck(L_0); XmlTextReaderImpl_DtdParserProxy_OnNewLine_m4FE25050BC72D4CDC7A20568DE9C28D7FA5CA41A(L_0, L_1, 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_m2058C84E9C91B05F0A0B2D22764873E078AD2D2D (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); int32_t L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_LineNo_m26AF48CCD7B764E9ADCD2492703F5C4D56C92B17(L_0, 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_m577461A6BE232D4E23855F1B8444F6627FBEF430 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); int32_t L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_LineStartPosition_m64E2F43379705C24F6D37C20E520E51B5AE96D14(L_0, 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_m027F1C0E101D80148C3218B27BBD7757A4955D58 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); int32_t L_1; L_1 = XmlTextReaderImpl_DtdParserProxy_ReadData_m07882349E92F53D1FEFF74F0EF346861E6DE5290(L_0, 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_m547EDA52C24AAECA1DF3C0B5EFFA5235CB096EB9 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, StringBuilder_t* ___0_internalSubsetBuilder, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; StringBuilder_t* L_1 = ___0_internalSubsetBuilder; NullCheck(L_0); int32_t L_2; L_2 = XmlTextReaderImpl_DtdParserProxy_ParseNumericCharRef_m99D3A1CCEE205686A9333400EDA4A3F241F0C603(L_0, L_1, 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_m453B874135BE0F2A963858F76722AD2657844780 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, bool ___0_expand, StringBuilder_t* ___1_internalSubsetBuilder, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; bool L_1 = ___0_expand; StringBuilder_t* L_2 = ___1_internalSubsetBuilder; NullCheck(L_0); int32_t L_3; L_3 = XmlTextReaderImpl_DtdParserProxy_ParseNamedCharRef_m0AFB5F8D6C79FBE3505A7034821BC238C17C8017(L_0, L_1, L_2, 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_m4BFB0A9F03F688EB53F19654B58F11367FF50125 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, StringBuilder_t* ___0_sb, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; StringBuilder_t* L_1 = ___0_sb; NullCheck(L_0); XmlTextReaderImpl_DtdParserProxy_ParsePI_mA3AA8585594D5B9DD9AA34185F5B812ABF112DA6(L_0, L_1, 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_m501A41BB687B2E062331C9568E5B73006EADA020 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, StringBuilder_t* ___0_sb, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; StringBuilder_t* L_1 = ___0_sb; NullCheck(L_0); XmlTextReaderImpl_DtdParserProxy_ParseComment_mC220CD16264F0F8C4F26103E91CB932FC16A6539(L_0, L_1, 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_m45C956A0FF290895BECFED3F6ABAF18B501E30F9 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, RuntimeObject* ___0_entity, int32_t* ___1_entityId, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; RuntimeObject* L_1 = ___0_entity; int32_t* L_2 = ___1_entityId; NullCheck(L_0); bool L_3; L_3 = XmlTextReaderImpl_DtdParserProxy_PushEntity_mF7D0B660B83C4A38D3E595C899D5957FE25C1ABD(L_0, L_1, L_2, 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_m52C697B5E8E8921F94390995C2B018FB2BCF277C (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, RuntimeObject** ___0_oldEntity, int32_t* ___1_newEntityId, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; RuntimeObject** L_1 = ___0_oldEntity; int32_t* L_2 = ___1_newEntityId; NullCheck(L_0); bool L_3; L_3 = XmlTextReaderImpl_DtdParserProxy_PopEntity_m0D03A5FA761537C5B673C7D083C63F5F3C525E4B(L_0, L_1, L_2, 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_mCA683254276E48F9F433A7D5858E547D3E54DA6F (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, String_t* ___0_systemId, String_t* ___1_publicId, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; String_t* L_1 = ___0_systemId; String_t* L_2 = ___1_publicId; NullCheck(L_0); bool L_3; L_3 = XmlTextReaderImpl_DtdParserProxy_PushExternalSubset_mBAF82FF6D19641134F1453DA17C20E9A33D74ED3(L_0, L_1, L_2, 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_mBF87D431425D6A08934CBD901B8D138443A077A0 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, String_t* ___0_baseUri, String_t* ___1_internalDtd, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; String_t* L_1 = ___0_baseUri; String_t* L_2 = ___1_internalDtd; NullCheck(L_0); XmlTextReaderImpl_DtdParserProxy_PushInternalDtd_mAF1BEB6EA4615537D9D43878CD26250AEE7D5A04(L_0, L_1, L_2, 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_m9C918DF6D821BA80EA9611F021442057023AC6B1 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, Exception_t* ___0_e, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; Exception_t* L_1 = ___0_e; NullCheck(L_0); XmlTextReaderImpl_DtdParserProxy_Throw_m007CFAA6CC0A55B37895E3A9B242C33FE5F11702(L_0, L_1, 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_m4B1177D5D32F25088CB9B09278A156EF3586C494 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, String_t* ___0_systemId, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___1_keywordLineInfo, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___2_systemLiteralLineInfo, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; String_t* L_1 = ___0_systemId; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_2 = ___1_keywordLineInfo; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_3 = ___2_systemLiteralLineInfo; NullCheck(L_0); XmlTextReaderImpl_DtdParserProxy_OnSystemId_mFAEF87EE55FE4C1BEAAE833099C5E6BD25B6537F(L_0, L_1, L_2, L_3, 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_m78B5CFCEDE256C575FF08289E3B092A2D1BD5291 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, String_t* ___0_publicId, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___1_keywordLineInfo, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 ___2_publicLiteralLineInfo, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; String_t* L_1 = ___0_publicId; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_2 = ___1_keywordLineInfo; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_3 = ___2_publicLiteralLineInfo; NullCheck(L_0); XmlTextReaderImpl_DtdParserProxy_OnPublicId_mA9AE0CA29E94DDDF99C7675F1361E67775ABE11E(L_0, L_1, L_2, L_3, 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_mB08C4898A6C4382487B97FEB6B34D16950077D28 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); bool L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_DtdValidation_mA08BCC8111CAD98A8F247770DC6C5023E7A1C071(L_0, 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_mB94E31FE6CFCDECF567013EF700C5273D0250F23 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); RuntimeObject* L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_ValidationEventHandling_mB2F5898C6DDF21BDA19FB52D66B0EC56F10908C3_inline(L_0, 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_m0EAEDE68F17C29F65E00049B2A08068C47D9CF88 (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); bool L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_Normalization_m69989B2A994543AFE386FFF064EA7C9C674AF212_inline(L_0, 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_mE6F55B61928B766F99260E971E0522284FB7CA0B (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); bool L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_Namespaces_mDE78BC151B29E932636DF2B4521450C3FF8F25F6_inline(L_0, 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_m7A5959E626C9A71F1E68C8A062ADA7221C281D5F (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___reader_0; NullCheck(L_0); bool L_1; L_1 = XmlTextReaderImpl_get_DtdParserProxy_V1CompatibilityMode_mFA338124C3C5FF871125360FA041C8E74C7AE978_inline(L_0, 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 // System.Xml.XmlTextReaderImpl/NodeData System.Xml.XmlTextReaderImpl/NodeData::get_None() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* NodeData_get_None_mA5FEE08AC3F537E7EA9900A26F224697CF045E78 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_0 = ((NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_StaticFields*)il2cpp_codegen_static_fields_for(NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var))->___s_None_0; il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_0015; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_1 = (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)il2cpp_codegen_object_new(NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var); NullCheck(L_1); NodeData__ctor_m0EDB77C0D5BDFD2B2F74516B9E37106ACD355350(L_1, NULL); il2cpp_codegen_memory_barrier(); ((NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_StaticFields*)il2cpp_codegen_static_fields_for(NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var))->___s_None_0 = L_1; Il2CppCodeGenWriteBarrier((void**)(&((NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_StaticFields*)il2cpp_codegen_static_fields_for(NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var))->___s_None_0), (void*)L_1); } IL_0015: { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_2 = ((NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_StaticFields*)il2cpp_codegen_static_fields_for(NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var))->___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_m0EDB77C0D5BDFD2B2F74516B9E37106ACD355350 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); NodeData_Clear_m947A266026A00AB3BC65DC55B7BCE727B3D0004F(__this, 0, NULL); __this->___xmlContextPushed_16 = (bool)0; return; } } // System.Int32 System.Xml.XmlTextReaderImpl/NodeData::get_LineNo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NodeData_get_LineNo_m4FFAC4F3348BAF51A9900887975D3164BE1AA090 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) { { LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_0 = (&__this->___lineInfo_10); int32_t L_1 = L_0->___lineNo_0; return L_1; } } // System.Int32 System.Xml.XmlTextReaderImpl/NodeData::get_LinePos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NodeData_get_LinePos_mA47E445CCB1D4B13F7E6821C44D70299FBAEB0C7 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) { { LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_0 = (&__this->___lineInfo_10); int32_t L_1 = L_0->___linePos_1; return L_1; } } // System.Boolean System.Xml.XmlTextReaderImpl/NodeData::get_IsEmptyElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NodeData_get_IsEmptyElement_mD85FA732DA497F1A5F2778650D5405F5D67DF527 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___type_1; if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_0010; } } { bool L_1 = __this->___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_mD9AA39D1F91A00BEDBED1204654917447AF2D57D (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___isEmptyOrDefault_14 = L_0; return; } } // System.Boolean System.Xml.XmlTextReaderImpl/NodeData::get_IsDefaultAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NodeData_get_IsDefaultAttribute_mAEDE8A0C6EB15C9087EB963AA29E2E6C3E2AC81C (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___type_1; if ((!(((uint32_t)L_0) == ((uint32_t)2)))) { goto IL_0010; } } { bool L_1 = __this->___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_m6CFE78C360F0CAADE7E1398F7527374253267DCD (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___isEmptyOrDefault_14 = L_0; return; } } // System.Boolean System.Xml.XmlTextReaderImpl/NodeData::get_ValueBuffered() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NodeData_get_ValueBuffered_mD9B7D4C2C055BC6DC3641D960844A05821EAE1F4 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___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_m49F31840D0EC31EAF70E6F4EF5BE14BB900B2624 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___value_6; if (L_0) { goto IL_0025; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = __this->___chars_7; int32_t L_2 = __this->___valueStartPos_8; int32_t L_3 = __this->___valueLength_9; String_t* L_4; L_4 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_1, L_2, L_3, NULL); __this->___value_6 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___value_6), (void*)L_4); } IL_0025: { String_t* L_5 = __this->___value_6; return L_5; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::TrimSpacesInValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_TrimSpacesInValue_m8B3A9D1567033FA59E05CAC4E7C0BCF7126790B1 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) { { bool L_0; L_0 = NodeData_get_ValueBuffered_mD9B7D4C2C055BC6DC3641D960844A05821EAE1F4(__this, NULL); if (!L_0) { goto IL_0020; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = __this->___chars_7; int32_t L_2 = __this->___valueStartPos_8; int32_t* L_3 = (&__this->___valueLength_9); XmlTextReaderImpl_StripSpaces_mD7FD9662A6CC09D000AF4E2A6D489D79267520AC(L_1, L_2, L_3, NULL); return; } IL_0020: { String_t* L_4 = __this->___value_6; String_t* L_5; L_5 = XmlTextReaderImpl_StripSpaces_m45E9B5FC3CFA2377C827CF9D5B29ABB443913D6D(L_4, NULL); __this->___value_6 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___value_6), (void*)L_5); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::Clear(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_Clear_m947A266026A00AB3BC65DC55B7BCE727B3D0004F (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___0_type, 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 = ___0_type; __this->___type_1 = L_0; NodeData_ClearName_m33AF87BF5512718AE6E0920CF814BADCF8EB7BEC(__this, NULL); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___value_6 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___value_6), (void*)L_1); __this->___valueStartPos_8 = (-1); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___nameWPrefix_5 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameWPrefix_5), (void*)L_2); __this->___schemaType_18 = NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___schemaType_18), (void*)NULL); __this->___typedValue_19 = NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___typedValue_19), (void*)NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::ClearName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_ClearName_m33AF87BF5512718AE6E0920CF814BADCF8EB7BEC (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __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))->___Empty_6; __this->___localName_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___localName_2), (void*)L_0); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___prefix_3 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___prefix_3), (void*)L_1); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___ns_4 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___ns_4), (void*)L_2); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___nameWPrefix_5 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameWPrefix_5), (void*)L_3); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetLineInfo(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetLineInfo_m6D28339C7F45327E5B512AD556ECCBB06A0871A5 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___0_lineNo, int32_t ___1_linePos, const RuntimeMethod* method) { { LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_0 = (&__this->___lineInfo_10); int32_t L_1 = ___0_lineNo; int32_t L_2 = ___1_linePos; LineInfo_Set_m5D59B42332EDBA296FA9AED5CF63D8BECC18214E(L_0, L_1, L_2, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetLineInfo2(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetLineInfo2_mD0AD7BC1A4A18A10953788BC8FBE0B1A02CE26D5 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___0_lineNo, int32_t ___1_linePos, const RuntimeMethod* method) { { LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_0 = (&__this->___lineInfo2_11); int32_t L_1 = ___0_lineNo; int32_t L_2 = ___1_linePos; LineInfo_Set_m5D59B42332EDBA296FA9AED5CF63D8BECC18214E(L_0, L_1, L_2, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetValueNode(System.Xml.XmlNodeType,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetValueNode_m2C3413CC8225BB47DA4B08D098EA56D376BBBF25 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___0_type, String_t* ___1_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_type; __this->___type_1 = L_0; NodeData_ClearName_m33AF87BF5512718AE6E0920CF814BADCF8EB7BEC(__this, NULL); String_t* L_1 = ___1_value; __this->___value_6 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___value_6), (void*)L_1); __this->___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_m50F48B9511DD8F6BDB6D49CFB0B3BD799D6AD0F1 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___0_type, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___1_chars, int32_t ___2_startPos, int32_t ___3_len, const RuntimeMethod* method) { { int32_t L_0 = ___0_type; __this->___type_1 = L_0; NodeData_ClearName_m33AF87BF5512718AE6E0920CF814BADCF8EB7BEC(__this, NULL); __this->___value_6 = (String_t*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___value_6), (void*)(String_t*)NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___1_chars; __this->___chars_7 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___chars_7), (void*)L_1); int32_t L_2 = ___2_startPos; __this->___valueStartPos_8 = L_2; int32_t L_3 = ___3_len; __this->___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_mB4B118182B66F9E24611C31A074538E177DDDA73 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___0_type, String_t* ___1_localName, 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 = ___0_type; String_t* L_1 = ___1_localName; String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; String_t* L_3 = ___1_localName; NodeData_SetNamedNode_mC99F6739610C0257126208B4CF498E1771DF5DDA(__this, L_0, L_1, L_2, L_3, 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_mC99F6739610C0257126208B4CF498E1771DF5DDA (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___0_type, String_t* ___1_localName, String_t* ___2_prefix, String_t* ___3_nameWPrefix, 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 = ___0_type; __this->___type_1 = L_0; String_t* L_1 = ___1_localName; __this->___localName_2 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___localName_2), (void*)L_1); String_t* L_2 = ___2_prefix; __this->___prefix_3 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___prefix_3), (void*)L_2); String_t* L_3 = ___3_nameWPrefix; __this->___nameWPrefix_5 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameWPrefix_5), (void*)L_3); String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___ns_4 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___ns_4), (void*)L_4); String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___value_6 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___value_6), (void*)L_5); __this->___valueStartPos_8 = (-1); return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::SetValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_SetValue_m07CC0F62B746F76367A00A6A88DEDB2B87B6CA91 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, String_t* ___0_value, const RuntimeMethod* method) { { __this->___valueStartPos_8 = (-1); String_t* L_0 = ___0_value; __this->___value_6 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___value_6), (void*)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_m7078D8BE1A2371A59DDF78DE12BAA39C8125C4B5 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_chars, int32_t ___1_startPos, int32_t ___2_len, const RuntimeMethod* method) { { __this->___value_6 = (String_t*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___value_6), (void*)(String_t*)NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_chars; __this->___chars_7 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___chars_7), (void*)L_0); int32_t L_1 = ___1_startPos; __this->___valueStartPos_8 = L_1; int32_t L_2 = ___2_len; __this->___valueLength_9 = L_2; return; } } // System.Void System.Xml.XmlTextReaderImpl/NodeData::OnBufferInvalidated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NodeData_OnBufferInvalidated_m23EB9F4229B6FB92ED6C586B75EFE146D979A7D2 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___value_6; if (L_0) { goto IL_0025; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = __this->___chars_7; int32_t L_2 = __this->___valueStartPos_8; int32_t L_3 = __this->___valueLength_9; String_t* L_4; L_4 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_1, L_2, L_3, NULL); __this->___value_6 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___value_6), (void*)L_4); } IL_0025: { __this->___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_m9D59E5E6EBD3C691A34AC2ADD32FB6C914AB24C2 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, int32_t ___0_valueOffset, StringBuilder_t* ___1_sb, const RuntimeMethod* method) { { String_t* L_0 = __this->___value_6; if (L_0) { goto IL_0026; } } { StringBuilder_t* L_1 = ___1_sb; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->___chars_7; int32_t L_3 = __this->___valueStartPos_8; int32_t L_4 = ___0_valueOffset; int32_t L_5 = __this->___valueLength_9; int32_t L_6 = ___0_valueOffset; NullCheck(L_1); StringBuilder_t* L_7; L_7 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_1, L_2, ((int32_t)il2cpp_codegen_add(L_3, L_4)), ((int32_t)il2cpp_codegen_subtract(L_5, L_6)), NULL); return; } IL_0026: { int32_t L_8 = ___0_valueOffset; if ((((int32_t)L_8) > ((int32_t)0))) { goto IL_0038; } } { StringBuilder_t* L_9 = ___1_sb; String_t* L_10 = __this->___value_6; NullCheck(L_9); StringBuilder_t* L_11; L_11 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_9, L_10, NULL); return; } IL_0038: { StringBuilder_t* L_12 = ___1_sb; String_t* L_13 = __this->___value_6; int32_t L_14 = ___0_valueOffset; String_t* L_15 = __this->___value_6; NullCheck(L_15); int32_t L_16; L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL); int32_t L_17 = ___0_valueOffset; NullCheck(L_12); StringBuilder_t* L_18; L_18 = StringBuilder_Append_mE7CA22532FEF1545B8BC357CB7CAA304BA264703(L_12, L_13, L_14, ((int32_t)il2cpp_codegen_subtract(L_16, L_17)), NULL); return; } } // System.String System.Xml.XmlTextReaderImpl/NodeData::GetNameWPrefix(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NodeData_GetNameWPrefix_mCA5D7B8E3A167C9B8AEFB8751E9C0C40F84B4527 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___0_nt, const RuntimeMethod* method) { { String_t* L_0 = __this->___nameWPrefix_5; if (!L_0) { goto IL_000f; } } { String_t* L_1 = __this->___nameWPrefix_5; return L_1; } IL_000f: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2 = ___0_nt; String_t* L_3; L_3 = NodeData_CreateNameWPrefix_mC14BB0DB05523F946E9DA65EB1C2D08F22E474AB(__this, L_2, NULL); return L_3; } } // System.String System.Xml.XmlTextReaderImpl/NodeData::CreateNameWPrefix(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NodeData_CreateNameWPrefix_mC14BB0DB05523F946E9DA65EB1C2D08F22E474AB (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___0_nt, 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->___prefix_3; NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL); if (L_1) { goto IL_001b; } } { String_t* L_2 = __this->___localName_2; __this->___nameWPrefix_5 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameWPrefix_5), (void*)L_2); goto IL_003d; } IL_001b: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_3 = ___0_nt; String_t* L_4 = __this->___prefix_3; String_t* L_5 = __this->___localName_2; String_t* L_6; L_6 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_4, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, L_5, NULL); NullCheck(L_3); String_t* L_7; L_7 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_3, L_6); __this->___nameWPrefix_5 = L_7; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameWPrefix_5), (void*)L_7); } IL_003d: { String_t* L_8 = __this->___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_m74609FF1B98ECDBF2E824C2A7F7057A2A1529BE5 (NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_0 = NULL; { RuntimeObject* L_0 = ___0_obj; V_0 = ((NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)IsInstClass((RuntimeObject*)L_0, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_1 = V_0; if (!L_1) { goto IL_0056; } } { String_t* L_2 = __this->___localName_2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_3 = V_0; NullCheck(L_3); String_t* L_4 = L_3->___localName_2; bool L_5; L_5 = Ref_Equal_m60FD3EF02546279815B785F856568B01F60FE1AF(L_2, L_4, NULL); if (!L_5) { goto IL_0044; } } { String_t* L_6 = __this->___ns_4; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_7 = V_0; NullCheck(L_7); String_t* L_8 = L_7->___ns_4; bool L_9; L_9 = Ref_Equal_m60FD3EF02546279815B785F856568B01F60FE1AF(L_6, L_8, NULL); if (!L_9) { goto IL_0032; } } { return 0; } IL_0032: { String_t* L_10 = __this->___ns_4; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_11 = V_0; NullCheck(L_11); String_t* L_12 = L_11->___ns_4; int32_t L_13; L_13 = String_CompareOrdinal_mC6F612DEA1F7B3BF24A44C79D17AF7F8C29C9D3C(L_10, L_12, NULL); return L_13; } IL_0044: { String_t* L_14 = __this->___localName_2; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_15 = V_0; NullCheck(L_15); String_t* L_16 = L_15->___localName_2; int32_t L_17; L_17 = String_CompareOrdinal_mC6F612DEA1F7B3BF24A44C79D17AF7F8C29C9D3C(L_14, L_16, 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.Collections.Generic.IComparer`1 System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DtdDefaultAttributeInfoToNodeDataComparer_get_Instance_mCE071E773839C95509C1494A404F710C62A51B8F (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_StaticFields*)il2cpp_codegen_static_fields_for(DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_il2cpp_TypeInfo_var))->___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_m2429249F0018AC286655A7D6301AB2B5A36791DB (DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1* __this, RuntimeObject* ___0_x, RuntimeObject* ___1_y, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdAttributeInfo_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdDefaultAttributeInfo_t57776183C360FBC7DA2F7A2829C62E8D59C61613_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_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_tEB6A7F9E5147217F637373A7B7644BE377D539FF* V_4 = NULL; int32_t V_5 = 0; RuntimeObject* V_6 = NULL; RuntimeObject* V_7 = NULL; { RuntimeObject* L_0 = ___0_x; if (L_0) { goto IL_000a; } } { RuntimeObject* L_1 = ___1_y; if (!L_1) { goto IL_0008; } } { return (-1); } IL_0008: { return 0; } IL_000a: { RuntimeObject* L_2 = ___1_y; if (L_2) { goto IL_000f; } } { return 1; } IL_000f: { RuntimeObject* L_3 = ___0_x; V_4 = ((NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)IsInstClass((RuntimeObject*)L_3, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_4 = V_4; if (!L_4) { goto IL_002d; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_5 = V_4; NullCheck(L_5); String_t* L_6 = L_5->___localName_2; V_0 = L_6; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_7 = V_4; NullCheck(L_7); String_t* L_8 = L_7->___prefix_3; V_2 = L_8; goto IL_005b; } IL_002d: { RuntimeObject* L_9 = ___0_x; V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_9, IDtdDefaultAttributeInfo_t57776183C360FBC7DA2F7A2829C62E8D59C61613_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_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_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_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_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))))->___Empty_6; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_16 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_16); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral872479F10B4968F255B608A3698CA1A7EE09888B)), L_15, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DtdDefaultAttributeInfoToNodeDataComparer_Compare_m2429249F0018AC286655A7D6301AB2B5A36791DB_RuntimeMethod_var))); } IL_005b: { RuntimeObject* L_17 = ___1_y; V_4 = ((NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF*)IsInstClass((RuntimeObject*)L_17, NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF_il2cpp_TypeInfo_var)); NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_18 = V_4; if (!L_18) { goto IL_0079; } } { NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_19 = V_4; NullCheck(L_19); String_t* L_20 = L_19->___localName_2; V_1 = L_20; NodeData_tEB6A7F9E5147217F637373A7B7644BE377D539FF* L_21 = V_4; NullCheck(L_21); String_t* L_22 = L_21->___prefix_3; V_3 = L_22; goto IL_00a7; } IL_0079: { RuntimeObject* L_23 = ___1_y; V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_23, IDtdDefaultAttributeInfo_t57776183C360FBC7DA2F7A2829C62E8D59C61613_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_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_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_t97A8DDF92ED9F466BAC1D389F207DD3900412F04_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))))->___Empty_6; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_30 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_30); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_30, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral872479F10B4968F255B608A3698CA1A7EE09888B)), L_29, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DtdDefaultAttributeInfoToNodeDataComparer_Compare_m2429249F0018AC286655A7D6301AB2B5A36791DB_RuntimeMethod_var))); } IL_00a7: { String_t* L_31 = V_0; String_t* L_32 = V_1; int32_t L_33; L_33 = String_Compare_mB21E4512DAFACE027D2DD3FE75DD6E69CE315009(L_31, L_32, 4, 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_mB21E4512DAFACE027D2DD3FE75DD6E69CE315009(L_36, L_37, 4, NULL); return L_38; } } // System.Void System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdDefaultAttributeInfoToNodeDataComparer__ctor_m0B55E97728B1943F9E8B87A3C51B95B2BDA4767B (DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.Void System.Xml.XmlTextReaderImpl/DtdDefaultAttributeInfoToNodeDataComparer::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdDefaultAttributeInfoToNodeDataComparer__cctor_mFF2AACA3BA98F57F10DC00B49B40C484BEF1A1E8 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1* L_0 = (DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1*)il2cpp_codegen_object_new(DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_il2cpp_TypeInfo_var); NullCheck(L_0); DtdDefaultAttributeInfoToNodeDataComparer__ctor_m0B55E97728B1943F9E8B87A3C51B95B2BDA4767B(L_0, NULL); ((DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_StaticFields*)il2cpp_codegen_static_fields_for(DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_il2cpp_TypeInfo_var))->___s_instance_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_StaticFields*)il2cpp_codegen_static_fields_for(DtdDefaultAttributeInfoToNodeDataComparer_t316EE7BA1A7C3159565673C63167CDD82E3935A1_il2cpp_TypeInfo_var))->___s_instance_0), (void*)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 void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_Multicast(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___0_defaultAttribute, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___1_coreReader, const RuntimeMethod* method) { il2cpp_array_size_t length = __this->___delegates_13->max_length; Delegate_t** delegatesToInvoke = reinterpret_cast(__this->___delegates_13->GetAddressAtUnchecked(0)); for (il2cpp_array_size_t i = 0; i < length; i++) { OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* currentDelegate = reinterpret_cast(delegatesToInvoke[i]); typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*, const RuntimeMethod*); ((FunctionPointerType)currentDelegate->___invoke_impl_1)((Il2CppObject*)currentDelegate->___method_code_6, ___0_defaultAttribute, ___1_coreReader, reinterpret_cast(currentDelegate->___method_3)); } } void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenInst(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___0_defaultAttribute, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___1_coreReader, const RuntimeMethod* method) { NullCheck(___0_defaultAttribute); typedef void (*FunctionPointerType) (RuntimeObject*, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(___0_defaultAttribute, ___1_coreReader, method); } void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenStatic(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___0_defaultAttribute, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___1_coreReader, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(___0_defaultAttribute, ___1_coreReader, method); } void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenStaticInvoker(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___0_defaultAttribute, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___1_coreReader, const RuntimeMethod* method) { InvokerActionInvoker2< RuntimeObject*, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* >::Invoke(__this->___method_ptr_0, method, NULL, ___0_defaultAttribute, ___1_coreReader); } void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_ClosedStaticInvoker(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___0_defaultAttribute, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___1_coreReader, const RuntimeMethod* method) { InvokerActionInvoker3< RuntimeObject*, RuntimeObject*, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___0_defaultAttribute, ___1_coreReader); } void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenVirtual(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___0_defaultAttribute, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___1_coreReader, const RuntimeMethod* method) { NullCheck(___0_defaultAttribute); VirtualActionInvoker1< XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* >::Invoke(il2cpp_codegen_method_get_slot(method), ___0_defaultAttribute, ___1_coreReader); } void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenInterface(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___0_defaultAttribute, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___1_coreReader, const RuntimeMethod* method) { NullCheck(___0_defaultAttribute); InterfaceActionInvoker1< XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___0_defaultAttribute, ___1_coreReader); } void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenGenericVirtual(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___0_defaultAttribute, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___1_coreReader, const RuntimeMethod* method) { NullCheck(___0_defaultAttribute); GenericVirtualActionInvoker1< XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* >::Invoke(method, ___0_defaultAttribute, ___1_coreReader); } void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenGenericInterface(OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___0_defaultAttribute, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___1_coreReader, const RuntimeMethod* method) { NullCheck(___0_defaultAttribute); GenericInterfaceActionInvoker1< XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* >::Invoke(method, ___0_defaultAttribute, ___1_coreReader); } // System.Void System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnDefaultAttributeUseDelegate__ctor_m3276CA00C5467BC764348C5121B7E2106122CAA7 (OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) { __this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___1_method); __this->___method_3 = ___1_method; __this->___m_target_2 = ___0_object; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___0_object); int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method); __this->___method_code_6 = (intptr_t)__this; if (MethodIsStatic((RuntimeMethod*)___1_method)) { bool isOpen = parameterCount == 2; if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___1_method)) if (isOpen) __this->___invoke_impl_1 = (intptr_t)&OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenStaticInvoker; else __this->___invoke_impl_1 = (intptr_t)&OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_ClosedStaticInvoker; else if (isOpen) __this->___invoke_impl_1 = (intptr_t)&OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenStatic; else { __this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0; __this->___method_code_6 = (intptr_t)__this->___m_target_2; } } else { bool isOpen = parameterCount == 1; if (isOpen) { if (__this->___method_is_virtual_12) { if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___1_method)) if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method)) __this->___invoke_impl_1 = (intptr_t)&OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenGenericInterface; else __this->___invoke_impl_1 = (intptr_t)&OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenGenericVirtual; else if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method)) __this->___invoke_impl_1 = (intptr_t)&OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenInterface; else __this->___invoke_impl_1 = (intptr_t)&OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenVirtual; } else { __this->___invoke_impl_1 = (intptr_t)&OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_OpenInst; } } else { if (___0_object == NULL) il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); __this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0; __this->___method_code_6 = (intptr_t)__this->___m_target_2; } } __this->___extra_arg_5 = (intptr_t)&OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2_Multicast; } // System.Void System.Xml.XmlTextReaderImpl/OnDefaultAttributeUseDelegate::Invoke(System.Xml.IDtdDefaultAttributeInfo,System.Xml.XmlTextReaderImpl) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnDefaultAttributeUseDelegate_Invoke_mBF7EA3AC8F6A89D0019626AC5CBD72B6125699A2 (OnDefaultAttributeUseDelegate_tBA6F77520C9B31FE1BD169F24584BD312F5AD499* __this, RuntimeObject* ___0_defaultAttribute, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___1_coreReader, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*, const RuntimeMethod*); ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_defaultAttribute, ___1_coreReader, reinterpret_cast(__this->___method_3)); } #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.DomNameTable::.ctor(System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DomNameTable__ctor_m5A5BC654B5068463A5363A4C5F944DBA31D68C29 (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___0_document, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___0_document; __this->___ownerDocument_3 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___ownerDocument_3), (void*)L_0); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___0_document; NullCheck(L_1); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2; L_2 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(L_1, NULL); __this->___nameTable_4 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameTable_4), (void*)L_2); XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_3 = (XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC*)(XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC*)SZArrayNew(XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64)); __this->___entries_0 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___entries_0), (void*)L_3); __this->___mask_2 = ((int32_t)63); return; } } // System.Xml.XmlName System.Xml.DomNameTable::GetName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* DomNameTable_GetName_mCDD057C4F21297AF60F4C3E34DFB4A864067AD8C (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_ns, RuntimeObject* ___3_schemaInfo, 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 V_0 = 0; XmlName_t0704430D24D202146901D342E34D878246E14F33* V_1 = NULL; { String_t* L_0 = ___0_prefix; if (L_0) { goto IL_000a; } } { String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; ___0_prefix = L_1; } IL_000a: { String_t* L_2 = ___2_ns; if (L_2) { goto IL_0014; } } { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; ___2_ns = L_3; } IL_0014: { String_t* L_4 = ___1_localName; int32_t L_5; L_5 = XmlName_GetHashCode_mC2C5513D62B0E10E556D1241BC33C4AFFAD1DDCD(L_4, NULL); V_0 = L_5; XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_6 = __this->___entries_0; int32_t L_7 = V_0; int32_t L_8 = __this->___mask_2; NullCheck(L_6); int32_t L_9 = ((int32_t)(L_7&L_8)); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_10 = (L_6)->GetAt(static_cast(L_9)); V_1 = L_10; goto IL_008e; } IL_002d: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_11 = V_1; NullCheck(L_11); int32_t L_12; L_12 = XmlName_get_HashCode_m329A9FEAF3BDEAA5F1F40CB84F7E51E1BDE58B2D_inline(L_11, NULL); int32_t L_13 = V_0; if ((!(((uint32_t)L_12) == ((uint32_t)L_13)))) { goto IL_0087; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_14 = V_1; NullCheck(L_14); String_t* L_15; L_15 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_14, NULL); String_t* L_16 = ___1_localName; if ((((RuntimeObject*)(String_t*)L_15) == ((RuntimeObject*)(String_t*)L_16))) { goto IL_004d; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_17 = V_1; NullCheck(L_17); String_t* L_18; L_18 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_17, NULL); String_t* L_19 = ___1_localName; NullCheck(L_18); bool L_20; L_20 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_18, L_19, NULL); if (!L_20) { goto IL_0087; } } IL_004d: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_21 = V_1; NullCheck(L_21); String_t* L_22; L_22 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_21, NULL); String_t* L_23 = ___0_prefix; if ((((RuntimeObject*)(String_t*)L_22) == ((RuntimeObject*)(String_t*)L_23))) { goto IL_0064; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_24 = V_1; NullCheck(L_24); String_t* L_25; L_25 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_24, NULL); String_t* L_26 = ___0_prefix; NullCheck(L_25); bool L_27; L_27 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_25, L_26, NULL); if (!L_27) { goto IL_0087; } } IL_0064: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_28 = V_1; NullCheck(L_28); String_t* L_29; L_29 = XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline(L_28, NULL); String_t* L_30 = ___2_ns; if ((((RuntimeObject*)(String_t*)L_29) == ((RuntimeObject*)(String_t*)L_30))) { goto IL_007b; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_31 = V_1; NullCheck(L_31); String_t* L_32; L_32 = XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline(L_31, NULL); String_t* L_33 = ___2_ns; NullCheck(L_32); bool L_34; L_34 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_32, L_33, NULL); if (!L_34) { goto IL_0087; } } IL_007b: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_35 = V_1; RuntimeObject* L_36 = ___3_schemaInfo; NullCheck(L_35); bool L_37; L_37 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(18 /* System.Boolean System.Xml.XmlName::Equals(System.Xml.Schema.IXmlSchemaInfo) */, L_35, L_36); if (!L_37) { goto IL_0087; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_38 = V_1; return L_38; } IL_0087: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_39 = V_1; NullCheck(L_39); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_40 = L_39->___next_6; V_1 = L_40; } IL_008e: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_41 = V_1; if (L_41) { goto IL_002d; } } { return (XmlName_t0704430D24D202146901D342E34D878246E14F33*)NULL; } } // System.Xml.XmlName System.Xml.DomNameTable::AddName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* DomNameTable_AddName_m5EADC9D7600CB5AB4285BF18DCA911E042C7F4C2 (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_ns, RuntimeObject* ___3_schemaInfo, 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 V_0 = 0; int32_t V_1 = 0; XmlName_t0704430D24D202146901D342E34D878246E14F33* V_2 = NULL; XmlName_t0704430D24D202146901D342E34D878246E14F33* V_3 = NULL; int32_t V_4 = 0; { String_t* L_0 = ___0_prefix; if (L_0) { goto IL_000a; } } { String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; ___0_prefix = L_1; } IL_000a: { String_t* L_2 = ___2_ns; if (L_2) { goto IL_0014; } } { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; ___2_ns = L_3; } IL_0014: { String_t* L_4 = ___1_localName; int32_t L_5; L_5 = XmlName_GetHashCode_mC2C5513D62B0E10E556D1241BC33C4AFFAD1DDCD(L_4, NULL); V_0 = L_5; XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_6 = __this->___entries_0; int32_t L_7 = V_0; int32_t L_8 = __this->___mask_2; NullCheck(L_6); int32_t L_9 = ((int32_t)(L_7&L_8)); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_10 = (L_6)->GetAt(static_cast(L_9)); V_3 = L_10; goto IL_008e; } IL_002d: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_11 = V_3; NullCheck(L_11); int32_t L_12; L_12 = XmlName_get_HashCode_m329A9FEAF3BDEAA5F1F40CB84F7E51E1BDE58B2D_inline(L_11, NULL); int32_t L_13 = V_0; if ((!(((uint32_t)L_12) == ((uint32_t)L_13)))) { goto IL_0087; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_14 = V_3; NullCheck(L_14); String_t* L_15; L_15 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_14, NULL); String_t* L_16 = ___1_localName; if ((((RuntimeObject*)(String_t*)L_15) == ((RuntimeObject*)(String_t*)L_16))) { goto IL_004d; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_17 = V_3; NullCheck(L_17); String_t* L_18; L_18 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_17, NULL); String_t* L_19 = ___1_localName; NullCheck(L_18); bool L_20; L_20 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_18, L_19, NULL); if (!L_20) { goto IL_0087; } } IL_004d: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_21 = V_3; NullCheck(L_21); String_t* L_22; L_22 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_21, NULL); String_t* L_23 = ___0_prefix; if ((((RuntimeObject*)(String_t*)L_22) == ((RuntimeObject*)(String_t*)L_23))) { goto IL_0064; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_24 = V_3; NullCheck(L_24); String_t* L_25; L_25 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_24, NULL); String_t* L_26 = ___0_prefix; NullCheck(L_25); bool L_27; L_27 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_25, L_26, NULL); if (!L_27) { goto IL_0087; } } IL_0064: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_28 = V_3; NullCheck(L_28); String_t* L_29; L_29 = XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline(L_28, NULL); String_t* L_30 = ___2_ns; if ((((RuntimeObject*)(String_t*)L_29) == ((RuntimeObject*)(String_t*)L_30))) { goto IL_007b; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_31 = V_3; NullCheck(L_31); String_t* L_32; L_32 = XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline(L_31, NULL); String_t* L_33 = ___2_ns; NullCheck(L_32); bool L_34; L_34 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_32, L_33, NULL); if (!L_34) { goto IL_0087; } } IL_007b: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_35 = V_3; RuntimeObject* L_36 = ___3_schemaInfo; NullCheck(L_35); bool L_37; L_37 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(18 /* System.Boolean System.Xml.XmlName::Equals(System.Xml.Schema.IXmlSchemaInfo) */, L_35, L_36); if (!L_37) { goto IL_0087; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_38 = V_3; return L_38; } IL_0087: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_39 = V_3; NullCheck(L_39); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_40 = L_39->___next_6; V_3 = L_40; } IL_008e: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_41 = V_3; if (L_41) { goto IL_002d; } } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_42 = __this->___nameTable_4; String_t* L_43 = ___0_prefix; NullCheck(L_42); String_t* L_44; L_44 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_42, L_43); ___0_prefix = L_44; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_45 = __this->___nameTable_4; String_t* L_46 = ___1_localName; NullCheck(L_45); String_t* L_47; L_47 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_45, L_46); ___1_localName = L_47; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_48 = __this->___nameTable_4; String_t* L_49 = ___2_ns; NullCheck(L_48); String_t* L_50; L_50 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_48, L_49); ___2_ns = L_50; int32_t L_51 = V_0; int32_t L_52 = __this->___mask_2; V_1 = ((int32_t)(L_51&L_52)); String_t* L_53 = ___0_prefix; String_t* L_54 = ___1_localName; String_t* L_55 = ___2_ns; int32_t L_56 = V_0; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_57 = __this->___ownerDocument_3; XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_58 = __this->___entries_0; int32_t L_59 = V_1; NullCheck(L_58); int32_t L_60 = L_59; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_61 = (L_58)->GetAt(static_cast(L_60)); RuntimeObject* L_62 = ___3_schemaInfo; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_63; L_63 = XmlName_Create_m8B23A272C20C2ACD00B4F98D341BD01E23EF290C(L_53, L_54, L_55, L_56, L_57, L_61, L_62, NULL); V_2 = L_63; XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_64 = __this->___entries_0; int32_t L_65 = V_1; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_66 = V_2; NullCheck(L_64); ArrayElementTypeCheck (L_64, L_66); (L_64)->SetAt(static_cast(L_65), (XmlName_t0704430D24D202146901D342E34D878246E14F33*)L_66); int32_t L_67 = __this->___count_1; V_4 = L_67; int32_t L_68 = V_4; __this->___count_1 = ((int32_t)il2cpp_codegen_add(L_68, 1)); int32_t L_69 = V_4; int32_t L_70 = __this->___mask_2; if ((!(((uint32_t)L_69) == ((uint32_t)L_70)))) { goto IL_0109; } } { DomNameTable_Grow_m6D16497A6E2D1C44AB174DA56A974A7E3DDDE487(__this, NULL); } IL_0109: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_71 = V_2; return L_71; } } // System.Void System.Xml.DomNameTable::Grow() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DomNameTable_Grow_m6D16497A6E2D1C44AB174DA56A974A7E3DDDE487 (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* V_1 = NULL; XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* V_2 = NULL; int32_t V_3 = 0; XmlName_t0704430D24D202146901D342E34D878246E14F33* V_4 = NULL; int32_t V_5 = 0; { int32_t L_0 = __this->___mask_2; V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_0, 2)), 1)); XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_1 = __this->___entries_0; V_1 = L_1; int32_t L_2 = V_0; XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_3 = (XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC*)(XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC*)SZArrayNew(XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_2, 1))); V_2 = L_3; V_3 = 0; goto IL_0053; } IL_001f: { XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_4 = V_1; int32_t L_5 = V_3; NullCheck(L_4); int32_t L_6 = L_5; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_7 = (L_4)->GetAt(static_cast(L_6)); V_4 = L_7; goto IL_004b; } IL_0026: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_8 = V_4; NullCheck(L_8); int32_t L_9; L_9 = XmlName_get_HashCode_m329A9FEAF3BDEAA5F1F40CB84F7E51E1BDE58B2D_inline(L_8, NULL); int32_t L_10 = V_0; V_5 = ((int32_t)(L_9&L_10)); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_11 = V_4; NullCheck(L_11); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_12 = L_11->___next_6; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_13 = V_4; XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_14 = V_2; int32_t L_15 = V_5; NullCheck(L_14); int32_t L_16 = L_15; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_17 = (L_14)->GetAt(static_cast(L_16)); NullCheck(L_13); L_13->___next_6 = L_17; Il2CppCodeGenWriteBarrier((void**)(&L_13->___next_6), (void*)L_17); XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_18 = V_2; int32_t L_19 = V_5; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_20 = V_4; NullCheck(L_18); ArrayElementTypeCheck (L_18, L_20); (L_18)->SetAt(static_cast(L_19), (XmlName_t0704430D24D202146901D342E34D878246E14F33*)L_20); V_4 = L_12; } IL_004b: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_21 = V_4; if (L_21) { goto IL_0026; } } { int32_t L_22 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_22, 1)); } IL_0053: { int32_t L_23 = V_3; XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_24 = V_1; NullCheck(L_24); if ((((int32_t)L_23) < ((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length))))) { goto IL_001f; } } { XmlNameU5BU5D_t7122B56F8F388E31DC1290ECBA759595EBFC6FDC* L_25 = V_2; __this->___entries_0 = L_25; Il2CppCodeGenWriteBarrier((void**)(&__this->___entries_0), (void*)L_25); int32_t L_26 = V_0; __this->___mask_2 = L_26; 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.XmlAttribute::.ctor(System.Xml.XmlName,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute__ctor_m5043E9D85560FDFE80DED6438F97110608F1393B (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___0_name, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___1_doc; XmlNode__ctor_m4EBED07EBE4C8D8191BE58A23594E381A8E43DCA(__this, L_0, NULL); ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; Il2CppCodeGenWriteBarrier((void**)(&((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0), (void*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___1_doc; NullCheck(L_1); bool L_2; L_2 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_1, NULL); if (L_2) { goto IL_002c; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_3 = ___0_name; NullCheck(L_3); String_t* L_4; L_4 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_3, NULL); il2cpp_codegen_runtime_class_init_inline(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var); XmlDocument_CheckName_mD87B320087DABFF0D226204D89BDF67AC323BB5A(L_4, NULL); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_5 = ___0_name; NullCheck(L_5); String_t* L_6; L_6 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_5, NULL); XmlDocument_CheckName_mD87B320087DABFF0D226204D89BDF67AC323BB5A(L_6, NULL); } IL_002c: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_7 = ___0_name; NullCheck(L_7); String_t* L_8; L_8 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_7, NULL); NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL); if (L_9) { goto IL_0049; } } { String_t* L_10; L_10 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral11834E4FA4D4CDE4FFF1896BC2B609DB8CBF216A)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_11 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_11); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_11, L_10, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAttribute__ctor_m5043E9D85560FDFE80DED6438F97110608F1393B_RuntimeMethod_var))); } IL_0049: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_12 = ___0_name; __this->___name_1 = L_12; Il2CppCodeGenWriteBarrier((void**)(&__this->___name_1), (void*)L_12); return; } } // System.Void System.Xml.XmlAttribute::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute__ctor_m11339257CF537ACBDA1BC5ED16CD45BF0C318971 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_namespaceURI, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___3_doc, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___3_doc; String_t* L_1 = ___0_prefix; String_t* L_2 = ___1_localName; String_t* L_3 = ___2_namespaceURI; NullCheck(L_0); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_4; L_4 = XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28(L_0, L_1, L_2, L_3, (RuntimeObject*)NULL, NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = ___3_doc; XmlAttribute__ctor_m5043E9D85560FDFE80DED6438F97110608F1393B(__this, L_4, L_5, NULL); return; } } // System.Xml.XmlName System.Xml.XmlAttribute::get_XmlName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlAttribute_get_XmlName_m27554E8E37DD8255E54A68102CE270316933FFB9 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1; return L_0; } } // System.Void System.Xml.XmlAttribute::set_XmlName(System.Xml.XmlName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_set_XmlName_m8D259D5CC4750809EACB5E213333E1E55D8BB6BB (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___0_value, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = ___0_value; __this->___name_1 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___name_1), (void*)L_0); return; } } // System.Xml.XmlNode System.Xml.XmlAttribute::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttribute_CloneNode_m53F14957E83CD8E9A1738F92A8A2BF8C288BF902 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, bool ___0_deep, const RuntimeMethod* method) { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_0 = NULL; { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); V_0 = L_0; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = V_0; String_t* L_2; L_2 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, __this); String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, __this); String_t* L_4; L_4 = VirtualFuncInvoker0< String_t* >::Invoke(28 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, __this); NullCheck(L_1); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_5; L_5 = VirtualFuncInvoker3< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t*, String_t* >::Invoke(55 /* System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String,System.String,System.String) */, L_1, L_2, L_3, L_4); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_6 = L_5; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_7 = V_0; NullCheck(L_6); VirtualActionInvoker3< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, bool >::Invoke(27 /* System.Void System.Xml.XmlNode::CopyChildren(System.Xml.XmlDocument,System.Xml.XmlNode,System.Boolean) */, L_6, L_7, __this, (bool)1); return L_6; } } // System.Xml.XmlNode System.Xml.XmlAttribute::get_ParentNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttribute_get_ParentNode_mA43C91D5745800819DB09579D4A0011FFAED2985 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) { { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } } // System.String System.Xml.XmlAttribute::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttribute_get_Name_m97BC4F92BC4CB9D0580EFA1339FD713B6C31DBC2 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1; NullCheck(L_0); String_t* L_1; L_1 = XmlName_get_Name_m77B33DD36549E6E3E728EA1AD3325E339EC30435(L_0, NULL); return L_1; } } // System.String System.Xml.XmlAttribute::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttribute_get_LocalName_mC876CE8B71B1C4F72035B2843E3EE0FACB5FB3A3 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1; NullCheck(L_0); String_t* L_1; L_1 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_0, NULL); return L_1; } } // System.String System.Xml.XmlAttribute::get_NamespaceURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttribute_get_NamespaceURI_m99F13B6562EDA24EB5A95F97560040DA3575D43A (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1; NullCheck(L_0); String_t* L_1; L_1 = XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline(L_0, NULL); return L_1; } } // System.String System.Xml.XmlAttribute::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttribute_get_Prefix_m0E88F7E1B100855B6383B298EF3D76541F0FF65F (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1; NullCheck(L_0); String_t* L_1; L_1 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_0, NULL); return L_1; } } // System.Xml.XmlNodeType System.Xml.XmlAttribute::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAttribute_get_NodeType_m8B876087E6C0E79E6E02A25D0580E678F0D8A14C (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) { { return (int32_t)(2); } } // System.Xml.XmlDocument System.Xml.XmlAttribute::get_OwnerDocument() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlAttribute_get_OwnerDocument_m557529B3DA0EAF089B89E8D7DB20ECF1E868146C (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1; NullCheck(L_0); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1; L_1 = XmlName_get_OwnerDocument_m330FA0574F04486B56352FA1E5F4336890C02A0C_inline(L_0, NULL); return L_1; } } // System.String System.Xml.XmlAttribute::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttribute_get_Value_m3927810F9734B17FB050A7776D6DBD84235385FA (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = VirtualFuncInvoker0< String_t* >::Invoke(32 /* System.String System.Xml.XmlNode::get_InnerText() */, __this); return L_0; } } // System.Boolean System.Xml.XmlAttribute::PrepareOwnerElementInElementIdAttrMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttribute_PrepareOwnerElementInElementIdAttrMap_m93CEBD56F06BD0F84212A081358EBB5E9453DA18 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_0 = NULL; { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_0); SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_1; L_1 = XmlDocument_get_DtdSchemaInfo_mF52E9F32AB9D1914DBC6D91A8277AE843B6E1E6E_inline(L_0, NULL); if (!L_1) { goto IL_002f; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_2; L_2 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(44 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this); V_0 = L_2; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_3 = V_0; if (!L_3) { goto IL_002f; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_4 = V_0; NullCheck(L_4); XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_5; L_5 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(13 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_4); String_t* L_6; L_6 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, __this); String_t* L_7; L_7 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, __this); NullCheck(L_5); bool L_8; L_8 = XmlAttributeCollection_PrepareParentInElementIdAttrMap_m2E7B9A4254641950851BE28E96829160EEAABA04(L_5, L_6, L_7, NULL); return L_8; } IL_002f: { return (bool)0; } } // System.Void System.Xml.XmlAttribute::ResetOwnerElementInElementIdAttrMap(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_ResetOwnerElementInElementIdAttrMap_m054D1FAF550A1B6DC9E061F3F20008686D6F143F (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, String_t* ___0_oldInnerText, const RuntimeMethod* method) { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_0 = NULL; { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_0; L_0 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(44 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this); V_0 = L_0; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1 = V_0; if (!L_1) { goto IL_001c; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_2 = V_0; NullCheck(L_2); XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_3; L_3 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(13 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_2); String_t* L_4 = ___0_oldInnerText; String_t* L_5; L_5 = VirtualFuncInvoker0< String_t* >::Invoke(32 /* System.String System.Xml.XmlNode::get_InnerText() */, __this); NullCheck(L_3); XmlAttributeCollection_ResetParentInElementIdAttrMap_m9E06B8B75D985035BA0C9E43A398206B8E7F59FD(L_3, L_4, L_5, NULL); } IL_001c: { return; } } // System.Boolean System.Xml.XmlAttribute::get_IsContainer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttribute_get_IsContainer_mC050E80BE513E875B86A80FC718D5318757C752B (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Xml.XmlNode System.Xml.XmlAttribute::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttribute_AppendChildForLoad_mEA7C29DCA1CE9A17CD90214F7071F3297C401BD3 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_newChild, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* V_0 = NULL; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_1 = NULL; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_2 = NULL; { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___1_doc; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___0_newChild; NullCheck(L_0); XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_2; L_2 = XmlDocument_GetInsertEventArgsForLoad_mC008CD74A188F1B0ECBCFFBFD99A5F7B3DAB2661(L_0, L_1, __this, NULL); V_0 = L_2; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_3 = V_0; if (!L_3) { goto IL_0013; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4 = ___1_doc; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_5 = V_0; NullCheck(L_4); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(40 /* System.Void System.Xml.XmlNode::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) */, L_4, L_5); } IL_0013: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = ___0_newChild; V_1 = ((XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)CastclassClass((RuntimeObject*)L_6, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var)); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_7 = __this->___lastChild_2; if (L_7) { goto IL_0039; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_8 = V_1; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_9 = V_1; NullCheck(L_8); L_8->___next_1 = L_9; Il2CppCodeGenWriteBarrier((void**)(&L_8->___next_1), (void*)L_9); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_10 = V_1; __this->___lastChild_2 = L_10; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_2), (void*)L_10); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_11 = V_1; NullCheck(L_11); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(37 /* System.Void System.Xml.XmlNode::SetParentForLoad(System.Xml.XmlNode) */, L_11, __this); goto IL_007a; } IL_0039: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_12 = __this->___lastChild_2; V_2 = L_12; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_13 = V_1; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_14 = V_2; NullCheck(L_14); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_15 = L_14->___next_1; NullCheck(L_13); L_13->___next_1 = L_15; Il2CppCodeGenWriteBarrier((void**)(&L_13->___next_1), (void*)L_15); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_16 = V_2; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_17 = V_1; NullCheck(L_16); L_16->___next_1 = L_17; Il2CppCodeGenWriteBarrier((void**)(&L_16->___next_1), (void*)L_17); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_18 = V_1; __this->___lastChild_2 = L_18; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_2), (void*)L_18); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_19 = V_2; NullCheck(L_19); bool L_20; L_20 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_19); if (!L_20) { goto IL_0073; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_21 = V_1; NullCheck(L_21); bool L_22; L_22 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_21); if (!L_22) { goto IL_0073; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_23 = V_2; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_24 = V_1; XmlNode_NestTextNodes_m0B17D4B94E3375748B4604EE250F88E59C3454EF(L_23, L_24, NULL); goto IL_007a; } IL_0073: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_25 = V_1; NullCheck(L_25); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(37 /* System.Void System.Xml.XmlNode::SetParentForLoad(System.Xml.XmlNode) */, L_25, __this); } IL_007a: { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_26 = V_0; if (!L_26) { goto IL_0084; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_27 = ___1_doc; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_28 = V_0; NullCheck(L_27); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(41 /* System.Void System.Xml.XmlNode::AfterEvent(System.Xml.XmlNodeChangedEventArgs) */, L_27, L_28); } IL_0084: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_29 = V_1; return L_29; } } // System.Xml.XmlLinkedNode System.Xml.XmlAttribute::get_LastNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* XmlAttribute_get_LastNode_m391E6CF74AAECF576D1773B7FCDAB01A48B3CCF6 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) { { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = __this->___lastChild_2; return L_0; } } // System.Void System.Xml.XmlAttribute::set_LastNode(System.Xml.XmlLinkedNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_set_LastNode_m443AB3D6EABFD2D03C5C0EC8742BFE106903ED0D (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___0_value, const RuntimeMethod* method) { { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = ___0_value; __this->___lastChild_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_2), (void*)L_0); return; } } // System.Boolean System.Xml.XmlAttribute::IsValidChildType(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttribute_IsValidChildType_mFF6C95E93EA9F60425B401A070EEFF113035390E (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, int32_t ___0_type, const RuntimeMethod* method) { { int32_t L_0 = ___0_type; if ((((int32_t)L_0) == ((int32_t)3))) { goto IL_0009; } } { int32_t L_1 = ___0_type; return (bool)((((int32_t)L_1) == ((int32_t)5))? 1 : 0); } IL_0009: { return (bool)1; } } // System.Boolean System.Xml.XmlAttribute::get_Specified() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttribute_get_Specified_mCE057A8C09F0F504E5E3722F85298720E451EFA2 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Xml.XmlNode System.Xml.XmlAttribute::RemoveChild(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttribute_RemoveChild_m81EEA6827E61E919CF45D3E4157ED643D3B81D18 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_oldChild, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; String_t* V_1 = NULL; { bool L_0; L_0 = XmlAttribute_PrepareOwnerElementInElementIdAttrMap_m93CEBD56F06BD0F84212A081358EBB5E9453DA18(__this, NULL); if (!L_0) { goto IL_0020; } } { String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(32 /* System.String System.Xml.XmlNode::get_InnerText() */, __this); V_1 = L_1; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___0_oldChild; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3; L_3 = XmlNode_RemoveChild_mC3FD98E0F9D7CF77B7CA309E39E67CB5128EFB6D(__this, L_2, NULL); V_0 = L_3; String_t* L_4 = V_1; XmlAttribute_ResetOwnerElementInElementIdAttrMap_m054D1FAF550A1B6DC9E061F3F20008686D6F143F(__this, L_4, NULL); goto IL_0028; } IL_0020: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ___0_oldChild; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6; L_6 = XmlNode_RemoveChild_mC3FD98E0F9D7CF77B7CA309E39E67CB5128EFB6D(__this, L_5, NULL); V_0 = L_6; } IL_0028: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = V_0; return L_7; } } // System.Xml.XmlNode System.Xml.XmlAttribute::AppendChild(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttribute_AppendChild_mF31F0A172D904DEE1DF58B25093DCCF9E0C4CC75 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_newChild, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; String_t* V_1 = NULL; { bool L_0; L_0 = XmlAttribute_PrepareOwnerElementInElementIdAttrMap_m93CEBD56F06BD0F84212A081358EBB5E9453DA18(__this, NULL); if (!L_0) { goto IL_0020; } } { String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(32 /* System.String System.Xml.XmlNode::get_InnerText() */, __this); V_1 = L_1; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___0_newChild; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3; L_3 = XmlNode_AppendChild_mABBDB6DB312AE2C3D643F91CA400745ED4317E61(__this, L_2, NULL); V_0 = L_3; String_t* L_4 = V_1; XmlAttribute_ResetOwnerElementInElementIdAttrMap_m054D1FAF550A1B6DC9E061F3F20008686D6F143F(__this, L_4, NULL); goto IL_0028; } IL_0020: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ___0_newChild; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6; L_6 = XmlNode_AppendChild_mABBDB6DB312AE2C3D643F91CA400745ED4317E61(__this, L_5, NULL); V_0 = L_6; } IL_0028: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = V_0; return L_7; } } // System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* XmlAttribute_get_OwnerElement_mBC22346AF9CEAEC1FDD1F4C7F045D356A1CF8C15 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; return ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)); } } // System.Void System.Xml.XmlAttribute::set_InnerXml(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_set_InnerXml_m8E7AFB9D60408AF74338F8AE96FD3C347CF9139E (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, String_t* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlNode::RemoveAll() */, __this); XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* L_0 = (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D*)il2cpp_codegen_object_new(XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var); NullCheck(L_0); XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050(L_0, NULL); String_t* L_1 = ___0_value; NullCheck(L_0); XmlLoader_LoadInnerXmlAttribute_mBCE3F2F2B11410937B71BA993E5E1151BE4B6C98(L_0, __this, L_1, NULL); return; } } // System.String System.Xml.XmlAttribute::get_BaseURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlAttribute_get_BaseURI_mA86BC6FAC60E8ECBBC952DAA3ED7C5EE7D715EE6 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __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; } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_0; L_0 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(44 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this); if (!L_0) { goto IL_0014; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1; L_1 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(44 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this); NullCheck(L_1); String_t* L_2; L_2 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_BaseURI() */, L_1); return L_2; } IL_0014: { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_3; } } // System.Void System.Xml.XmlAttribute::SetParent(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttribute_SetParent_m6BEE6D90F291164E98E19304B6CB55578606CDB0 (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) { { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_node; ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0), (void*)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.XmlAttributeCollection::.ctor(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection__ctor_m8308D817C07EF858304166193742564329293982 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_parent, const RuntimeMethod* method) { { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_parent; XmlNamedNodeMap__ctor_mA91F36D1CB05380C6F5E60F31062962B6DE2FF08(__this, L_0, NULL); return; } } // System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::get_ItemOf(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_get_ItemOf_m8F968C39C03DFEB9998B2122F4A26B76B1DB2EDB (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, int32_t ___0_i, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; try {// begin try (depth: 1) SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_0 = (&((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___nodes_1); int32_t L_1 = ___0_i; RuntimeObject* L_2; L_2 = SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576(L_0, L_1, NULL); V_0 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_2, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)); goto IL_0025; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0014; } throw e; } CATCH_0014: {// begin catch(System.ArgumentOutOfRangeException) String_t* L_3; L_3 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3C67F6F3D5AD1DF5DD1E3B7F8583419767796154)), NULL); IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* L_4 = (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var))); NullCheck(L_4); IndexOutOfRangeException__ctor_mFD06819F05B815BE2D6E826D4E04F4C449D0A425(L_4, L_3, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAttributeCollection_get_ItemOf_m8F968C39C03DFEB9998B2122F4A26B76B1DB2EDB_RuntimeMethod_var))); }// end catch (depth: 1) IL_0025: { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_5 = V_0; return L_5; } } // System.Xml.XmlNode System.Xml.XmlAttributeCollection::SetNamedItem(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttributeCollection_SetNamedItem_m6FD982A7ED3D6A1148184B682A1382BFFFE25C2B (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_node; if (!L_0) { goto IL_001b; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___0_node; if (((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)IsInstClass((RuntimeObject*)L_1, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var))) { goto IL_001b; } } { String_t* L_2; L_2 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD5CF37169D518173369F326C4BECA4FF192E3DF4)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_3, L_2, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAttributeCollection_SetNamedItem_m6FD982A7ED3D6A1148184B682A1382BFFFE25C2B_RuntimeMethod_var))); } IL_001b: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = ___0_node; NullCheck(L_4); String_t* L_5; L_5 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_4); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = ___0_node; NullCheck(L_6); String_t* L_7; L_7 = VirtualFuncInvoker0< String_t* >::Invoke(28 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_6); int32_t L_8; L_8 = XmlNamedNodeMap_FindNodeOffset_mC74472DEDF90B693B1BB71E3B136CD32854E0A66(__this, L_5, L_7, NULL); V_0 = L_8; int32_t L_9 = V_0; if ((!(((uint32_t)L_9) == ((uint32_t)(-1))))) { goto IL_003f; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = ___0_node; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_11; L_11 = XmlAttributeCollection_InternalAppendAttribute_m4F65B9C065CD96947359F97184962FD480989BCB(__this, ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_10, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)), NULL); return L_11; } IL_003f: { int32_t L_12 = V_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_13; L_13 = XmlNamedNodeMap_RemoveNodeAt_mA1F6B64903412EDC18F19D1CCE1D890207C6FEF3(__this, L_12, NULL); int32_t L_14 = V_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_16; L_16 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::InsertNodeAt(System.Int32,System.Xml.XmlNode) */, __this, L_14, L_15); return L_13; } } // System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::Append(System.Xml.XmlAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_Append_mF5AFDC3C4547DA089353B76241A5B46437CA8484 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_node, const RuntimeMethod* method) { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_0 = NULL; { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_0 = ___0_node; NullCheck(L_0); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1; L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_0); V_0 = L_1; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = V_0; if (!L_2) { goto IL_0012; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3 = V_0; NullCheck(L_3); bool L_4; L_4 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_3, NULL); if (L_4) { goto IL_004c; } } IL_0012: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = V_0; if (!L_5) { goto IL_0033; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_6 = V_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0; NullCheck(L_7); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_8; L_8 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_7); if ((((RuntimeObject*)(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)L_6) == ((RuntimeObject*)(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)L_8))) { goto IL_0033; } } { String_t* L_9; L_9 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral10E3A7873DD45D61AB6068175777B54A049F04A1)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_10 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_10); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_10, L_9, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlAttributeCollection_Append_mF5AFDC3C4547DA089353B76241A5B46437CA8484_RuntimeMethod_var))); } IL_0033: { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_11 = ___0_node; NullCheck(L_11); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_12; L_12 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(44 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, L_11); if (!L_12) { goto IL_0042; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_13 = ___0_node; XmlAttributeCollection_Detach_m1CF27E782F026A299CDBFB3CFCA08F4B615DF4B0(__this, L_13, NULL); } IL_0042: { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_14 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15; L_15 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::AddNode(System.Xml.XmlNode) */, __this, L_14); goto IL_005c; } IL_004c: { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_16 = ___0_node; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_17 = V_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_18; L_18 = XmlNamedNodeMap_AddNodeForLoad_m95A9C1624ACF142E0FD29FC4B572A750F5D600AF(__this, L_16, L_17, NULL); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_19 = ___0_node; XmlAttributeCollection_InsertParentIntoElementIdAttrMap_mE1B11EE0246D167AA4CB81F8BC7C0D5C00DFFBB9(__this, L_19, NULL); } IL_005c: { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_20 = ___0_node; return L_20; } } // System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::Remove(System.Xml.XmlAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_Remove_m9E8FF71B36C641EAB4EE1F08F6344DFB1E380235 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_node, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_0 = (&((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___nodes_1); int32_t L_1; L_1 = SmallXmlNodeList_get_Count_m79F61C89FC8ABD73BCB56938310461EFF1DF14BF(L_0, NULL); V_0 = L_1; V_1 = 0; goto IL_002d; } IL_0010: { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_2 = (&((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___nodes_1); int32_t L_3 = V_1; RuntimeObject* L_4; L_4 = SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576(L_2, L_3, NULL); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_5 = ___0_node; if ((!(((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)L_5)))) { goto IL_0029; } } { int32_t L_6 = V_1; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7; L_7 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t >::Invoke(11 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::RemoveNodeAt(System.Int32) */, __this, L_6); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_8 = ___0_node; return L_8; } IL_0029: { int32_t L_9 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1)); } IL_002d: { int32_t L_10 = V_1; int32_t L_11 = V_0; if ((((int32_t)L_10) < ((int32_t)L_11))) { goto IL_0010; } } { return (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)NULL; } } // System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_RemoveAt_m583E3956863E0E138940CEA8231B8491743785F0 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, int32_t ___0_i, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___0_i; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000d; } } { int32_t L_1 = ___0_i; int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, __this); if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_000f; } } IL_000d: { return (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)NULL; } IL_000f: { int32_t L_3 = ___0_i; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4; L_4 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t >::Invoke(11 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::RemoveNodeAt(System.Int32) */, __this, L_3); return ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_4, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)); } } // System.Void System.Xml.XmlAttributeCollection::RemoveAll() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_RemoveAll_mF68383A7E9C4F688F73A27EDCBC926799E66DE47 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0; L_0 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, __this); V_0 = L_0; goto IL_0015; } IL_0009: { int32_t L_1 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1)); int32_t L_2 = V_0; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_3; L_3 = XmlAttributeCollection_RemoveAt_m583E3956863E0E138940CEA8231B8491743785F0(__this, L_2, NULL); } IL_0015: { int32_t L_4 = V_0; if ((((int32_t)L_4) > ((int32_t)0))) { goto IL_0009; } } { return; } } // System.Void System.Xml.XmlAttributeCollection::System.Collections.ICollection.CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_System_Collections_ICollection_CopyTo_mCE6F6C659719B2C8B224A881784DC1773895ACCE (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, RuntimeArray* ___0_array, int32_t ___1_index, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { V_0 = 0; int32_t L_0; L_0 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, __this); V_1 = L_0; goto IL_0027; } IL_000b: { RuntimeArray* L_1 = ___0_array; SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_2 = (&((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___nodes_1); int32_t L_3 = V_0; RuntimeObject* L_4; L_4 = SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576(L_2, L_3, NULL); int32_t L_5 = ___1_index; NullCheck(L_1); Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_1, L_4, L_5, NULL); int32_t L_6 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1)); int32_t L_7 = ___1_index; ___1_index = ((int32_t)il2cpp_codegen_add(L_7, 1)); } IL_0027: { int32_t L_8 = V_0; int32_t L_9 = V_1; if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000b; } } { return; } } // System.Boolean System.Xml.XmlAttributeCollection::System.Collections.ICollection.get_IsSynchronized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttributeCollection_System_Collections_ICollection_get_IsSynchronized_m3622FAFE54ADE051023F578B1EF1D0D0AE4C7B74 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Xml.XmlAttributeCollection::System.Collections.ICollection.get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlAttributeCollection_System_Collections_ICollection_get_SyncRoot_m3BC4AC72765846A98383A5FF08A7D747F5E588BC (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, const RuntimeMethod* method) { { return __this; } } // System.Int32 System.Xml.XmlAttributeCollection::System.Collections.ICollection.get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAttributeCollection_System_Collections_ICollection_get_Count_m70C89B8FC98B2EA13CFA2CBA59BE40723D8E8014 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = XmlNamedNodeMap_get_Count_m383C4A91707F8FE7D905507CD35A043A5A7CFF29(__this, NULL); return L_0; } } // System.Xml.XmlNode System.Xml.XmlAttributeCollection::AddNode(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttributeCollection_AddNode_mB24F8CE4497E6991D673ADE92643A3B943FA1732 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_node; int32_t L_1; L_1 = XmlAttributeCollection_RemoveDuplicateAttribute_m22D27663607A8A33332FA60A4FE2A0D122AE3F48(__this, ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_0, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)), NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3; L_3 = XmlNamedNodeMap_AddNode_m8312C3D9AAF475E11F679C7165079360BD04FA6D(__this, L_2, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = ___0_node; XmlAttributeCollection_InsertParentIntoElementIdAttrMap_mE1B11EE0246D167AA4CB81F8BC7C0D5C00DFFBB9(__this, ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_4, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)), NULL); return L_3; } } // System.Xml.XmlNode System.Xml.XmlAttributeCollection::InsertNodeAt(System.Int32,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttributeCollection_InsertNodeAt_mDF6A4A42AEF430CFCFB98A2667F5F24883872BE8 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, int32_t ___0_i, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_node, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___0_i; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___1_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2; L_2 = XmlNamedNodeMap_InsertNodeAt_m72074E17CA4EC55CE99997C5BC15681BECBA0ACE(__this, L_0, L_1, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___1_node; XmlAttributeCollection_InsertParentIntoElementIdAttrMap_mE1B11EE0246D167AA4CB81F8BC7C0D5C00DFFBB9(__this, ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_3, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)), NULL); return L_2; } } // System.Xml.XmlNode System.Xml.XmlAttributeCollection::RemoveNodeAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlAttributeCollection_RemoveNodeAt_m8F9E6BC143D009DBC4D1BF87B60CB78AE27DD15A (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, int32_t ___0_i, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_1 = NULL; { int32_t L_0 = ___0_i; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1; L_1 = XmlNamedNodeMap_RemoveNodeAt_mA1F6B64903412EDC18F19D1CCE1D890207C6FEF3(__this, L_0, NULL); V_0 = L_1; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = V_0; XmlAttributeCollection_RemoveParentFromElementIdAttrMap_m40FD15B914F888F0EB42B6E35AD9DD95BE5C28BE(__this, ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_2, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)), NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0; NullCheck(L_3); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4; L_4 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_3); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = V_0; NullCheck(L_6); String_t* L_7; L_7 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, L_6); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = V_0; NullCheck(L_8); String_t* L_9; L_9 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_8); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = V_0; NullCheck(L_10); String_t* L_11; L_11 = VirtualFuncInvoker0< String_t* >::Invoke(28 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_10); NullCheck(L_4); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_12; L_12 = XmlDocument_GetDefaultAttribute_m09254F3903D8971371770B085DEB0C8E4B879D96(L_4, ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)CastclassClass((RuntimeObject*)L_5, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)), L_7, L_9, L_11, NULL); V_1 = L_12; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_13 = V_1; if (!L_13) { goto IL_004e; } } { int32_t L_14 = ___0_i; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_15 = V_1; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_16; L_16 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::InsertNodeAt(System.Int32,System.Xml.XmlNode) */, __this, L_14, L_15); } IL_004e: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_17 = V_0; return L_17; } } // System.Void System.Xml.XmlAttributeCollection::Detach(System.Xml.XmlAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_Detach_m1CF27E782F026A299CDBFB3CFCA08F4B615DF4B0 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_attr, const RuntimeMethod* method) { { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_0 = ___0_attr; NullCheck(L_0); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1; L_1 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(44 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, L_0); NullCheck(L_1); XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_2; L_2 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(13 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_1); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_3 = ___0_attr; NullCheck(L_2); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_4; L_4 = XmlAttributeCollection_Remove_m9E8FF71B36C641EAB4EE1F08F6344DFB1E380235(L_2, L_3, NULL); return; } } // System.Void System.Xml.XmlAttributeCollection::InsertParentIntoElementIdAttrMap(System.Xml.XmlAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_InsertParentIntoElementIdAttrMap_mE1B11EE0246D167AA4CB81F8BC7C0D5C00DFFBB9 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_attr, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_0 = NULL; XmlName_t0704430D24D202146901D342E34D878246E14F33* V_1 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0; V_0 = ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1 = V_0; if (!L_1) { goto IL_007e; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0; NullCheck(L_2); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3; L_3 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_2); if (L_3) { goto IL_001d; } } { return; } IL_001d: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0; NullCheck(L_4); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5; L_5 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_4); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_6 = V_0; NullCheck(L_6); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_7; L_7 = XmlElement_get_XmlName_mA93482D1053CABDD02D7E3B23EBA56F74904101D_inline(L_6, NULL); NullCheck(L_5); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_8; L_8 = XmlDocument_GetIDInfoByElement_mF4F7DDBFA3126D06D4AA526B1536BEC20D677AC8(L_5, L_7, NULL); V_1 = L_8; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_9 = V_1; if (!L_9) { goto IL_007e; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_10 = V_1; NullCheck(L_10); String_t* L_11; L_11 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_10, NULL); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_12 = ___0_attr; NullCheck(L_12); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_13; L_13 = XmlAttribute_get_XmlName_m27554E8E37DD8255E54A68102CE270316933FFB9_inline(L_12, NULL); NullCheck(L_13); String_t* L_14; L_14 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_13, NULL); bool L_15; L_15 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_11, L_14, NULL); if (!L_15) { goto IL_007e; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_16 = V_1; NullCheck(L_16); String_t* L_17; L_17 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_16, NULL); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_18 = ___0_attr; NullCheck(L_18); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_19; L_19 = XmlAttribute_get_XmlName_m27554E8E37DD8255E54A68102CE270316933FFB9_inline(L_18, NULL); NullCheck(L_19); String_t* L_20; L_20 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_19, NULL); bool L_21; L_21 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_17, L_20, NULL); if (!L_21) { goto IL_007e; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_22 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0; NullCheck(L_22); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_23; L_23 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_22); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_24 = ___0_attr; NullCheck(L_24); String_t* L_25; L_25 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_24); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_26 = V_0; NullCheck(L_23); XmlDocument_AddElementWithId_m179458DD48014AD4C76126306A42F49A98433187(L_23, L_25, L_26, NULL); } IL_007e: { return; } } // System.Void System.Xml.XmlAttributeCollection::RemoveParentFromElementIdAttrMap(System.Xml.XmlAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_RemoveParentFromElementIdAttrMap_m40FD15B914F888F0EB42B6E35AD9DD95BE5C28BE (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_attr, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_0 = NULL; XmlName_t0704430D24D202146901D342E34D878246E14F33* V_1 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0; V_0 = ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1 = V_0; if (!L_1) { goto IL_007e; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0; NullCheck(L_2); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3; L_3 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_2); if (L_3) { goto IL_001d; } } { return; } IL_001d: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0; NullCheck(L_4); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5; L_5 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_4); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_6 = V_0; NullCheck(L_6); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_7; L_7 = XmlElement_get_XmlName_mA93482D1053CABDD02D7E3B23EBA56F74904101D_inline(L_6, NULL); NullCheck(L_5); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_8; L_8 = XmlDocument_GetIDInfoByElement_mF4F7DDBFA3126D06D4AA526B1536BEC20D677AC8(L_5, L_7, NULL); V_1 = L_8; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_9 = V_1; if (!L_9) { goto IL_007e; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_10 = V_1; NullCheck(L_10); String_t* L_11; L_11 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_10, NULL); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_12 = ___0_attr; NullCheck(L_12); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_13; L_13 = XmlAttribute_get_XmlName_m27554E8E37DD8255E54A68102CE270316933FFB9_inline(L_12, NULL); NullCheck(L_13); String_t* L_14; L_14 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_13, NULL); bool L_15; L_15 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_11, L_14, NULL); if (!L_15) { goto IL_007e; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_16 = V_1; NullCheck(L_16); String_t* L_17; L_17 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_16, NULL); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_18 = ___0_attr; NullCheck(L_18); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_19; L_19 = XmlAttribute_get_XmlName_m27554E8E37DD8255E54A68102CE270316933FFB9_inline(L_18, NULL); NullCheck(L_19); String_t* L_20; L_20 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_19, NULL); bool L_21; L_21 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_17, L_20, NULL); if (!L_21) { goto IL_007e; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_22 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0; NullCheck(L_22); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_23; L_23 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_22); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_24 = ___0_attr; NullCheck(L_24); String_t* L_25; L_25 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_24); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_26 = V_0; NullCheck(L_23); XmlDocument_RemoveElementWithId_mD930DEA6A023E00A7D376D2F5B7D5283414ECE03(L_23, L_25, L_26, NULL); } IL_007e: { return; } } // System.Int32 System.Xml.XmlAttributeCollection::RemoveDuplicateAttribute(System.Xml.XmlAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlAttributeCollection_RemoveDuplicateAttribute_m22D27663607A8A33332FA60A4FE2A0D122AE3F48 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_attr, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_1 = NULL; { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_0 = ___0_attr; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_0); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_2 = ___0_attr; NullCheck(L_2); String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(28 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_2); int32_t L_4; L_4 = XmlNamedNodeMap_FindNodeOffset_mC74472DEDF90B693B1BB71E3B136CD32854E0A66(__this, L_1, L_3, NULL); V_0 = L_4; int32_t L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)(-1)))) { goto IL_0038; } } { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_6 = (&((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___nodes_1); int32_t L_7 = V_0; RuntimeObject* L_8; L_8 = SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576(L_6, L_7, NULL); V_1 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_8, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)); int32_t L_9 = V_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10; L_10 = XmlNamedNodeMap_RemoveNodeAt_mA1F6B64903412EDC18F19D1CCE1D890207C6FEF3(__this, L_9, NULL); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_11 = V_1; XmlAttributeCollection_RemoveParentFromElementIdAttrMap_m40FD15B914F888F0EB42B6E35AD9DD95BE5C28BE(__this, L_11, NULL); } IL_0038: { int32_t L_12 = V_0; return L_12; } } // System.Boolean System.Xml.XmlAttributeCollection::PrepareParentInElementIdAttrMap(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlAttributeCollection_PrepareParentInElementIdAttrMap_m2E7B9A4254641950851BE28E96829160EEAABA04 (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, String_t* ___0_attrPrefix, String_t* ___1_attrLocalName, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_0 = NULL; XmlName_t0704430D24D202146901D342E34D878246E14F33* V_1 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0; V_0 = ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0; NullCheck(L_1); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2; L_2 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_1); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_3 = V_0; NullCheck(L_3); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_4; L_4 = XmlElement_get_XmlName_mA93482D1053CABDD02D7E3B23EBA56F74904101D_inline(L_3, NULL); NullCheck(L_2); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_5; L_5 = XmlDocument_GetIDInfoByElement_mF4F7DDBFA3126D06D4AA526B1536BEC20D677AC8(L_2, L_4, NULL); V_1 = L_5; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_6 = V_1; if (!L_6) { goto IL_0044; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_7 = V_1; NullCheck(L_7); String_t* L_8; L_8 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_7, NULL); String_t* L_9 = ___0_attrPrefix; bool L_10; L_10 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_8, L_9, NULL); if (!L_10) { goto IL_0044; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_11 = V_1; NullCheck(L_11); String_t* L_12; L_12 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_11, NULL); String_t* L_13 = ___1_attrLocalName; bool L_14; L_14 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_12, L_13, NULL); if (!L_14) { goto IL_0044; } } { return (bool)1; } IL_0044: { return (bool)0; } } // System.Void System.Xml.XmlAttributeCollection::ResetParentInElementIdAttrMap(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlAttributeCollection_ResetParentInElementIdAttrMap_m9E06B8B75D985035BA0C9E43A398206B8E7F59FD (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, String_t* ___0_oldVal, String_t* ___1_newVal, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_0 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0; V_0 = ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ((XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)__this)->___parent_0; NullCheck(L_1); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2; L_2 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_1); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3 = L_2; String_t* L_4 = ___0_oldVal; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_5 = V_0; NullCheck(L_3); XmlDocument_RemoveElementWithId_mD930DEA6A023E00A7D376D2F5B7D5283414ECE03(L_3, L_4, L_5, NULL); String_t* L_6 = ___1_newVal; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_7 = V_0; NullCheck(L_3); XmlDocument_AddElementWithId_m179458DD48014AD4C76126306A42F49A98433187(L_3, L_6, L_7, NULL); return; } } // System.Xml.XmlAttribute System.Xml.XmlAttributeCollection::InternalAppendAttribute(System.Xml.XmlAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlAttributeCollection_InternalAppendAttribute_m4F65B9C065CD96947359F97184962FD480989BCB (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_node, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_0 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1; L_1 = XmlNamedNodeMap_AddNode_m8312C3D9AAF475E11F679C7165079360BD04FA6D(__this, L_0, NULL); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_2 = ___0_node; XmlAttributeCollection_InsertParentIntoElementIdAttrMap_mE1B11EE0246D167AA4CB81F8BC7C0D5C00DFFBB9(__this, L_2, NULL); return ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_1, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)); } } #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.XmlCDataSection::.ctor(System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCDataSection__ctor_m19CEC86EA9EFC8153A1293493E0B3E9EF89BE2BD (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, String_t* ___0_data, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) { { String_t* L_0 = ___0_data; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___1_doc; XmlCharacterData__ctor_m8B84C0BD8FF7329F4C5190230FA2495D808B34AF(__this, L_0, L_1, NULL); return; } } // System.String System.Xml.XmlCDataSection::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCDataSection_get_Name_m20246A785A9CF1B60411B52EFFCB47DC829E0D5F (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_0); String_t* L_1 = L_0->___strCDataSectionName_25; return L_1; } } // System.String System.Xml.XmlCDataSection::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCDataSection_get_LocalName_m3C561F75CCC3D9AE2486AC061D8ED599E4695C85 (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_0); String_t* L_1 = L_0->___strCDataSectionName_25; return L_1; } } // System.Xml.XmlNodeType System.Xml.XmlCDataSection::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlCDataSection_get_NodeType_m212ECD27BC43FF5C814C7ADC32022343EA1D98A5 (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, const RuntimeMethod* method) { { return (int32_t)(4); } } // System.Xml.XmlNode System.Xml.XmlCDataSection::get_ParentNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlCDataSection_get_ParentNode_m74E52E9B99CA53C276ACA1F3E8BB90087D02ED08 (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; int32_t V_1 = 0; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0); V_1 = L_1; int32_t L_2 = V_1; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, 3))) > ((uint32_t)1)))) { goto IL_0022; } } { int32_t L_3 = V_1; if ((((int32_t)L_3) == ((int32_t)((int32_t)9)))) { goto IL_0020; } } { int32_t L_4 = V_1; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, ((int32_t)13)))) > ((uint32_t)1)))) { goto IL_0022; } } { goto IL_0041; } IL_0020: { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } IL_0022: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; NullCheck(L_5); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = L_5->___parentNode_0; V_0 = L_6; goto IL_0037; } IL_0030: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = V_0; NullCheck(L_7); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = L_7->___parentNode_0; V_0 = L_8; } IL_0037: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = V_0; NullCheck(L_9); bool L_10; L_10 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_9); if (L_10) { goto IL_0030; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_11 = V_0; return L_11; } IL_0041: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; return L_12; } } // System.Xml.XmlNode System.Xml.XmlCDataSection::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlCDataSection_CloneNode_mB7E9C5D6FFC36ACC06CFD9C52149365EF78C92EB (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __this, bool ___0_deep, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(43 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this); NullCheck(L_0); XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* L_2; L_2 = VirtualFuncInvoker1< XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA*, String_t* >::Invoke(45 /* System.Xml.XmlCDataSection System.Xml.XmlDocument::CreateCDataSection(System.String) */, L_0, L_1); return L_2; } } // System.Boolean System.Xml.XmlCDataSection::get_IsText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCDataSection_get_IsText_mDE82E0C263A248CD8BB4302DE15F62B5B0FA933C (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* __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.XmlCharacterData::.ctor(System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlCharacterData__ctor_m8B84C0BD8FF7329F4C5190230FA2495D808B34AF (XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B* __this, String_t* ___0_data, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___1_doc; XmlLinkedNode__ctor_mBAF93AD97DBA998E16940918D8F7EF3E585C7633(__this, L_0, NULL); String_t* L_1 = ___0_data; __this->___data_2 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___data_2), (void*)L_1); return; } } // System.String System.Xml.XmlCharacterData::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCharacterData_get_Value_mEAD3EB1F56BA6B8CBE30131AE088F213CBB1CEB6 (XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = VirtualFuncInvoker0< String_t* >::Invoke(43 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this); return L_0; } } // System.String System.Xml.XmlCharacterData::get_InnerText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCharacterData_get_InnerText_mE89F9D4F4F9FBE0CD112A2A408E05253C60DBB41 (XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, __this); return L_0; } } // System.String System.Xml.XmlCharacterData::get_Data() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCharacterData_get_Data_m02C9E5790F331311CB810471F6475AC610962114 (XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B* __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->___data_2; if (!L_0) { goto IL_000f; } } { String_t* L_1 = __this->___data_2; return L_1; } IL_000f: { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_2; } } // System.Boolean System.Xml.XmlCharacterData::CheckOnData(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlCharacterData_CheckOnData_mD20947276C3B576599E015E4E19C0F2779862FBA (XmlCharacterData_t95604E2FDB152E89A58F9D51414A2903012E758B* __this, String_t* ___0_data, const RuntimeMethod* method) { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 V_0; memset((&V_0), 0, sizeof(V_0)); { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 L_0; L_0 = XmlCharType_get_Instance_m1279A3FC91B74599A9BC76979E50DBFC07F67C55(NULL); V_0 = L_0; String_t* L_1 = ___0_data; bool L_2; L_2 = XmlCharType_IsOnlyWhitespace_m6A7AD69BFF7BE6878F6984C952284C0755601490((&V_0), L_1, 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.XmlChildEnumerator::.ctor(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlChildEnumerator__ctor_mC51E8B709CB2FCB079D44B180D5EF3DF9DBC3671 (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_container, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_container; __this->___container_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___container_0), (void*)L_0); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___0_container; NullCheck(L_1); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2; L_2 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_1); __this->___child_1 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___child_1), (void*)L_2); __this->___isFirst_2 = (bool)1; return; } } // System.Boolean System.Xml.XmlChildEnumerator::System.Collections.IEnumerator.MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlChildEnumerator_System_Collections_IEnumerator_MoveNext_m9DF8D71649BD5173C9E9859A12E9E6777450A55D (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, const RuntimeMethod* method) { { bool L_0; L_0 = XmlChildEnumerator_MoveNext_m038B637C00AC0482CAD4E35995F2CF2AE8E3D556(__this, NULL); return L_0; } } // System.Boolean System.Xml.XmlChildEnumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlChildEnumerator_MoveNext_m038B637C00AC0482CAD4E35995F2CF2AE8E3D556 (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, const RuntimeMethod* method) { { bool L_0 = __this->___isFirst_2; if (!L_0) { goto IL_0022; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = __this->___container_0; NullCheck(L_1); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2; L_2 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_1); __this->___child_1 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___child_1), (void*)L_2); __this->___isFirst_2 = (bool)0; goto IL_003b; } IL_0022: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = __this->___child_1; if (!L_3) { goto IL_003b; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = __this->___child_1; NullCheck(L_4); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5; L_5 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_4); __this->___child_1 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___child_1), (void*)L_5); } IL_003b: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = __this->___child_1; return (bool)((!(((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_6) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0); } } // System.Void System.Xml.XmlChildEnumerator::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlChildEnumerator_System_Collections_IEnumerator_Reset_m3E1BD7C0BE0E5576593A8C53ABC11109F275C4EF (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, const RuntimeMethod* method) { { __this->___isFirst_2 = (bool)1; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = __this->___container_0; NullCheck(L_0); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1; L_1 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_0); __this->___child_1 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___child_1), (void*)L_1); return; } } // System.Object System.Xml.XmlChildEnumerator::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlChildEnumerator_System_Collections_IEnumerator_get_Current_mEC0FD9B4CD70461AD71D93AB21025A3D83AE0418 (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, const RuntimeMethod* method) { { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0; L_0 = XmlChildEnumerator_get_Current_m149208EFC92AEDC42F82839102B3D5F017DA4C46(__this, NULL); return L_0; } } // System.Xml.XmlNode System.Xml.XmlChildEnumerator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlChildEnumerator_get_Current_m149208EFC92AEDC42F82839102B3D5F017DA4C46 (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* __this, const RuntimeMethod* method) { { bool L_0 = __this->___isFirst_2; if (L_0) { goto IL_0010; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = __this->___child_1; if (L_1) { goto IL_0020; } } IL_0010: { String_t* L_2; L_2 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_3); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, L_2, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlChildEnumerator_get_Current_m149208EFC92AEDC42F82839102B3D5F017DA4C46_RuntimeMethod_var))); } IL_0020: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = __this->___child_1; return L_4; } } #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.XmlChildNodes::.ctor(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlChildNodes__ctor_mE297CC7E680D376A26339D6067C7E434271234B5 (XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_container, const RuntimeMethod* method) { { XmlNodeList__ctor_m29940F85BF8D20E6FFB9732648DC6DAD10539BD3(__this, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_container; __this->___container_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___container_0), (void*)L_0); return; } } // System.Int32 System.Xml.XmlChildNodes::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlChildNodes_get_Count_m0B5B57A96632585A0612CF84ADBCB45557F7D8E4 (XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2* __this, const RuntimeMethod* method) { int32_t V_0 = 0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_1 = NULL; { V_0 = 0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = __this->___container_0; NullCheck(L_0); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1; L_1 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_0); V_1 = L_1; goto IL_001b; } IL_0010: { int32_t L_2 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_2, 1)); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = V_1; NullCheck(L_3); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4; L_4 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_3); V_1 = L_4; } IL_001b: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = V_1; if (L_5) { goto IL_0010; } } { int32_t L_6 = V_0; return L_6; } } // System.Collections.IEnumerator System.Xml.XmlChildNodes::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlChildNodes_GetEnumerator_m79ACE972A13482959B5E446059C899FC9988A81C (XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = __this->___container_0; NullCheck(L_0); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1; L_1 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_0); if (L_1) { goto IL_0013; } } { il2cpp_codegen_runtime_class_init_inline(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var); EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA* L_2 = ((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___EmptyEnumerator_41; return L_2; } IL_0013: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = __this->___container_0; XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* L_4 = (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939*)il2cpp_codegen_object_new(XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939_il2cpp_TypeInfo_var); NullCheck(L_4); XmlChildEnumerator__ctor_mC51E8B709CB2FCB079D44B180D5EF3DF9DBC3671(L_4, L_3, NULL); return L_4; } } #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.XmlComment::.ctor(System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlComment__ctor_m74C0E3B050353E2B32B5218DF01F8EB8874BD819 (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* __this, String_t* ___0_comment, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) { { String_t* L_0 = ___0_comment; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___1_doc; XmlCharacterData__ctor_m8B84C0BD8FF7329F4C5190230FA2495D808B34AF(__this, L_0, L_1, NULL); return; } } // System.String System.Xml.XmlComment::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlComment_get_Name_mC7F751487F2DAE35E3142370436EA9B980F09D25 (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_0); String_t* L_1 = L_0->___strCommentName_23; return L_1; } } // System.String System.Xml.XmlComment::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlComment_get_LocalName_m7F13D283B7982A359227153DB8FE16FB9E818D07 (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_0); String_t* L_1 = L_0->___strCommentName_23; return L_1; } } // System.Xml.XmlNodeType System.Xml.XmlComment::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlComment_get_NodeType_m2D707F1D87A2739654AAE27A0373D30DC3C05422 (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* __this, const RuntimeMethod* method) { { return (int32_t)(8); } } // System.Xml.XmlNode System.Xml.XmlComment::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlComment_CloneNode_m0497FF82E6523952EE0D5DF5E61F5DC9AC1400CD (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* __this, bool ___0_deep, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(43 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this); NullCheck(L_0); XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* L_2; L_2 = VirtualFuncInvoker1< XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9*, String_t* >::Invoke(46 /* System.Xml.XmlComment System.Xml.XmlDocument::CreateComment(System.String) */, L_0, L_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.XmlDeclaration::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration__ctor_mBAEA7104B9DA9F3DAE632B9063BF96BF6A40B116 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___0_version, String_t* ___1_encoding, String_t* ___2_standalone, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___3_doc, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331); s_Il2CppMethodInitialized = true; } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___3_doc; XmlLinkedNode__ctor_mBAF93AD97DBA998E16940918D8F7EF3E585C7633(__this, L_0, NULL); String_t* L_1 = ___0_version; bool L_2; L_2 = XmlDeclaration_IsValidXmlVersion_m215F8DC273DFBBD9077EF86BEAB9C3EC3C590684(__this, L_1, NULL); if (L_2) { goto IL_0021; } } { String_t* L_3; L_3 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC84E568C2748F9FEA10B49CBF3076D4B6DA24940)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_4); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, L_3, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDeclaration__ctor_mBAEA7104B9DA9F3DAE632B9063BF96BF6A40B116_RuntimeMethod_var))); } IL_0021: { String_t* L_5 = ___2_standalone; if (!L_5) { goto IL_0061; } } { String_t* L_6 = ___2_standalone; NullCheck(L_6); int32_t L_7; L_7 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_6, NULL); if ((((int32_t)L_7) <= ((int32_t)0))) { goto IL_0061; } } { String_t* L_8 = ___2_standalone; bool L_9; L_9 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_8, _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331, NULL); if (!L_9) { goto IL_0061; } } { String_t* L_10 = ___2_standalone; bool L_11; L_11 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_10, _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49, NULL); if (!L_11) { goto IL_0061; } } { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_13 = L_12; String_t* L_14 = ___2_standalone; NullCheck(L_13); ArrayElementTypeCheck (L_13, L_14); (L_13)->SetAt(static_cast(0), (RuntimeObject*)L_14); String_t* L_15; L_15 = Res_GetString_m088600B9D0FC319A206451B009A0583C600B9A83(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD5750306EEF268CDF7C94C9DB0356DB272D8B5C1)), L_13, NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_16 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_16); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_16, L_15, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDeclaration__ctor_mBAEA7104B9DA9F3DAE632B9063BF96BF6A40B116_RuntimeMethod_var))); } IL_0061: { String_t* L_17 = ___1_encoding; XmlDeclaration_set_Encoding_m743178C17460B204CFFEFFC0960A77E4A6289A8B(__this, L_17, NULL); String_t* L_18 = ___2_standalone; XmlDeclaration_set_Standalone_m867389C9FBF0064E3FDA7EBDEAD4CF30E84F49C2(__this, L_18, NULL); String_t* L_19 = ___0_version; XmlDeclaration_set_Version_m0B2CCCDE1930526B6429925E8139340ED17C26D0_inline(__this, L_19, NULL); return; } } // System.String System.Xml.XmlDeclaration::get_Version() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Version_m50261F1E46B645E69A99504F494FFD3BF915E633 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___version_2; return L_0; } } // System.Void System.Xml.XmlDeclaration::set_Version(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration_set_Version_m0B2CCCDE1930526B6429925E8139340ED17C26D0 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->___version_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___version_2), (void*)L_0); return; } } // System.String System.Xml.XmlDeclaration::get_Encoding() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Encoding_m09D89DCD8457C62A6E49B9506A65A271DDBD011F (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___encoding_3; return L_0; } } // System.Void System.Xml.XmlDeclaration::set_Encoding(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration_set_Encoding_m743178C17460B204CFFEFFC0960A77E4A6289A8B (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___0_value, 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; } XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* G_B2_0 = NULL; XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* G_B1_0 = NULL; String_t* G_B3_0 = NULL; XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* G_B3_1 = NULL; { String_t* L_0 = ___0_value; G_B1_0 = __this; if (!L_0) { G_B2_0 = __this; goto IL_0007; } } { String_t* L_1 = ___0_value; G_B3_0 = L_1; G_B3_1 = G_B1_0; goto IL_000c; } IL_0007: { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B3_0 = L_2; G_B3_1 = G_B2_0; } IL_000c: { NullCheck(G_B3_1); G_B3_1->___encoding_3 = G_B3_0; Il2CppCodeGenWriteBarrier((void**)(&G_B3_1->___encoding_3), (void*)G_B3_0); return; } } // System.String System.Xml.XmlDeclaration::get_Standalone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Standalone_m46CC1833EE3C478318FF865E98A6899E440DDC6C (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___standalone_4; return L_0; } } // System.Void System.Xml.XmlDeclaration::set_Standalone(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDeclaration_set_Standalone_m867389C9FBF0064E3FDA7EBDEAD4CF30E84F49C2 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___0_value, 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*)&_stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_value; if (L_0) { goto IL_000f; } } { String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___standalone_4 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___standalone_4), (void*)L_1); return; } IL_000f: { String_t* L_2 = ___0_value; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); if (!L_3) { goto IL_0031; } } { String_t* L_4 = ___0_value; bool L_5; L_5 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_4, _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331, NULL); if (L_5) { goto IL_0031; } } { String_t* L_6 = ___0_value; bool L_7; L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_6, _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49, NULL); if (!L_7) { goto IL_0039; } } IL_0031: { String_t* L_8 = ___0_value; __this->___standalone_4 = L_8; Il2CppCodeGenWriteBarrier((void**)(&__this->___standalone_4), (void*)L_8); return; } IL_0039: { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = L_9; String_t* L_11 = ___0_value; NullCheck(L_10); ArrayElementTypeCheck (L_10, L_11); (L_10)->SetAt(static_cast(0), (RuntimeObject*)L_11); String_t* L_12; L_12 = Res_GetString_m088600B9D0FC319A206451B009A0583C600B9A83(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD5750306EEF268CDF7C94C9DB0356DB272D8B5C1)), L_10, NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_13 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_13); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_13, L_12, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDeclaration_set_Standalone_m867389C9FBF0064E3FDA7EBDEAD4CF30E84F49C2_RuntimeMethod_var))); } } // System.String System.Xml.XmlDeclaration::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Value_m5ABC71244CFA7343F6AB7C5B896D28B5A33827AF (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = VirtualFuncInvoker0< String_t* >::Invoke(32 /* System.String System.Xml.XmlNode::get_InnerText() */, __this); return L_0; } } // System.String System.Xml.XmlDeclaration::get_InnerText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_InnerText_mB8C98E0ECE11ED01970D6EBD5A14DE181A843F3A (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, 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*)&_stringLiteral3AFC0DE819870B50AA0F59F4823CD7064A39BC72); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA849558816A84F373F471C0275248DA08F91A4A6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF67CF5B59E32B552C2C143E0A3990B9794C84DA7); s_Il2CppMethodInitialized = true; } StringBuilder_t* V_0 = NULL; { String_t* L_0; L_0 = XmlDeclaration_get_Version_m50261F1E46B645E69A99504F494FFD3BF915E633_inline(__this, NULL); String_t* L_1; L_1 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteralF67CF5B59E32B552C2C143E0A3990B9794C84DA7, L_0, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL); StringBuilder_t* L_2 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); NullCheck(L_2); StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60(L_2, L_1, NULL); V_0 = L_2; String_t* L_3; L_3 = XmlDeclaration_get_Encoding_m09D89DCD8457C62A6E49B9506A65A271DDBD011F_inline(__this, NULL); NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if ((((int32_t)L_4) <= ((int32_t)0))) { goto IL_004e; } } { StringBuilder_t* L_5 = V_0; NullCheck(L_5); StringBuilder_t* L_6; L_6 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_5, _stringLiteralA849558816A84F373F471C0275248DA08F91A4A6, NULL); StringBuilder_t* L_7 = V_0; String_t* L_8; L_8 = XmlDeclaration_get_Encoding_m09D89DCD8457C62A6E49B9506A65A271DDBD011F_inline(__this, NULL); NullCheck(L_7); StringBuilder_t* L_9; L_9 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_7, L_8, NULL); StringBuilder_t* L_10 = V_0; NullCheck(L_10); StringBuilder_t* L_11; L_11 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_10, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL); } IL_004e: { String_t* L_12; L_12 = XmlDeclaration_get_Standalone_m46CC1833EE3C478318FF865E98A6899E440DDC6C_inline(__this, NULL); NullCheck(L_12); int32_t L_13; L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL); if ((((int32_t)L_13) <= ((int32_t)0))) { goto IL_0081; } } { StringBuilder_t* L_14 = V_0; NullCheck(L_14); StringBuilder_t* L_15; L_15 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_14, _stringLiteral3AFC0DE819870B50AA0F59F4823CD7064A39BC72, NULL); StringBuilder_t* L_16 = V_0; String_t* L_17; L_17 = XmlDeclaration_get_Standalone_m46CC1833EE3C478318FF865E98A6899E440DDC6C_inline(__this, NULL); NullCheck(L_16); StringBuilder_t* L_18; L_18 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_16, L_17, NULL); StringBuilder_t* L_19 = V_0; NullCheck(L_19); StringBuilder_t* L_20; L_20 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_19, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL); } IL_0081: { StringBuilder_t* L_21 = V_0; NullCheck(L_21); String_t* L_22; L_22 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_21); return L_22; } } // System.String System.Xml.XmlDeclaration::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Name_mD74DAD0D67570779DE4E6168BA6FE6718C68D96F (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); s_Il2CppMethodInitialized = true; } { return _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158; } } // System.String System.Xml.XmlDeclaration::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_LocalName_m35F3DBD7733EB1E3A873468D2B0635F7D77BA26D (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, __this); return L_0; } } // System.Xml.XmlNodeType System.Xml.XmlDeclaration::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlDeclaration_get_NodeType_m88B85D17B7799116C8FA58654201BE90F49AD3B0 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method) { { return (int32_t)(((int32_t)17)); } } // System.Xml.XmlNode System.Xml.XmlDeclaration::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDeclaration_CloneNode_m8537F159D63D363B215663339B1A78B35B3183B5 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, bool ___0_deep, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); String_t* L_1; L_1 = XmlDeclaration_get_Version_m50261F1E46B645E69A99504F494FFD3BF915E633_inline(__this, NULL); String_t* L_2; L_2 = XmlDeclaration_get_Encoding_m09D89DCD8457C62A6E49B9506A65A271DDBD011F_inline(__this, NULL); String_t* L_3; L_3 = XmlDeclaration_get_Standalone_m46CC1833EE3C478318FF865E98A6899E440DDC6C_inline(__this, NULL); NullCheck(L_0); XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_4; L_4 = VirtualFuncInvoker3< XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79*, String_t*, String_t*, String_t* >::Invoke(51 /* System.Xml.XmlDeclaration System.Xml.XmlDocument::CreateXmlDeclaration(System.String,System.String,System.String) */, L_0, L_1, L_2, L_3); return L_4; } } // System.Boolean System.Xml.XmlDeclaration::IsValidXmlVersion(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDeclaration_IsValidXmlVersion_m215F8DC273DFBBD9077EF86BEAB9C3EC3C590684 (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___0_ver, const RuntimeMethod* method) { { String_t* L_0 = ___0_ver; NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL); if ((((int32_t)L_1) < ((int32_t)3))) { goto IL_002f; } } { String_t* L_2 = ___0_ver; NullCheck(L_2); Il2CppChar L_3; L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, 0, NULL); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)49))))) { goto IL_002f; } } { String_t* L_4 = ___0_ver; NullCheck(L_4); Il2CppChar L_5; L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, 1, NULL); if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)46))))) { goto IL_002f; } } { String_t* L_6 = ___0_ver; String_t* L_7 = ___0_ver; NullCheck(L_7); int32_t L_8; L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL); bool L_9; L_9 = XmlCharType_IsOnlyDigits_m63DC800DB28B54CBAB7A16E04F8D9E4C2E01FC93(L_6, 2, ((int32_t)il2cpp_codegen_subtract(L_8, 2)), NULL); return L_9; } IL_002f: { return (bool)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.XmlDocument::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument__ctor_m09B578D51E249702C90A99B87A31ABE8CE4027DC (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* L_0 = (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D*)il2cpp_codegen_object_new(XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D_il2cpp_TypeInfo_var); NullCheck(L_0); XmlImplementation__ctor_mEBE20EB37760F63620D9DFAEF3341D2F4E138DC9(L_0, NULL); XmlDocument__ctor_m90653BB0CD6863B4328A3B32B72ED4383C97D1A8(__this, L_0, NULL); return; } } // System.Void System.Xml.XmlDocument::.ctor(System.Xml.XmlImplementation) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument__ctor_m90653BB0CD6863B4328A3B32B72ED4383C97D1A8 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* ___0_imp, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var); 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*)&_stringLiteral26E478A40A804C5FF9FB7A90DCD4F5E8539E8E38); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4760011519A4AB7E8521F6795430114E80AA83E4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral791879DECB3477AD61FF2F50186DCF089516C2FA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83B3ACB1C0AB14BABA0BD386F8695E096686811C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA2ADAC70CFE2DCB556D061A93CBD008778646655); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE6A4511D58A9B6C235D9E76F3BADFD11EFD8892); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDB28C3D7E7F56FAA480CEF9C7D0E3BF741423901); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF6C0C11953123BBAC57A7E215512C2CA4CF68520); s_Il2CppMethodInitialized = true; } XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* V_0 = NULL; { XmlNode__ctor_m48EA7E8280259972A9AE46D0220C05CEA99E9350(__this, NULL); XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* L_0 = ___0_imp; __this->___implementation_1 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___implementation_1), (void*)L_0); DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* L_1 = (DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45*)il2cpp_codegen_object_new(DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45_il2cpp_TypeInfo_var); NullCheck(L_1); DomNameTable__ctor_m5A5BC654B5068463A5363A4C5F944DBA31D68C29(L_1, __this, NULL); __this->___domNameTable_2 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___domNameTable_2), (void*)L_1); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2; L_2 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(__this, NULL); V_0 = L_2; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_3 = V_0; String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_3); String_t* L_5; L_5 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_3, L_4); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_6 = V_0; NullCheck(L_6); String_t* L_7; L_7 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_6, _stringLiteralCE6A4511D58A9B6C235D9E76F3BADFD11EFD8892); __this->___strDocumentName_21 = L_7; Il2CppCodeGenWriteBarrier((void**)(&__this->___strDocumentName_21), (void*)L_7); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_8 = V_0; NullCheck(L_8); String_t* L_9; L_9 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_8, _stringLiteral791879DECB3477AD61FF2F50186DCF089516C2FA); __this->___strDocumentFragmentName_22 = L_9; Il2CppCodeGenWriteBarrier((void**)(&__this->___strDocumentFragmentName_22), (void*)L_9); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_10 = V_0; NullCheck(L_10); String_t* L_11; L_11 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_10, _stringLiteralDB28C3D7E7F56FAA480CEF9C7D0E3BF741423901); __this->___strCommentName_23 = L_11; Il2CppCodeGenWriteBarrier((void**)(&__this->___strCommentName_23), (void*)L_11); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_12 = V_0; NullCheck(L_12); String_t* L_13; L_13 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_12, _stringLiteral4760011519A4AB7E8521F6795430114E80AA83E4); __this->___strTextName_24 = L_13; Il2CppCodeGenWriteBarrier((void**)(&__this->___strTextName_24), (void*)L_13); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_14 = V_0; NullCheck(L_14); String_t* L_15; L_15 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_14, _stringLiteralA2ADAC70CFE2DCB556D061A93CBD008778646655); __this->___strCDataSectionName_25 = L_15; Il2CppCodeGenWriteBarrier((void**)(&__this->___strCDataSectionName_25), (void*)L_15); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_16 = V_0; NullCheck(L_16); String_t* L_17; L_17 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_16, _stringLiteral26E478A40A804C5FF9FB7A90DCD4F5E8539E8E38); __this->___strEntityName_26 = L_17; Il2CppCodeGenWriteBarrier((void**)(&__this->___strEntityName_26), (void*)L_17); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_18 = V_0; NullCheck(L_18); String_t* L_19; L_19 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_18, _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694); __this->___strID_27 = L_19; Il2CppCodeGenWriteBarrier((void**)(&__this->___strID_27), (void*)L_19); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_20 = V_0; NullCheck(L_20); String_t* L_21; L_21 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_20, _stringLiteralF6C0C11953123BBAC57A7E215512C2CA4CF68520); __this->___strNonSignificantWhitespaceName_33 = L_21; Il2CppCodeGenWriteBarrier((void**)(&__this->___strNonSignificantWhitespaceName_33), (void*)L_21); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_22 = V_0; NullCheck(L_22); String_t* L_23; L_23 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_22, _stringLiteral83B3ACB1C0AB14BABA0BD386F8695E096686811C); __this->___strSignificantWhitespaceName_34 = L_23; Il2CppCodeGenWriteBarrier((void**)(&__this->___strSignificantWhitespaceName_34), (void*)L_23); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_24 = V_0; NullCheck(L_24); String_t* L_25; L_25 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_24, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); __this->___strXmlns_28 = L_25; Il2CppCodeGenWriteBarrier((void**)(&__this->___strXmlns_28), (void*)L_25); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_26 = V_0; NullCheck(L_26); String_t* L_27; L_27 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_26, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); __this->___strXml_29 = L_27; Il2CppCodeGenWriteBarrier((void**)(&__this->___strXml_29), (void*)L_27); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_28 = V_0; NullCheck(L_28); String_t* L_29; L_29 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_28, _stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2); __this->___strSpace_30 = L_29; Il2CppCodeGenWriteBarrier((void**)(&__this->___strSpace_30), (void*)L_29); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_30 = V_0; NullCheck(L_30); String_t* L_31; L_31 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_30, _stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29); __this->___strLang_31 = L_31; Il2CppCodeGenWriteBarrier((void**)(&__this->___strLang_31), (void*)L_31); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_32 = V_0; NullCheck(L_32); String_t* L_33; L_33 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_32, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE); __this->___strReservedXmlns_35 = L_33; Il2CppCodeGenWriteBarrier((void**)(&__this->___strReservedXmlns_35), (void*)L_33); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_34 = V_0; NullCheck(L_34); String_t* L_35; L_35 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_34, _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917); __this->___strReservedXml_36 = L_35; Il2CppCodeGenWriteBarrier((void**)(&__this->___strReservedXml_36), (void*)L_35); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_36 = V_0; String_t* L_37 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_36); String_t* L_38; L_38 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_36, L_37); __this->___strEmpty_32 = L_38; Il2CppCodeGenWriteBarrier((void**)(&__this->___strEmpty_32), (void*)L_38); String_t* L_39 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___baseURI_37 = L_39; Il2CppCodeGenWriteBarrier((void**)(&__this->___baseURI_37), (void*)L_39); RuntimeObject* L_40 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); NullCheck(L_40); Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_40, NULL); __this->___objLock_40 = L_40; Il2CppCodeGenWriteBarrier((void**)(&__this->___objLock_40), (void*)L_40); return; } } // System.Xml.Schema.SchemaInfo System.Xml.XmlDocument::get_DtdSchemaInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* XmlDocument_get_DtdSchemaInfo_mF52E9F32AB9D1914DBC6D91A8277AE843B6E1E6E (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0 = __this->___schemaInfo_7; return L_0; } } // System.Void System.Xml.XmlDocument::set_DtdSchemaInfo(System.Xml.Schema.SchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_set_DtdSchemaInfo_m95A0C58965F2B17BDA49D5F4E18304A11EEC7876 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___0_value, const RuntimeMethod* method) { { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0 = ___0_value; __this->___schemaInfo_7 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___schemaInfo_7), (void*)L_0); return; } } // System.Void System.Xml.XmlDocument::CheckName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_CheckName_mD87B320087DABFF0D226204D89BDF67AC323BB5A (String_t* ___0_name, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValidateNames_tC1994E2C538F499DFEBBA2705010DC4C770E7598_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { String_t* L_0 = ___0_name; il2cpp_codegen_runtime_class_init_inline(ValidateNames_tC1994E2C538F499DFEBBA2705010DC4C770E7598_il2cpp_TypeInfo_var); int32_t L_1; L_1 = ValidateNames_ParseNmtoken_m833C3208C2F99EDAE6867D01B1BC73C0D9158448(L_0, 0, NULL); V_0 = L_1; int32_t L_2 = V_0; String_t* L_3 = ___0_name; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if ((((int32_t)L_2) >= ((int32_t)L_4))) { goto IL_0023; } } { String_t* L_5 = ___0_name; int32_t L_6 = V_0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7; L_7 = XmlException_BuildCharExceptionArgs_m0420A013644159380BB744A41E3AF1F4CEA5E9D8(L_5, L_6, NULL); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_8 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_8); XmlException__ctor_mAAF5616098D1552646D4C4FDF1B381CB63822A21(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05)), L_7, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_CheckName_mD87B320087DABFF0D226204D89BDF67AC323BB5A_RuntimeMethod_var))); } IL_0023: { return; } } // System.Xml.XmlName System.Xml.XmlDocument::AddXmlName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_namespaceURI, RuntimeObject* ___3_schemaInfo, const RuntimeMethod* method) { { DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* L_0 = __this->___domNameTable_2; String_t* L_1 = ___0_prefix; String_t* L_2 = ___1_localName; String_t* L_3 = ___2_namespaceURI; RuntimeObject* L_4 = ___3_schemaInfo; NullCheck(L_0); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_5; L_5 = DomNameTable_AddName_m5EADC9D7600CB5AB4285BF18DCA911E042C7F4C2(L_0, L_1, L_2, L_3, L_4, NULL); return L_5; } } // System.Xml.XmlName System.Xml.XmlDocument::GetXmlName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_GetXmlName_m7145F5B6BE8E6CDB52918C96324CC489569932CB (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_namespaceURI, RuntimeObject* ___3_schemaInfo, const RuntimeMethod* method) { { DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* L_0 = __this->___domNameTable_2; String_t* L_1 = ___0_prefix; String_t* L_2 = ___1_localName; String_t* L_3 = ___2_namespaceURI; RuntimeObject* L_4 = ___3_schemaInfo; NullCheck(L_0); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_5; L_5 = DomNameTable_GetName_mCDD057C4F21297AF60F4C3E34DFB4A864067AD8C(L_0, L_1, L_2, L_3, L_4, NULL); return L_5; } } // System.Xml.XmlName System.Xml.XmlDocument::AddAttrXmlName(System.String,System.String,System.String,System.Xml.Schema.IXmlSchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_namespaceURI, RuntimeObject* ___3_schemaInfo, const RuntimeMethod* method) { XmlName_t0704430D24D202146901D342E34D878246E14F33* V_0 = NULL; RuntimeObject* V_1 = NULL; RuntimeObject* V_2 = NULL; RuntimeObject* V_3 = NULL; int32_t G_B6_0 = 0; { String_t* L_0 = ___0_prefix; String_t* L_1 = ___1_localName; String_t* L_2 = ___2_namespaceURI; RuntimeObject* L_3 = ___3_schemaInfo; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_4; L_4 = XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916(__this, L_0, L_1, L_2, L_3, NULL); V_0 = L_4; bool L_5; L_5 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(__this, NULL); if (L_5) { goto IL_0070; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_6 = V_0; NullCheck(L_6); String_t* L_7; L_7 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_6, NULL); V_1 = L_7; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_8 = V_0; NullCheck(L_8); String_t* L_9; L_9 = XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline(L_8, NULL); V_2 = L_9; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_10 = V_0; NullCheck(L_10); String_t* L_11; L_11 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_10, NULL); V_3 = L_11; RuntimeObject* L_12 = V_1; String_t* L_13 = __this->___strXmlns_28; if ((((RuntimeObject*)(RuntimeObject*)L_12) == ((RuntimeObject*)(String_t*)L_13))) { goto IL_0049; } } { RuntimeObject* L_14 = V_1; String_t* L_15 = __this->___strEmpty_32; if ((!(((RuntimeObject*)(RuntimeObject*)L_14) == ((RuntimeObject*)(String_t*)L_15)))) { goto IL_0046; } } { RuntimeObject* L_16 = V_3; String_t* L_17 = __this->___strXmlns_28; G_B6_0 = ((((RuntimeObject*)(RuntimeObject*)L_16) == ((RuntimeObject*)(String_t*)L_17))? 1 : 0); goto IL_004a; } IL_0046: { G_B6_0 = 0; goto IL_004a; } IL_0049: { G_B6_0 = 1; } IL_004a: { RuntimeObject* L_18 = V_2; String_t* L_19 = __this->___strReservedXmlns_35; if (!((int32_t)(G_B6_0^((((RuntimeObject*)(RuntimeObject*)L_18) == ((RuntimeObject*)(String_t*)L_19))? 1 : 0)))) { goto IL_0070; } } { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_21 = L_20; String_t* L_22 = ___2_namespaceURI; NullCheck(L_21); ArrayElementTypeCheck (L_21, L_22); (L_21)->SetAt(static_cast(0), (RuntimeObject*)L_22); String_t* L_23; L_23 = Res_GetString_m088600B9D0FC319A206451B009A0583C600B9A83(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral033D1A6AEAFA549F3817926A246C7A61244A174C)), L_21, NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_24 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_24); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_24, L_23, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28_RuntimeMethod_var))); } IL_0070: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_25 = V_0; return L_25; } } // System.Boolean System.Xml.XmlDocument::AddIdInfo(System.Xml.XmlName,System.Xml.XmlName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_AddIdInfo_mF6E5BE7379C76DA2C5E4D292380086D04009CC0E (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___0_eleName, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___1_attrName, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___htElementIDAttrDecl_6; if (!L_0) { goto IL_0016; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___htElementIDAttrDecl_6; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_2 = ___0_eleName; NullCheck(L_1); RuntimeObject* L_3; L_3 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_1, L_2); if (L_3) { goto IL_0038; } } IL_0016: { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_4 = __this->___htElementIDAttrDecl_6; if (L_4) { goto IL_0029; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_5 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); NullCheck(L_5); Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_5, NULL); __this->___htElementIDAttrDecl_6 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___htElementIDAttrDecl_6), (void*)L_5); } IL_0029: { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_6 = __this->___htElementIDAttrDecl_6; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_7 = ___0_eleName; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_8 = ___1_attrName; NullCheck(L_6); VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(23 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_6, L_7, L_8); return (bool)1; } IL_0038: { return (bool)0; } } // System.Xml.XmlName System.Xml.XmlDocument::GetIDInfoByElement_(System.Xml.XmlName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_GetIDInfoByElement__mB6858B03EFABCE5F79DBACEF671D8A76948FA086 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___0_eleName, 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*)&XmlName_t0704430D24D202146901D342E34D878246E14F33_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlName_t0704430D24D202146901D342E34D878246E14F33* V_0 = NULL; { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = ___0_eleName; NullCheck(L_0); String_t* L_1; L_1 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_0, NULL); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_2 = ___0_eleName; NullCheck(L_2); String_t* L_3; L_3 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_2, NULL); String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_5; L_5 = XmlDocument_GetXmlName_m7145F5B6BE8E6CDB52918C96324CC489569932CB(__this, L_1, L_3, L_4, (RuntimeObject*)NULL, NULL); V_0 = L_5; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_6 = V_0; if (!L_6) { goto IL_002e; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_7 = __this->___htElementIDAttrDecl_6; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_8 = V_0; NullCheck(L_7); RuntimeObject* L_9; L_9 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_7, L_8); return ((XmlName_t0704430D24D202146901D342E34D878246E14F33*)CastclassClass((RuntimeObject*)L_9, XmlName_t0704430D24D202146901D342E34D878246E14F33_il2cpp_TypeInfo_var)); } IL_002e: { return (XmlName_t0704430D24D202146901D342E34D878246E14F33*)NULL; } } // System.Xml.XmlName System.Xml.XmlDocument::GetIDInfoByElement(System.Xml.XmlName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlDocument_GetIDInfoByElement_mF4F7DDBFA3126D06D4AA526B1536BEC20D677AC8 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___0_eleName, const RuntimeMethod* method) { { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___htElementIDAttrDecl_6; if (L_0) { goto IL_000a; } } { return (XmlName_t0704430D24D202146901D342E34D878246E14F33*)NULL; } IL_000a: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_1 = ___0_eleName; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_2; L_2 = XmlDocument_GetIDInfoByElement__mB6858B03EFABCE5F79DBACEF671D8A76948FA086(__this, L_1, NULL); return L_2; } } // System.WeakReference System.Xml.XmlDocument::GetElement(System.Collections.ArrayList,System.Xml.XmlElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* XmlDocument_GetElement_mC0411EE67C03B9FD52F41B70C7320E51A67C2463 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___0_elementList, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___1_elem, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL; RuntimeObject* V_1 = NULL; WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* V_2 = NULL; WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* V_3 = NULL; RuntimeObject* V_4 = NULL; WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* V_5 = NULL; { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); NullCheck(L_0); ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_0, NULL); V_0 = L_0; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1 = ___0_elementList; NullCheck(L_1); RuntimeObject* L_2; L_2 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_1); V_1 = L_2; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0049: {// begin finally (depth: 1) { RuntimeObject* L_3 = V_1; V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_4 = V_4; if (!L_4) { goto IL_005c; } } { RuntimeObject* L_5 = V_4; NullCheck(L_5); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5); } IL_005c: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_003f_1; } IL_000f_1: { RuntimeObject* L_6 = V_1; NullCheck(L_6); RuntimeObject* L_7; L_7 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_6); V_2 = ((WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)CastclassClass((RuntimeObject*)L_7, WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var)); WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_8 = V_2; NullCheck(L_8); bool L_9; L_9 = VirtualFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.WeakReference::get_IsAlive() */, L_8); if (L_9) { goto IL_002d_1; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_10 = V_0; WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_11 = V_2; NullCheck(L_10); int32_t L_12; L_12 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_10, L_11); goto IL_003f_1; } IL_002d_1: { WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_13 = V_2; NullCheck(L_13); RuntimeObject* L_14; L_14 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, L_13); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_15 = ___1_elem; if ((!(((RuntimeObject*)(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)CastclassClass((RuntimeObject*)L_14, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var))) == ((RuntimeObject*)(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)L_15)))) { goto IL_003f_1; } } { WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_16 = V_2; V_3 = L_16; goto IL_009b; } IL_003f_1: { RuntimeObject* L_17 = V_1; NullCheck(L_17); bool L_18; L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_17); if (L_18) { goto IL_000f_1; } } { goto IL_005d; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_005d: { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_19 = V_0; NullCheck(L_19); RuntimeObject* L_20; L_20 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_19); V_1 = L_20; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0085: {// begin finally (depth: 1) { RuntimeObject* L_21 = V_1; V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_21, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_22 = V_4; if (!L_22) { goto IL_0098; } } { RuntimeObject* L_23 = V_4; NullCheck(L_23); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_23); } IL_0098: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_007b_1; } IL_0066_1: { RuntimeObject* L_24 = V_1; NullCheck(L_24); RuntimeObject* L_25; L_25 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_24); V_5 = ((WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)CastclassClass((RuntimeObject*)L_25, WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var)); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_26 = ___0_elementList; WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_27 = V_5; NullCheck(L_26); VirtualActionInvoker1< RuntimeObject* >::Invoke(41 /* System.Void System.Collections.ArrayList::Remove(System.Object) */, L_26, L_27); } IL_007b_1: { RuntimeObject* L_28 = V_1; NullCheck(L_28); bool L_29; L_29 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_28); if (L_29) { goto IL_0066_1; } } { goto IL_0099; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0099: { return (WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)NULL; } IL_009b: { WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_30 = V_3; return L_30; } } // System.Void System.Xml.XmlDocument::AddElementWithId(System.String,System.Xml.XmlElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_AddElementWithId_m179458DD48014AD4C76126306A42F49A98433187 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_id, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___1_elem, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_1 = NULL; { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___htElementIdMap_5; if (!L_0) { goto IL_0016; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___htElementIdMap_5; String_t* L_2 = ___0_id; NullCheck(L_1); bool L_3; L_3 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(26 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_1, L_2); if (L_3) { goto IL_004a; } } IL_0016: { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_4 = __this->___htElementIdMap_5; if (L_4) { goto IL_0029; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_5 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); NullCheck(L_5); Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_5, NULL); __this->___htElementIdMap_5 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___htElementIdMap_5), (void*)L_5); } IL_0029: { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_6 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); NullCheck(L_6); ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_6, NULL); V_0 = L_6; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_7 = V_0; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_8 = ___1_elem; WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_9 = (WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)il2cpp_codegen_object_new(WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var); NullCheck(L_9); WeakReference__ctor_m5F9E2F970CD85965A003C0B37ABDBFAA1F5CF241(L_9, L_8, NULL); NullCheck(L_7); int32_t L_10; L_10 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_7, L_9); Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_11 = __this->___htElementIdMap_5; String_t* L_12 = ___0_id; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_13 = V_0; NullCheck(L_11); VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(23 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_11, L_12, L_13); return; } IL_004a: { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_14 = __this->___htElementIdMap_5; String_t* L_15 = ___0_id; NullCheck(L_14); RuntimeObject* L_16; L_16 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_14, L_15); V_1 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)CastclassClass((RuntimeObject*)L_16, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var)); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_17 = V_1; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_18 = ___1_elem; WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_19; L_19 = XmlDocument_GetElement_mC0411EE67C03B9FD52F41B70C7320E51A67C2463(__this, L_17, L_18, NULL); if (L_19) { goto IL_0073; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_20 = V_1; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_21 = ___1_elem; WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_22 = (WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)il2cpp_codegen_object_new(WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var); NullCheck(L_22); WeakReference__ctor_m5F9E2F970CD85965A003C0B37ABDBFAA1F5CF241(L_22, L_21, NULL); NullCheck(L_20); int32_t L_23; L_23 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_20, L_22); } IL_0073: { return; } } // System.Void System.Xml.XmlDocument::RemoveElementWithId(System.String,System.Xml.XmlElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_RemoveElementWithId_mD930DEA6A023E00A7D376D2F5B7D5283414ECE03 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_id, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___1_elem, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL; WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* V_1 = NULL; { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___htElementIdMap_5; if (!L_0) { goto IL_004f; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___htElementIdMap_5; String_t* L_2 = ___0_id; NullCheck(L_1); bool L_3; L_3 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(26 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_1, L_2); if (!L_3) { goto IL_004f; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_4 = __this->___htElementIdMap_5; String_t* L_5 = ___0_id; NullCheck(L_4); RuntimeObject* L_6; L_6 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_4, L_5); V_0 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)CastclassClass((RuntimeObject*)L_6, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var)); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_7 = V_0; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_8 = ___1_elem; WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_9; L_9 = XmlDocument_GetElement_mC0411EE67C03B9FD52F41B70C7320E51A67C2463(__this, L_7, L_8, NULL); V_1 = L_9; WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_10 = V_1; if (!L_10) { goto IL_004f; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_11 = V_0; WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_12 = V_1; NullCheck(L_11); VirtualActionInvoker1< RuntimeObject* >::Invoke(41 /* System.Void System.Collections.ArrayList::Remove(System.Object) */, L_11, L_12); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_13 = V_0; NullCheck(L_13); int32_t L_14; L_14 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_13); if (L_14) { goto IL_004f; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_15 = __this->___htElementIdMap_5; String_t* L_16 = ___0_id; NullCheck(L_15); VirtualActionInvoker1< RuntimeObject* >::Invoke(39 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_15, L_16); } IL_004f: { return; } } // System.Xml.XmlNode System.Xml.XmlDocument::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocument_CloneNode_m0604830BCDF3E8CF6BA604FAB35019942A85EC52 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, bool ___0_deep, const RuntimeMethod* method) { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_0 = NULL; { XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* L_0; L_0 = XmlDocument_get_Implementation_m627A29B6D4CA09108F494BBE9AE070155CA6AE10_inline(__this, NULL); NullCheck(L_0); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1; L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(4 /* System.Xml.XmlDocument System.Xml.XmlImplementation::CreateDocument() */, L_0); V_0 = L_1; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = V_0; String_t* L_3 = __this->___baseURI_37; NullCheck(L_2); XmlDocument_SetBaseURI_mE44F99B7DFBF6C63E7041125703303F9146C146E_inline(L_2, L_3, NULL); bool L_4 = ___0_deep; if (!L_4) { goto IL_0024; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = V_0; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_6 = V_0; bool L_7 = ___0_deep; NullCheck(L_5); XmlDocument_ImportChildren_mAB48DB0FA4C4964B00F4EC316E3942CE7AAB092B(L_5, __this, L_6, L_7, NULL); } IL_0024: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_8 = V_0; return L_8; } } // System.Xml.XmlNodeType System.Xml.XmlDocument::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlDocument_get_NodeType_m49BC1016CABB8F3949B923DA9E6C89EEB676BC37 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { return (int32_t)(((int32_t)9)); } } // System.Xml.XmlNode System.Xml.XmlDocument::get_ParentNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocument_get_ParentNode_m6D355D866D03A2671BC17D7DF8BFD3BFDB86D9E7 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } } // System.Xml.XmlDocumentType System.Xml.XmlDocument::get_DocumentType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* XmlDocument_get_DocumentType_m1140163BB68318E3D2532BD7F5C8BC96E476166F (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0; L_0 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t >::Invoke(38 /* System.Xml.XmlNode System.Xml.XmlNode::FindChild(System.Xml.XmlNodeType) */, __this, ((int32_t)10)); return ((XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E*)CastclassClass((RuntimeObject*)L_0, XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E_il2cpp_TypeInfo_var)); } } // System.Xml.XmlDeclaration System.Xml.XmlDocument::get_Declaration() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* XmlDocument_get_Declaration_mABC644137ED057F2955C7F545529D5E5E88D4E18 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0; L_0 = VirtualFuncInvoker0< bool >::Invoke(25 /* System.Boolean System.Xml.XmlNode::get_HasChildNodes() */, __this); if (!L_0) { goto IL_0014; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1; L_1 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this); return ((XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79*)IsInstClass((RuntimeObject*)L_1, XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79_il2cpp_TypeInfo_var)); } IL_0014: { return (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79*)NULL; } } // System.Xml.XmlImplementation System.Xml.XmlDocument::get_Implementation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* XmlDocument_get_Implementation_m627A29B6D4CA09108F494BBE9AE070155CA6AE10 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* L_0 = __this->___implementation_1; return L_0; } } // System.String System.Xml.XmlDocument::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocument_get_Name_mDD3B83B70FA0065CE4959C41BD569084E2219C35 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___strDocumentName_21; return L_0; } } // System.String System.Xml.XmlDocument::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocument_get_LocalName_mF25545A8C83B64CB8E28DC2983997B2F860AD5A9 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___strDocumentName_21; return L_0; } } // System.Xml.XmlElement System.Xml.XmlDocument::get_DocumentElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* XmlDocument_get_DocumentElement_mE87523DCD2D59F8BA6175DBA01D70133E202A2C8 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0; L_0 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t >::Invoke(38 /* System.Xml.XmlNode System.Xml.XmlNode::FindChild(System.Xml.XmlNodeType) */, __this, 1); return ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)CastclassClass((RuntimeObject*)L_0, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)); } } // System.Boolean System.Xml.XmlDocument::get_IsContainer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_get_IsContainer_m29AAC4ECD22B540A7925545514A74046A0D913D0 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Xml.XmlLinkedNode System.Xml.XmlDocument::get_LastNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* XmlDocument_get_LastNode_mFD3B03A02F28E2CE7F57AB2A60E4FA433661072E (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = __this->___lastChild_3; return L_0; } } // System.Void System.Xml.XmlDocument::set_LastNode(System.Xml.XmlLinkedNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_set_LastNode_m5C24F0CF42B5D0B43E8FD84DCEF3B5E043E6FA06 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___0_value, const RuntimeMethod* method) { { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = ___0_value; __this->___lastChild_3 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_3), (void*)L_0); return; } } // System.Xml.XmlDocument System.Xml.XmlDocument::get_OwnerDocument() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlDocument_get_OwnerDocument_m788476A40E88383B623B2868509E14C9BE1AD31A (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { return (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)NULL; } } // System.Void System.Xml.XmlDocument::set_Schemas(System.Xml.Schema.XmlSchemaSet) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_set_Schemas_m434B1F13D18F926E959FCC426F4731C9AC385A3B (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___0_value, const RuntimeMethod* method) { { XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_0 = ___0_value; __this->___schemas_8 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___schemas_8), (void*)L_0); return; } } // System.Boolean System.Xml.XmlDocument::get_CanReportValidity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_get_CanReportValidity_m71D1E8A3FCDBF648B6E83D5B7690FD0FD40F8736 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___reportValidity_9; return L_0; } } // System.Boolean System.Xml.XmlDocument::get_HasSetResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_get_HasSetResolver_m7CBB11C7E27D95CD697F177B965CEB2E1E71358D (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___bSetResolver_39; return L_0; } } // System.Xml.XmlResolver System.Xml.XmlDocument::GetResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlDocument_GetResolver_m0B1F443F2DF5510E0733052D42BC984CB83F9119 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = __this->___resolver_38; return L_0; } } // System.Boolean System.Xml.XmlDocument::IsValidChildType(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_IsValidChildType_m9140E7E6187566178EBF6F505125509D5EDC9AC9 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, int32_t ___0_type, const RuntimeMethod* method) { { int32_t L_0 = ___0_type; if ((((int32_t)L_0) == ((int32_t)1))) { goto IL_0056; } } { int32_t L_1 = ___0_type; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, 7))) { case 0: { goto IL_003a; } case 1: { goto IL_003a; } case 2: { goto IL_008a; } case 3: { goto IL_003c; } case 4: { goto IL_008a; } case 5: { goto IL_008a; } case 6: { goto IL_003a; } case 7: { goto IL_003a; } case 8: { goto IL_008a; } case 9: { goto IL_008a; } case 10: { goto IL_0070; } } } { goto IL_008a; } IL_003a: { return (bool)1; } IL_003c: { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_2; L_2 = VirtualFuncInvoker0< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* >::Invoke(43 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::get_DocumentType() */, __this); if (!L_2) { goto IL_0054; } } { String_t* L_3; L_3 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral88FE25385F8BFC1F8C027A8AD8AECE97C41561D6)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_4 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_4); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_4, L_3, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_IsValidChildType_m9140E7E6187566178EBF6F505125509D5EDC9AC9_RuntimeMethod_var))); } IL_0054: { return (bool)1; } IL_0056: { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_5; L_5 = XmlDocument_get_DocumentElement_mE87523DCD2D59F8BA6175DBA01D70133E202A2C8(__this, NULL); if (!L_5) { goto IL_006e; } } { String_t* L_6; L_6 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral06C6EF334A248557A31ACC1740CAA2A6A788ECD5)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_7); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_IsValidChildType_m9140E7E6187566178EBF6F505125509D5EDC9AC9_RuntimeMethod_var))); } IL_006e: { return (bool)1; } IL_0070: { XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_8; L_8 = VirtualFuncInvoker0< XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* >::Invoke(44 /* System.Xml.XmlDeclaration System.Xml.XmlDocument::get_Declaration() */, __this); if (!L_8) { goto IL_0088; } } { String_t* L_9; L_9 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCF06C8F24964E50FF1069A8CEE33E689908FFB7E)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_10); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, L_9, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_IsValidChildType_m9140E7E6187566178EBF6F505125509D5EDC9AC9_RuntimeMethod_var))); } IL_0088: { return (bool)1; } IL_008a: { return (bool)0; } } // System.Boolean System.Xml.XmlDocument::HasNodeTypeInPrevSiblings(System.Xml.XmlNodeType,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_HasNodeTypeInPrevSiblings_m62FDB4009BEF04A3D1A291575A005966E0E21AC3 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, int32_t ___0_nt, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_refNode, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___1_refNode; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { V_0 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___1_refNode; NullCheck(L_1); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2; L_2 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_1); if (!L_2) { goto IL_0033; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___1_refNode; NullCheck(L_3); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4; L_4 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_3); NullCheck(L_4); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5; L_5 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_4); V_0 = L_5; goto IL_0033; } IL_001d: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = V_0; NullCheck(L_6); int32_t L_7; L_7 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_6); int32_t L_8 = ___0_nt; if ((!(((uint32_t)L_7) == ((uint32_t)L_8)))) { goto IL_0028; } } { return (bool)1; } IL_0028: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = V_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = ___1_refNode; if ((((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_9) == ((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_10))) { goto IL_0036; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_11 = V_0; NullCheck(L_11); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12; L_12 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_11); V_0 = L_12; } IL_0033: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_13 = V_0; if (L_13) { goto IL_001d; } } IL_0036: { return (bool)0; } } // System.Boolean System.Xml.XmlDocument::HasNodeTypeInNextSiblings(System.Xml.XmlNodeType,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_HasNodeTypeInNextSiblings_mD65FA58F532B9875E1BB7AE149C98E608BAE44A4 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, int32_t ___0_nt, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_refNode, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___1_refNode; V_0 = L_0; goto IL_0016; } IL_0004: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0; NullCheck(L_1); int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_1); int32_t L_3 = ___0_nt; if ((!(((uint32_t)L_2) == ((uint32_t)L_3)))) { goto IL_000f; } } { return (bool)1; } IL_000f: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = V_0; NullCheck(L_4); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5; L_5 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_4); V_0 = L_5; } IL_0016: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = V_0; if (L_6) { goto IL_0004; } } { return (bool)0; } } // System.Boolean System.Xml.XmlDocument::CanInsertAfter(System.Xml.XmlNode,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_CanInsertAfter_m0041AFD890E382A6F754EE57E24E9BAAB764E8B5 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_newChild, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_refChild, const RuntimeMethod* method) { int32_t V_0 = 0; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___1_refChild; if (L_0) { goto IL_000b; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1; L_1 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_LastChild() */, __this); ___1_refChild = L_1; } IL_000b: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___1_refChild; if (L_2) { goto IL_0010; } } { return (bool)1; } IL_0010: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___0_newChild; NullCheck(L_3); int32_t L_4; L_4 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_3); V_0 = L_4; int32_t L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)1))) { goto IL_0053; } } { int32_t L_6 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, 7))) { case 0: { goto IL_0045; } case 1: { goto IL_0045; } case 2: { goto IL_0065; } case 3: { goto IL_0047; } case 4: { goto IL_0065; } case 5: { goto IL_0065; } case 6: { goto IL_0045; } case 7: { goto IL_0045; } } } { goto IL_0065; } IL_0045: { return (bool)1; } IL_0047: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = ___1_refChild; bool L_8; L_8 = XmlDocument_HasNodeTypeInPrevSiblings_m62FDB4009BEF04A3D1A291575A005966E0E21AC3(__this, 1, L_7, NULL); return (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0); } IL_0053: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = ___1_refChild; NullCheck(L_9); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10; L_10 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_9); bool L_11; L_11 = XmlDocument_HasNodeTypeInNextSiblings_mD65FA58F532B9875E1BB7AE149C98E608BAE44A4(__this, ((int32_t)10), L_10, NULL); return (bool)((((int32_t)L_11) == ((int32_t)0))? 1 : 0); } IL_0065: { return (bool)0; } } // System.Void System.Xml.XmlDocument::SetDefaultNamespace(System.String,System.String,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_SetDefaultNamespace_m29601B584036272B65DB2F31749975711A68E245 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t** ___2_namespaceURI, const RuntimeMethod* method) { { String_t* L_0 = ___0_prefix; String_t* L_1 = __this->___strXmlns_28; bool L_2; L_2 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_0, L_1, NULL); if (L_2) { goto IL_0024; } } { String_t* L_3 = ___0_prefix; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if (L_4) { goto IL_002d; } } { String_t* L_5 = ___1_localName; String_t* L_6 = __this->___strXmlns_28; bool L_7; L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_5, L_6, NULL); if (!L_7) { goto IL_002d; } } IL_0024: { String_t** L_8 = ___2_namespaceURI; String_t* L_9 = __this->___strReservedXmlns_35; *((RuntimeObject**)L_8) = (RuntimeObject*)L_9; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_8, (void*)(RuntimeObject*)L_9); return; } IL_002d: { String_t* L_10 = ___0_prefix; String_t* L_11 = __this->___strXml_29; bool L_12; L_12 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_10, L_11, NULL); if (!L_12) { goto IL_0043; } } { String_t** L_13 = ___2_namespaceURI; String_t* L_14 = __this->___strReservedXml_36; *((RuntimeObject**)L_13) = (RuntimeObject*)L_14; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_13, (void*)(RuntimeObject*)L_14); } IL_0043: { return; } } // System.Xml.XmlCDataSection System.Xml.XmlDocument::CreateCDataSection(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* XmlDocument_CreateCDataSection_m7071FBB41EB02D0C2964272D36838B500B8BE357 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_data, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { __this->___fCDataNodesPresent_18 = (bool)1; String_t* L_0 = ___0_data; XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* L_1 = (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA*)il2cpp_codegen_object_new(XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA_il2cpp_TypeInfo_var); NullCheck(L_1); XmlCDataSection__ctor_m19CEC86EA9EFC8153A1293493E0B3E9EF89BE2BD(L_1, L_0, __this, NULL); return L_1; } } // System.Xml.XmlComment System.Xml.XmlDocument::CreateComment(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* XmlDocument_CreateComment_mB58797474A14187D0236A63008EAC6C438521186 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_data, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_data; XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* L_1 = (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9*)il2cpp_codegen_object_new(XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9_il2cpp_TypeInfo_var); NullCheck(L_1); XmlComment__ctor_m74C0E3B050353E2B32B5218DF01F8EB8874BD819(L_1, L_0, __this, NULL); return L_1; } } // System.Xml.XmlDocumentType System.Xml.XmlDocument::CreateDocumentType(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* XmlDocument_CreateDocumentType_mFAE023ACF5683AEE94A9065D5FEAFFF354FC37BB (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_name, String_t* ___1_publicId, String_t* ___2_systemId, String_t* ___3_internalSubset, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_name; String_t* L_1 = ___1_publicId; String_t* L_2 = ___2_systemId; String_t* L_3 = ___3_internalSubset; XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_4 = (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E*)il2cpp_codegen_object_new(XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E_il2cpp_TypeInfo_var); NullCheck(L_4); XmlDocumentType__ctor_m80A9D98B728A54F81611F785B3C6CB5E29D47344(L_4, L_0, L_1, L_2, L_3, __this, NULL); return L_4; } } // System.Xml.XmlDocumentFragment System.Xml.XmlDocument::CreateDocumentFragment() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* XmlDocument_CreateDocumentFragment_mB628A6B883A0F50FF0D5991A923CBF52D9B9DA99 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* L_0 = (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD*)il2cpp_codegen_object_new(XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD_il2cpp_TypeInfo_var); NullCheck(L_0); XmlDocumentFragment__ctor_m5DFF7FEE2576ED62871EDD2EE4B03279630D1BC2(L_0, __this, NULL); return L_0; } } // System.Void System.Xml.XmlDocument::AddDefaultAttributes(System.Xml.XmlElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_AddDefaultAttributes_mD1EF2D680D9891D533CBB7493E080240528F108C (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___0_elem, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* V_0 = NULL; SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* V_1 = NULL; RuntimeObject* V_2 = NULL; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* V_3 = NULL; String_t* V_4 = NULL; String_t* V_5 = NULL; String_t* V_6 = NULL; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_7 = NULL; { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0; L_0 = XmlDocument_get_DtdSchemaInfo_mF52E9F32AB9D1914DBC6D91A8277AE843B6E1E6E_inline(__this, NULL); V_0 = L_0; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1 = ___0_elem; SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_2; L_2 = XmlDocument_GetSchemaElementDecl_m8096E8CA8850D889EF774A9DC2596486DFBA00A6(__this, L_1, NULL); V_1 = L_2; SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_3 = V_1; if (!L_3) { goto IL_00bb; } } { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_4 = V_1; NullCheck(L_4); Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* L_5; L_5 = SchemaElementDecl_get_AttDefs_m2E3114DFAB8D978CBFAA6E31C2CD18A9AA9DAC50_inline(L_4, NULL); if (!L_5) { goto IL_00bb; } } { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_6 = V_1; NullCheck(L_6); Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* L_7; L_7 = SchemaElementDecl_get_AttDefs_m2E3114DFAB8D978CBFAA6E31C2CD18A9AA9DAC50_inline(L_6, NULL); NullCheck(L_7); Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 L_8; L_8 = Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80(L_7, Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80_RuntimeMethod_var); Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 L_9 = L_8; RuntimeObject* L_10 = Box(Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717_il2cpp_TypeInfo_var, &L_9); V_2 = (RuntimeObject*)L_10; goto IL_00b0; } IL_0033: { RuntimeObject* L_11 = V_2; NullCheck(L_11); RuntimeObject* L_12; L_12 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var, L_11); V_3 = ((SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553*)CastclassSealed((RuntimeObject*)L_12, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var)); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_13 = V_3; NullCheck(L_13); int32_t L_14; L_14 = SchemaDeclBase_get_Presence_mCF2610A186758B71CAFF2FC2586D9B604C2AE539_inline(L_13, NULL); if (!L_14) { goto IL_0050; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_15 = V_3; NullCheck(L_15); int32_t L_16; L_16 = SchemaDeclBase_get_Presence_mCF2610A186758B71CAFF2FC2586D9B604C2AE539_inline(L_15, NULL); if ((!(((uint32_t)L_16) == ((uint32_t)3)))) { goto IL_00b0; } } IL_0050: { String_t* L_17 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; V_4 = L_17; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_18 = V_3; NullCheck(L_18); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_19; L_19 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_18, NULL); NullCheck(L_19); String_t* L_20; L_20 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_19, NULL); V_5 = L_20; String_t* L_21 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; V_6 = L_21; SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_22 = V_0; NullCheck(L_22); int32_t L_23; L_23 = SchemaInfo_get_SchemaType_m44BE9221A63C4D13AE45A2054A875B533518B0FC_inline(L_22, NULL); if ((!(((uint32_t)L_23) == ((uint32_t)1)))) { goto IL_0083; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_24 = V_3; NullCheck(L_24); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_25; L_25 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_24, NULL); NullCheck(L_25); String_t* L_26; L_26 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_25, NULL); V_4 = L_26; goto IL_0098; } IL_0083: { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_27 = V_3; NullCheck(L_27); String_t* L_28; L_28 = SchemaDeclBase_get_Prefix_mE72A285F12958A0C40F8CDEDA2838B3A09233455(L_27, NULL); V_4 = L_28; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_29 = V_3; NullCheck(L_29); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_30; L_30 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_29, NULL); NullCheck(L_30); String_t* L_31; L_31 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_30, NULL); V_6 = L_31; } IL_0098: { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_32 = V_3; String_t* L_33 = V_4; String_t* L_34 = V_5; String_t* L_35 = V_6; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_36; L_36 = XmlDocument_PrepareDefaultAttribute_mB209B5E427A134931A258026446829B816E9A526(__this, L_32, L_33, L_34, L_35, NULL); V_7 = L_36; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_37 = ___0_elem; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_38 = V_7; NullCheck(L_37); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_39; L_39 = VirtualFuncInvoker1< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* >::Invoke(44 /* System.Xml.XmlAttribute System.Xml.XmlElement::SetAttributeNode(System.Xml.XmlAttribute) */, L_37, L_38); } IL_00b0: { RuntimeObject* L_40 = V_2; NullCheck(L_40); bool L_41; L_41 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_40); if (L_41) { goto IL_0033; } } IL_00bb: { return; } } // System.Xml.Schema.SchemaElementDecl System.Xml.XmlDocument::GetSchemaElementDecl(System.Xml.XmlElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* XmlDocument_GetSchemaElementDecl_m8096E8CA8850D889EF774A9DC2596486DFBA00A6 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___0_elem, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* V_0 = NULL; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_1 = NULL; SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* V_2 = NULL; String_t* G_B3_0 = NULL; String_t* G_B2_0 = NULL; String_t* G_B4_0 = NULL; String_t* G_B4_1 = NULL; { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0; L_0 = XmlDocument_get_DtdSchemaInfo_mF52E9F32AB9D1914DBC6D91A8277AE843B6E1E6E_inline(__this, NULL); V_0 = L_0; SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_1 = V_0; if (!L_1) { goto IL_003f; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_2 = ___0_elem; NullCheck(L_2); String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_2); SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_4 = V_0; NullCheck(L_4); int32_t L_5; L_5 = SchemaInfo_get_SchemaType_m44BE9221A63C4D13AE45A2054A875B533518B0FC_inline(L_4, NULL); G_B2_0 = L_3; if ((((int32_t)L_5) == ((int32_t)1))) { G_B3_0 = L_3; goto IL_0021; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_6 = ___0_elem; NullCheck(L_6); String_t* L_7; L_7 = VirtualFuncInvoker0< String_t* >::Invoke(28 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_6); G_B4_0 = L_7; G_B4_1 = G_B2_0; goto IL_0027; } IL_0021: { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_8 = ___0_elem; NullCheck(L_8); String_t* L_9; L_9 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, L_8); G_B4_0 = L_9; G_B4_1 = G_B3_0; } IL_0027: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_10 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_10); XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_10, G_B4_1, G_B4_0, NULL); V_1 = L_10; SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_11 = V_0; NullCheck(L_11); Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* L_12; L_12 = SchemaInfo_get_ElementDecls_m238E5681BECA397E7010F7BEFBAC2D0FBEC43BD7_inline(L_11, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_13 = V_1; NullCheck(L_12); bool L_14; L_14 = Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A(L_12, L_13, (&V_2), Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A_RuntimeMethod_var); if (!L_14) { goto IL_003f; } } { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_15 = V_2; return L_15; } IL_003f: { return (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD*)NULL; } } // System.Xml.XmlAttribute System.Xml.XmlDocument::PrepareDefaultAttribute(System.Xml.Schema.SchemaAttDef,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlDocument_PrepareDefaultAttribute_mB209B5E427A134931A258026446829B816E9A526 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___0_attdef, String_t* ___1_attrPrefix, String_t* ___2_attrLocalname, String_t* ___3_attrNamespaceURI, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* V_0 = NULL; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* G_B2_0 = NULL; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* G_B1_0 = NULL; { String_t* L_0 = ___1_attrPrefix; String_t* L_1 = ___2_attrLocalname; XmlDocument_SetDefaultNamespace_m29601B584036272B65DB2F31749975711A68E245(__this, L_0, L_1, (&___3_attrNamespaceURI), NULL); String_t* L_2 = ___1_attrPrefix; String_t* L_3 = ___2_attrLocalname; String_t* L_4 = ___3_attrNamespaceURI; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_5; L_5 = VirtualFuncInvoker3< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t*, String_t* >::Invoke(56 /* System.Xml.XmlAttribute System.Xml.XmlDocument::CreateDefaultAttribute(System.String,System.String,System.String) */, __this, L_2, L_3, L_4); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_6 = L_5; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_7 = ___0_attdef; NullCheck(L_7); String_t* L_8; L_8 = SchemaDeclBase_get_DefaultValueRaw_m794A7DCEA1AE2B3B4D71DB45B913FCAA16657936(L_7, NULL); NullCheck(L_6); VirtualActionInvoker1< String_t* >::Invoke(33 /* System.Void System.Xml.XmlNode::set_InnerXml(System.String) */, L_6, L_8); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_9 = L_6; V_0 = ((XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC*)IsInstClass((RuntimeObject*)L_9, XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var)); XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_10 = V_0; G_B1_0 = L_9; if (!L_10) { G_B2_0 = L_9; goto IL_0031; } } { XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_11 = V_0; NullCheck(L_11); XmlUnspecifiedAttribute_SetSpecified_m1CF67FF3E90E62DC5B0983B8DE91B6E95228509B_inline(L_11, (bool)0, NULL); G_B2_0 = G_B1_0; } IL_0031: { return G_B2_0; } } // System.Xml.XmlEntityReference System.Xml.XmlDocument::CreateEntityReference(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* XmlDocument_CreateEntityReference_m50AB66E331A78B8F0CC456C076E3E2E0B377F552 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_name, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_name; XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_1 = (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*)il2cpp_codegen_object_new(XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var); NullCheck(L_1); XmlEntityReference__ctor_m7AAF0A5672B04060ECEAFAB3DF7E93DA8A7B6A94(L_1, L_0, __this, NULL); return L_1; } } // System.Xml.XmlProcessingInstruction System.Xml.XmlDocument::CreateProcessingInstruction(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* XmlDocument_CreateProcessingInstruction_mBD46269C3849A35D68DF9D09ECE2EA154206EB82 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_target, String_t* ___1_data, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_target; String_t* L_1 = ___1_data; XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* L_2 = (XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3*)il2cpp_codegen_object_new(XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3_il2cpp_TypeInfo_var); NullCheck(L_2); XmlProcessingInstruction__ctor_m80AB71B3DDC0E1164705B676AD06037ACEB2FD67(L_2, L_0, L_1, __this, NULL); return L_2; } } // System.Xml.XmlDeclaration System.Xml.XmlDocument::CreateXmlDeclaration(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* XmlDocument_CreateXmlDeclaration_m6937F935710563ED28D567D05E34E081D8098E4A (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_version, String_t* ___1_encoding, String_t* ___2_standalone, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_version; String_t* L_1 = ___1_encoding; String_t* L_2 = ___2_standalone; XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_3 = (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79*)il2cpp_codegen_object_new(XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79_il2cpp_TypeInfo_var); NullCheck(L_3); XmlDeclaration__ctor_mBAEA7104B9DA9F3DAE632B9063BF96BF6A40B116(L_3, L_0, L_1, L_2, __this, NULL); return L_3; } } // System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* XmlDocument_CreateTextNode_m3663B3E620500B81989742CDB40A79568DF88430 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_text, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_text; XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_1 = (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*)il2cpp_codegen_object_new(XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_il2cpp_TypeInfo_var); NullCheck(L_1); XmlText__ctor_m8FFB8DDBB2C9013F10FD94A1573DCF6A2F104059(L_1, L_0, __this, NULL); return L_1; } } // System.Xml.XmlSignificantWhitespace System.Xml.XmlDocument::CreateSignificantWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* XmlDocument_CreateSignificantWhitespace_mF1237E2577D67F962082483A874C0C8F055D1596 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_text, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_text; XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* L_1 = (XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE*)il2cpp_codegen_object_new(XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE_il2cpp_TypeInfo_var); NullCheck(L_1); XmlSignificantWhitespace__ctor_mCE8AE4FC827464B5A5A54191D5D62E2AF41E078F(L_1, L_0, __this, NULL); return L_1; } } // System.Xml.XmlWhitespace System.Xml.XmlDocument::CreateWhitespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* XmlDocument_CreateWhitespace_m25982FFC1D64190DEFBF6DA5C2069D021464DFEC (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_text, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_text; XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* L_1 = (XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24*)il2cpp_codegen_object_new(XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24_il2cpp_TypeInfo_var); NullCheck(L_1); XmlWhitespace__ctor_m95E6CA1AFEECB5C1B3EDDAA039864BDF315FD0AE(L_1, L_0, __this, NULL); return L_1; } } // System.Xml.XmlNode System.Xml.XmlDocument::ImportNodeInternal(System.Xml.XmlNode,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocument_ImportNodeInternal_m7E70DD674E7D0CB39DC6F14B5E806AE284E9C17B (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, bool ___1_deep, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* V_1 = NULL; XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; { V_0 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_node; if (L_0) { goto IL_0015; } } { String_t* L_1; L_1 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3FED9B982102FDD475F39E2487268020045A46E)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_2); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, L_1, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_ImportNodeInternal_m7E70DD674E7D0CB39DC6F14B5E806AE284E9C17B_RuntimeMethod_var))); } IL_0015: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___0_node; NullCheck(L_3); int32_t L_4; L_4 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_3); V_3 = L_4; int32_t L_5 = V_3; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_5, 1))) { case 0: { goto IL_006d; } case 1: { goto IL_00a2; } case 2: { goto IL_00c9; } case 3: { goto IL_012a; } case 4: { goto IL_0179; } case 5: { goto IL_01a6; } case 6: { goto IL_00ed; } case 7: { goto IL_00db; } case 8: { goto IL_01a6; } case 9: { goto IL_013c; } case 10: { goto IL_0164; } case 11: { goto IL_01a6; } case 12: { goto IL_0188; } case 13: { goto IL_0197; } case 14: { goto IL_01a6; } case 15: { goto IL_01a6; } case 16: { goto IL_0105; } } } { goto IL_01a6; } IL_006d: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = ___0_node; NullCheck(L_6); String_t* L_7; L_7 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, L_6); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = ___0_node; NullCheck(L_8); String_t* L_9; L_9 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_8); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = ___0_node; NullCheck(L_10); String_t* L_11; L_11 = VirtualFuncInvoker0< String_t* >::Invoke(28 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_10); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_12; L_12 = VirtualFuncInvoker3< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*, String_t*, String_t*, String_t* >::Invoke(57 /* System.Xml.XmlElement System.Xml.XmlDocument::CreateElement(System.String,System.String,System.String) */, __this, L_7, L_9, L_11); V_0 = L_12; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_13 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14 = V_0; XmlDocument_ImportAttributes_mD5D3157004F6C1B559E3FFF09F2D5FBBF916CC0A(__this, L_13, L_14, NULL); bool L_15 = ___1_deep; if (!L_15) { goto IL_01d5; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_16 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_17 = V_0; bool L_18 = ___1_deep; XmlDocument_ImportChildren_mAB48DB0FA4C4964B00F4EC316E3942CE7AAB092B(__this, L_16, L_17, L_18, NULL); goto IL_01d5; } IL_00a2: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_19 = ___0_node; NullCheck(L_19); String_t* L_20; L_20 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, L_19); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_21 = ___0_node; NullCheck(L_21); String_t* L_22; L_22 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_21); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_23 = ___0_node; NullCheck(L_23); String_t* L_24; L_24 = VirtualFuncInvoker0< String_t* >::Invoke(28 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_23); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_25; L_25 = VirtualFuncInvoker3< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t*, String_t* >::Invoke(55 /* System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String,System.String,System.String) */, __this, L_20, L_22, L_24); V_0 = L_25; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_26 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_27 = V_0; XmlDocument_ImportChildren_mAB48DB0FA4C4964B00F4EC316E3942CE7AAB092B(__this, L_26, L_27, (bool)1, NULL); goto IL_01d5; } IL_00c9: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_28 = ___0_node; NullCheck(L_28); String_t* L_29; L_29 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_28); XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_30; L_30 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(52 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, __this, L_29); V_0 = L_30; goto IL_01d5; } IL_00db: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_31 = ___0_node; NullCheck(L_31); String_t* L_32; L_32 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_31); XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* L_33; L_33 = VirtualFuncInvoker1< XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9*, String_t* >::Invoke(46 /* System.Xml.XmlComment System.Xml.XmlDocument::CreateComment(System.String) */, __this, L_32); V_0 = L_33; goto IL_01d5; } IL_00ed: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_34 = ___0_node; NullCheck(L_34); String_t* L_35; L_35 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_34); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_36 = ___0_node; NullCheck(L_36); String_t* L_37; L_37 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_36); XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* L_38; L_38 = VirtualFuncInvoker2< XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3*, String_t*, String_t* >::Invoke(50 /* System.Xml.XmlProcessingInstruction System.Xml.XmlDocument::CreateProcessingInstruction(System.String,System.String) */, __this, L_35, L_37); V_0 = L_38; goto IL_01d5; } IL_0105: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_39 = ___0_node; V_1 = ((XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79*)CastclassClass((RuntimeObject*)L_39, XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79_il2cpp_TypeInfo_var)); XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_40 = V_1; NullCheck(L_40); String_t* L_41; L_41 = XmlDeclaration_get_Version_m50261F1E46B645E69A99504F494FFD3BF915E633_inline(L_40, NULL); XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_42 = V_1; NullCheck(L_42); String_t* L_43; L_43 = XmlDeclaration_get_Encoding_m09D89DCD8457C62A6E49B9506A65A271DDBD011F_inline(L_42, NULL); XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_44 = V_1; NullCheck(L_44); String_t* L_45; L_45 = XmlDeclaration_get_Standalone_m46CC1833EE3C478318FF865E98A6899E440DDC6C_inline(L_44, NULL); XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_46; L_46 = VirtualFuncInvoker3< XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79*, String_t*, String_t*, String_t* >::Invoke(51 /* System.Xml.XmlDeclaration System.Xml.XmlDocument::CreateXmlDeclaration(System.String,System.String,System.String) */, __this, L_41, L_43, L_45); V_0 = L_46; goto IL_01d5; } IL_012a: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_47 = ___0_node; NullCheck(L_47); String_t* L_48; L_48 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_47); XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* L_49; L_49 = VirtualFuncInvoker1< XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA*, String_t* >::Invoke(45 /* System.Xml.XmlCDataSection System.Xml.XmlDocument::CreateCDataSection(System.String) */, __this, L_48); V_0 = L_49; goto IL_01d5; } IL_013c: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_50 = ___0_node; V_2 = ((XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E*)CastclassClass((RuntimeObject*)L_50, XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E_il2cpp_TypeInfo_var)); XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_51 = V_2; NullCheck(L_51); String_t* L_52; L_52 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_51); XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_53 = V_2; NullCheck(L_53); String_t* L_54; L_54 = XmlDocumentType_get_PublicId_m9E81FAF2D0AA9DC847D118813CBEB085F0CE1955_inline(L_53, NULL); XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_55 = V_2; NullCheck(L_55); String_t* L_56; L_56 = XmlDocumentType_get_SystemId_m17B225C509C0F5A4ECBB838AA81D15DED4016909_inline(L_55, NULL); XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_57 = V_2; NullCheck(L_57); String_t* L_58; L_58 = XmlDocumentType_get_InternalSubset_mBD8D585ED0401EE1FC02F6FD5445E2109B083FEF_inline(L_57, NULL); XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_59; L_59 = VirtualFuncInvoker4< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E*, String_t*, String_t*, String_t*, String_t* >::Invoke(47 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::CreateDocumentType(System.String,System.String,System.String,System.String) */, __this, L_52, L_54, L_56, L_58); V_0 = L_59; goto IL_01d5; } IL_0164: { XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* L_60; L_60 = VirtualFuncInvoker0< XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* >::Invoke(48 /* System.Xml.XmlDocumentFragment System.Xml.XmlDocument::CreateDocumentFragment() */, __this); V_0 = L_60; bool L_61 = ___1_deep; if (!L_61) { goto IL_01d5; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_62 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_63 = V_0; bool L_64 = ___1_deep; XmlDocument_ImportChildren_mAB48DB0FA4C4964B00F4EC316E3942CE7AAB092B(__this, L_62, L_63, L_64, NULL); goto IL_01d5; } IL_0179: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_65 = ___0_node; NullCheck(L_65); String_t* L_66; L_66 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_65); XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_67; L_67 = VirtualFuncInvoker1< XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*, String_t* >::Invoke(49 /* System.Xml.XmlEntityReference System.Xml.XmlDocument::CreateEntityReference(System.String) */, __this, L_66); V_0 = L_67; goto IL_01d5; } IL_0188: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_68 = ___0_node; NullCheck(L_68); String_t* L_69; L_69 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_68); XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* L_70; L_70 = VirtualFuncInvoker1< XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24*, String_t* >::Invoke(54 /* System.Xml.XmlWhitespace System.Xml.XmlDocument::CreateWhitespace(System.String) */, __this, L_69); V_0 = L_70; goto IL_01d5; } IL_0197: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_71 = ___0_node; NullCheck(L_71); String_t* L_72; L_72 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_71); XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* L_73; L_73 = VirtualFuncInvoker1< XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE*, String_t* >::Invoke(53 /* System.Xml.XmlSignificantWhitespace System.Xml.XmlDocument::CreateSignificantWhitespace(System.String) */, __this, L_72); V_0 = L_73; goto IL_01d5; } IL_01a6: { il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var))); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_74; L_74 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL); String_t* L_75; L_75 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7180DA204588CF41B56FA236B1DEFF0D3CB61C60)), NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_76 = ___0_node; NullCheck(L_76); int32_t L_77; L_77 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_76); V_4 = L_77; Il2CppFakeBox L_78(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var)), (&V_4)); String_t* L_79; L_79 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_78), NULL); String_t* L_80; L_80 = String_Format_m3844098E7C18576D263AAF62F69BE5C70BF9A744(L_74, L_75, L_79, NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_81 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_81); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_81, L_80, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_81, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_ImportNodeInternal_m7E70DD674E7D0CB39DC6F14B5E806AE284E9C17B_RuntimeMethod_var))); } IL_01d5: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_82 = V_0; return L_82; } } // System.Void System.Xml.XmlDocument::ImportAttributes(System.Xml.XmlNode,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_ImportAttributes_mD5D3157004F6C1B559E3FFF09F2D5FBBF916CC0A (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_fromElem, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_toElem, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_fromElem; NullCheck(L_0); XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_1; L_1 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(13 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_0); NullCheck(L_1); int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, L_1); V_0 = L_2; V_1 = 0; goto IL_0046; } IL_0010: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___0_fromElem; NullCheck(L_3); XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_4; L_4 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(13 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_3); int32_t L_5 = V_1; NullCheck(L_4); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_6; L_6 = XmlAttributeCollection_get_ItemOf_m8F968C39C03DFEB9998B2122F4A26B76B1DB2EDB(L_4, L_5, NULL); NullCheck(L_6); bool L_7; L_7 = VirtualFuncInvoker0< bool >::Invoke(43 /* System.Boolean System.Xml.XmlAttribute::get_Specified() */, L_6); if (!L_7) { goto IL_0042; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = ___1_toElem; NullCheck(L_8); XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_9; L_9 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(13 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_8); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = ___0_fromElem; NullCheck(L_10); XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_11; L_11 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(13 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_10); int32_t L_12 = V_1; NullCheck(L_11); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_13; L_13 = XmlAttributeCollection_get_ItemOf_m8F968C39C03DFEB9998B2122F4A26B76B1DB2EDB(L_11, L_12, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14; L_14 = XmlDocument_ImportNodeInternal_m7E70DD674E7D0CB39DC6F14B5E806AE284E9C17B(__this, L_13, (bool)1, NULL); NullCheck(L_9); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15; L_15 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(6 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::SetNamedItem(System.Xml.XmlNode) */, L_9, L_14); } IL_0042: { int32_t L_16 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1)); } IL_0046: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_0010; } } { return; } } // System.Void System.Xml.XmlDocument::ImportChildren(System.Xml.XmlNode,System.Xml.XmlNode,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_ImportChildren_mAB48DB0FA4C4964B00F4EC316E3942CE7AAB092B (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_fromNode, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_toNode, bool ___2_deep, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_fromNode; NullCheck(L_0); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1; L_1 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_0); V_0 = L_1; goto IL_001f; } IL_0009: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___1_toNode; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = V_0; bool L_4 = ___2_deep; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5; L_5 = XmlDocument_ImportNodeInternal_m7E70DD674E7D0CB39DC6F14B5E806AE284E9C17B(__this, L_3, L_4, NULL); NullCheck(L_2); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6; L_6 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(21 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChild(System.Xml.XmlNode) */, L_2, L_5); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = V_0; NullCheck(L_7); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8; L_8 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_7); V_0 = L_8; } IL_001f: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = V_0; if (L_9) { goto IL_0009; } } { return; } } // System.Xml.XmlNameTable System.Xml.XmlDocument::get_NameTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* L_0 = __this->___implementation_1; NullCheck(L_0); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1; L_1 = XmlImplementation_get_NameTable_m8951702F59619310BD4A9528D2FF471352518CDF_inline(L_0, NULL); return L_1; } } // System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlDocument_CreateAttribute_m06FB2FB42A21F9B9D62EA9379946EF1099929472 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_namespaceURI, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_prefix; String_t* L_1 = ___1_localName; String_t* L_2 = ___2_namespaceURI; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_3; L_3 = XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28(__this, L_0, L_1, L_2, (RuntimeObject*)NULL, NULL); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_4 = (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)il2cpp_codegen_object_new(XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); NullCheck(L_4); XmlAttribute__ctor_m5043E9D85560FDFE80DED6438F97110608F1393B(L_4, L_3, __this, NULL); return L_4; } } // System.Xml.XmlAttribute System.Xml.XmlDocument::CreateDefaultAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlDocument_CreateDefaultAttribute_m20A4D18805DACE680BBCA588B77CADFFA64F37EE (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_namespaceURI, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_prefix; String_t* L_1 = ___1_localName; String_t* L_2 = ___2_namespaceURI; XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_3 = (XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC*)il2cpp_codegen_object_new(XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var); NullCheck(L_3); XmlUnspecifiedAttribute__ctor_m44D3E93A1FE83F8B631B4BE61CC2EA76865E36A6(L_3, L_0, L_1, L_2, __this, NULL); return L_3; } } // System.Xml.XmlElement System.Xml.XmlDocument::CreateElement(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* XmlDocument_CreateElement_mC8DB502E909E778655A1CC10E5AF422E551DC42C (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_namespaceURI, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_0 = NULL; { String_t* L_0 = ___0_prefix; String_t* L_1 = ___1_localName; String_t* L_2 = ___2_namespaceURI; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_3; L_3 = XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916(__this, L_0, L_1, L_2, (RuntimeObject*)NULL, NULL); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_4 = (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)il2cpp_codegen_object_new(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var); NullCheck(L_4); XmlElement__ctor_m44A8D5841FC2F1A5ACC6A03DD0ACA9AB37300588(L_4, L_3, (bool)1, __this, NULL); V_0 = L_4; bool L_5; L_5 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(__this, NULL); if (L_5) { goto IL_0021; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_6 = V_0; XmlDocument_AddDefaultAttributes_mD1EF2D680D9891D533CBB7493E080240528F108C(__this, L_6, NULL); } IL_0021: { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_7 = V_0; return L_7; } } // System.Boolean System.Xml.XmlDocument::get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_get_IsReadOnly_m52B4DDF8C35F7E1B847720CD6CFA44F0FEFFBDBE (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Xml.XmlNamedNodeMap System.Xml.XmlDocument::get_Entities() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* XmlDocument_get_Entities_m72C0183C637A5D71BB38433D1D4CD9A4E87D3A80 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_0 = __this->___entities_4; if (L_0) { goto IL_0014; } } { XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_1 = (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)il2cpp_codegen_object_new(XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C_il2cpp_TypeInfo_var); NullCheck(L_1); XmlNamedNodeMap__ctor_mA91F36D1CB05380C6F5E60F31062962B6DE2FF08(L_1, __this, NULL); __this->___entities_4 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___entities_4), (void*)L_1); } IL_0014: { XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_2 = __this->___entities_4; return L_2; } } // System.Void System.Xml.XmlDocument::set_Entities(System.Xml.XmlNamedNodeMap) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_set_Entities_mBBF7C97889080847540A0F31B1751726E81FF756 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* ___0_value, const RuntimeMethod* method) { { XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_0 = ___0_value; __this->___entities_4 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___entities_4), (void*)L_0); return; } } // System.Boolean System.Xml.XmlDocument::get_IsLoading() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___isLoading_20; return L_0; } } // System.Void System.Xml.XmlDocument::set_IsLoading(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___isLoading_20 = L_0; return; } } // System.Boolean System.Xml.XmlDocument::get_ActualLoadingStatus() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocument_get_ActualLoadingStatus_m63B8F5AD9C82FEF1D9EFA47926E4AABED6CD9D99 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___actualLoadingStatus_10; return L_0; } } // System.Xml.XmlTextReader System.Xml.XmlDocument::SetupReader(System.Xml.XmlTextReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* XmlDocument_SetupReader_mDBF0C1ECB089DCC5D892E790ED2ABBD794A4824E (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* ___0_tr, const RuntimeMethod* method) { { XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_0 = ___0_tr; NullCheck(L_0); XmlTextReader_set_XmlValidatingReaderCompatibilityMode_m485400A0FF8B647B0BA4D98CB46354AC258B7C00(L_0, (bool)1, NULL); XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_1 = ___0_tr; NullCheck(L_1); XmlTextReader_set_EntityHandling_m577ABFEC373C39B83965619901EF1492C950C3BF(L_1, 2, NULL); bool L_2; L_2 = XmlDocument_get_HasSetResolver_m7CBB11C7E27D95CD697F177B965CEB2E1E71358D_inline(__this, NULL); if (!L_2) { goto IL_0022; } } { XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_3 = ___0_tr; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_4; L_4 = XmlDocument_GetResolver_m0B1F443F2DF5510E0733052D42BC984CB83F9119_inline(__this, NULL); NullCheck(L_3); XmlTextReader_set_XmlResolver_mF617E3EC08480FE4693FF9A473BB9528126FCCDA(L_3, L_4, NULL); } IL_0022: { XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_5 = ___0_tr; return L_5; } } // System.Void System.Xml.XmlDocument::Load(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_Load_m719C7C5EAD9264BA1A5A229E2CC3AE0FDD1CA8CE (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___0_reader, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_003d: {// begin finally (depth: 1) XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(__this, (bool)0, NULL); __this->___actualLoadingStatus_10 = (bool)0; __this->___reportValidity_9 = (bool)1; return; }// end finally (depth: 1) }); try {// begin try (depth: 1) XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(__this, (bool)1, NULL); __this->___actualLoadingStatus_10 = (bool)1; VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlNode::RemoveAll() */, __this); __this->___fEntRefNodesPresent_17 = (bool)0; __this->___fCDataNodesPresent_18 = (bool)0; __this->___reportValidity_9 = (bool)1; XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* L_0 = (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D*)il2cpp_codegen_object_new(XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var); NullCheck(L_0); XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050(L_0, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = ___0_reader; bool L_2 = __this->___preserveWhitespace_19; NullCheck(L_0); XmlLoader_Load_m3B85C836D8C6DE323B85E868DED6E8E36D56C124(L_0, __this, L_1, L_2, NULL); goto IL_0053; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0053: { return; } } // System.Void System.Xml.XmlDocument::LoadXml(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_LoadXml_m6F86E243203A6845F8BB445E9AE234D3913A2AAE (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_xml, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* V_0 = NULL; { String_t* L_0 = ___0_xml; StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8* L_1 = (StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8*)il2cpp_codegen_object_new(StringReader_t1A336148FF22A9584E759A9D720CC96C23E35DD8_il2cpp_TypeInfo_var); NullCheck(L_1); StringReader__ctor_m72556EC1062F49E05CF41B0825AC7FA2DB2A81C0(L_1, L_0, NULL); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2; L_2 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(__this, NULL); XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_3 = (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)il2cpp_codegen_object_new(XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var); NullCheck(L_3); XmlTextReader__ctor_m71F11D57A03AFBB76268D2696DADFCAC582C0403(L_3, L_1, L_2, NULL); XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_4; L_4 = XmlDocument_SetupReader_mDBF0C1ECB089DCC5D892E790ED2ABBD794A4824E(__this, L_3, NULL); V_0 = L_4; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0021: {// begin finally (depth: 1) XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_5 = V_0; NullCheck(L_5); VirtualActionInvoker0::Invoke(22 /* System.Void System.Xml.XmlReader::Close() */, L_5); return; }// end finally (depth: 1) }); try {// begin try (depth: 1) XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_6 = V_0; VirtualActionInvoker1< XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* >::Invoke(58 /* System.Void System.Xml.XmlDocument::Load(System.Xml.XmlReader) */, __this, L_6); goto IL_0028; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0028: { return; } } // System.Void System.Xml.XmlDocument::set_InnerXml(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_set_InnerXml_mD668393952C10057FEA93AFC59EA3673D35E9313 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; VirtualActionInvoker1< String_t* >::Invoke(59 /* System.Void System.Xml.XmlDocument::LoadXml(System.String) */, __this, L_0); return; } } // System.Xml.XmlNodeChangedEventArgs System.Xml.XmlDocument::GetEventArgs(System.Xml.XmlNode,System.Xml.XmlNode,System.Xml.XmlNode,System.String,System.String,System.Xml.XmlNodeChangedAction) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* XmlDocument_GetEventArgs_mD80CDE5C049719A7D136EE158AB0BE13FA7EC2CD (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_oldParent, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___2_newParent, String_t* ___3_oldValue, String_t* ___4_newValue, int32_t ___5_action, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { __this->___reportValidity_9 = (bool)0; int32_t L_0 = ___5_action; switch (L_0) { case 0: { goto IL_001c; } case 1: { goto IL_002e; } case 2: { goto IL_0040; } } } { goto IL_0052; } IL_001c: { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_1 = __this->___onNodeInsertingDelegate_11; if (L_1) { goto IL_0052; } } { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_2 = __this->___onNodeInsertedDelegate_12; if (L_2) { goto IL_0052; } } { return (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*)NULL; } IL_002e: { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_3 = __this->___onNodeRemovingDelegate_13; if (L_3) { goto IL_0052; } } { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_4 = __this->___onNodeRemovedDelegate_14; if (L_4) { goto IL_0052; } } { return (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*)NULL; } IL_0040: { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_5 = __this->___onNodeChangingDelegate_15; if (L_5) { goto IL_0052; } } { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_6 = __this->___onNodeChangedDelegate_16; if (L_6) { goto IL_0052; } } { return (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*)NULL; } IL_0052: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = ___1_oldParent; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = ___2_newParent; String_t* L_10 = ___3_oldValue; String_t* L_11 = ___4_newValue; int32_t L_12 = ___5_action; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_13 = (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*)il2cpp_codegen_object_new(XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A_il2cpp_TypeInfo_var); NullCheck(L_13); XmlNodeChangedEventArgs__ctor_m7EA3C66B1D0582A417E9ADE33F982B08ADDB69E9(L_13, L_7, L_8, L_9, L_10, L_11, L_12, NULL); return L_13; } } // System.Xml.XmlNodeChangedEventArgs System.Xml.XmlDocument::GetInsertEventArgsForLoad(System.Xml.XmlNode,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* XmlDocument_GetInsertEventArgsForLoad_mC008CD74A188F1B0ECBCFFBFD99A5F7B3DAB2661 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_newParent, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_0 = __this->___onNodeInsertingDelegate_11; if (L_0) { goto IL_0012; } } { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_1 = __this->___onNodeInsertedDelegate_12; if (L_1) { goto IL_0012; } } { return (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*)NULL; } IL_0012: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___0_node; NullCheck(L_2); String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_2); V_0 = L_3; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ___1_newParent; String_t* L_6 = V_0; String_t* L_7 = V_0; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_8 = (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*)il2cpp_codegen_object_new(XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A_il2cpp_TypeInfo_var); NullCheck(L_8); XmlNodeChangedEventArgs__ctor_m7EA3C66B1D0582A417E9ADE33F982B08ADDB69E9(L_8, L_4, (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL, L_5, L_6, L_7, 0, NULL); return L_8; } } // System.Void System.Xml.XmlDocument::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_BeforeEvent_m852242E1906C0771C54889F3E5D364AD8BF957F5 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___0_args, const RuntimeMethod* method) { int32_t V_0 = 0; { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_0 = ___0_args; if (!L_0) { goto IL_005e; } } { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_1 = ___0_args; NullCheck(L_1); int32_t L_2; L_2 = XmlNodeChangedEventArgs_get_Action_mD307B00A56DE5422A4EE4915400EC966DF80BD04_inline(L_1, NULL); V_0 = L_2; int32_t L_3 = V_0; switch (L_3) { case 0: { goto IL_001d; } case 1: { goto IL_0033; } case 2: { goto IL_0049; } } } { return; } IL_001d: { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_4 = __this->___onNodeInsertingDelegate_11; if (!L_4) { goto IL_005e; } } { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_5 = __this->___onNodeInsertingDelegate_11; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_6 = ___0_args; NullCheck(L_5); XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_inline(L_5, __this, L_6, NULL); return; } IL_0033: { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_7 = __this->___onNodeRemovingDelegate_13; if (!L_7) { goto IL_005e; } } { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_8 = __this->___onNodeRemovingDelegate_13; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_9 = ___0_args; NullCheck(L_8); XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_inline(L_8, __this, L_9, NULL); return; } IL_0049: { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_10 = __this->___onNodeChangingDelegate_15; if (!L_10) { goto IL_005e; } } { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_11 = __this->___onNodeChangingDelegate_15; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_12 = ___0_args; NullCheck(L_11); XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_inline(L_11, __this, L_12, NULL); } IL_005e: { return; } } // System.Void System.Xml.XmlDocument::AfterEvent(System.Xml.XmlNodeChangedEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_AfterEvent_m42BBD0D01A5C48CB2DE4EA46568F11FCF9746F91 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___0_args, const RuntimeMethod* method) { int32_t V_0 = 0; { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_0 = ___0_args; if (!L_0) { goto IL_005e; } } { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_1 = ___0_args; NullCheck(L_1); int32_t L_2; L_2 = XmlNodeChangedEventArgs_get_Action_mD307B00A56DE5422A4EE4915400EC966DF80BD04_inline(L_1, NULL); V_0 = L_2; int32_t L_3 = V_0; switch (L_3) { case 0: { goto IL_001d; } case 1: { goto IL_0033; } case 2: { goto IL_0049; } } } { return; } IL_001d: { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_4 = __this->___onNodeInsertedDelegate_12; if (!L_4) { goto IL_005e; } } { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_5 = __this->___onNodeInsertedDelegate_12; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_6 = ___0_args; NullCheck(L_5); XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_inline(L_5, __this, L_6, NULL); return; } IL_0033: { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_7 = __this->___onNodeRemovedDelegate_14; if (!L_7) { goto IL_005e; } } { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_8 = __this->___onNodeRemovedDelegate_14; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_9 = ___0_args; NullCheck(L_8); XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_inline(L_8, __this, L_9, NULL); return; } IL_0049: { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_10 = __this->___onNodeChangedDelegate_16; if (!L_10) { goto IL_005e; } } { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* L_11 = __this->___onNodeChangedDelegate_16; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_12 = ___0_args; NullCheck(L_11); XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_inline(L_11, __this, L_12, NULL); } IL_005e: { return; } } // System.Xml.XmlAttribute System.Xml.XmlDocument::GetDefaultAttribute(System.Xml.XmlElement,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlDocument_GetDefaultAttribute_m09254F3903D8971371770B085DEB0C8E4B879D96 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___0_elem, String_t* ___1_attrPrefix, String_t* ___2_attrLocalname, String_t* ___3_attrNamespaceURI, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* V_0 = NULL; SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* V_1 = NULL; RuntimeObject* V_2 = NULL; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* V_3 = NULL; { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0; L_0 = XmlDocument_get_DtdSchemaInfo_mF52E9F32AB9D1914DBC6D91A8277AE843B6E1E6E_inline(__this, NULL); V_0 = L_0; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1 = ___0_elem; SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_2; L_2 = XmlDocument_GetSchemaElementDecl_m8096E8CA8850D889EF774A9DC2596486DFBA00A6(__this, L_1, NULL); V_1 = L_2; SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_3 = V_1; if (!L_3) { goto IL_00b0; } } { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_4 = V_1; NullCheck(L_4); Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* L_5; L_5 = SchemaElementDecl_get_AttDefs_m2E3114DFAB8D978CBFAA6E31C2CD18A9AA9DAC50_inline(L_4, NULL); if (!L_5) { goto IL_00b0; } } { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_6 = V_1; NullCheck(L_6); Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* L_7; L_7 = SchemaElementDecl_get_AttDefs_m2E3114DFAB8D978CBFAA6E31C2CD18A9AA9DAC50_inline(L_6, NULL); NullCheck(L_7); Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 L_8; L_8 = Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80(L_7, Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80_RuntimeMethod_var); Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 L_9 = L_8; RuntimeObject* L_10 = Box(Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717_il2cpp_TypeInfo_var, &L_9); V_2 = (RuntimeObject*)L_10; goto IL_00a8; } IL_0033: { RuntimeObject* L_11 = V_2; NullCheck(L_11); RuntimeObject* L_12; L_12 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var, L_11); V_3 = ((SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553*)CastclassSealed((RuntimeObject*)L_12, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var)); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_13 = V_3; NullCheck(L_13); int32_t L_14; L_14 = SchemaDeclBase_get_Presence_mCF2610A186758B71CAFF2FC2586D9B604C2AE539_inline(L_13, NULL); if (!L_14) { goto IL_0050; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_15 = V_3; NullCheck(L_15); int32_t L_16; L_16 = SchemaDeclBase_get_Presence_mCF2610A186758B71CAFF2FC2586D9B604C2AE539_inline(L_15, NULL); if ((!(((uint32_t)L_16) == ((uint32_t)3)))) { goto IL_00a8; } } IL_0050: { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_17 = V_3; NullCheck(L_17); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_18; L_18 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_17, NULL); NullCheck(L_18); String_t* L_19; L_19 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_18, NULL); String_t* L_20 = ___2_attrLocalname; bool L_21; L_21 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_19, L_20, NULL); if (!L_21) { goto IL_00a8; } } { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_22 = V_0; NullCheck(L_22); int32_t L_23; L_23 = SchemaInfo_get_SchemaType_m44BE9221A63C4D13AE45A2054A875B533518B0FC_inline(L_22, NULL); if ((!(((uint32_t)L_23) == ((uint32_t)1)))) { goto IL_007f; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_24 = V_3; NullCheck(L_24); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_25; L_25 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_24, NULL); NullCheck(L_25); String_t* L_26; L_26 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_25, NULL); String_t* L_27 = ___1_attrPrefix; bool L_28; L_28 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_26, L_27, NULL); if (L_28) { goto IL_009c; } } IL_007f: { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_29 = V_0; NullCheck(L_29); int32_t L_30; L_30 = SchemaInfo_get_SchemaType_m44BE9221A63C4D13AE45A2054A875B533518B0FC_inline(L_29, NULL); if ((((int32_t)L_30) == ((int32_t)1))) { goto IL_00a8; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_31 = V_3; NullCheck(L_31); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_32; L_32 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_31, NULL); NullCheck(L_32); String_t* L_33; L_33 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_32, NULL); String_t* L_34 = ___3_attrNamespaceURI; bool L_35; L_35 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_33, L_34, NULL); if (!L_35) { goto IL_00a8; } } IL_009c: { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_36 = V_3; String_t* L_37 = ___1_attrPrefix; String_t* L_38 = ___2_attrLocalname; String_t* L_39 = ___3_attrNamespaceURI; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_40; L_40 = XmlDocument_PrepareDefaultAttribute_mB209B5E427A134931A258026446829B816E9A526(__this, L_36, L_37, L_38, L_39, NULL); return L_40; } IL_00a8: { RuntimeObject* L_41 = V_2; NullCheck(L_41); bool L_42; L_42 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_41); if (L_42) { goto IL_0033; } } IL_00b0: { return (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)NULL; } } // System.Xml.XmlEntity System.Xml.XmlDocument::GetEntityNode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* XmlDocument_GetEntityNode_m9A45EC68379AD8210E79FD8A88EB705D011E827A (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_name, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* V_0 = NULL; { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_0; L_0 = VirtualFuncInvoker0< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* >::Invoke(43 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::get_DocumentType() */, __this); if (!L_0) { goto IL_0024; } } { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_1; L_1 = VirtualFuncInvoker0< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* >::Invoke(43 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::get_DocumentType() */, __this); NullCheck(L_1); XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_2; L_2 = XmlDocumentType_get_Entities_m0864AACCFEB94E7E935580DB42D07F5C2058B1B0(L_1, NULL); V_0 = L_2; XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_3 = V_0; if (!L_3) { goto IL_0024; } } { XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_4 = V_0; String_t* L_5 = ___0_name; NullCheck(L_4); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6; L_6 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, String_t* >::Invoke(5 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::GetNamedItem(System.String) */, L_4, L_5); return ((XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE*)CastclassClass((RuntimeObject*)L_6, XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var)); } IL_0024: { return (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE*)NULL; } } // System.String System.Xml.XmlDocument::get_BaseURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocument_get_BaseURI_m485E0CCFD0B00B416D93A43B273BD6BA6FA7EC05 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___baseURI_37; return L_0; } } // System.Void System.Xml.XmlDocument::SetBaseURI(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument_SetBaseURI_mE44F99B7DFBF6C63E7041125703303F9146C146E (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_inBaseURI, const RuntimeMethod* method) { { String_t* L_0 = ___0_inBaseURI; __this->___baseURI_37 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___baseURI_37), (void*)L_0); return; } } // System.Xml.XmlNode System.Xml.XmlDocument::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocument_AppendChildForLoad_m9159EA6AC056C417AB1B80C23C770341FB454D22 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_newChild, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* V_0 = NULL; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_1 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_newChild; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0); bool L_2; L_2 = VirtualFuncInvoker1< bool, int32_t >::Invoke(23 /* System.Boolean System.Xml.XmlNode::IsValidChildType(System.Xml.XmlNodeType) */, __this, L_1); if (L_2) { goto IL_001e; } } { String_t* L_3; L_3 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC5D6C64CCB50E5090409E08FDF71792E4E9A8F6D)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_4 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_4); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_4, L_3, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_AppendChildForLoad_m9159EA6AC056C417AB1B80C23C770341FB454D22_RuntimeMethod_var))); } IL_001e: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ___0_newChild; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6; L_6 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_LastChild() */, __this); bool L_7; L_7 = VirtualFuncInvoker2< bool, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(24 /* System.Boolean System.Xml.XmlNode::CanInsertAfter(System.Xml.XmlNode,System.Xml.XmlNode) */, __this, L_5, L_6); if (L_7) { goto IL_003d; } } { String_t* L_8; L_8 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral52E7AA29D33516D76AAE995603260C880821A398)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_9); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocument_AppendChildForLoad_m9159EA6AC056C417AB1B80C23C770341FB454D22_RuntimeMethod_var))); } IL_003d: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = ___0_newChild; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_11; L_11 = XmlDocument_GetInsertEventArgsForLoad_mC008CD74A188F1B0ECBCFFBFD99A5F7B3DAB2661(__this, L_10, __this, NULL); V_0 = L_11; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_12 = V_0; if (!L_12) { goto IL_0050; } } { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_13 = V_0; VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(40 /* System.Void System.Xml.XmlNode::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) */, __this, L_13); } IL_0050: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14 = ___0_newChild; V_1 = ((XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)CastclassClass((RuntimeObject*)L_14, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var)); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_15 = __this->___lastChild_3; if (L_15) { goto IL_0068; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_16 = V_1; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_17 = V_1; NullCheck(L_16); L_16->___next_1 = L_17; Il2CppCodeGenWriteBarrier((void**)(&L_16->___next_1), (void*)L_17); goto IL_0085; } IL_0068: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_18 = V_1; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_19 = __this->___lastChild_3; NullCheck(L_19); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_20 = L_19->___next_1; NullCheck(L_18); L_18->___next_1 = L_20; Il2CppCodeGenWriteBarrier((void**)(&L_18->___next_1), (void*)L_20); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_21 = __this->___lastChild_3; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_22 = V_1; NullCheck(L_21); L_21->___next_1 = L_22; Il2CppCodeGenWriteBarrier((void**)(&L_21->___next_1), (void*)L_22); } IL_0085: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_23 = V_1; __this->___lastChild_3 = L_23; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_3), (void*)L_23); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_24 = V_1; NullCheck(L_24); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(37 /* System.Void System.Xml.XmlNode::SetParentForLoad(System.Xml.XmlNode) */, L_24, __this); XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_25 = V_0; if (!L_25) { goto IL_009d; } } { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_26 = V_0; VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(41 /* System.Void System.Xml.XmlNode::AfterEvent(System.Xml.XmlNodeChangedEventArgs) */, __this, L_26); } IL_009d: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_27 = V_1; return L_27; } } // System.Void System.Xml.XmlDocument::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocument__cctor_m27626C1CF5AC7AB088D03782DE104EB671099C45 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA* L_0 = (EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA*)il2cpp_codegen_object_new(EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA_il2cpp_TypeInfo_var); NullCheck(L_0); EmptyEnumerator__ctor_m05DA73C42354A4E549CCA7E9485B294057ABA981(L_0, NULL); ((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___EmptyEnumerator_41 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___EmptyEnumerator_41), (void*)L_0); XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_1 = (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B*)il2cpp_codegen_object_new(XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B_il2cpp_TypeInfo_var); NullCheck(L_1); XmlSchemaInfo__ctor_mEB56BD698D44A8AAA47668230E0CDFE8463ABD08(L_1, 0, NULL); ((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___NotKnownSchemaInfo_42 = L_1; Il2CppCodeGenWriteBarrier((void**)(&((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___NotKnownSchemaInfo_42), (void*)L_1); XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_2 = (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B*)il2cpp_codegen_object_new(XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B_il2cpp_TypeInfo_var); NullCheck(L_2); XmlSchemaInfo__ctor_mEB56BD698D44A8AAA47668230E0CDFE8463ABD08(L_2, 1, NULL); ((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___ValidSchemaInfo_43 = L_2; Il2CppCodeGenWriteBarrier((void**)(&((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___ValidSchemaInfo_43), (void*)L_2); XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B* L_3 = (XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B*)il2cpp_codegen_object_new(XmlSchemaInfo_t6686870BCAA40A8EFD7987976F386DD40DD5323B_il2cpp_TypeInfo_var); NullCheck(L_3); XmlSchemaInfo__ctor_mEB56BD698D44A8AAA47668230E0CDFE8463ABD08(L_3, 2, NULL); ((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___InvalidSchemaInfo_44 = L_3; Il2CppCodeGenWriteBarrier((void**)(&((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___InvalidSchemaInfo_44), (void*)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.Void System.Xml.XmlDocumentFragment::.ctor(System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentFragment__ctor_m5DFF7FEE2576ED62871EDD2EE4B03279630D1BC2 (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___0_ownerDocument, const RuntimeMethod* method) { { XmlNode__ctor_m48EA7E8280259972A9AE46D0220C05CEA99E9350(__this, NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___0_ownerDocument; if (L_0) { goto IL_0019; } } { String_t* L_1; L_1 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA73D573DF83D11DB88B9E63E9DF538F46194507D)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, L_1, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlDocumentFragment__ctor_m5DFF7FEE2576ED62871EDD2EE4B03279630D1BC2_RuntimeMethod_var))); } IL_0019: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3 = ___0_ownerDocument; ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0 = L_3; Il2CppCodeGenWriteBarrier((void**)(&((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0), (void*)L_3); return; } } // System.String System.Xml.XmlDocumentFragment::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentFragment_get_Name_m1874C656D4B98227EAF8F607037D5E994F264F2C (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_0); String_t* L_1 = L_0->___strDocumentFragmentName_22; return L_1; } } // System.String System.Xml.XmlDocumentFragment::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentFragment_get_LocalName_m14B0739B28E1668FB7410828E1451D230B95DA3F (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_0); String_t* L_1 = L_0->___strDocumentFragmentName_22; return L_1; } } // System.Xml.XmlNodeType System.Xml.XmlDocumentFragment::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlDocumentFragment_get_NodeType_mE874D1255245E30531C960F635C91795C5AE1CAD (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, const RuntimeMethod* method) { { return (int32_t)(((int32_t)11)); } } // System.Xml.XmlNode System.Xml.XmlDocumentFragment::get_ParentNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocumentFragment_get_ParentNode_mD030B1BF656CB855B6079906815D1EE29C7271BC (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, const RuntimeMethod* method) { { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } } // System.Xml.XmlDocument System.Xml.XmlDocumentFragment::get_OwnerDocument() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlDocumentFragment_get_OwnerDocument_m3B31F0C2CC5EC5BB67DE9C4E116539300C7A929D (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; return ((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)CastclassClass((RuntimeObject*)L_0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var)); } } // System.Void System.Xml.XmlDocumentFragment::set_InnerXml(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentFragment_set_InnerXml_m99A9415C53F4A9D7B1C004C9A3B38E84A6DB86C4 (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, String_t* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlNode::RemoveAll() */, __this); XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* L_0 = (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D*)il2cpp_codegen_object_new(XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var); NullCheck(L_0); XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050(L_0, NULL); String_t* L_1 = ___0_value; NullCheck(L_0); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_2; L_2 = XmlLoader_ParsePartialContent_mB3EF08CD6158AD1D1CB317AA3A712DFF7252C1EC(L_0, __this, L_1, 1, NULL); return; } } // System.Xml.XmlNode System.Xml.XmlDocumentFragment::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocumentFragment_CloneNode_mE7D0742D0F35A1D3EEF9F12BD4FE81EE5F327D89 (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, bool ___0_deep, const RuntimeMethod* method) { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_0 = NULL; XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* V_1 = NULL; { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); V_0 = L_0; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = V_0; NullCheck(L_1); XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* L_2; L_2 = VirtualFuncInvoker0< XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* >::Invoke(48 /* System.Xml.XmlDocumentFragment System.Xml.XmlDocument::CreateDocumentFragment() */, L_1); V_1 = L_2; bool L_3 = ___0_deep; if (!L_3) { goto IL_001a; } } { XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* L_4 = V_1; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = V_0; bool L_6 = ___0_deep; NullCheck(L_4); VirtualActionInvoker3< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, bool >::Invoke(27 /* System.Void System.Xml.XmlNode::CopyChildren(System.Xml.XmlDocument,System.Xml.XmlNode,System.Boolean) */, L_4, L_5, __this, L_6); } IL_001a: { XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* L_7 = V_1; return L_7; } } // System.Boolean System.Xml.XmlDocumentFragment::get_IsContainer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocumentFragment_get_IsContainer_m603B307149A57669FAB18758FE440F677F1E7020 (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Xml.XmlLinkedNode System.Xml.XmlDocumentFragment::get_LastNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* XmlDocumentFragment_get_LastNode_mB32809757FC8FF9949D19C3DD9B83F6BB740EA63 (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, const RuntimeMethod* method) { { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = __this->___lastChild_1; return L_0; } } // System.Void System.Xml.XmlDocumentFragment::set_LastNode(System.Xml.XmlLinkedNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentFragment_set_LastNode_m6651220BA4B604C2C6DE871D9D9B85A757F61ADF (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___0_value, const RuntimeMethod* method) { { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = ___0_value; __this->___lastChild_1 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_1), (void*)L_0); return; } } // System.Boolean System.Xml.XmlDocumentFragment::IsValidChildType(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocumentFragment_IsValidChildType_m8EF115F22D56936D685DF8046D8337B427A9F8EB (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, int32_t ___0_type, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; { int32_t L_0 = ___0_type; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, 1))) { case 0: { goto IL_004e; } case 1: { goto IL_0068; } case 2: { goto IL_004e; } case 3: { goto IL_004e; } case 4: { goto IL_004e; } case 5: { goto IL_0068; } case 6: { goto IL_004e; } case 7: { goto IL_004e; } case 8: { goto IL_0068; } case 9: { goto IL_0068; } case 10: { goto IL_0068; } case 11: { goto IL_0068; } case 12: { goto IL_004e; } case 13: { goto IL_004e; } case 14: { goto IL_0068; } case 15: { goto IL_0068; } case 16: { goto IL_0050; } } } { goto IL_0068; } IL_004e: { return (bool)1; } IL_0050: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1; L_1 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this); V_0 = L_1; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = V_0; if (!L_2) { goto IL_0064; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = V_0; NullCheck(L_3); int32_t L_4; L_4 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_3); if ((((int32_t)L_4) == ((int32_t)((int32_t)17)))) { goto IL_0066; } } IL_0064: { return (bool)1; } IL_0066: { return (bool)0; } IL_0068: { return (bool)0; } } // System.Boolean System.Xml.XmlDocumentFragment::CanInsertAfter(System.Xml.XmlNode,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocumentFragment_CanInsertAfter_m5EAF44C606F67D369B960E6C4AE8B07063C2B8C1 (XmlDocumentFragment_tBBC1A5D3AC1967C69910C0E28C2EFA9050C2FDDD* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_newChild, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_refChild, const RuntimeMethod* method) { { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_newChild; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)17))))) { goto IL_0019; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___1_refChild; if (L_2) { goto IL_0017; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_3; L_3 = VirtualFuncInvoker0< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(18 /* System.Xml.XmlLinkedNode System.Xml.XmlNode::get_LastNode() */, __this); return (bool)((((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0); } IL_0017: { return (bool)0; } IL_0019: { 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.XmlDocumentType::.ctor(System.String,System.String,System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentType__ctor_m80A9D98B728A54F81611F785B3C6CB5E29D47344 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, String_t* ___0_name, String_t* ___1_publicId, String_t* ___2_systemId, String_t* ___3_internalSubset, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___4_doc, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___4_doc; XmlLinkedNode__ctor_mBAF93AD97DBA998E16940918D8F7EF3E585C7633(__this, L_0, NULL); String_t* L_1 = ___0_name; __this->___name_2 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___name_2), (void*)L_1); String_t* L_2 = ___1_publicId; __this->___publicId_3 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___publicId_3), (void*)L_2); String_t* L_3 = ___2_systemId; __this->___systemId_4 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___systemId_4), (void*)L_3); __this->___namespaces_6 = (bool)1; String_t* L_4 = ___3_internalSubset; __this->___internalSubset_5 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___internalSubset_5), (void*)L_4); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = ___4_doc; NullCheck(L_5); bool L_6; L_6 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_5, NULL); if (L_6) { goto IL_0050; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_7 = ___4_doc; NullCheck(L_7); XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_7, (bool)1, NULL); XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* L_8 = (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D*)il2cpp_codegen_object_new(XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var); NullCheck(L_8); XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050(L_8, NULL); NullCheck(L_8); XmlLoader_ParseDocumentType_m7E6901C3E8CF530A50BFE027DE91E999307F2A02(L_8, __this, NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_9 = ___4_doc; NullCheck(L_9); XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_9, (bool)0, NULL); } IL_0050: { return; } } // System.String System.Xml.XmlDocumentType::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_Name_m8323D4846265D13C6E393961B2EE0D7FC96812C2 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___name_2; return L_0; } } // System.String System.Xml.XmlDocumentType::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_LocalName_m5B495551922FE2C3CC5285FA6CDE88478891E3B6 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___name_2; return L_0; } } // System.Xml.XmlNodeType System.Xml.XmlDocumentType::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlDocumentType_get_NodeType_mF592A32BB36245914C8EC201A2AD5ED0611BCF17 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) { { return (int32_t)(((int32_t)10)); } } // System.Xml.XmlNode System.Xml.XmlDocumentType::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlDocumentType_CloneNode_mB93E09964A9CA4C47A0D172FE71B533A29375D78 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, bool ___0_deep, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); String_t* L_1 = __this->___name_2; String_t* L_2 = __this->___publicId_3; String_t* L_3 = __this->___systemId_4; String_t* L_4 = __this->___internalSubset_5; NullCheck(L_0); XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_5; L_5 = VirtualFuncInvoker4< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E*, String_t*, String_t*, String_t*, String_t* >::Invoke(47 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::CreateDocumentType(System.String,System.String,System.String,System.String) */, L_0, L_1, L_2, L_3, L_4); return L_5; } } // System.Boolean System.Xml.XmlDocumentType::get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocumentType_get_IsReadOnly_mCF02079CAB3EA39E19E8737AB07F0B51187430B3 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Xml.XmlNamedNodeMap System.Xml.XmlDocumentType::get_Entities() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* XmlDocumentType_get_Entities_m0864AACCFEB94E7E935580DB42D07F5C2058B1B0 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_0 = __this->___entities_7; if (L_0) { goto IL_0014; } } { XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_1 = (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)il2cpp_codegen_object_new(XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C_il2cpp_TypeInfo_var); NullCheck(L_1); XmlNamedNodeMap__ctor_mA91F36D1CB05380C6F5E60F31062962B6DE2FF08(L_1, __this, NULL); __this->___entities_7 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___entities_7), (void*)L_1); } IL_0014: { XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_2 = __this->___entities_7; return L_2; } } // System.Xml.XmlNamedNodeMap System.Xml.XmlDocumentType::get_Notations() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* XmlDocumentType_get_Notations_mF39B90420713538FCE072C512A74575C6F25D117 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_0 = __this->___notations_8; if (L_0) { goto IL_0014; } } { XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_1 = (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C*)il2cpp_codegen_object_new(XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C_il2cpp_TypeInfo_var); NullCheck(L_1); XmlNamedNodeMap__ctor_mA91F36D1CB05380C6F5E60F31062962B6DE2FF08(L_1, __this, NULL); __this->___notations_8 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___notations_8), (void*)L_1); } IL_0014: { XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_2 = __this->___notations_8; return L_2; } } // System.String System.Xml.XmlDocumentType::get_PublicId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_PublicId_m9E81FAF2D0AA9DC847D118813CBEB085F0CE1955 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___publicId_3; return L_0; } } // System.String System.Xml.XmlDocumentType::get_SystemId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_SystemId_m17B225C509C0F5A4ECBB838AA81D15DED4016909 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___systemId_4; return L_0; } } // System.String System.Xml.XmlDocumentType::get_InternalSubset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_InternalSubset_mBD8D585ED0401EE1FC02F6FD5445E2109B083FEF (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___internalSubset_5; return L_0; } } // System.Boolean System.Xml.XmlDocumentType::get_ParseWithNamespaces() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlDocumentType_get_ParseWithNamespaces_mC391046582C88CDC3C3496E4D2C0827C36D9B324 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) { { bool L_0 = __this->___namespaces_6; return L_0; } } // System.Xml.Schema.SchemaInfo System.Xml.XmlDocumentType::get_DtdSchemaInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* XmlDocumentType_get_DtdSchemaInfo_mDF54B3A169B037A8C8A4F186206B143AF3068259 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) { { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0 = __this->___schemaInfo_9; return L_0; } } // System.Void System.Xml.XmlDocumentType::set_DtdSchemaInfo(System.Xml.Schema.SchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlDocumentType_set_DtdSchemaInfo_m6E419933465D42DAB30AD7C6FFF7ACCC6D78A4E6 (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___0_value, const RuntimeMethod* method) { { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0 = ___0_value; __this->___schemaInfo_9 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___schemaInfo_9), (void*)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.XmlElement::.ctor(System.Xml.XmlName,System.Boolean,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement__ctor_m44A8D5841FC2F1A5ACC6A03DD0ACA9AB37300588 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___0_name, bool ___1_empty, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___2_doc, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___2_doc; XmlLinkedNode__ctor_mBAF93AD97DBA998E16940918D8F7EF3E585C7633(__this, L_0, NULL); ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; Il2CppCodeGenWriteBarrier((void**)(&((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0), (void*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___2_doc; NullCheck(L_1); bool L_2; L_2 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_1, NULL); if (L_2) { goto IL_002c; } } { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_3 = ___0_name; NullCheck(L_3); String_t* L_4; L_4 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_3, NULL); il2cpp_codegen_runtime_class_init_inline(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var); XmlDocument_CheckName_mD87B320087DABFF0D226204D89BDF67AC323BB5A(L_4, NULL); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_5 = ___0_name; NullCheck(L_5); String_t* L_6; L_6 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_5, NULL); XmlDocument_CheckName_mD87B320087DABFF0D226204D89BDF67AC323BB5A(L_6, NULL); } IL_002c: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_7 = ___0_name; NullCheck(L_7); String_t* L_8; L_8 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_7, NULL); NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL); if (L_9) { goto IL_0049; } } { String_t* L_10; L_10 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1608C82B466107946B52772199E59009D15CA084)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_11 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_11); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_11, L_10, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlElement__ctor_m44A8D5841FC2F1A5ACC6A03DD0ACA9AB37300588_RuntimeMethod_var))); } IL_0049: { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_12 = ___0_name; __this->___name_2 = L_12; Il2CppCodeGenWriteBarrier((void**)(&__this->___name_2), (void*)L_12); bool L_13 = ___1_empty; if (!L_13) { goto IL_005a; } } { __this->___lastChild_4 = __this; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_4), (void*)__this); } IL_005a: { return; } } // System.Void System.Xml.XmlElement::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement__ctor_m1C80BD485FDDF4F947A67A6861C525E205D8F0C4 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_namespaceURI, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___3_doc, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___3_doc; String_t* L_1 = ___0_prefix; String_t* L_2 = ___1_localName; String_t* L_3 = ___2_namespaceURI; NullCheck(L_0); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_4; L_4 = XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916(L_0, L_1, L_2, L_3, (RuntimeObject*)NULL, NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = ___3_doc; XmlElement__ctor_m44A8D5841FC2F1A5ACC6A03DD0ACA9AB37300588(__this, L_4, (bool)1, L_5, NULL); return; } } // System.Xml.XmlName System.Xml.XmlElement::get_XmlName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlElement_get_XmlName_mA93482D1053CABDD02D7E3B23EBA56F74904101D (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_2; return L_0; } } // System.Void System.Xml.XmlElement::set_XmlName(System.Xml.XmlName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_set_XmlName_m15166904F386EAB60030EAB490CC0FD1CB624EFC (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___0_value, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = ___0_value; __this->___name_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___name_2), (void*)L_0); return; } } // System.Xml.XmlNode System.Xml.XmlElement::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlElement_CloneNode_m6B12DC2EA73902C55EF7095ABC8CE19D488FAF31 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, bool ___0_deep, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_0 = NULL; bool V_1 = false; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_2 = NULL; RuntimeObject* V_3 = NULL; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_4 = NULL; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_5 = NULL; RuntimeObject* V_6 = NULL; { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); V_0 = L_0; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = V_0; NullCheck(L_1); bool L_2; L_2 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_1, NULL); V_1 = L_2; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3 = V_0; NullCheck(L_3); XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_3, (bool)1, NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4 = V_0; String_t* L_5; L_5 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, __this); String_t* L_6; L_6 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, __this); String_t* L_7; L_7 = VirtualFuncInvoker0< String_t* >::Invoke(28 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, __this); NullCheck(L_4); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_8; L_8 = VirtualFuncInvoker3< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*, String_t*, String_t*, String_t* >::Invoke(57 /* System.Xml.XmlElement System.Xml.XmlDocument::CreateElement(System.String,System.String,System.String) */, L_4, L_5, L_6, L_7); V_2 = L_8; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_9 = V_0; bool L_10 = V_1; NullCheck(L_9); XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_9, L_10, NULL); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_11 = V_2; NullCheck(L_11); bool L_12; L_12 = XmlElement_get_IsEmpty_m3FD670ABE3BE49AF263E1B75875FA606CC671B5F(L_11, NULL); bool L_13; L_13 = XmlElement_get_IsEmpty_m3FD670ABE3BE49AF263E1B75875FA606CC671B5F(__this, NULL); if ((((int32_t)L_12) == ((int32_t)L_13))) { goto IL_004f; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_14 = V_2; bool L_15; L_15 = XmlElement_get_IsEmpty_m3FD670ABE3BE49AF263E1B75875FA606CC671B5F(__this, NULL); NullCheck(L_14); XmlElement_set_IsEmpty_mA8B835AE5541C20296A231855F3ABF4296A475F7(L_14, L_15, NULL); } IL_004f: { bool L_16; L_16 = VirtualFuncInvoker0< bool >::Invoke(43 /* System.Boolean System.Xml.XmlElement::get_HasAttributes() */, __this); if (!L_16) { goto IL_00cc; } } { XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_17; L_17 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(13 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, __this); NullCheck(L_17); RuntimeObject* L_18; L_18 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(8 /* System.Collections.IEnumerator System.Xml.XmlNamedNodeMap::GetEnumerator() */, L_17); V_3 = L_18; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_00b8: {// begin finally (depth: 1) { RuntimeObject* L_19 = V_3; V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_19, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_20 = V_6; if (!L_20) { goto IL_00cb; } } { RuntimeObject* L_21 = V_6; NullCheck(L_21); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_21); } IL_00cb: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_00ae_1; } IL_0065_1: { RuntimeObject* L_22 = V_3; NullCheck(L_22); RuntimeObject* L_23; L_23 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_22); V_4 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_23, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_24 = V_4; NullCheck(L_24); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_25; L_25 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, bool >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::CloneNode(System.Boolean) */, L_24, (bool)1); V_5 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_25, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_26 = V_4; if (!((XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC*)IsInstClass((RuntimeObject*)L_26, XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var))) { goto IL_00a0_1; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_27 = V_4; NullCheck(L_27); bool L_28; L_28 = VirtualFuncInvoker0< bool >::Invoke(43 /* System.Boolean System.Xml.XmlAttribute::get_Specified() */, L_27); if (L_28) { goto IL_00a0_1; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_29 = V_5; NullCheck(((XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC*)CastclassClass((RuntimeObject*)L_29, XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var))); XmlUnspecifiedAttribute_SetSpecified_m1CF67FF3E90E62DC5B0983B8DE91B6E95228509B_inline(((XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC*)CastclassClass((RuntimeObject*)L_29, XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var)), (bool)0, NULL); } IL_00a0_1: { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_30 = V_2; NullCheck(L_30); XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_31; L_31 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(13 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_30); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_32 = V_5; NullCheck(L_31); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_33; L_33 = XmlAttributeCollection_InternalAppendAttribute_m4F65B9C065CD96947359F97184962FD480989BCB(L_31, L_32, NULL); } IL_00ae_1: { RuntimeObject* L_34 = V_3; NullCheck(L_34); bool L_35; L_35 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_34); if (L_35) { goto IL_0065_1; } } { goto IL_00cc; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_00cc: { bool L_36 = ___0_deep; if (!L_36) { goto IL_00d8; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_37 = V_2; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_38 = V_0; bool L_39 = ___0_deep; NullCheck(L_37); VirtualActionInvoker3< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, bool >::Invoke(27 /* System.Void System.Xml.XmlNode::CopyChildren(System.Xml.XmlDocument,System.Xml.XmlNode,System.Boolean) */, L_37, L_38, __this, L_39); } IL_00d8: { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_40 = V_2; return L_40; } } // System.String System.Xml.XmlElement::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElement_get_Name_m7F73C3D18CDE9F8F951B144842E7669F9737DE6D (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_2; NullCheck(L_0); String_t* L_1; L_1 = XmlName_get_Name_m77B33DD36549E6E3E728EA1AD3325E339EC30435(L_0, NULL); return L_1; } } // System.String System.Xml.XmlElement::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElement_get_LocalName_m9223F778DD26887F21E416A7A29C22468CFBA346 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_2; NullCheck(L_0); String_t* L_1; L_1 = XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline(L_0, NULL); return L_1; } } // System.String System.Xml.XmlElement::get_NamespaceURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElement_get_NamespaceURI_m43313283ED55D22F3EF608F3BAC9E14A08F63883 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_2; NullCheck(L_0); String_t* L_1; L_1 = XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline(L_0, NULL); return L_1; } } // System.String System.Xml.XmlElement::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElement_get_Prefix_m472626EDD13C1767B818AB5E18A3B9176331AC98 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_2; NullCheck(L_0); String_t* L_1; L_1 = XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline(L_0, NULL); return L_1; } } // System.Xml.XmlNodeType System.Xml.XmlElement::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlElement_get_NodeType_m2335521F2F7F153B1E7C01F400883353C577CFA2 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { return (int32_t)(1); } } // System.Xml.XmlNode System.Xml.XmlElement::get_ParentNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlElement_get_ParentNode_mC49B6F93B2C4EC07705EBB2E03E15775CA8B6CAB (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; return L_0; } } // System.Xml.XmlDocument System.Xml.XmlElement::get_OwnerDocument() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlElement_get_OwnerDocument_m5C1BCBD63A52F60AD17B92D8E6E4543EE747E89A (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_2; NullCheck(L_0); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1; L_1 = XmlName_get_OwnerDocument_m330FA0574F04486B56352FA1E5F4336890C02A0C_inline(L_0, NULL); return L_1; } } // System.Boolean System.Xml.XmlElement::get_IsContainer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlElement_get_IsContainer_mDD67104ADF07829FF25D89531F964953F053D387 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Xml.XmlNode System.Xml.XmlElement::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlElement_AppendChildForLoad_m79C746A5400CC7AE8B19876EFEB081D9E186045B (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_newChild, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* V_0 = NULL; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_1 = NULL; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_2 = NULL; { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___1_doc; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___0_newChild; NullCheck(L_0); XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_2; L_2 = XmlDocument_GetInsertEventArgsForLoad_mC008CD74A188F1B0ECBCFFBFD99A5F7B3DAB2661(L_0, L_1, __this, NULL); V_0 = L_2; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_3 = V_0; if (!L_3) { goto IL_0013; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4 = ___1_doc; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_5 = V_0; NullCheck(L_4); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(40 /* System.Void System.Xml.XmlNode::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) */, L_4, L_5); } IL_0013: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = ___0_newChild; V_1 = ((XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)CastclassClass((RuntimeObject*)L_6, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var)); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_7 = __this->___lastChild_4; if (!L_7) { goto IL_002b; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_8 = __this->___lastChild_4; if ((!(((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_8) == ((RuntimeObject*)(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)__this)))) { goto IL_0042; } } IL_002b: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_9 = V_1; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_10 = V_1; NullCheck(L_9); L_9->___next_1 = L_10; Il2CppCodeGenWriteBarrier((void**)(&L_9->___next_1), (void*)L_10); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_11 = V_1; __this->___lastChild_4 = L_11; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_4), (void*)L_11); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_12 = V_1; NullCheck(L_12); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(37 /* System.Void System.Xml.XmlNode::SetParentForLoad(System.Xml.XmlNode) */, L_12, __this); goto IL_0083; } IL_0042: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_13 = __this->___lastChild_4; V_2 = L_13; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_14 = V_1; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_15 = V_2; NullCheck(L_15); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_16 = L_15->___next_1; NullCheck(L_14); L_14->___next_1 = L_16; Il2CppCodeGenWriteBarrier((void**)(&L_14->___next_1), (void*)L_16); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_17 = V_2; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_18 = V_1; NullCheck(L_17); L_17->___next_1 = L_18; Il2CppCodeGenWriteBarrier((void**)(&L_17->___next_1), (void*)L_18); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_19 = V_1; __this->___lastChild_4 = L_19; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_4), (void*)L_19); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_20 = V_2; NullCheck(L_20); bool L_21; L_21 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_20); if (!L_21) { goto IL_007c; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_22 = V_1; NullCheck(L_22); bool L_23; L_23 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_22); if (!L_23) { goto IL_007c; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_24 = V_2; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_25 = V_1; XmlNode_NestTextNodes_m0B17D4B94E3375748B4604EE250F88E59C3454EF(L_24, L_25, NULL); goto IL_0083; } IL_007c: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_26 = V_1; NullCheck(L_26); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(37 /* System.Void System.Xml.XmlNode::SetParentForLoad(System.Xml.XmlNode) */, L_26, __this); } IL_0083: { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_27 = V_0; if (!L_27) { goto IL_008d; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_28 = ___1_doc; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_29 = V_0; NullCheck(L_28); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(41 /* System.Void System.Xml.XmlNode::AfterEvent(System.Xml.XmlNodeChangedEventArgs) */, L_28, L_29); } IL_008d: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_30 = V_1; return L_30; } } // System.Boolean System.Xml.XmlElement::get_IsEmpty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlElement_get_IsEmpty_m3FD670ABE3BE49AF263E1B75875FA606CC671B5F (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = __this->___lastChild_4; return (bool)((((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_0) == ((RuntimeObject*)(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)__this))? 1 : 0); } } // System.Void System.Xml.XmlElement::set_IsEmpty(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_set_IsEmpty_mA8B835AE5541C20296A231855F3ABF4296A475F7 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; if (!L_0) { goto IL_001a; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_1 = __this->___lastChild_4; if ((((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_1) == ((RuntimeObject*)(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)__this))) { goto IL_002a; } } { XmlElement_RemoveAllChildren_mF16BCED4E253E003DAD07D4CCB2D02644666C6CD(__this, NULL); __this->___lastChild_4 = __this; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_4), (void*)__this); return; } IL_001a: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_2 = __this->___lastChild_4; if ((!(((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_2) == ((RuntimeObject*)(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)__this)))) { goto IL_002a; } } { __this->___lastChild_4 = (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_4), (void*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL); } IL_002a: { return; } } // System.Xml.XmlLinkedNode System.Xml.XmlElement::get_LastNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* XmlElement_get_LastNode_m82CA4C67385A1AB797AE76F31CE608107FFDE430 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = __this->___lastChild_4; if ((((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_0) == ((RuntimeObject*)(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)__this))) { goto IL_0010; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_1 = __this->___lastChild_4; return L_1; } IL_0010: { return (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL; } } // System.Void System.Xml.XmlElement::set_LastNode(System.Xml.XmlLinkedNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_set_LastNode_mB664A8179FB5A5C1D3C790F7CFE54D6D567B5150 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___0_value, const RuntimeMethod* method) { { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = ___0_value; __this->___lastChild_4 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_4), (void*)L_0); return; } } // System.Boolean System.Xml.XmlElement::IsValidChildType(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlElement_IsValidChildType_m84A36D5274A4BB810373DDFC89EB935F23D8E5F0 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, int32_t ___0_type, const RuntimeMethod* method) { { int32_t L_0 = ___0_type; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, 1))) { case 0: { goto IL_0042; } case 1: { goto IL_0044; } case 2: { goto IL_0042; } case 3: { goto IL_0042; } case 4: { goto IL_0042; } case 5: { goto IL_0044; } case 6: { goto IL_0042; } case 7: { goto IL_0042; } case 8: { goto IL_0044; } case 9: { goto IL_0044; } case 10: { goto IL_0044; } case 11: { goto IL_0044; } case 12: { goto IL_0042; } case 13: { goto IL_0042; } } } { goto IL_0044; } IL_0042: { return (bool)1; } IL_0044: { return (bool)0; } } // System.Xml.XmlAttributeCollection System.Xml.XmlElement::get_Attributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* XmlElement_get_Attributes_mD4302CEE719D5E63DF1AC612E4C0FAC682DDA27E (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; bool V_1 = false; { XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_0 = __this->___attributes_3; if (L_0) { goto IL_003e; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1; L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_1); RuntimeObject* L_2 = L_1->___objLock_40; V_0 = L_2; V_1 = (bool)0; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0034: {// begin finally (depth: 1) { bool L_3 = V_1; if (!L_3) { goto IL_003d; } } { RuntimeObject* L_4 = V_0; Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_4, NULL); } IL_003d: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { RuntimeObject* L_5 = V_0; Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_5, (&V_1), NULL); XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_6 = __this->___attributes_3; if (L_6) { goto IL_0032_1; } } { XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_7 = (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0*)il2cpp_codegen_object_new(XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0_il2cpp_TypeInfo_var); NullCheck(L_7); XmlAttributeCollection__ctor_m8308D817C07EF858304166193742564329293982(L_7, __this, NULL); __this->___attributes_3 = L_7; Il2CppCodeGenWriteBarrier((void**)(&__this->___attributes_3), (void*)L_7); } IL_0032_1: { goto IL_003e; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_003e: { XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_8 = __this->___attributes_3; return L_8; } } // System.Boolean System.Xml.XmlElement::get_HasAttributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlElement_get_HasAttributes_m3BF7AE28DC9DDC9024DD330B96DAF4A55FC2370F (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_0 = __this->___attributes_3; if (L_0) { goto IL_000a; } } { return (bool)0; } IL_000a: { XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_1 = __this->___attributes_3; NullCheck(L_1); int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, L_1); return (bool)((((int32_t)L_2) > ((int32_t)0))? 1 : 0); } } // System.Xml.XmlAttribute System.Xml.XmlElement::SetAttributeNode(System.Xml.XmlAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlElement_SetAttributeNode_mE0B17D7E755A784A25152EAF2B67C5B45FB0698E (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_newAttr, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_0 = ___0_newAttr; NullCheck(L_0); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1; L_1 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(44 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, L_0); if (!L_1) { goto IL_0018; } } { String_t* L_2; L_2 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF011FDE885C7455F8FB042D3EC51AFA0D2624878)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_3); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, L_2, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlElement_SetAttributeNode_mE0B17D7E755A784A25152EAF2B67C5B45FB0698E_RuntimeMethod_var))); } IL_0018: { XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_4; L_4 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(13 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, __this); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_5 = ___0_newAttr; NullCheck(L_4); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6; L_6 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(6 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::SetNamedItem(System.Xml.XmlNode) */, L_4, L_5); return ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_6, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)); } } // System.Void System.Xml.XmlElement::RemoveAllAttributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_RemoveAllAttributes_m8C8B9D2126A355EB6CB1AAC1E87AA5DB790C6516 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { bool L_0; L_0 = VirtualFuncInvoker0< bool >::Invoke(43 /* System.Boolean System.Xml.XmlElement::get_HasAttributes() */, __this); if (!L_0) { goto IL_0013; } } { XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_1 = __this->___attributes_3; NullCheck(L_1); XmlAttributeCollection_RemoveAll_mF68383A7E9C4F688F73A27EDCBC926799E66DE47(L_1, NULL); } IL_0013: { return; } } // System.Void System.Xml.XmlElement::RemoveAll() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_RemoveAll_mAE1E049DE09BD3F4B3012E65C4D06BF069D34436 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { XmlNode_RemoveAll_mA708E0DA19F2C6D5BC6CD66D415EA2D966300EA0(__this, NULL); VirtualActionInvoker0::Invoke(45 /* System.Void System.Xml.XmlElement::RemoveAllAttributes() */, __this); return; } } // System.Void System.Xml.XmlElement::RemoveAllChildren() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_RemoveAllChildren_mF16BCED4E253E003DAD07D4CCB2D02644666C6CD (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { XmlNode_RemoveAll_mA708E0DA19F2C6D5BC6CD66D415EA2D966300EA0(__this, NULL); return; } } // System.Void System.Xml.XmlElement::set_InnerXml(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_set_InnerXml_m8E5363696C8158F9C378D655F81D2A5674B8A0B4 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, String_t* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlElement_RemoveAllChildren_mF16BCED4E253E003DAD07D4CCB2D02644666C6CD(__this, NULL); XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* L_0 = (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D*)il2cpp_codegen_object_new(XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var); NullCheck(L_0); XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050(L_0, NULL); String_t* L_1 = ___0_value; NullCheck(L_0); XmlLoader_LoadInnerXmlElement_mE78D161D2D91C2082F77B90FAA4DF5181915DDEB(L_0, __this, L_1, NULL); return; } } // System.String System.Xml.XmlElement::get_InnerText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlElement_get_InnerText_mF241C44D2B198D55128A275BA94091000B739A87 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = XmlNode_get_InnerText_mC66D119E27E20F4C1E473CB76C8209CDA7262C8D(__this, NULL); return L_0; } } // System.Xml.XmlNode System.Xml.XmlElement::get_NextSibling() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlElement_get_NextSibling_mD803FD835451761A840FC6ADE02389972444BD0C (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; if (!L_0) { goto IL_001d; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; NullCheck(L_1); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_2; L_2 = VirtualFuncInvoker0< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(18 /* System.Xml.XmlLinkedNode System.Xml.XmlNode::get_LastNode() */, L_1); if ((((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_2) == ((RuntimeObject*)(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)__this))) { goto IL_001d; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_3 = ((XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)__this)->___next_1; return L_3; } IL_001d: { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } } // System.Void System.Xml.XmlElement::SetParent(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlElement_SetParent_m3E433DA01834135DE485F77F19AAA36FCFA7A110 (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) { { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_node; ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0), (void*)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.XmlEntity::.ctor(System.String,System.String,System.String,System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntity__ctor_m3F8F45510F797944A6386162E16A5FF4EA5BCD12 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, String_t* ___0_name, String_t* ___1_strdata, String_t* ___2_publicId, String_t* ___3_systemId, String_t* ___4_notationName, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___5_doc, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___5_doc; XmlNode__ctor_m4EBED07EBE4C8D8191BE58A23594E381A8E43DCA(__this, L_0, NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___5_doc; NullCheck(L_1); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2; L_2 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(L_1, NULL); String_t* L_3 = ___0_name; NullCheck(L_2); String_t* L_4; L_4 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_2, L_3); __this->___name_4 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___name_4), (void*)L_4); String_t* L_5 = ___2_publicId; __this->___publicId_1 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___publicId_1), (void*)L_5); String_t* L_6 = ___3_systemId; __this->___systemId_2 = L_6; Il2CppCodeGenWriteBarrier((void**)(&__this->___systemId_2), (void*)L_6); String_t* L_7 = ___4_notationName; __this->___notationName_3 = L_7; Il2CppCodeGenWriteBarrier((void**)(&__this->___notationName_3), (void*)L_7); String_t* L_8 = ___1_strdata; __this->___unparsedReplacementStr_5 = L_8; Il2CppCodeGenWriteBarrier((void**)(&__this->___unparsedReplacementStr_5), (void*)L_8); __this->___childrenFoliating_8 = (bool)0; return; } } // System.Xml.XmlNode System.Xml.XmlEntity::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlEntity_CloneNode_m98D079EB599F50756351086C356E6010C0283C49 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, bool ___0_deep, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral49457BCC8BD0CC8C758CAB29E29AAC6EE6A36D9A)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlEntity_CloneNode_m98D079EB599F50756351086C356E6010C0283C49_RuntimeMethod_var))); } } // System.Boolean System.Xml.XmlEntity::get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlEntity_get_IsReadOnly_mEA1F980512D977C724750755BCC71DD0DB56121A (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.String System.Xml.XmlEntity::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntity_get_Name_mB395062CD4A35108FDC0CF0A06833F5248DB34D3 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___name_4; return L_0; } } // System.String System.Xml.XmlEntity::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntity_get_LocalName_mEDE925C37A06EFFA432B1328E1A7AC9D7782C5A9 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___name_4; return L_0; } } // System.String System.Xml.XmlEntity::get_InnerText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntity_get_InnerText_m3988DBBC75DC7644AEF924442C50A838B4E1862B (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = XmlNode_get_InnerText_mC66D119E27E20F4C1E473CB76C8209CDA7262C8D(__this, NULL); return L_0; } } // System.Boolean System.Xml.XmlEntity::get_IsContainer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlEntity_get_IsContainer_m5825441C93DE05E6C98402FA2FB963C7646AA9C4 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Xml.XmlLinkedNode System.Xml.XmlEntity::get_LastNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* XmlEntity_get_LastNode_m6F4689F5D49CCD1B7D316E6C4BFD03D1375ECF5E (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = __this->___lastChild_7; if (L_0) { goto IL_0022; } } { bool L_1 = __this->___childrenFoliating_8; if (L_1) { goto IL_0022; } } { __this->___childrenFoliating_8 = (bool)1; XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* L_2 = (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D*)il2cpp_codegen_object_new(XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var); NullCheck(L_2); XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050(L_2, NULL); NullCheck(L_2); XmlLoader_ExpandEntity_mF48C80ADCAA60579178B00F9BB747D3FDA3B2616(L_2, __this, NULL); } IL_0022: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_3 = __this->___lastChild_7; return L_3; } } // System.Void System.Xml.XmlEntity::set_LastNode(System.Xml.XmlLinkedNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntity_set_LastNode_m7C708D6802A3B5DDBC360CE02DE31DCB17D51D97 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___0_value, const RuntimeMethod* method) { { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = ___0_value; __this->___lastChild_7 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_7), (void*)L_0); return; } } // System.Boolean System.Xml.XmlEntity::IsValidChildType(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlEntity_IsValidChildType_m712AB940B6563F2DB88222FA6DF2C6191114748B (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, int32_t ___0_type, const RuntimeMethod* method) { { int32_t L_0 = ___0_type; if ((((int32_t)L_0) == ((int32_t)3))) { goto IL_0023; } } { int32_t L_1 = ___0_type; if ((((int32_t)L_1) == ((int32_t)1))) { goto IL_0023; } } { int32_t L_2 = ___0_type; if ((((int32_t)L_2) == ((int32_t)7))) { goto IL_0023; } } { int32_t L_3 = ___0_type; if ((((int32_t)L_3) == ((int32_t)8))) { goto IL_0023; } } { int32_t L_4 = ___0_type; if ((((int32_t)L_4) == ((int32_t)4))) { goto IL_0023; } } { int32_t L_5 = ___0_type; if ((((int32_t)L_5) == ((int32_t)((int32_t)13)))) { goto IL_0023; } } { int32_t L_6 = ___0_type; if ((((int32_t)L_6) == ((int32_t)((int32_t)14)))) { goto IL_0023; } } { int32_t L_7 = ___0_type; return (bool)((((int32_t)L_7) == ((int32_t)5))? 1 : 0); } IL_0023: { return (bool)1; } } // System.Xml.XmlNodeType System.Xml.XmlEntity::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlEntity_get_NodeType_mFB4FA8F5D4C0373F6FCFDDB263A1377BD9BE7323 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method) { { return (int32_t)(6); } } // System.String System.Xml.XmlEntity::get_SystemId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntity_get_SystemId_mBD4E3AB5EBAE7C852E533B9E184A316BECF47FA7 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___systemId_2; return L_0; } } // System.Void System.Xml.XmlEntity::set_InnerXml(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntity_set_InnerXml_m0EFAA9C52B2F23F483E6F135D920BC04F46D19A1 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB06DE16F44A88CD00ED1FDBEB9E9BFE0F4D1C2A)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlEntity_set_InnerXml_m0EFAA9C52B2F23F483E6F135D920BC04F46D19A1_RuntimeMethod_var))); } } // System.String System.Xml.XmlEntity::get_BaseURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntity_get_BaseURI_mBEE2C3D19C59C9A59F1554B612561D242506EDE3 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___baseURI_6; return L_0; } } // System.Void System.Xml.XmlEntity::SetBaseURI(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntity_SetBaseURI_mFEBE0339CA3A522BDC09A278FFBA3A9D77A578B3 (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, String_t* ___0_inBaseURI, const RuntimeMethod* method) { { String_t* L_0 = ___0_inBaseURI; __this->___baseURI_6 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___baseURI_6), (void*)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.XmlEntityReference::.ctor(System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntityReference__ctor_m7AAF0A5672B04060ECEAFAB3DF7E93DA8A7B6A94 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, String_t* ___0_name, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___1_doc; XmlLinkedNode__ctor_mBAF93AD97DBA998E16940918D8F7EF3E585C7633(__this, L_0, NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___1_doc; NullCheck(L_1); bool L_2; L_2 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_1, NULL); if (L_2) { goto IL_0033; } } { String_t* L_3 = ___0_name; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if ((((int32_t)L_4) <= ((int32_t)0))) { goto IL_0033; } } { String_t* L_5 = ___0_name; NullCheck(L_5); Il2CppChar L_6; L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, 0, NULL); if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)35))))) { goto IL_0033; } } { String_t* L_7; L_7 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7FF349F9C3C625219F1F7A7D29EEEF01064CD1C1)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_8 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_8); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_8, L_7, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlEntityReference__ctor_m7AAF0A5672B04060ECEAFAB3DF7E93DA8A7B6A94_RuntimeMethod_var))); } IL_0033: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_9 = ___1_doc; NullCheck(L_9); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_10; L_10 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(L_9, NULL); String_t* L_11 = ___0_name; NullCheck(L_10); String_t* L_12; L_12 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_10, L_11); __this->___name_2 = L_12; Il2CppCodeGenWriteBarrier((void**)(&__this->___name_2), (void*)L_12); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_13 = ___1_doc; NullCheck(L_13); L_13->___fEntRefNodesPresent_17 = (bool)1; return; } } // System.String System.Xml.XmlEntityReference::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntityReference_get_Name_m04458DB45F333977C89A42BFEEA84DFFD336A7C6 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___name_2; return L_0; } } // System.String System.Xml.XmlEntityReference::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntityReference_get_LocalName_mC07D5C66ED59E93E5A135FAE9C79573E2D1CE95A (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___name_2; return L_0; } } // System.String System.Xml.XmlEntityReference::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntityReference_get_Value_mB644EC609B70FBEBEADD62213FD801F3A63D52A1 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method) { { return (String_t*)NULL; } } // System.Xml.XmlNodeType System.Xml.XmlEntityReference::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlEntityReference_get_NodeType_m8EAACF32F1C09412B240CB54BFE9CD1F982290E7 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method) { { return (int32_t)(5); } } // System.Xml.XmlNode System.Xml.XmlEntityReference::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlEntityReference_CloneNode_m261E6E9080D91887823308E9BEF22040F89A9F36 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, bool ___0_deep, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); String_t* L_1 = __this->___name_2; NullCheck(L_0); XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_2; L_2 = VirtualFuncInvoker1< XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*, String_t* >::Invoke(49 /* System.Xml.XmlEntityReference System.Xml.XmlDocument::CreateEntityReference(System.String) */, L_0, L_1); return L_2; } } // System.Boolean System.Xml.XmlEntityReference::get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlEntityReference_get_IsReadOnly_mA9A5BBA9CF680F2578F2364A14A6DED08E630E08 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Boolean System.Xml.XmlEntityReference::get_IsContainer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlEntityReference_get_IsContainer_m0ADEE4CF259EA90DD34D613A9A5CC828361F8671 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Xml.XmlEntityReference::SetParent(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntityReference_SetParent_m0DB5F834F46BA9976C2C110DFB00E124EE884CCE (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_node; XmlNode_SetParent_mC2F3D8403B21789BAC584DC19C1AF0B59865E5A6(__this, L_0, NULL); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_1; L_1 = VirtualFuncInvoker0< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(18 /* System.Xml.XmlLinkedNode System.Xml.XmlNode::get_LastNode() */, __this); if (L_1) { goto IL_0026; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___0_node; if (!L_2) { goto IL_0026; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___0_node; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4; L_4 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); if ((((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_3) == ((RuntimeObject*)(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)L_4))) { goto IL_0026; } } { XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* L_5 = (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D*)il2cpp_codegen_object_new(XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D_il2cpp_TypeInfo_var); NullCheck(L_5); XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050(L_5, NULL); NullCheck(L_5); XmlLoader_ExpandEntityReference_m99D6DCC2F0FA00E28E73698D333FCC12EFCA7B2F(L_5, __this, NULL); } IL_0026: { return; } } // System.Void System.Xml.XmlEntityReference::SetParentForLoad(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntityReference_SetParentForLoad_mE425DA31BDDE7A43B0F0801355EA971B4BD19DC5 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) { { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_node; VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(36 /* System.Void System.Xml.XmlNode::SetParent(System.Xml.XmlNode) */, __this, L_0); return; } } // System.Xml.XmlLinkedNode System.Xml.XmlEntityReference::get_LastNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* XmlEntityReference_get_LastNode_m82739AD8F8B3F63000809A23E927AB6C97AC178E (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method) { { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = __this->___lastChild_3; return L_0; } } // System.Void System.Xml.XmlEntityReference::set_LastNode(System.Xml.XmlLinkedNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlEntityReference_set_LastNode_mBA7486033533289A22F4ECEB0F8EC2A0F2B75ED0 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___0_value, const RuntimeMethod* method) { { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0 = ___0_value; __this->___lastChild_3 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___lastChild_3), (void*)L_0); return; } } // System.Boolean System.Xml.XmlEntityReference::IsValidChildType(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlEntityReference_IsValidChildType_m8C4FC7227048C64D65DB3B14255E9453FC7E1C35 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, int32_t ___0_type, const RuntimeMethod* method) { { int32_t L_0 = ___0_type; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, 1))) { case 0: { goto IL_0042; } case 1: { goto IL_0044; } case 2: { goto IL_0042; } case 3: { goto IL_0042; } case 4: { goto IL_0042; } case 5: { goto IL_0044; } case 6: { goto IL_0042; } case 7: { goto IL_0042; } case 8: { goto IL_0044; } case 9: { goto IL_0044; } case 10: { goto IL_0044; } case 11: { goto IL_0044; } case 12: { goto IL_0042; } case 13: { goto IL_0042; } } } { goto IL_0044; } IL_0042: { return (bool)1; } IL_0044: { return (bool)0; } } // System.String System.Xml.XmlEntityReference::get_BaseURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntityReference_get_BaseURI_m8B0B98DF295EAA54B6A54431BDDCD05FFBA7A343 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_BaseURI() */, L_0); return L_1; } } // System.String System.Xml.XmlEntityReference::ConstructBaseURI(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntityReference_ConstructBaseURI_mCB7DDEFDCE5D272FA11026F4FE913CCA1339B4B2 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __this, String_t* ___0_baseURI, String_t* ___1_systemId, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral09B11B6CC411D8B9FFB75EAAE9A35B2AF248CE40); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; String_t* V_1 = NULL; { String_t* L_0 = ___0_baseURI; if (L_0) { goto IL_0005; } } { String_t* L_1 = ___1_systemId; return L_1; } IL_0005: { String_t* L_2 = ___0_baseURI; NullCheck(L_2); int32_t L_3; L_3 = String_LastIndexOf_m6BB3E7E1B48702D4C715FA423F8A822C053B290E(L_2, ((int32_t)47), NULL); V_0 = ((int32_t)il2cpp_codegen_add(L_3, 1)); String_t* L_4 = ___0_baseURI; V_1 = L_4; int32_t L_5 = V_0; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_002a; } } { int32_t L_6 = V_0; String_t* L_7 = ___0_baseURI; NullCheck(L_7); int32_t L_8; L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL); if ((((int32_t)L_6) >= ((int32_t)L_8))) { goto IL_002a; } } { String_t* L_9 = ___0_baseURI; int32_t L_10 = V_0; NullCheck(L_9); String_t* L_11; L_11 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_9, 0, L_10, NULL); V_1 = L_11; goto IL_0039; } IL_002a: { int32_t L_12 = V_0; if (L_12) { goto IL_0039; } } { String_t* L_13 = V_1; String_t* L_14; L_14 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_13, _stringLiteral09B11B6CC411D8B9FFB75EAAE9A35B2AF248CE40, NULL); V_1 = L_14; } IL_0039: { String_t* L_15 = V_1; String_t* L_16 = ___1_systemId; NullCheck(L_16); String_t* L_17; L_17 = String_Replace_m86403DC5F422D8D5E1CFAAF255B103CB807EDAAF(L_16, ((int32_t)92), ((int32_t)47), NULL); String_t* L_18; L_18 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_15, L_17, NULL); return L_18; } } // System.String System.Xml.XmlEntityReference::get_ChildBaseURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlEntityReference_get_ChildBaseURI_m0436E0491FD7F8D12694E705C57AF11BD59B62A4 (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* __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; } XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* V_0 = NULL; { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); String_t* L_1 = __this->___name_2; NullCheck(L_0); XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_2; L_2 = XmlDocument_GetEntityNode_m9A45EC68379AD8210E79FD8A88EB705D011E827A(L_0, L_1, NULL); V_0 = L_2; XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_3 = V_0; if (!L_3) { goto IL_0045; } } { XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_4 = V_0; NullCheck(L_4); String_t* L_5; L_5 = XmlEntity_get_SystemId_mBD4E3AB5EBAE7C852E533B9E184A316BECF47FA7_inline(L_4, NULL); if (!L_5) { goto IL_003e; } } { XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_6 = V_0; NullCheck(L_6); String_t* L_7; L_7 = XmlEntity_get_SystemId_mBD4E3AB5EBAE7C852E533B9E184A316BECF47FA7_inline(L_6, NULL); NullCheck(L_7); int32_t L_8; L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL); if ((((int32_t)L_8) <= ((int32_t)0))) { goto IL_003e; } } { XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_9 = V_0; NullCheck(L_9); String_t* L_10; L_10 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_BaseURI() */, L_9); XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_11 = V_0; NullCheck(L_11); String_t* L_12; L_12 = XmlEntity_get_SystemId_mBD4E3AB5EBAE7C852E533B9E184A316BECF47FA7_inline(L_11, NULL); String_t* L_13; L_13 = XmlEntityReference_ConstructBaseURI_mCB7DDEFDCE5D272FA11026F4FE913CCA1339B4B2(__this, L_10, L_12, NULL); return L_13; } IL_003e: { XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_14 = V_0; NullCheck(L_14); String_t* L_15; L_15 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_BaseURI() */, L_14); return L_15; } IL_0045: { String_t* L_16 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_16; } } #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.XmlImplementation::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlImplementation__ctor_mEBE20EB37760F63620D9DFAEF3341D2F4E138DC9 (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* L_0 = (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46*)il2cpp_codegen_object_new(NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46_il2cpp_TypeInfo_var); NullCheck(L_0); NameTable__ctor_mB02EE27092095D81E839D51519C4FBDA2227C261(L_0, NULL); XmlImplementation__ctor_mE5899D3C7EA30F9EDB19D07211588DB4FEDEC04D(__this, L_0, NULL); return; } } // System.Void System.Xml.XmlImplementation::.ctor(System.Xml.XmlNameTable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlImplementation__ctor_mE5899D3C7EA30F9EDB19D07211588DB4FEDEC04D (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* __this, XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___0_nt, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = ___0_nt; __this->___nameTable_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameTable_0), (void*)L_0); return; } } // System.Xml.XmlDocument System.Xml.XmlImplementation::CreateDocument() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlImplementation_CreateDocument_mE4CDDCBC487D85C40F81751C1DC54FFB1C6021D2 (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)il2cpp_codegen_object_new(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var); NullCheck(L_0); XmlDocument__ctor_m90653BB0CD6863B4328A3B32B72ED4383C97D1A8(L_0, __this, NULL); return L_0; } } // System.Xml.XmlNameTable System.Xml.XmlImplementation::get_NameTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlImplementation_get_NameTable_m8951702F59619310BD4A9528D2FF471352518CDF (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* __this, const RuntimeMethod* method) { { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___nameTable_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.XmlLinkedNode::.ctor(System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLinkedNode__ctor_mBAF93AD97DBA998E16940918D8F7EF3E585C7633 (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___0_doc, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___0_doc; XmlNode__ctor_m4EBED07EBE4C8D8191BE58A23594E381A8E43DCA(__this, L_0, NULL); __this->___next_1 = (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___next_1), (void*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL); return; } } // System.Xml.XmlNode System.Xml.XmlLinkedNode::get_PreviousSibling() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlLinkedNode_get_PreviousSibling_m049F4B495C8A154CC684EABE02C38048EF4F07E5 (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* __this, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_1 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_2 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0; L_0 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, __this); V_0 = L_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0; if (!L_1) { goto IL_0025; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = V_0; NullCheck(L_2); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3; L_3 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_2); V_1 = L_3; goto IL_0020; } IL_0013: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = V_1; NullCheck(L_4); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5; L_5 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_4); V_2 = L_5; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = V_2; if ((((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_6) == ((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)__this))) { goto IL_0023; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = V_2; V_1 = L_7; } IL_0020: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = V_1; if (L_8) { goto IL_0013; } } IL_0023: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = V_1; return L_9; } IL_0025: { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } } // System.Xml.XmlNode System.Xml.XmlLinkedNode::get_NextSibling() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlLinkedNode_get_NextSibling_m2D436964437A504AED023A59BB9E11E61D3A6BCD (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* __this, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0; L_0 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, __this); V_0 = L_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0; if (!L_1) { goto IL_001f; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_2 = __this->___next_1; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = V_0; NullCheck(L_3); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4; L_4 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_3); if ((((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_2) == ((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_4))) { goto IL_001f; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_5 = __this->___next_1; return L_5; } IL_001f: { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)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.Void System.Xml.XmlLoader::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader__ctor_m388331A1FB63D316FDDF4D7312B6977BFEC1A050 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.Void System.Xml.XmlLoader::Load(System.Xml.XmlDocument,System.Xml.XmlReader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_Load_m3B85C836D8C6DE323B85E868DED6E8E36D56C124 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___0_doc, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___1_reader, bool ___2_preserveWhitespace, 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*)&XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___0_doc; __this->___doc_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___doc_0), (void*)L_0); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = ___1_reader; NullCheck(L_1); Type_t* L_2; L_2 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_1, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_4; L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL); bool L_5; L_5 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_2, L_4, NULL); if (!L_5) { goto IL_0031; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = ___1_reader; NullCheck(((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)CastclassClass((RuntimeObject*)L_6, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var))); XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_7; L_7 = XmlTextReader_get_Impl_m99AA88D6B2335764B7B4171CCC9D9C77329D72D8_inline(((XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)CastclassClass((RuntimeObject*)L_6, XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var)), NULL); __this->___reader_1 = L_7; Il2CppCodeGenWriteBarrier((void**)(&__this->___reader_1), (void*)L_7); goto IL_0038; } IL_0031: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = ___1_reader; __this->___reader_1 = L_8; Il2CppCodeGenWriteBarrier((void**)(&__this->___reader_1), (void*)L_8); } IL_0038: { bool L_9 = ___2_preserveWhitespace; __this->___preserveWhitespace_2 = L_9; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_10 = ___0_doc; if (L_10) { goto IL_0052; } } { String_t* L_11; L_11 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBE8285B3FBB68E69672F471D9C7CD01AFC710E52)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_12 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_12); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_12, L_11, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlLoader_Load_m3B85C836D8C6DE323B85E868DED6E8E36D56C124_RuntimeMethod_var))); } IL_0052: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_13 = ___1_reader; if (L_13) { goto IL_0065; } } { String_t* L_14; L_14 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEF5E4E7AE49599D22FDECF4CBDE50AE7C9C1DD38)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_15 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_15); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_15, L_14, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlLoader_Load_m3B85C836D8C6DE323B85E868DED6E8E36D56C124_RuntimeMethod_var))); } IL_0065: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_16 = ___0_doc; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_17 = ___1_reader; NullCheck(L_17); String_t* L_18; L_18 = VirtualFuncInvoker0< String_t* >::Invoke(12 /* System.String System.Xml.XmlReader::get_BaseURI() */, L_17); NullCheck(L_16); XmlDocument_SetBaseURI_mE44F99B7DFBF6C63E7041125703303F9146C146E_inline(L_16, L_18, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_19 = ___1_reader; NullCheck(L_19); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_20; L_20 = VirtualFuncInvoker0< XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* >::Invoke(5 /* System.Xml.XmlReaderSettings System.Xml.XmlReader::get_Settings() */, L_19); if (!L_20) { goto IL_0098; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_21 = ___1_reader; NullCheck(L_21); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_22; L_22 = VirtualFuncInvoker0< XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* >::Invoke(5 /* System.Xml.XmlReaderSettings System.Xml.XmlReader::get_Settings() */, L_21); NullCheck(L_22); int32_t L_23; L_23 = XmlReaderSettings_get_ValidationType_mFF201BAC3A2B593BB69E691E0AA3814455185F8A_inline(L_22, NULL); if ((!(((uint32_t)L_23) == ((uint32_t)4)))) { goto IL_0098; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_24 = ___0_doc; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_25 = ___1_reader; NullCheck(L_25); XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* L_26; L_26 = VirtualFuncInvoker0< XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* >::Invoke(5 /* System.Xml.XmlReaderSettings System.Xml.XmlReader::get_Settings() */, L_25); NullCheck(L_26); XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_27; L_27 = XmlReaderSettings_get_Schemas_mCA60590694647CFB542019784F457006B33D2C62(L_26, NULL); NullCheck(L_24); XmlDocument_set_Schemas_m434B1F13D18F926E959FCC426F4731C9AC385A3B_inline(L_24, L_27, NULL); } IL_0098: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_28 = __this->___reader_1; NullCheck(L_28); int32_t L_29; L_29 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, L_28); if ((((int32_t)L_29) == ((int32_t)1))) { goto IL_00b4; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_30 = __this->___reader_1; NullCheck(L_30); bool L_31; L_31 = VirtualFuncInvoker0< bool >::Invoke(21 /* System.Boolean System.Xml.XmlReader::Read() */, L_30); if (L_31) { goto IL_00b4; } } { return; } IL_00b4: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_32 = ___0_doc; XmlLoader_LoadDocSequence_m7A96D61FBF4996383D5339AB7B416CE0D51D4526(__this, L_32, NULL); return; } } // System.Void System.Xml.XmlLoader::LoadDocSequence(System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadDocSequence_m7A96D61FBF4996383D5339AB7B416CE0D51D4526 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___0_parentDoc, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; { V_0 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; goto IL_001b; } IL_0004: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___0_parentDoc; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = ___0_parentDoc; NullCheck(L_0); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3; L_3 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_0, L_1, L_2); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___reader_1; NullCheck(L_4); bool L_5; L_5 = VirtualFuncInvoker0< bool >::Invoke(21 /* System.Boolean System.Xml.XmlReader::Read() */, L_4); if (L_5) { goto IL_001b; } } { return; } IL_001b: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6; L_6 = XmlLoader_LoadNode_mDFD824F250FA615C734180BF6141A472610F7E68(__this, (bool)1, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = L_6; V_0 = L_7; if (L_7) { goto IL_0004; } } { return; } } // System.Xml.XmlNode System.Xml.XmlLoader::LoadNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlLoader_LoadNode_mDFD824F250FA615C734180BF6141A472610F7E68 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, bool ___0_skipOverWhitespace, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* V_0 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_1 = NULL; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_2 = NULL; RuntimeObject* V_3 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_4 = NULL; bool V_5 = false; int32_t V_6 = 0; XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* V_7 = NULL; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_8 = NULL; { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1; V_0 = L_0; V_1 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } IL_0009: { V_4 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = V_0; NullCheck(L_1); int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_1); V_6 = L_2; int32_t L_3 = V_6; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, 1))) { case 0: { goto IL_0066; } case 1: { goto IL_017a; } case 2: { goto IL_0187; } case 3: { goto IL_01df; } case 4: { goto IL_016a; } case 5: { goto IL_0238; } case 6: { goto IL_01fe; } case 7: { goto IL_0219; } case 8: { goto IL_0238; } case 9: { goto IL_022e; } case 10: { goto IL_0238; } case 11: { goto IL_0238; } case 12: { goto IL_01b7; } case 13: { goto IL_019f; } case 14: { goto IL_0117; } case 15: { goto IL_0178; } case 16: { goto IL_01f4; } } } { goto IL_0238; } IL_0066: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = V_0; NullCheck(L_4); bool L_5; L_5 = VirtualFuncInvoker0< bool >::Invoke(13 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_4); V_5 = L_5; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_6 = __this->___doc_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7 = V_0; NullCheck(L_7); String_t* L_8; L_8 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_7); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = V_0; NullCheck(L_9); String_t* L_10; L_10 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_9); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11 = V_0; NullCheck(L_11); String_t* L_12; L_12 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_11); NullCheck(L_6); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_13; L_13 = VirtualFuncInvoker3< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*, String_t*, String_t*, String_t* >::Invoke(57 /* System.Xml.XmlElement System.Xml.XmlDocument::CreateElement(System.String,System.String,System.String) */, L_6, L_8, L_10, L_12); V_2 = L_13; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_14 = V_2; bool L_15 = V_5; NullCheck(L_14); XmlElement_set_IsEmpty_mA8B835AE5541C20296A231855F3ABF4296A475F7(L_14, L_15, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_16 = V_0; NullCheck(L_16); bool L_17; L_17 = VirtualFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Xml.XmlReader::MoveToFirstAttribute() */, L_16); if (!L_17) { goto IL_00c5; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_18 = V_2; NullCheck(L_18); XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_19; L_19 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(13 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_18); V_7 = L_19; } IL_00a4: { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_20; L_20 = XmlLoader_LoadAttributeNode_mD21D3FF205915C01F5EAA89291E816AEDE5E8567(__this, NULL); V_8 = L_20; XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_21 = V_7; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_22 = V_8; NullCheck(L_21); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_23; L_23 = XmlAttributeCollection_Append_mF5AFDC3C4547DA089353B76241A5B46437CA8484(L_21, L_22, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_24 = V_0; NullCheck(L_24); bool L_25; L_25 = VirtualFuncInvoker0< bool >::Invoke(18 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_24); if (L_25) { goto IL_00a4; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_26 = V_0; NullCheck(L_26); bool L_27; L_27 = VirtualFuncInvoker0< bool >::Invoke(19 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_26); } IL_00c5: { bool L_28 = V_5; if (L_28) { goto IL_00e1; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_29 = V_1; if (!L_29) { goto IL_00da; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_30 = V_1; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_31 = V_2; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_32 = __this->___doc_0; NullCheck(L_30); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_33; L_33 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_30, L_31, L_32); } IL_00da: { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_34 = V_2; V_1 = L_34; goto IL_025b; } IL_00e1: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_35 = V_0; NullCheck(L_35); RuntimeObject* L_36; L_36 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(15 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlReader::get_SchemaInfo() */, L_35); V_3 = L_36; RuntimeObject* L_37 = V_3; if (!L_37) { goto IL_010f; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_38 = V_2; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_39 = __this->___doc_0; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_40 = V_2; NullCheck(L_40); String_t* L_41; L_41 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, L_40); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_42 = V_2; NullCheck(L_42); String_t* L_43; L_43 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_42); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_44 = V_2; NullCheck(L_44); String_t* L_45; L_45 = VirtualFuncInvoker0< String_t* >::Invoke(28 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_44); RuntimeObject* L_46 = V_3; NullCheck(L_39); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_47; L_47 = XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916(L_39, L_41, L_43, L_45, L_46, NULL); NullCheck(L_38); XmlElement_set_XmlName_m15166904F386EAB60030EAB490CC0FD1CB624EFC_inline(L_38, L_47, NULL); } IL_010f: { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_48 = V_2; V_4 = L_48; goto IL_0244; } IL_0117: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_49 = V_1; if (L_49) { goto IL_011c; } } { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } IL_011c: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_50 = V_0; NullCheck(L_50); RuntimeObject* L_51; L_51 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(15 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlReader::get_SchemaInfo() */, L_50); V_3 = L_51; RuntimeObject* L_52 = V_3; if (!L_52) { goto IL_0154; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_53 = V_1; V_2 = ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_53, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_54 = V_2; if (!L_54) { goto IL_0154; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_55 = V_2; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_56 = __this->___doc_0; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_57 = V_2; NullCheck(L_57); String_t* L_58; L_58 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, L_57); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_59 = V_2; NullCheck(L_59); String_t* L_60; L_60 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_59); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_61 = V_2; NullCheck(L_61); String_t* L_62; L_62 = VirtualFuncInvoker0< String_t* >::Invoke(28 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_61); RuntimeObject* L_63 = V_3; NullCheck(L_56); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_64; L_64 = XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916(L_56, L_58, L_60, L_62, L_63, NULL); NullCheck(L_55); XmlElement_set_XmlName_m15166904F386EAB60030EAB490CC0FD1CB624EFC_inline(L_55, L_64, NULL); } IL_0154: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_65 = V_1; NullCheck(L_65); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_66; L_66 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_65); if (L_66) { goto IL_015e; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_67 = V_1; return L_67; } IL_015e: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_68 = V_1; NullCheck(L_68); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_69; L_69 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_68); V_1 = L_69; goto IL_025b; } IL_016a: { XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_70; L_70 = XmlLoader_LoadEntityReferenceNode_m26B083645AAB9B8E96E676B2EB5F19EADC24B628(__this, (bool)0, NULL); V_4 = L_70; goto IL_0244; } IL_0178: { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } IL_017a: { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_71; L_71 = XmlLoader_LoadAttributeNode_mD21D3FF205915C01F5EAA89291E816AEDE5E8567(__this, NULL); V_4 = L_71; goto IL_0244; } IL_0187: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_72 = __this->___doc_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_73 = V_0; NullCheck(L_73); String_t* L_74; L_74 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_73); NullCheck(L_72); XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_75; L_75 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(52 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_72, L_74); V_4 = L_75; goto IL_0244; } IL_019f: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_76 = __this->___doc_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_77 = V_0; NullCheck(L_77); String_t* L_78; L_78 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_77); NullCheck(L_76); XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* L_79; L_79 = VirtualFuncInvoker1< XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE*, String_t* >::Invoke(53 /* System.Xml.XmlSignificantWhitespace System.Xml.XmlDocument::CreateSignificantWhitespace(System.String) */, L_76, L_78); V_4 = L_79; goto IL_0244; } IL_01b7: { bool L_80 = __this->___preserveWhitespace_2; if (!L_80) { goto IL_01d4; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_81 = __this->___doc_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_82 = V_0; NullCheck(L_82); String_t* L_83; L_83 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_82); NullCheck(L_81); XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* L_84; L_84 = VirtualFuncInvoker1< XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24*, String_t* >::Invoke(54 /* System.Xml.XmlWhitespace System.Xml.XmlDocument::CreateWhitespace(System.String) */, L_81, L_83); V_4 = L_84; goto IL_0244; } IL_01d4: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_85 = V_1; if (L_85) { goto IL_025b; } } { bool L_86 = ___0_skipOverWhitespace; if (L_86) { goto IL_025b; } } { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } IL_01df: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_87 = __this->___doc_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_88 = V_0; NullCheck(L_88); String_t* L_89; L_89 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_88); NullCheck(L_87); XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* L_90; L_90 = VirtualFuncInvoker1< XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA*, String_t* >::Invoke(45 /* System.Xml.XmlCDataSection System.Xml.XmlDocument::CreateCDataSection(System.String) */, L_87, L_89); V_4 = L_90; goto IL_0244; } IL_01f4: { XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_91; L_91 = XmlLoader_LoadDeclarationNode_m43A2FAF27DCB6A1CBFEABB7508DD4C94523F1AE6(__this, NULL); V_4 = L_91; goto IL_0244; } IL_01fe: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_92 = __this->___doc_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_93 = V_0; NullCheck(L_93); String_t* L_94; L_94 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_93); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_95 = V_0; NullCheck(L_95); String_t* L_96; L_96 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_95); NullCheck(L_92); XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* L_97; L_97 = VirtualFuncInvoker2< XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3*, String_t*, String_t* >::Invoke(50 /* System.Xml.XmlProcessingInstruction System.Xml.XmlDocument::CreateProcessingInstruction(System.String,System.String) */, L_92, L_94, L_96); V_4 = L_97; goto IL_0244; } IL_0219: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_98 = __this->___doc_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_99 = V_0; NullCheck(L_99); String_t* L_100; L_100 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_99); NullCheck(L_98); XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* L_101; L_101 = VirtualFuncInvoker1< XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9*, String_t* >::Invoke(46 /* System.Xml.XmlComment System.Xml.XmlDocument::CreateComment(System.String) */, L_98, L_100); V_4 = L_101; goto IL_0244; } IL_022e: { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_102; L_102 = XmlLoader_LoadDocumentTypeNode_m8869BA2D6837AF67F10647453EA32681AA71E3A9(__this, NULL); V_4 = L_102; goto IL_0244; } IL_0238: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_103 = V_0; NullCheck(L_103); int32_t L_104; L_104 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_103); Exception_t* L_105; L_105 = XmlLoader_UnexpectedNodeType_m302DDB86C8F1F9C46BCBD9018F67FB807EB19083(L_104, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_105, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlLoader_LoadNode_mDFD824F250FA615C734180BF6141A472610F7E68_RuntimeMethod_var))); } IL_0244: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_106 = V_1; if (!L_106) { goto IL_0258; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_107 = V_1; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_108 = V_4; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_109 = __this->___doc_0; NullCheck(L_107); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_110; L_110 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_107, L_108, L_109); goto IL_025b; } IL_0258: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_111 = V_4; return L_111; } IL_025b: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_112 = V_0; NullCheck(L_112); bool L_113; L_113 = VirtualFuncInvoker0< bool >::Invoke(21 /* System.Boolean System.Xml.XmlReader::Read() */, L_112); if (L_113) { goto IL_0009; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_114 = V_1; if (!L_114) { goto IL_027a; } } { goto IL_0272; } IL_026b: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_115 = V_1; NullCheck(L_115); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_116; L_116 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_115); V_1 = L_116; } IL_0272: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_117 = V_1; NullCheck(L_117); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_118; L_118 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_117); if (L_118) { goto IL_026b; } } IL_027a: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_119 = V_1; return L_119; } } // System.Xml.XmlAttribute System.Xml.XmlLoader::LoadAttributeNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlLoader_LoadAttributeNode_mD21D3FF205915C01F5EAA89291E816AEDE5E8567 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __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; } XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* V_0 = NULL; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_1 = NULL; RuntimeObject* V_2 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_3 = NULL; int32_t V_4 = 0; { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1; V_0 = L_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = V_0; NullCheck(L_1); bool L_2; L_2 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsDefault() */, L_1); if (!L_2) { goto IL_0016; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_3; L_3 = XmlLoader_LoadDefaultAttribute_m020283A6DBFA29FF4B5D4C7D03D56DF43E4216D7(__this, NULL); return L_3; } IL_0016: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4 = __this->___doc_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = V_0; NullCheck(L_5); String_t* L_6; L_6 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_5); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7 = V_0; NullCheck(L_7); String_t* L_8; L_8 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_7); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = V_0; NullCheck(L_9); String_t* L_10; L_10 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_9); NullCheck(L_4); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_11; L_11 = VirtualFuncInvoker3< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t*, String_t* >::Invoke(55 /* System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String,System.String,System.String) */, L_4, L_6, L_8, L_10); V_1 = L_11; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12 = V_0; NullCheck(L_12); RuntimeObject* L_13; L_13 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(15 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlReader::get_SchemaInfo() */, L_12); V_2 = L_13; RuntimeObject* L_14 = V_2; if (!L_14) { goto IL_00fb; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_15 = V_1; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_16 = __this->___doc_0; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_17 = V_1; NullCheck(L_17); String_t* L_18; L_18 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, L_17); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_19 = V_1; NullCheck(L_19); String_t* L_20; L_20 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_19); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_21 = V_1; NullCheck(L_21); String_t* L_22; L_22 = VirtualFuncInvoker0< String_t* >::Invoke(28 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_21); RuntimeObject* L_23 = V_2; NullCheck(L_16); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_24; L_24 = XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28(L_16, L_18, L_20, L_22, L_23, NULL); NullCheck(L_15); XmlAttribute_set_XmlName_m8D259D5CC4750809EACB5E213333E1E55D8BB6BB_inline(L_15, L_24, NULL); goto IL_00fb; } IL_006a: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_25 = V_0; NullCheck(L_25); int32_t L_26; L_26 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_25); V_4 = L_26; int32_t L_27 = V_4; if ((((int32_t)L_27) == ((int32_t)3))) { goto IL_007e; } } { int32_t L_28 = V_4; if ((((int32_t)L_28) == ((int32_t)5))) { goto IL_0092; } } { goto IL_00e1; } IL_007e: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_29 = __this->___doc_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_30 = V_0; NullCheck(L_30); String_t* L_31; L_31 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_30); NullCheck(L_29); XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_32; L_32 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(52 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_29, L_31); V_3 = L_32; goto IL_00ed; } IL_0092: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_33 = __this->___doc_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_34 = V_0; NullCheck(L_34); String_t* L_35; L_35 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_34); NullCheck(L_33); XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_36; L_36 = VirtualFuncInvoker1< XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*, String_t* >::Invoke(49 /* System.Xml.XmlEntityReference System.Xml.XmlDocument::CreateEntityReference(System.String) */, L_33, L_35); V_3 = L_36; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_37 = V_0; NullCheck(L_37); bool L_38; L_38 = VirtualFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Xml.XmlReader::get_CanResolveEntity() */, L_37); if (!L_38) { goto IL_00ed; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_39 = V_0; NullCheck(L_39); VirtualActionInvoker0::Invoke(27 /* System.Void System.Xml.XmlReader::ResolveEntity() */, L_39); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_40 = V_3; XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320(__this, L_40, (bool)0, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_41 = V_3; NullCheck(L_41); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_42; L_42 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_41); if (L_42) { goto IL_00ed; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_43 = V_3; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_44 = __this->___doc_0; String_t* L_45 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_44); XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_46; L_46 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(52 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_44, L_45); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_47 = __this->___doc_0; NullCheck(L_43); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_48; L_48 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_43, L_46, L_47); goto IL_00ed; } IL_00e1: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_49 = V_0; NullCheck(L_49); int32_t L_50; L_50 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_49); Exception_t* L_51; L_51 = XmlLoader_UnexpectedNodeType_m302DDB86C8F1F9C46BCBD9018F67FB807EB19083(L_50, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_51, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlLoader_LoadAttributeNode_mD21D3FF205915C01F5EAA89291E816AEDE5E8567_RuntimeMethod_var))); } IL_00ed: { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_52 = V_1; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_53 = V_3; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_54 = __this->___doc_0; NullCheck(L_52); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_55; L_55 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_52, L_53, L_54); } IL_00fb: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_56 = V_0; NullCheck(L_56); bool L_57; L_57 = VirtualFuncInvoker0< bool >::Invoke(20 /* System.Boolean System.Xml.XmlReader::ReadAttributeValue() */, L_56); if (L_57) { goto IL_006a; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_58 = V_1; return L_58; } } // System.Xml.XmlAttribute System.Xml.XmlLoader::LoadDefaultAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlLoader_LoadDefaultAttribute_m020283A6DBFA29FF4B5D4C7D03D56DF43E4216D7 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* V_0 = NULL; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_1 = NULL; RuntimeObject* V_2 = NULL; XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* V_3 = NULL; { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1; V_0 = L_0; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = __this->___doc_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = V_0; NullCheck(L_2); String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_2); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = V_0; NullCheck(L_4); String_t* L_5; L_5 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_4); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = V_0; NullCheck(L_6); String_t* L_7; L_7 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_6); NullCheck(L_1); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_8; L_8 = VirtualFuncInvoker3< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t*, String_t* >::Invoke(56 /* System.Xml.XmlAttribute System.Xml.XmlDocument::CreateDefaultAttribute(System.String,System.String,System.String) */, L_1, L_3, L_5, L_7); V_1 = L_8; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = V_0; NullCheck(L_9); RuntimeObject* L_10; L_10 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(15 /* System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlReader::get_SchemaInfo() */, L_9); V_2 = L_10; RuntimeObject* L_11 = V_2; if (!L_11) { goto IL_0053; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_12 = V_1; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_13 = __this->___doc_0; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_14 = V_1; NullCheck(L_14); String_t* L_15; L_15 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, L_14); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_16 = V_1; NullCheck(L_16); String_t* L_17; L_17 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_16); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_18 = V_1; NullCheck(L_18); String_t* L_19; L_19 = VirtualFuncInvoker0< String_t* >::Invoke(28 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_18); RuntimeObject* L_20 = V_2; NullCheck(L_13); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_21; L_21 = XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28(L_13, L_15, L_17, L_19, L_20, NULL); NullCheck(L_12); XmlAttribute_set_XmlName_m8D259D5CC4750809EACB5E213333E1E55D8BB6BB_inline(L_12, L_21, NULL); } IL_0053: { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_22 = V_1; XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320(__this, L_22, (bool)0, NULL); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_23 = V_1; V_3 = ((XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC*)IsInstClass((RuntimeObject*)L_23, XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var)); XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_24 = V_3; if (!L_24) { goto IL_006c; } } { XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_25 = V_3; NullCheck(L_25); XmlUnspecifiedAttribute_SetSpecified_m1CF67FF3E90E62DC5B0983B8DE91B6E95228509B_inline(L_25, (bool)0, NULL); } IL_006c: { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_26 = V_1; return L_26; } } // System.Void System.Xml.XmlLoader::LoadAttributeValue(System.Xml.XmlNode,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_parent, bool ___1_direct, 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*)&XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* V_0 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_1 = NULL; int32_t V_2 = 0; XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* G_B8_0 = NULL; XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* G_B13_0 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* G_B17_0 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* G_B16_0 = NULL; XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* G_B18_0 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* G_B18_1 = NULL; { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1; V_0 = L_0; goto IL_00eb; } IL_000c: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = V_0; NullCheck(L_1); int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_1); V_2 = L_2; int32_t L_3 = V_2; if ((((int32_t)L_3) == ((int32_t)3))) { goto IL_0025; } } { int32_t L_4 = V_2; if ((((int32_t)L_4) == ((int32_t)5))) { goto IL_0053; } } { int32_t L_5 = V_2; if ((((int32_t)L_5) == ((int32_t)((int32_t)16)))) { goto IL_0052; } } { goto IL_00d1; } IL_0025: { bool L_6 = ___1_direct; if (L_6) { goto IL_003b; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_7 = __this->___doc_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = V_0; NullCheck(L_8); String_t* L_9; L_9 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_8); NullCheck(L_7); XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_10; L_10 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(52 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_7, L_9); G_B8_0 = L_10; goto IL_004c; } IL_003b: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11 = V_0; NullCheck(L_11); String_t* L_12; L_12 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_11); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_13 = __this->___doc_0; XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_14 = (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*)il2cpp_codegen_object_new(XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_il2cpp_TypeInfo_var); NullCheck(L_14); XmlText__ctor_m8FFB8DDBB2C9013F10FD94A1573DCF6A2F104059(L_14, L_12, L_13, NULL); G_B8_0 = L_14; } IL_004c: { V_1 = G_B8_0; goto IL_00dd; } IL_0052: { return; } IL_0053: { bool L_15 = ___1_direct; if (L_15) { goto IL_006e; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_16 = __this->___doc_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_17 = __this->___reader_1; NullCheck(L_17); String_t* L_18; L_18 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_17); NullCheck(L_16); XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_19; L_19 = VirtualFuncInvoker1< XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*, String_t* >::Invoke(49 /* System.Xml.XmlEntityReference System.Xml.XmlDocument::CreateEntityReference(System.String) */, L_16, L_18); G_B13_0 = L_19; goto IL_0084; } IL_006e: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_20 = __this->___reader_1; NullCheck(L_20); String_t* L_21; L_21 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_20); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_22 = __this->___doc_0; XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_23 = (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*)il2cpp_codegen_object_new(XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var); NullCheck(L_23); XmlEntityReference__ctor_m7AAF0A5672B04060ECEAFAB3DF7E93DA8A7B6A94(L_23, L_21, L_22, NULL); G_B13_0 = L_23; } IL_0084: { V_1 = G_B13_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_24 = V_0; NullCheck(L_24); bool L_25; L_25 = VirtualFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Xml.XmlReader::get_CanResolveEntity() */, L_24); if (!L_25) { goto IL_00dd; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_26 = V_0; NullCheck(L_26); VirtualActionInvoker0::Invoke(27 /* System.Void System.Xml.XmlReader::ResolveEntity() */, L_26); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_27 = V_1; bool L_28 = ___1_direct; XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320(__this, L_27, L_28, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_29 = V_1; NullCheck(L_29); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_30; L_30 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_29); if (L_30) { goto IL_00dd; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_31 = V_1; bool L_32 = ___1_direct; G_B16_0 = L_31; if (L_32) { G_B17_0 = L_31; goto IL_00b9; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_33 = __this->___doc_0; String_t* L_34 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_33); XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_35; L_35 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(52 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_33, L_34); G_B18_0 = L_35; G_B18_1 = G_B16_0; goto IL_00c3; } IL_00b9: { String_t* L_36 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_37 = (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*)il2cpp_codegen_object_new(XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_il2cpp_TypeInfo_var); NullCheck(L_37); XmlText__ctor_mD1D12098F7364C006DAAC8E7700C0C729CDEACDE(L_37, L_36, NULL); G_B18_0 = L_37; G_B18_1 = G_B17_0; } IL_00c3: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_38 = __this->___doc_0; NullCheck(G_B18_1); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_39; L_39 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, G_B18_1, G_B18_0, L_38); goto IL_00dd; } IL_00d1: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_40 = V_0; NullCheck(L_40); int32_t L_41; L_41 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_40); Exception_t* L_42; L_42 = XmlLoader_UnexpectedNodeType_m302DDB86C8F1F9C46BCBD9018F67FB807EB19083(L_41, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320_RuntimeMethod_var))); } IL_00dd: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_43 = ___0_parent; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_44 = V_1; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_45 = __this->___doc_0; NullCheck(L_43); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_46; L_46 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_43, L_44, L_45); } IL_00eb: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_47 = V_0; NullCheck(L_47); bool L_48; L_48 = VirtualFuncInvoker0< bool >::Invoke(20 /* System.Boolean System.Xml.XmlReader::ReadAttributeValue() */, L_47); if (L_48) { goto IL_000c; } } { return; } } // System.Xml.XmlEntityReference System.Xml.XmlLoader::LoadEntityReferenceNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* XmlLoader_LoadEntityReferenceNode_m26B083645AAB9B8E96E676B2EB5F19EADC24B628 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, bool ___0_direct, 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*)&XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* V_0 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_1 = NULL; XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* G_B3_0 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* G_B8_0 = NULL; { bool L_0 = ___0_direct; if (L_0) { goto IL_001b; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = __this->___doc_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___reader_1; NullCheck(L_2); String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_2); NullCheck(L_1); XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_4; L_4 = VirtualFuncInvoker1< XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*, String_t* >::Invoke(49 /* System.Xml.XmlEntityReference System.Xml.XmlDocument::CreateEntityReference(System.String) */, L_1, L_3); G_B3_0 = L_4; goto IL_0031; } IL_001b: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = __this->___reader_1; NullCheck(L_5); String_t* L_6; L_6 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_5); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_7 = __this->___doc_0; XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_8 = (XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*)il2cpp_codegen_object_new(XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var); NullCheck(L_8); XmlEntityReference__ctor_m7AAF0A5672B04060ECEAFAB3DF7E93DA8A7B6A94(L_8, L_6, L_7, NULL); G_B3_0 = L_8; } IL_0031: { V_0 = G_B3_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = __this->___reader_1; NullCheck(L_9); bool L_10; L_10 = VirtualFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Xml.XmlReader::get_CanResolveEntity() */, L_9); if (!L_10) { goto IL_00b1; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11 = __this->___reader_1; NullCheck(L_11); VirtualActionInvoker0::Invoke(27 /* System.Void System.Xml.XmlReader::ResolveEntity() */, L_11); goto IL_0070; } IL_004c: { bool L_12 = ___0_direct; if (L_12) { goto IL_0058; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_13; L_13 = XmlLoader_LoadNode_mDFD824F250FA615C734180BF6141A472610F7E68(__this, (bool)0, NULL); G_B8_0 = L_13; goto IL_005e; } IL_0058: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14; L_14 = XmlLoader_LoadNodeDirect_m2C0D5301FFB96CA298EF768E2CE903B6C6D459B7(__this, NULL); G_B8_0 = L_14; } IL_005e: { V_1 = G_B8_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15 = V_1; if (!L_15) { goto IL_0070; } } { XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_16 = V_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_17 = V_1; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_18 = __this->___doc_0; NullCheck(L_16); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_19; L_19 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_16, L_17, L_18); } IL_0070: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_20 = __this->___reader_1; NullCheck(L_20); bool L_21; L_21 = VirtualFuncInvoker0< bool >::Invoke(21 /* System.Boolean System.Xml.XmlReader::Read() */, L_20); if (!L_21) { goto IL_008c; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_22 = __this->___reader_1; NullCheck(L_22); int32_t L_23; L_23 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_22); if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)16))))) { goto IL_004c; } } IL_008c: { XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_24 = V_0; NullCheck(L_24); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_25; L_25 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_LastChild() */, L_24); if (L_25) { goto IL_00b1; } } { XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_26 = V_0; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_27 = __this->___doc_0; String_t* L_28 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_27); XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_29; L_29 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(52 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_27, L_28); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_30 = __this->___doc_0; NullCheck(L_26); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_31; L_31 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_26, L_29, L_30); } IL_00b1: { XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_32 = V_0; return L_32; } } // System.Xml.XmlDeclaration System.Xml.XmlLoader::LoadDeclarationNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* XmlLoader_LoadDeclarationNode_m43A2FAF27DCB6A1CBFEABB7508DD4C94523F1AE6 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral29988D0F9BCADFABFF66CBF5AB73096D1CAE3128); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BAA302A400A1B9C6F712ED9DBE1D7010A5034BF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; String_t* V_3 = NULL; { V_0 = (String_t*)NULL; V_1 = (String_t*)NULL; V_2 = (String_t*)NULL; goto IL_0065; } IL_0008: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_0); V_3 = L_1; String_t* L_2 = V_3; bool L_3; L_3 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_2, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, NULL); if (L_3) { goto IL_003d; } } { String_t* L_4 = V_3; bool L_5; L_5 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_4, _stringLiteral29988D0F9BCADFABFF66CBF5AB73096D1CAE3128, NULL); if (L_5) { goto IL_004b; } } { String_t* L_6 = V_3; bool L_7; L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_6, _stringLiteral5BAA302A400A1B9C6F712ED9DBE1D7010A5034BF, NULL); if (L_7) { goto IL_0059; } } { goto IL_0065; } IL_003d: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = __this->___reader_1; NullCheck(L_8); String_t* L_9; L_9 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_8); V_0 = L_9; goto IL_0065; } IL_004b: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = __this->___reader_1; NullCheck(L_10); String_t* L_11; L_11 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_10); V_1 = L_11; goto IL_0065; } IL_0059: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12 = __this->___reader_1; NullCheck(L_12); String_t* L_13; L_13 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_12); V_2 = L_13; } IL_0065: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_14 = __this->___reader_1; NullCheck(L_14); bool L_15; L_15 = VirtualFuncInvoker0< bool >::Invoke(18 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_14); if (L_15) { goto IL_0008; } } { String_t* L_16 = V_0; if (L_16) { goto IL_008b; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_17 = __this->___reader_1; NullCheck(L_17); String_t* L_18; L_18 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_17); XmlLoader_ParseXmlDeclarationValue_m7A0C36D8327F336C841C6DF3F74140FCE5D6333E(L_18, (&V_0), (&V_1), (&V_2), NULL); } IL_008b: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_19 = __this->___doc_0; String_t* L_20 = V_0; String_t* L_21 = V_1; String_t* L_22 = V_2; NullCheck(L_19); XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* L_23; L_23 = VirtualFuncInvoker3< XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79*, String_t*, String_t*, String_t* >::Invoke(51 /* System.Xml.XmlDeclaration System.Xml.XmlDocument::CreateXmlDeclaration(System.String,System.String,System.String) */, L_19, L_20, L_21, L_22); return L_23; } } // System.Xml.XmlDocumentType System.Xml.XmlLoader::LoadDocumentTypeNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* XmlLoader_LoadDocumentTypeNode_m8869BA2D6837AF67F10647453EA32681AA71E3A9 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; String_t* V_3 = NULL; XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* V_4 = NULL; RuntimeObject* V_5 = NULL; String_t* V_6 = NULL; { V_0 = (String_t*)NULL; V_1 = (String_t*)NULL; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_0); V_2 = L_1; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = __this->___reader_1; NullCheck(L_2); String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_2); V_3 = L_3; goto IL_0063; } IL_001e: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___reader_1; NullCheck(L_4); String_t* L_5; L_5 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_4); V_6 = L_5; String_t* L_6 = V_6; bool L_7; L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_6, _stringLiteral1F1BC4D23D8E5661364EBEC728BE303959F6CF91, NULL); if (L_7) { goto IL_0049; } } { String_t* L_8 = V_6; bool L_9; L_9 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_8, _stringLiteralD4DAA1A26807E1A567D68B161E6A95701A3FD560, NULL); if (L_9) { goto IL_0057; } } { goto IL_0063; } IL_0049: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = __this->___reader_1; NullCheck(L_10); String_t* L_11; L_11 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_10); V_0 = L_11; goto IL_0063; } IL_0057: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12 = __this->___reader_1; NullCheck(L_12); String_t* L_13; L_13 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_12); V_1 = L_13; } IL_0063: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_14 = __this->___reader_1; NullCheck(L_14); bool L_15; L_15 = VirtualFuncInvoker0< bool >::Invoke(18 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_14); if (L_15) { goto IL_001e; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_16 = __this->___doc_0; String_t* L_17 = V_3; String_t* L_18 = V_0; String_t* L_19 = V_1; String_t* L_20 = V_2; NullCheck(L_16); XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_21; L_21 = VirtualFuncInvoker4< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E*, String_t*, String_t*, String_t*, String_t* >::Invoke(47 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::CreateDocumentType(System.String,System.String,System.String,System.String) */, L_16, L_17, L_18, L_19, L_20); V_4 = L_21; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_22 = __this->___reader_1; NullCheck(L_22); RuntimeObject* L_23; L_23 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(29 /* System.Xml.IDtdInfo System.Xml.XmlReader::get_DtdInfo() */, L_22); V_5 = L_23; RuntimeObject* L_24 = V_5; if (!L_24) { goto IL_009e; } } { RuntimeObject* L_25 = V_5; XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_26 = V_4; XmlLoader_LoadDocumentType_mC301F9962BC7D2F1134EDE1CD6D71D2EE68E9247(__this, L_25, L_26, NULL); goto IL_00a6; } IL_009e: { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_27 = V_4; XmlLoader_ParseDocumentType_m7E6901C3E8CF530A50BFE027DE91E999307F2A02(__this, L_27, NULL); } IL_00a6: { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_28 = V_4; return L_28; } } // System.Xml.XmlNode System.Xml.XmlLoader::LoadNodeDirect() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlLoader_LoadNodeDirect_m2C0D5301FFB96CA298EF768E2CE903B6C6D459B7 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* V_0 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_1 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_2 = NULL; bool V_3 = false; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_4 = NULL; int32_t V_5 = 0; XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* V_6 = NULL; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_7 = NULL; { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1; V_0 = L_0; V_1 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } IL_0009: { V_2 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = V_0; NullCheck(L_1); int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_1); V_5 = L_2; int32_t L_3 = V_5; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, 1))) { case 0: { goto IL_0061; } case 1: { goto IL_0118; } case 2: { goto IL_0167; } case 3: { goto IL_0180; } case 4: { goto IL_010b; } case 5: { goto IL_01d6; } case 6: { goto IL_0199; } case 7: { goto IL_01bd; } case 8: { goto IL_01d6; } case 9: { goto IL_01d6; } case 10: { goto IL_01d6; } case 11: { goto IL_01d6; } case 12: { goto IL_0140; } case 13: { goto IL_0124; } case 14: { goto IL_00f5; } case 15: { goto IL_01fc; } } } { goto IL_01d6; } IL_0061: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = __this->___reader_1; NullCheck(L_4); bool L_5; L_5 = VirtualFuncInvoker0< bool >::Invoke(13 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_4); V_3 = L_5; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6 = __this->___reader_1; NullCheck(L_6); String_t* L_7; L_7 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_6); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8 = __this->___reader_1; NullCheck(L_8); String_t* L_9; L_9 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_8); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_10 = __this->___reader_1; NullCheck(L_10); String_t* L_11; L_11 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_10); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_12 = __this->___doc_0; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_13 = (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)il2cpp_codegen_object_new(XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var); NullCheck(L_13); XmlElement__ctor_m1C80BD485FDDF4F947A67A6861C525E205D8F0C4(L_13, L_7, L_9, L_11, L_12, NULL); V_4 = L_13; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_14 = V_4; bool L_15 = V_3; NullCheck(L_14); XmlElement_set_IsEmpty_mA8B835AE5541C20296A231855F3ABF4296A475F7(L_14, L_15, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_16 = __this->___reader_1; NullCheck(L_16); bool L_17; L_17 = VirtualFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Xml.XmlReader::MoveToFirstAttribute() */, L_16); if (!L_17) { goto IL_00d3; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_18 = V_4; NullCheck(L_18); XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_19; L_19 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(13 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_18); V_6 = L_19; } IL_00b9: { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_20; L_20 = XmlLoader_LoadAttributeNodeDirect_m700A4AD66233956704AA6D82F1D59A9204F50B4B(__this, NULL); V_7 = L_20; XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_21 = V_6; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_22 = V_7; NullCheck(L_21); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_23; L_23 = XmlAttributeCollection_Append_mF5AFDC3C4547DA089353B76241A5B46437CA8484(L_21, L_22, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_24 = V_0; NullCheck(L_24); bool L_25; L_25 = VirtualFuncInvoker0< bool >::Invoke(18 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_24); if (L_25) { goto IL_00b9; } } IL_00d3: { bool L_26 = V_3; if (L_26) { goto IL_00ed; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_27 = V_1; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_28 = V_4; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_29 = __this->___doc_0; NullCheck(L_27); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_30; L_30 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_27, L_28, L_29); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_31 = V_4; V_1 = L_31; goto IL_01fc; } IL_00ed: { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_32 = V_4; V_2 = L_32; goto IL_01e7; } IL_00f5: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_33 = V_1; NullCheck(L_33); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_34; L_34 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_33); if (L_34) { goto IL_00ff; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_35 = V_1; return L_35; } IL_00ff: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_36 = V_1; NullCheck(L_36); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_37; L_37 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_36); V_1 = L_37; goto IL_01fc; } IL_010b: { XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_38; L_38 = XmlLoader_LoadEntityReferenceNode_m26B083645AAB9B8E96E676B2EB5F19EADC24B628(__this, (bool)1, NULL); V_2 = L_38; goto IL_01e7; } IL_0118: { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_39; L_39 = XmlLoader_LoadAttributeNodeDirect_m700A4AD66233956704AA6D82F1D59A9204F50B4B(__this, NULL); V_2 = L_39; goto IL_01e7; } IL_0124: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_40 = __this->___reader_1; NullCheck(L_40); String_t* L_41; L_41 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_40); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_42 = __this->___doc_0; XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* L_43 = (XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE*)il2cpp_codegen_object_new(XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE_il2cpp_TypeInfo_var); NullCheck(L_43); XmlSignificantWhitespace__ctor_mCE8AE4FC827464B5A5A54191D5D62E2AF41E078F(L_43, L_41, L_42, NULL); V_2 = L_43; goto IL_01e7; } IL_0140: { bool L_44 = __this->___preserveWhitespace_2; if (!L_44) { goto IL_01fc; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_45 = __this->___reader_1; NullCheck(L_45); String_t* L_46; L_46 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_45); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_47 = __this->___doc_0; XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* L_48 = (XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24*)il2cpp_codegen_object_new(XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24_il2cpp_TypeInfo_var); NullCheck(L_48); XmlWhitespace__ctor_m95E6CA1AFEECB5C1B3EDDAA039864BDF315FD0AE(L_48, L_46, L_47, NULL); V_2 = L_48; goto IL_01e7; } IL_0167: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_49 = __this->___reader_1; NullCheck(L_49); String_t* L_50; L_50 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_49); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_51 = __this->___doc_0; XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_52 = (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*)il2cpp_codegen_object_new(XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A_il2cpp_TypeInfo_var); NullCheck(L_52); XmlText__ctor_m8FFB8DDBB2C9013F10FD94A1573DCF6A2F104059(L_52, L_50, L_51, NULL); V_2 = L_52; goto IL_01e7; } IL_0180: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_53 = __this->___reader_1; NullCheck(L_53); String_t* L_54; L_54 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_53); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_55 = __this->___doc_0; XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA* L_56 = (XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA*)il2cpp_codegen_object_new(XmlCDataSection_t2D6B8A6CFF3ACB0BD27368A8D5A56FD674B1E8CA_il2cpp_TypeInfo_var); NullCheck(L_56); XmlCDataSection__ctor_m19CEC86EA9EFC8153A1293493E0B3E9EF89BE2BD(L_56, L_54, L_55, NULL); V_2 = L_56; goto IL_01e7; } IL_0199: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_57 = __this->___reader_1; NullCheck(L_57); String_t* L_58; L_58 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_57); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_59 = __this->___reader_1; NullCheck(L_59); String_t* L_60; L_60 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_59); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_61 = __this->___doc_0; XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* L_62 = (XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3*)il2cpp_codegen_object_new(XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3_il2cpp_TypeInfo_var); NullCheck(L_62); XmlProcessingInstruction__ctor_m80AB71B3DDC0E1164705B676AD06037ACEB2FD67(L_62, L_58, L_60, L_61, NULL); V_2 = L_62; goto IL_01e7; } IL_01bd: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_63 = __this->___reader_1; NullCheck(L_63); String_t* L_64; L_64 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_63); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_65 = __this->___doc_0; XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9* L_66 = (XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9*)il2cpp_codegen_object_new(XmlComment_tD3C4E7E2E90A8CA25C46D2616BCF138D40072AD9_il2cpp_TypeInfo_var); NullCheck(L_66); XmlComment__ctor_m74C0E3B050353E2B32B5218DF01F8EB8874BD819(L_66, L_64, L_65, NULL); V_2 = L_66; goto IL_01e7; } IL_01d6: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_67 = __this->___reader_1; NullCheck(L_67); int32_t L_68; L_68 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_67); Exception_t* L_69; L_69 = XmlLoader_UnexpectedNodeType_m302DDB86C8F1F9C46BCBD9018F67FB807EB19083(L_68, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlLoader_LoadNodeDirect_m2C0D5301FFB96CA298EF768E2CE903B6C6D459B7_RuntimeMethod_var))); } IL_01e7: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_70 = V_1; if (!L_70) { goto IL_01fa; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_71 = V_1; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_72 = V_2; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_73 = __this->___doc_0; NullCheck(L_71); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_74; L_74 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_71, L_72, L_73); goto IL_01fc; } IL_01fa: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_75 = V_2; return L_75; } IL_01fc: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_76 = V_0; NullCheck(L_76); bool L_77; L_77 = VirtualFuncInvoker0< bool >::Invoke(21 /* System.Boolean System.Xml.XmlReader::Read() */, L_76); if (L_77) { goto IL_0009; } } { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } } // System.Xml.XmlAttribute System.Xml.XmlLoader::LoadAttributeNodeDirect() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* XmlLoader_LoadAttributeNodeDirect_m700A4AD66233956704AA6D82F1D59A9204F50B4B (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* V_0 = NULL; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_1 = NULL; XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* V_2 = NULL; { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1; V_0 = L_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1 = V_0; NullCheck(L_1); bool L_2; L_2 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsDefault() */, L_1); if (!L_2) { goto IL_003e; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = V_0; NullCheck(L_3); String_t* L_4; L_4 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_3); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = V_0; NullCheck(L_5); String_t* L_6; L_6 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_5); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7 = V_0; NullCheck(L_7); String_t* L_8; L_8 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_7); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_9 = __this->___doc_0; XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_10 = (XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC*)il2cpp_codegen_object_new(XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var); NullCheck(L_10); XmlUnspecifiedAttribute__ctor_m44D3E93A1FE83F8B631B4BE61CC2EA76865E36A6(L_10, L_4, L_6, L_8, L_9, NULL); V_2 = L_10; XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_11 = V_2; XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320(__this, L_11, (bool)1, NULL); XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_12 = V_2; NullCheck(L_12); XmlUnspecifiedAttribute_SetSpecified_m1CF67FF3E90E62DC5B0983B8DE91B6E95228509B_inline(L_12, (bool)0, NULL); XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_13 = V_2; return L_13; } IL_003e: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_14 = V_0; NullCheck(L_14); String_t* L_15; L_15 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_14); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_16 = V_0; NullCheck(L_16); String_t* L_17; L_17 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_16); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_18 = V_0; NullCheck(L_18); String_t* L_19; L_19 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_18); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_20 = __this->___doc_0; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_21 = (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)il2cpp_codegen_object_new(XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); NullCheck(L_21); XmlAttribute__ctor_m11339257CF537ACBDA1BC5ED16CD45BF0C318971(L_21, L_15, L_17, L_19, L_20, NULL); V_1 = L_21; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_22 = V_1; XmlLoader_LoadAttributeValue_m119C6C6063D71231F622A12A683078D77DA8B320(__this, L_22, (bool)1, NULL); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_23 = V_1; return L_23; } } // System.Void System.Xml.XmlLoader::ParseDocumentType(System.Xml.XmlDocumentType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ParseDocumentType_m7E6901C3E8CF530A50BFE027DE91E999307F2A02 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* ___0_dtNode, const RuntimeMethod* method) { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_0 = NULL; { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_0 = ___0_dtNode; NullCheck(L_0); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1; L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_0); V_0 = L_1; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = V_0; NullCheck(L_2); bool L_3; L_3 = XmlDocument_get_HasSetResolver_m7CBB11C7E27D95CD697F177B965CEB2E1E71358D_inline(L_2, NULL); if (!L_3) { goto IL_001e; } } { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_4 = ___0_dtNode; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = V_0; NullCheck(L_5); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_6; L_6 = XmlDocument_GetResolver_m0B1F443F2DF5510E0733052D42BC984CB83F9119_inline(L_5, NULL); XmlLoader_ParseDocumentType_m19313190F3CDF2BBE2B717BFB84C5D86AE73DD41(__this, L_4, (bool)1, L_6, NULL); return; } IL_001e: { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_7 = ___0_dtNode; XmlLoader_ParseDocumentType_m19313190F3CDF2BBE2B717BFB84C5D86AE73DD41(__this, L_7, (bool)0, (XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF*)NULL, NULL); return; } } // System.Void System.Xml.XmlLoader::ParseDocumentType(System.Xml.XmlDocumentType,System.Boolean,System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ParseDocumentType_m19313190F3CDF2BBE2B717BFB84C5D86AE73DD41 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* ___0_dtNode, bool ___1_bUseResolver, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___2_resolver, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* V_0 = NULL; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* V_1 = NULL; DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* V_2 = NULL; RuntimeObject* V_3 = NULL; { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_0 = ___0_dtNode; NullCheck(L_0); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1; L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_0); __this->___doc_0 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___doc_0), (void*)L_1); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = __this->___doc_0; NullCheck(L_2); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_3; L_3 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(L_2, NULL); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_4 = (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F*)il2cpp_codegen_object_new(XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); NullCheck(L_4); XmlNamespaceManager__ctor_m18E69120CE5886E06630CCCC3215D2C67FC669DB(L_4, L_3, NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = __this->___doc_0; NullCheck(L_5); String_t* L_6; L_6 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_BaseURI() */, L_5); String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_8 = (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B*)il2cpp_codegen_object_new(XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B_il2cpp_TypeInfo_var); NullCheck(L_8); XmlParserContext__ctor_mB2CD7CF0517A079CBB79700E6B410C8667AEA532(L_8, (XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8*)NULL, L_4, (String_t*)NULL, (String_t*)NULL, (String_t*)NULL, (String_t*)NULL, L_6, L_7, 0, NULL); V_0 = L_8; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_9 = V_0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_10 = (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*)il2cpp_codegen_object_new(XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); NullCheck(L_10); XmlTextReaderImpl__ctor_m1752EB0257B3129797C620899A5D76179EF65C85(L_10, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, 1, L_9, NULL); V_1 = L_10; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_11 = V_1; XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_12 = ___0_dtNode; NullCheck(L_12); bool L_13; L_13 = XmlDocumentType_get_ParseWithNamespaces_mC391046582C88CDC3C3496E4D2C0827C36D9B324_inline(L_12, NULL); NullCheck(L_11); XmlTextReaderImpl_set_Namespaces_mBC1F7402DC209EE48DACECE94982BC6CC1E861CE(L_11, L_13, NULL); bool L_14 = ___1_bUseResolver; if (!L_14) { goto IL_005b; } } { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_15 = V_1; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_16 = ___2_resolver; NullCheck(L_15); XmlTextReaderImpl_set_XmlResolver_mE88E51BCF47AE861AAB9121C0B023EEE73D29775(L_15, L_16, NULL); } IL_005b: { RuntimeObject* L_17; L_17 = DtdParser_Create_m8CE085C707E26956F079923F3F31616A27F88A3B(NULL); XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_18 = V_1; DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* L_19 = (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3*)il2cpp_codegen_object_new(DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3_il2cpp_TypeInfo_var); NullCheck(L_19); DtdParserProxy__ctor_m442621DC14ECF6CAB169962B3CAAF479A5F18D90(L_19, L_18, NULL); V_2 = L_19; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_20 = __this->___doc_0; NullCheck(L_20); String_t* L_21; L_21 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_BaseURI() */, L_20); XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_22 = ___0_dtNode; NullCheck(L_22); String_t* L_23; L_23 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_22); XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_24 = ___0_dtNode; NullCheck(L_24); String_t* L_25; L_25 = XmlDocumentType_get_PublicId_m9E81FAF2D0AA9DC847D118813CBEB085F0CE1955_inline(L_24, NULL); XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_26 = ___0_dtNode; NullCheck(L_26); String_t* L_27; L_27 = XmlDocumentType_get_SystemId_m17B225C509C0F5A4ECBB838AA81D15DED4016909_inline(L_26, NULL); XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_28 = ___0_dtNode; NullCheck(L_28); String_t* L_29; L_29 = XmlDocumentType_get_InternalSubset_mBD8D585ED0401EE1FC02F6FD5445E2109B083FEF_inline(L_28, NULL); DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* L_30 = V_2; NullCheck(L_17); RuntimeObject* L_31; L_31 = InterfaceFuncInvoker6< RuntimeObject*, String_t*, String_t*, String_t*, String_t*, String_t*, RuntimeObject* >::Invoke(1 /* System.Xml.IDtdInfo System.Xml.IDtdParser::ParseFreeFloatingDtd(System.String,System.String,System.String,System.String,System.String,System.Xml.IDtdParserAdapter) */, IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B_il2cpp_TypeInfo_var, L_17, L_21, L_23, L_25, L_27, L_29, L_30); V_3 = L_31; RuntimeObject* L_32 = V_3; XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_33 = ___0_dtNode; XmlLoader_LoadDocumentType_mC301F9962BC7D2F1134EDE1CD6D71D2EE68E9247(__this, L_32, L_33, NULL); return; } } // System.Void System.Xml.XmlLoader::LoadDocumentType(System.Xml.IDtdInfo,System.Xml.XmlDocumentType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadDocumentType_mC301F9962BC7D2F1134EDE1CD6D71D2EE68E9247 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, RuntimeObject* ___0_dtdInfo, XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* ___1_dtNode, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_mB2F07FA4420E7E08C4E8C50C4FB940647EE584AA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Values_m7BA818B29BA9A89901482C6D5E24DAFD8495DBAA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Values_mA410F24C86421E016F25DFE10F06ED2CC94E8279_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m9C22E03CBE0A5943CB4EEED769A719610719A106_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mE25067D838FB5D1F613D8A1D7743D120ADB5BF1A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m2039C64E26497D750FE7545A20B128FDB78A87BC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mFB28D9AB4BB5B94192AFBCF8727A992DD8A3EA23_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m5F4A12451C66B8106D041A8FDF9254A9B563E0DB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mAD814A76564116AD71DFC76D3FCAF39F2A454DF2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t42F4E0E4BE9FD853E9D5EE3D3B048C8C08ECCD28_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueCollection_GetEnumerator_m5C66A03B215EDB5E0833880DC07DA5A2C6283A0A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueCollection_GetEnumerator_mDF1A568A63118C3FCC8962A66BFF7CA4FD701F63_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* V_0 = NULL; RuntimeObject* V_1 = NULL; Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218 V_2; memset((&V_2), 0, sizeof(V_2)); SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* V_3 = NULL; Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F V_4; memset((&V_4), 0, sizeof(V_4)); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* V_5 = NULL; XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* V_6 = NULL; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* V_7 = NULL; XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* V_8 = NULL; SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* V_9 = NULL; RuntimeObject* V_10 = NULL; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* V_11 = NULL; String_t* G_B15_0 = NULL; String_t* G_B15_1 = NULL; String_t* G_B15_2 = NULL; String_t* G_B15_3 = NULL; String_t* G_B14_0 = NULL; String_t* G_B14_1 = NULL; String_t* G_B14_2 = NULL; String_t* G_B14_3 = NULL; String_t* G_B16_0 = NULL; String_t* G_B16_1 = NULL; String_t* G_B16_2 = NULL; String_t* G_B16_3 = NULL; String_t* G_B16_4 = NULL; String_t* G_B25_0 = NULL; String_t* G_B25_1 = NULL; String_t* G_B25_2 = NULL; String_t* G_B25_3 = NULL; String_t* G_B24_0 = NULL; String_t* G_B24_1 = NULL; String_t* G_B24_2 = NULL; String_t* G_B24_3 = NULL; String_t* G_B26_0 = NULL; String_t* G_B26_1 = NULL; String_t* G_B26_2 = NULL; String_t* G_B26_3 = NULL; String_t* G_B26_4 = NULL; { RuntimeObject* L_0 = ___0_dtdInfo; V_0 = ((SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E*)IsInstClass((RuntimeObject*)L_0, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E_il2cpp_TypeInfo_var)); SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_1 = V_0; if (L_1) { goto IL_001a; } } { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_3 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_3); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB080109AD5D6C864D18C1BFD1A3B9116504CCC72)), L_2, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlLoader_LoadDocumentType_mC301F9962BC7D2F1134EDE1CD6D71D2EE68E9247_RuntimeMethod_var))); } IL_001a: { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_4 = ___1_dtNode; SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_5 = V_0; NullCheck(L_4); XmlDocumentType_set_DtdSchemaInfo_m6E419933465D42DAB30AD7C6FFF7ACCC6D78A4E6_inline(L_4, L_5, NULL); SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_6 = V_0; if (!L_6) { goto IL_02d5; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_7 = __this->___doc_0; SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_8 = V_0; NullCheck(L_7); XmlDocument_set_DtdSchemaInfo_m95A0C58965F2B17BDA49D5F4E18304A11EEC7876_inline(L_7, L_8, NULL); SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_9 = V_0; NullCheck(L_9); Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* L_10; L_10 = SchemaInfo_get_Notations_m922CD199C8750B3D6F5662DB0EA272805A7EA3A1(L_9, NULL); if (!L_10) { goto IL_009d; } } { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_11 = V_0; NullCheck(L_11); Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* L_12; L_12 = SchemaInfo_get_Notations_m922CD199C8750B3D6F5662DB0EA272805A7EA3A1(L_11, NULL); NullCheck(L_12); ValueCollection_t8898F5330699C43BF4307CDFD83DB8DC4ED26F1F* L_13; L_13 = Dictionary_2_get_Values_m7BA818B29BA9A89901482C6D5E24DAFD8495DBAA(L_12, Dictionary_2_get_Values_m7BA818B29BA9A89901482C6D5E24DAFD8495DBAA_RuntimeMethod_var); NullCheck(L_13); Enumerator_t3E5D7CFA0D274E9F0E695069583F0C9A0FC06218 L_14; L_14 = ValueCollection_GetEnumerator_m5C66A03B215EDB5E0833880DC07DA5A2C6283A0A(L_13, ValueCollection_GetEnumerator_m5C66A03B215EDB5E0833880DC07DA5A2C6283A0A_RuntimeMethod_var); V_2 = L_14; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_008f: {// begin finally (depth: 1) Enumerator_Dispose_mE25067D838FB5D1F613D8A1D7743D120ADB5BF1A((&V_2), Enumerator_Dispose_mE25067D838FB5D1F613D8A1D7743D120ADB5BF1A_RuntimeMethod_var); return; }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0084_1; } IL_004e_1: { SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* L_15; L_15 = Enumerator_get_Current_m5F4A12451C66B8106D041A8FDF9254A9B563E0DB_inline((&V_2), Enumerator_get_Current_m5F4A12451C66B8106D041A8FDF9254A9B563E0DB_RuntimeMethod_var); V_3 = L_15; XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_16 = ___1_dtNode; NullCheck(L_16); XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_17; L_17 = XmlDocumentType_get_Notations_mF39B90420713538FCE072C512A74575C6F25D117(L_16, NULL); SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* L_18 = V_3; NullCheck(L_18); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_19; L_19 = SchemaNotation_get_Name_mF5CA9EBBD17ADAB3A31FC36FDB03B236C4847FCD_inline(L_18, NULL); NullCheck(L_19); String_t* L_20; L_20 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_19, NULL); SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* L_21 = V_3; NullCheck(L_21); String_t* L_22; L_22 = SchemaNotation_get_Pubid_m28D7BB40FF192EDC5B5461FBE0FF7E690A3B6BFE_inline(L_21, NULL); SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* L_23 = V_3; NullCheck(L_23); String_t* L_24; L_24 = SchemaNotation_get_SystemLiteral_m0E99C9B3C22B1F8535F3C9334B91EEFD0C2F1DF3_inline(L_23, NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_25 = __this->___doc_0; XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D* L_26 = (XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D*)il2cpp_codegen_object_new(XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D_il2cpp_TypeInfo_var); NullCheck(L_26); XmlNotation__ctor_mB0560FA8AB3F3443FC6B1638265F00E268C4ED61(L_26, L_20, L_22, L_24, L_25, NULL); NullCheck(L_17); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_27; L_27 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(6 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::SetNamedItem(System.Xml.XmlNode) */, L_17, L_26); } IL_0084_1: { bool L_28; L_28 = Enumerator_MoveNext_mFB28D9AB4BB5B94192AFBCF8727A992DD8A3EA23((&V_2), Enumerator_MoveNext_mFB28D9AB4BB5B94192AFBCF8727A992DD8A3EA23_RuntimeMethod_var); if (L_28) { goto IL_004e_1; } } { goto IL_009d; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_009d: { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_29 = V_0; NullCheck(L_29); Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* L_30; L_30 = SchemaInfo_get_GeneralEntities_mB8E4E7E02EB79C03BDEEB06638EBFA631DE9C9D2(L_29, NULL); if (!L_30) { goto IL_0145; } } { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_31 = V_0; NullCheck(L_31); Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* L_32; L_32 = SchemaInfo_get_GeneralEntities_mB8E4E7E02EB79C03BDEEB06638EBFA631DE9C9D2(L_31, NULL); NullCheck(L_32); ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431* L_33; L_33 = Dictionary_2_get_Values_mA410F24C86421E016F25DFE10F06ED2CC94E8279(L_32, Dictionary_2_get_Values_mA410F24C86421E016F25DFE10F06ED2CC94E8279_RuntimeMethod_var); NullCheck(L_33); Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F L_34; L_34 = ValueCollection_GetEnumerator_mDF1A568A63118C3FCC8962A66BFF7CA4FD701F63(L_33, ValueCollection_GetEnumerator_mDF1A568A63118C3FCC8962A66BFF7CA4FD701F63_RuntimeMethod_var); V_4 = L_34; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0137: {// begin finally (depth: 1) Enumerator_Dispose_m9C22E03CBE0A5943CB4EEED769A719610719A106((&V_4), Enumerator_Dispose_m9C22E03CBE0A5943CB4EEED769A719610719A106_RuntimeMethod_var); return; }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_012c_1; } IL_00bc_1: { SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_35; L_35 = Enumerator_get_Current_mAD814A76564116AD71DFC76D3FCAF39F2A454DF2_inline((&V_4), Enumerator_get_Current_mAD814A76564116AD71DFC76D3FCAF39F2A454DF2_RuntimeMethod_var); V_5 = L_35; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_36 = V_5; NullCheck(L_36); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_37; L_37 = SchemaEntity_get_Name_m8A17CC3B68A15DCD4C3ACEC6AE82AB7BF5CDBEAC_inline(L_36, NULL); NullCheck(L_37); String_t* L_38; L_38 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_37, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_39 = V_5; NullCheck(L_39); String_t* L_40; L_40 = SchemaEntity_get_Text_mDCF201E623D7A98F87E859ACDEE9B5B6B4E953AE_inline(L_39, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_41 = V_5; NullCheck(L_41); String_t* L_42; L_42 = SchemaEntity_get_Pubid_m9845E8CD129266AFA62E58F857D88D0941C88C82_inline(L_41, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_43 = V_5; NullCheck(L_43); String_t* L_44; L_44 = SchemaEntity_get_Url_m7519C52A444DFD11468483C299A6C9D6A92F1CFB_inline(L_43, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_45 = V_5; NullCheck(L_45); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_46; L_46 = SchemaEntity_get_NData_m7B05467BF6357AB27C1DAFBFE27F9720C79CEC3C_inline(L_45, NULL); NullCheck(L_46); bool L_47; L_47 = XmlQualifiedName_get_IsEmpty_m37942163D9A870E85BE8762845953C6A6579A400(L_46, NULL); G_B14_0 = L_44; G_B14_1 = L_42; G_B14_2 = L_40; G_B14_3 = L_38; if (L_47) { G_B15_0 = L_44; G_B15_1 = L_42; G_B15_2 = L_40; G_B15_3 = L_38; goto IL_0102_1; } } { SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_48 = V_5; NullCheck(L_48); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_49; L_49 = SchemaEntity_get_NData_m7B05467BF6357AB27C1DAFBFE27F9720C79CEC3C_inline(L_48, NULL); NullCheck(L_49); String_t* L_50; L_50 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_49, NULL); G_B16_0 = L_50; G_B16_1 = G_B14_0; G_B16_2 = G_B14_1; G_B16_3 = G_B14_2; G_B16_4 = G_B14_3; goto IL_0103_1; } IL_0102_1: { G_B16_0 = ((String_t*)(NULL)); G_B16_1 = G_B15_0; G_B16_2 = G_B15_1; G_B16_3 = G_B15_2; G_B16_4 = G_B15_3; } IL_0103_1: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_51 = __this->___doc_0; XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_52 = (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE*)il2cpp_codegen_object_new(XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var); NullCheck(L_52); XmlEntity__ctor_m3F8F45510F797944A6386162E16A5FF4EA5BCD12(L_52, G_B16_4, G_B16_3, G_B16_2, G_B16_1, G_B16_0, L_51, NULL); V_6 = L_52; XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_53 = V_6; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_54 = V_5; NullCheck(L_54); String_t* L_55; L_55 = SchemaEntity_get_DeclaredURI_mA5B2AACD3D552050C6318FD6383F32FB0CC0CEA0(L_54, NULL); NullCheck(L_53); XmlEntity_SetBaseURI_mFEBE0339CA3A522BDC09A278FFBA3A9D77A578B3_inline(L_53, L_55, NULL); XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_56 = ___1_dtNode; NullCheck(L_56); XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_57; L_57 = XmlDocumentType_get_Entities_m0864AACCFEB94E7E935580DB42D07F5C2058B1B0(L_56, NULL); XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_58 = V_6; NullCheck(L_57); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_59; L_59 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(6 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::SetNamedItem(System.Xml.XmlNode) */, L_57, L_58); } IL_012c_1: { bool L_60; L_60 = Enumerator_MoveNext_m2039C64E26497D750FE7545A20B128FDB78A87BC((&V_4), Enumerator_MoveNext_m2039C64E26497D750FE7545A20B128FDB78A87BC_RuntimeMethod_var); if (L_60) { goto IL_00bc_1; } } { goto IL_0145; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0145: { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_61 = V_0; NullCheck(L_61); Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* L_62; L_62 = SchemaInfo_get_ParameterEntities_m54F4C298FA2B2AAE10FAA43965E9DD2C84E76FBB(L_61, NULL); if (!L_62) { goto IL_01ed; } } { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_63 = V_0; NullCheck(L_63); Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* L_64; L_64 = SchemaInfo_get_ParameterEntities_m54F4C298FA2B2AAE10FAA43965E9DD2C84E76FBB(L_63, NULL); NullCheck(L_64); ValueCollection_t5E6BEDEB2CEF7A818BACE8D90DFE44BE5DAC4431* L_65; L_65 = Dictionary_2_get_Values_mA410F24C86421E016F25DFE10F06ED2CC94E8279(L_64, Dictionary_2_get_Values_mA410F24C86421E016F25DFE10F06ED2CC94E8279_RuntimeMethod_var); NullCheck(L_65); Enumerator_t4BFAD24AD9D3103A06D8DE615BAC99DA84ED0A4F L_66; L_66 = ValueCollection_GetEnumerator_mDF1A568A63118C3FCC8962A66BFF7CA4FD701F63(L_65, ValueCollection_GetEnumerator_mDF1A568A63118C3FCC8962A66BFF7CA4FD701F63_RuntimeMethod_var); V_4 = L_66; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_01df: {// begin finally (depth: 1) Enumerator_Dispose_m9C22E03CBE0A5943CB4EEED769A719610719A106((&V_4), Enumerator_Dispose_m9C22E03CBE0A5943CB4EEED769A719610719A106_RuntimeMethod_var); return; }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_01d4_1; } IL_0164_1: { SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_67; L_67 = Enumerator_get_Current_mAD814A76564116AD71DFC76D3FCAF39F2A454DF2_inline((&V_4), Enumerator_get_Current_mAD814A76564116AD71DFC76D3FCAF39F2A454DF2_RuntimeMethod_var); V_7 = L_67; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_68 = V_7; NullCheck(L_68); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_69; L_69 = SchemaEntity_get_Name_m8A17CC3B68A15DCD4C3ACEC6AE82AB7BF5CDBEAC_inline(L_68, NULL); NullCheck(L_69); String_t* L_70; L_70 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_69, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_71 = V_7; NullCheck(L_71); String_t* L_72; L_72 = SchemaEntity_get_Text_mDCF201E623D7A98F87E859ACDEE9B5B6B4E953AE_inline(L_71, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_73 = V_7; NullCheck(L_73); String_t* L_74; L_74 = SchemaEntity_get_Pubid_m9845E8CD129266AFA62E58F857D88D0941C88C82_inline(L_73, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_75 = V_7; NullCheck(L_75); String_t* L_76; L_76 = SchemaEntity_get_Url_m7519C52A444DFD11468483C299A6C9D6A92F1CFB_inline(L_75, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_77 = V_7; NullCheck(L_77); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_78; L_78 = SchemaEntity_get_NData_m7B05467BF6357AB27C1DAFBFE27F9720C79CEC3C_inline(L_77, NULL); NullCheck(L_78); bool L_79; L_79 = XmlQualifiedName_get_IsEmpty_m37942163D9A870E85BE8762845953C6A6579A400(L_78, NULL); G_B24_0 = L_76; G_B24_1 = L_74; G_B24_2 = L_72; G_B24_3 = L_70; if (L_79) { G_B25_0 = L_76; G_B25_1 = L_74; G_B25_2 = L_72; G_B25_3 = L_70; goto IL_01aa_1; } } { SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_80 = V_7; NullCheck(L_80); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_81; L_81 = SchemaEntity_get_NData_m7B05467BF6357AB27C1DAFBFE27F9720C79CEC3C_inline(L_80, NULL); NullCheck(L_81); String_t* L_82; L_82 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_81, NULL); G_B26_0 = L_82; G_B26_1 = G_B24_0; G_B26_2 = G_B24_1; G_B26_3 = G_B24_2; G_B26_4 = G_B24_3; goto IL_01ab_1; } IL_01aa_1: { G_B26_0 = ((String_t*)(NULL)); G_B26_1 = G_B25_0; G_B26_2 = G_B25_1; G_B26_3 = G_B25_2; G_B26_4 = G_B25_3; } IL_01ab_1: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_83 = __this->___doc_0; XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_84 = (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE*)il2cpp_codegen_object_new(XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var); NullCheck(L_84); XmlEntity__ctor_m3F8F45510F797944A6386162E16A5FF4EA5BCD12(L_84, G_B26_4, G_B26_3, G_B26_2, G_B26_1, G_B26_0, L_83, NULL); V_8 = L_84; XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_85 = V_8; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_86 = V_7; NullCheck(L_86); String_t* L_87; L_87 = SchemaEntity_get_DeclaredURI_mA5B2AACD3D552050C6318FD6383F32FB0CC0CEA0(L_86, NULL); NullCheck(L_85); XmlEntity_SetBaseURI_mFEBE0339CA3A522BDC09A278FFBA3A9D77A578B3_inline(L_85, L_87, NULL); XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_88 = ___1_dtNode; NullCheck(L_88); XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_89; L_89 = XmlDocumentType_get_Entities_m0864AACCFEB94E7E935580DB42D07F5C2058B1B0(L_88, NULL); XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_90 = V_8; NullCheck(L_89); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_91; L_91 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(6 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::SetNamedItem(System.Xml.XmlNode) */, L_89, L_90); } IL_01d4_1: { bool L_92; L_92 = Enumerator_MoveNext_m2039C64E26497D750FE7545A20B128FDB78A87BC((&V_4), Enumerator_MoveNext_m2039C64E26497D750FE7545A20B128FDB78A87BC_RuntimeMethod_var); if (L_92) { goto IL_0164_1; } } { goto IL_01ed; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_01ed: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_93 = __this->___doc_0; XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_94 = ___1_dtNode; NullCheck(L_94); XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_95; L_95 = XmlDocumentType_get_Entities_m0864AACCFEB94E7E935580DB42D07F5C2058B1B0(L_94, NULL); NullCheck(L_93); XmlDocument_set_Entities_mBBF7C97889080847540A0F31B1751726E81FF756_inline(L_93, L_95, NULL); SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_96 = V_0; NullCheck(L_96); Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* L_97; L_97 = SchemaInfo_get_ElementDecls_m238E5681BECA397E7010F7BEFBAC2D0FBEC43BD7_inline(L_96, NULL); NullCheck(L_97); Enumerator_t42F4E0E4BE9FD853E9D5EE3D3B048C8C08ECCD28 L_98; L_98 = Dictionary_2_GetEnumerator_mB2F07FA4420E7E08C4E8C50C4FB940647EE584AA(L_97, Dictionary_2_GetEnumerator_mB2F07FA4420E7E08C4E8C50C4FB940647EE584AA_RuntimeMethod_var); Enumerator_t42F4E0E4BE9FD853E9D5EE3D3B048C8C08ECCD28 L_99 = L_98; RuntimeObject* L_100 = Box(Enumerator_t42F4E0E4BE9FD853E9D5EE3D3B048C8C08ECCD28_il2cpp_TypeInfo_var, &L_99); V_1 = (RuntimeObject*)L_100; RuntimeObject* L_101 = V_1; if (!L_101) { goto IL_02d5; } } { RuntimeObject* L_102 = V_1; NullCheck(L_102); InterfaceActionInvoker0::Invoke(2 /* System.Void System.Collections.IEnumerator::Reset() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_102); goto IL_02ca; } IL_0220: { RuntimeObject* L_103 = V_1; NullCheck(L_103); RuntimeObject* L_104; L_104 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var, L_103); V_9 = ((SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD*)CastclassSealed((RuntimeObject*)L_104, SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD_il2cpp_TypeInfo_var)); SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_105 = V_9; NullCheck(L_105); Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* L_106; L_106 = SchemaElementDecl_get_AttDefs_m2E3114DFAB8D978CBFAA6E31C2CD18A9AA9DAC50_inline(L_105, NULL); if (!L_106) { goto IL_02ca; } } { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_107 = V_9; NullCheck(L_107); Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* L_108; L_108 = SchemaElementDecl_get_AttDefs_m2E3114DFAB8D978CBFAA6E31C2CD18A9AA9DAC50_inline(L_107, NULL); NullCheck(L_108); Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 L_109; L_109 = Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80(L_108, Dictionary_2_GetEnumerator_mAFB53EF60E7055593407621A31F67B315FB25F80_RuntimeMethod_var); Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717 L_110 = L_109; RuntimeObject* L_111 = Box(Enumerator_tAFD022FCAA040EAEC1263E2EF82A45C956378717_il2cpp_TypeInfo_var, &L_110); V_10 = (RuntimeObject*)L_111; goto IL_02c1; } IL_024e: { RuntimeObject* L_112 = V_10; NullCheck(L_112); RuntimeObject* L_113; L_113 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var, L_112); V_11 = ((SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553*)CastclassSealed((RuntimeObject*)L_113, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var)); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_114 = V_11; NullCheck(L_114); XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* L_115; L_115 = SchemaDeclBase_get_Datatype_mE6DE13C3518B65A1CF6E464F12D7D7653247AF90_inline(L_114, NULL); NullCheck(L_115); int32_t L_116; L_116 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Xml.XmlTokenizedType System.Xml.Schema.XmlSchemaDatatype::get_TokenizedType() */, L_115); if ((!(((uint32_t)L_116) == ((uint32_t)1)))) { goto IL_02c1; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_117 = __this->___doc_0; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_118 = __this->___doc_0; SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_119 = V_9; NullCheck(L_119); String_t* L_120; L_120 = SchemaDeclBase_get_Prefix_mE72A285F12958A0C40F8CDEDA2838B3A09233455(L_119, NULL); SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_121 = V_9; NullCheck(L_121); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_122; L_122 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_121, NULL); NullCheck(L_122); String_t* L_123; L_123 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_122, NULL); String_t* L_124 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_118); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_125; L_125 = XmlDocument_AddXmlName_m0B7D502F9AA6D43E0743106B90F9CE10F459A916(L_118, L_120, L_123, L_124, (RuntimeObject*)NULL, NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_126 = __this->___doc_0; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_127 = V_11; NullCheck(L_127); String_t* L_128; L_128 = SchemaDeclBase_get_Prefix_mE72A285F12958A0C40F8CDEDA2838B3A09233455(L_127, NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_129 = V_11; NullCheck(L_129); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_130; L_130 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_129, NULL); NullCheck(L_130); String_t* L_131; L_131 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_130, NULL); String_t* L_132 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; NullCheck(L_126); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_133; L_133 = XmlDocument_AddAttrXmlName_mB6D4F6DA50FBE350ABAC30CD5CE97D981506BB28(L_126, L_128, L_131, L_132, (RuntimeObject*)NULL, NULL); NullCheck(L_117); bool L_134; L_134 = XmlDocument_AddIdInfo_mF6E5BE7379C76DA2C5E4D292380086D04009CC0E(L_117, L_125, L_133, NULL); goto IL_02ca; } IL_02c1: { RuntimeObject* L_135 = V_10; NullCheck(L_135); bool L_136; L_136 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_135); if (L_136) { goto IL_024e; } } IL_02ca: { RuntimeObject* L_137 = V_1; NullCheck(L_137); bool L_138; L_138 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_137); if (L_138) { goto IL_0220; } } IL_02d5: { return; } } // System.Xml.XmlParserContext System.Xml.XmlLoader::GetContext(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* XmlLoader_GetContext_mC3CED072E1A2C5E1B94C8542BDFE5D0B3BA48934 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B_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; XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* V_2 = NULL; String_t* V_3 = NULL; Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* V_4 = NULL; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* V_5 = NULL; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* V_6 = NULL; bool V_7 = false; RuntimeObject* V_8 = NULL; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_9 = NULL; RuntimeObject* V_10 = NULL; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B33_0 = NULL; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B33_1 = NULL; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B32_0 = NULL; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B32_1 = NULL; String_t* G_B34_0 = NULL; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B34_1 = NULL; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B34_2 = NULL; String_t* G_B36_0 = NULL; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B36_1 = NULL; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B36_2 = NULL; String_t* G_B35_0 = NULL; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B35_1 = NULL; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B35_2 = NULL; String_t* G_B37_0 = NULL; String_t* G_B37_1 = NULL; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B37_2 = NULL; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B37_3 = NULL; String_t* G_B39_0 = NULL; String_t* G_B39_1 = NULL; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B39_2 = NULL; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B39_3 = NULL; String_t* G_B38_0 = NULL; String_t* G_B38_1 = NULL; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B38_2 = NULL; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B38_3 = NULL; String_t* G_B40_0 = NULL; String_t* G_B40_1 = NULL; String_t* G_B40_2 = NULL; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B40_3 = NULL; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B40_4 = NULL; String_t* G_B42_0 = NULL; String_t* G_B42_1 = NULL; String_t* G_B42_2 = NULL; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B42_3 = NULL; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B42_4 = NULL; String_t* G_B41_0 = NULL; String_t* G_B41_1 = NULL; String_t* G_B41_2 = NULL; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B41_3 = NULL; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B41_4 = NULL; String_t* G_B43_0 = NULL; String_t* G_B43_1 = NULL; String_t* G_B43_2 = NULL; String_t* G_B43_3 = NULL; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* G_B43_4 = NULL; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* G_B43_5 = NULL; { V_0 = (String_t*)NULL; V_1 = 0; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = __this->___doc_0; NullCheck(L_0); XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_1; L_1 = VirtualFuncInvoker0< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* >::Invoke(43 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::get_DocumentType() */, L_0); V_2 = L_1; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = __this->___doc_0; NullCheck(L_2); String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_BaseURI() */, L_2); V_3 = L_3; Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_4 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); NullCheck(L_4); Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_4, NULL); V_4 = L_4; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = __this->___doc_0; NullCheck(L_5); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_6; L_6 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(L_5, NULL); V_5 = L_6; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_7 = V_5; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_8 = (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F*)il2cpp_codegen_object_new(XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_il2cpp_TypeInfo_var); NullCheck(L_8); XmlNamespaceManager__ctor_m18E69120CE5886E06630CCCC3215D2C67FC669DB(L_8, L_7, NULL); V_6 = L_8; V_7 = (bool)0; goto IL_01f1; } IL_0041: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = ___0_node; if (!((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_9, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var))) { goto IL_01e9; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = ___0_node; NullCheck(((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)CastclassClass((RuntimeObject*)L_10, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var))); bool L_11; L_11 = VirtualFuncInvoker0< bool >::Invoke(43 /* System.Boolean System.Xml.XmlElement::get_HasAttributes() */, ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)CastclassClass((RuntimeObject*)L_10, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var))); if (!L_11) { goto IL_01e9; } } { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_12 = V_6; NullCheck(L_12); VirtualActionInvoker0::Invoke(9 /* System.Void System.Xml.XmlNamespaceManager::PushScope() */, L_12); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_13 = ___0_node; NullCheck(((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)CastclassClass((RuntimeObject*)L_13, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var))); XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_14; L_14 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(13 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)CastclassClass((RuntimeObject*)L_13, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var))); NullCheck(L_14); RuntimeObject* L_15; L_15 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(8 /* System.Collections.IEnumerator System.Xml.XmlNamedNodeMap::GetEnumerator() */, L_14); V_8 = L_15; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_01d4: {// begin finally (depth: 1) { RuntimeObject* L_16 = V_8; V_10 = ((RuntimeObject*)IsInst((RuntimeObject*)L_16, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_17 = V_10; if (!L_17) { goto IL_01e8; } } { RuntimeObject* L_18 = V_10; NullCheck(L_18); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_18); } IL_01e8: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_01c6_1; } IL_007a_1: { RuntimeObject* L_19 = V_8; NullCheck(L_19); RuntimeObject* L_20; L_20 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_19); V_9 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_20, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_21 = V_9; NullCheck(L_21); String_t* L_22; L_22 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, L_21); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_23 = __this->___doc_0; NullCheck(L_23); String_t* L_24 = L_23->___strXmlns_28; bool L_25; L_25 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_22, L_24, NULL); if (!L_25) { goto IL_00e0_1; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_26 = V_4; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_27 = V_9; NullCheck(L_27); String_t* L_28; L_28 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_27); NullCheck(L_26); bool L_29; L_29 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(26 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_26, L_28); if (L_29) { goto IL_00e0_1; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_30 = V_4; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_31 = V_9; NullCheck(L_31); String_t* L_32; L_32 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_31); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_33 = V_9; NullCheck(L_33); String_t* L_34; L_34 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_33); NullCheck(L_30); VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(23 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_30, L_32, L_34); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_35 = V_6; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_36 = V_9; NullCheck(L_36); String_t* L_37; L_37 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_36); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_38 = V_9; NullCheck(L_38); String_t* L_39; L_39 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_38); NullCheck(L_35); VirtualActionInvoker2< String_t*, String_t* >::Invoke(11 /* System.Void System.Xml.XmlNamespaceManager::AddNamespace(System.String,System.String) */, L_35, L_37, L_39); goto IL_01c6_1; } IL_00e0_1: { bool L_40 = V_7; if (L_40) { goto IL_0126_1; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_41 = V_9; NullCheck(L_41); String_t* L_42; L_42 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, L_41); NullCheck(L_42); int32_t L_43; L_43 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_42, NULL); if (L_43) { goto IL_0126_1; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_44 = V_9; NullCheck(L_44); String_t* L_45; L_45 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_44); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_46 = __this->___doc_0; NullCheck(L_46); String_t* L_47 = L_46->___strXmlns_28; bool L_48; L_48 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_45, L_47, NULL); if (!L_48) { goto IL_0126_1; } } { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_49 = V_6; String_t* L_50 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_51 = V_9; NullCheck(L_51); String_t* L_52; L_52 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_51); NullCheck(L_49); VirtualActionInvoker2< String_t*, String_t* >::Invoke(11 /* System.Void System.Xml.XmlNamespaceManager::AddNamespace(System.String,System.String) */, L_49, L_50, L_52); V_7 = (bool)1; goto IL_01c6_1; } IL_0126_1: { int32_t L_53 = V_1; if (L_53) { goto IL_0189_1; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_54 = V_9; NullCheck(L_54); String_t* L_55; L_55 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, L_54); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_56 = __this->___doc_0; NullCheck(L_56); String_t* L_57 = L_56->___strXml_29; bool L_58; L_58 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_55, L_57, NULL); if (!L_58) { goto IL_0189_1; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_59 = V_9; NullCheck(L_59); String_t* L_60; L_60 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_59); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_61 = __this->___doc_0; NullCheck(L_61); String_t* L_62 = L_61->___strSpace_30; bool L_63; L_63 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_60, L_62, NULL); if (!L_63) { goto IL_0189_1; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_64 = V_9; NullCheck(L_64); String_t* L_65; L_65 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_64); bool L_66; L_66 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_65, _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044, NULL); if (!L_66) { goto IL_0172_1; } } { V_1 = 1; goto IL_01c6_1; } IL_0172_1: { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_67 = V_9; NullCheck(L_67); String_t* L_68; L_68 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_67); bool L_69; L_69 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_68, _stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48, NULL); if (!L_69) { goto IL_01c6_1; } } { V_1 = 2; goto IL_01c6_1; } IL_0189_1: { String_t* L_70 = V_0; if (L_70) { goto IL_01c6_1; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_71 = V_9; NullCheck(L_71); String_t* L_72; L_72 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, L_71); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_73 = __this->___doc_0; NullCheck(L_73); String_t* L_74 = L_73->___strXml_29; bool L_75; L_75 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_72, L_74, NULL); if (!L_75) { goto IL_01c6_1; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_76 = V_9; NullCheck(L_76); String_t* L_77; L_77 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_76); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_78 = __this->___doc_0; NullCheck(L_78); String_t* L_79 = L_78->___strLang_31; bool L_80; L_80 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_77, L_79, NULL); if (!L_80) { goto IL_01c6_1; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_81 = V_9; NullCheck(L_81); String_t* L_82; L_82 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_81); V_0 = L_82; } IL_01c6_1: { RuntimeObject* L_83 = V_8; NullCheck(L_83); bool L_84; L_84 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_83); if (L_84) { goto IL_007a_1; } } { goto IL_01e9; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_01e9: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_85 = ___0_node; NullCheck(L_85); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_86; L_86 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_85); ___0_node = L_86; } IL_01f1: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_87 = ___0_node; if (!L_87) { goto IL_0200; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_88 = ___0_node; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_89 = __this->___doc_0; if ((!(((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_88) == ((RuntimeObject*)(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)L_89)))) { goto IL_0041; } } IL_0200: { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_90 = V_5; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_91 = V_6; XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_92 = V_2; G_B32_0 = L_91; G_B32_1 = L_90; if (!L_92) { G_B33_0 = L_91; G_B33_1 = L_90; goto IL_020f; } } { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_93 = V_2; NullCheck(L_93); String_t* L_94; L_94 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_93); G_B34_0 = L_94; G_B34_1 = G_B32_0; G_B34_2 = G_B32_1; goto IL_0210; } IL_020f: { G_B34_0 = ((String_t*)(NULL)); G_B34_1 = G_B33_0; G_B34_2 = G_B33_1; } IL_0210: { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_95 = V_2; G_B35_0 = G_B34_0; G_B35_1 = G_B34_1; G_B35_2 = G_B34_2; if (!L_95) { G_B36_0 = G_B34_0; G_B36_1 = G_B34_1; G_B36_2 = G_B34_2; goto IL_021b; } } { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_96 = V_2; NullCheck(L_96); String_t* L_97; L_97 = XmlDocumentType_get_PublicId_m9E81FAF2D0AA9DC847D118813CBEB085F0CE1955_inline(L_96, NULL); G_B37_0 = L_97; G_B37_1 = G_B35_0; G_B37_2 = G_B35_1; G_B37_3 = G_B35_2; goto IL_021c; } IL_021b: { G_B37_0 = ((String_t*)(NULL)); G_B37_1 = G_B36_0; G_B37_2 = G_B36_1; G_B37_3 = G_B36_2; } IL_021c: { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_98 = V_2; G_B38_0 = G_B37_0; G_B38_1 = G_B37_1; G_B38_2 = G_B37_2; G_B38_3 = G_B37_3; if (!L_98) { G_B39_0 = G_B37_0; G_B39_1 = G_B37_1; G_B39_2 = G_B37_2; G_B39_3 = G_B37_3; goto IL_0227; } } { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_99 = V_2; NullCheck(L_99); String_t* L_100; L_100 = XmlDocumentType_get_SystemId_m17B225C509C0F5A4ECBB838AA81D15DED4016909_inline(L_99, NULL); G_B40_0 = L_100; G_B40_1 = G_B38_0; G_B40_2 = G_B38_1; G_B40_3 = G_B38_2; G_B40_4 = G_B38_3; goto IL_0228; } IL_0227: { G_B40_0 = ((String_t*)(NULL)); G_B40_1 = G_B39_0; G_B40_2 = G_B39_1; G_B40_3 = G_B39_2; G_B40_4 = G_B39_3; } IL_0228: { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_101 = V_2; G_B41_0 = G_B40_0; G_B41_1 = G_B40_1; G_B41_2 = G_B40_2; G_B41_3 = G_B40_3; G_B41_4 = G_B40_4; if (!L_101) { G_B42_0 = G_B40_0; G_B42_1 = G_B40_1; G_B42_2 = G_B40_2; G_B42_3 = G_B40_3; G_B42_4 = G_B40_4; goto IL_0233; } } { XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_102 = V_2; NullCheck(L_102); String_t* L_103; L_103 = XmlDocumentType_get_InternalSubset_mBD8D585ED0401EE1FC02F6FD5445E2109B083FEF_inline(L_102, NULL); G_B43_0 = L_103; G_B43_1 = G_B41_0; G_B43_2 = G_B41_1; G_B43_3 = G_B41_2; G_B43_4 = G_B41_3; G_B43_5 = G_B41_4; goto IL_0234; } IL_0233: { G_B43_0 = ((String_t*)(NULL)); G_B43_1 = G_B42_0; G_B43_2 = G_B42_1; G_B43_3 = G_B42_2; G_B43_4 = G_B42_3; G_B43_5 = G_B42_4; } IL_0234: { String_t* L_104 = V_3; String_t* L_105 = V_0; int32_t L_106 = V_1; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_107 = (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B*)il2cpp_codegen_object_new(XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B_il2cpp_TypeInfo_var); NullCheck(L_107); XmlParserContext__ctor_mB2CD7CF0517A079CBB79700E6B410C8667AEA532(L_107, G_B43_5, G_B43_4, G_B43_3, G_B43_2, G_B43_1, G_B43_0, L_104, L_105, L_106, NULL); return L_107; } } // System.Xml.XmlNamespaceManager System.Xml.XmlLoader::ParsePartialContent(System.Xml.XmlNode,System.String,System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlLoader_ParsePartialContent_mB3EF08CD6158AD1D1CB317AA3A712DFF7252C1EC (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_parentNode, String_t* ___1_innerxmltext, int32_t ___2_nt, const RuntimeMethod* method) { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* V_0 = NULL; bool V_1 = false; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_2 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_3 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_parentNode; NullCheck(L_0); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1; L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_0); __this->___doc_0 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___doc_0), (void*)L_1); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___0_parentNode; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_3; L_3 = XmlLoader_GetContext_mC3CED072E1A2C5E1B94C8542BDFE5D0B3BA48934(__this, L_2, NULL); V_0 = L_3; String_t* L_4 = ___1_innerxmltext; int32_t L_5 = ___2_nt; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_6 = V_0; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_7 = __this->___doc_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_8; L_8 = XmlLoader_CreateInnerXmlReader_m9F7F526E3D4E37EAFA9469C1FE61159D2FE5CCC6(__this, L_4, L_5, L_6, L_7, NULL); __this->___reader_1 = L_8; Il2CppCodeGenWriteBarrier((void**)(&__this->___reader_1), (void*)L_8); } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_00af: {// begin finally (depth: 1) XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9 = __this->___reader_1; NullCheck(L_9); VirtualActionInvoker0::Invoke(22 /* System.Void System.Xml.XmlReader::Close() */, L_9); return; }// end finally (depth: 1) }); try {// begin try (depth: 1) { __this->___preserveWhitespace_2 = (bool)1; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_10 = __this->___doc_0; NullCheck(L_10); bool L_11; L_11 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_10, NULL); V_1 = L_11; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_12 = __this->___doc_0; NullCheck(L_12); XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_12, (bool)1, NULL); int32_t L_13 = ___2_nt; if ((!(((uint32_t)L_13) == ((uint32_t)6)))) { goto IL_0077_1; } } { V_2 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; goto IL_005e_1; } IL_0050_1: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14 = ___0_parentNode; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15 = V_2; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_16 = __this->___doc_0; NullCheck(L_14); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_17; L_17 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_14, L_15, L_16); } IL_005e_1: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_18 = __this->___reader_1; NullCheck(L_18); bool L_19; L_19 = VirtualFuncInvoker0< bool >::Invoke(21 /* System.Boolean System.Xml.XmlReader::Read() */, L_18); if (!L_19) { goto IL_00a1_1; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_20; L_20 = XmlLoader_LoadNodeDirect_m2C0D5301FFB96CA298EF768E2CE903B6C6D459B7(__this, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_21 = L_20; V_2 = L_21; if (L_21) { goto IL_0050_1; } } { goto IL_00a1_1; } IL_0077_1: { V_3 = (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; goto IL_0089_1; } IL_007b_1: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_22 = ___0_parentNode; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_23 = V_3; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_24 = __this->___doc_0; NullCheck(L_22); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_25; L_25 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_22, L_23, L_24); } IL_0089_1: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_26 = __this->___reader_1; NullCheck(L_26); bool L_27; L_27 = VirtualFuncInvoker0< bool >::Invoke(21 /* System.Boolean System.Xml.XmlReader::Read() */, L_26); if (!L_27) { goto IL_00a1_1; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_28; L_28 = XmlLoader_LoadNode_mDFD824F250FA615C734180BF6141A472610F7E68(__this, (bool)1, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_29 = L_28; V_3 = L_29; if (L_29) { goto IL_007b_1; } } IL_00a1_1: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_30 = __this->___doc_0; bool L_31 = V_1; NullCheck(L_30); XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_30, L_31, NULL); goto IL_00bb; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_00bb: { XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_32 = V_0; NullCheck(L_32); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_33; L_33 = XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7_inline(L_32, NULL); return L_33; } } // System.Void System.Xml.XmlLoader::LoadInnerXmlElement(System.Xml.XmlElement,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadInnerXmlElement_mE78D161D2D91C2082F77B90FAA4DF5181915DDEB (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___0_node, String_t* ___1_innerxmltext, const RuntimeMethod* method) { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* V_0 = NULL; { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_0 = ___0_node; String_t* L_1 = ___1_innerxmltext; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_2; L_2 = XmlLoader_ParsePartialContent_mB3EF08CD6158AD1D1CB317AA3A712DFF7252C1EC(__this, L_0, L_1, 1, NULL); V_0 = L_2; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_3 = ___0_node; NullCheck(L_3); XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* L_4; L_4 = VirtualFuncInvoker0< XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* >::Invoke(10 /* System.Xml.XmlNodeList System.Xml.XmlNode::get_ChildNodes() */, L_3); NullCheck(L_4); int32_t L_5; L_5 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Xml.XmlNodeList::get_Count() */, L_4); if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_0021; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_6 = ___0_node; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_7 = V_0; XmlLoader_RemoveDuplicateNamespace_m451D261AC3A6D4918CA6661853B922BBBE39A148(__this, L_6, L_7, (bool)0, NULL); } IL_0021: { return; } } // System.Void System.Xml.XmlLoader::LoadInnerXmlAttribute(System.Xml.XmlAttribute,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_LoadInnerXmlAttribute_mBCE3F2F2B11410937B71BA993E5E1151BE4B6C98 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_node, String_t* ___1_innerxmltext, const RuntimeMethod* method) { { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_0 = ___0_node; String_t* L_1 = ___1_innerxmltext; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_2; L_2 = XmlLoader_ParsePartialContent_mB3EF08CD6158AD1D1CB317AA3A712DFF7252C1EC(__this, L_0, L_1, 2, NULL); return; } } // System.Void System.Xml.XmlLoader::RemoveDuplicateNamespace(System.Xml.XmlElement,System.Xml.XmlNamespaceManager,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_RemoveDuplicateNamespace_m451D261AC3A6D4918CA6661853B922BBBE39A148 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___0_elem, XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* ___1_mgr, bool ___2_fCheckElemAttrs, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* V_0 = NULL; int32_t V_1 = 0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_2 = NULL; int32_t V_3 = 0; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_4 = NULL; String_t* V_5 = NULL; String_t* V_6 = NULL; XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* V_7 = NULL; { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_0 = ___1_mgr; NullCheck(L_0); VirtualActionInvoker0::Invoke(9 /* System.Void System.Xml.XmlNamespaceManager::PushScope() */, L_0); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_1 = ___0_elem; NullCheck(L_1); XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_2; L_2 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(13 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_1); V_0 = L_2; XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_3 = V_0; NullCheck(L_3); int32_t L_4; L_4 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, L_3); V_1 = L_4; bool L_5 = ___2_fCheckElemAttrs; if (!L_5) { goto IL_0108; } } { int32_t L_6 = V_1; if ((((int32_t)L_6) <= ((int32_t)0))) { goto IL_0108; } } { int32_t L_7 = V_1; V_3 = ((int32_t)il2cpp_codegen_subtract(L_7, 1)); goto IL_0101; } IL_002a: { XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_8 = V_0; int32_t L_9 = V_3; NullCheck(L_8); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_10; L_10 = XmlAttributeCollection_get_ItemOf_m8F968C39C03DFEB9998B2122F4A26B76B1DB2EDB(L_8, L_9, NULL); V_4 = L_10; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_11 = V_4; NullCheck(L_11); String_t* L_12; L_12 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, L_11); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_13 = __this->___doc_0; NullCheck(L_13); String_t* L_14 = L_13->___strXmlns_28; bool L_15; L_15 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_12, L_14, NULL); if (!L_15) { goto IL_0097; } } { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_16 = ___1_mgr; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_17 = V_4; NullCheck(L_17); String_t* L_18; L_18 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_17); NullCheck(L_16); String_t* L_19; L_19 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(13 /* System.String System.Xml.XmlNamespaceManager::LookupNamespace(System.String) */, L_16, L_18); V_5 = L_19; String_t* L_20 = V_5; if (!L_20) { goto IL_0081; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_21 = V_4; NullCheck(L_21); String_t* L_22; L_22 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_21); String_t* L_23 = V_5; bool L_24; L_24 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_22, L_23, NULL); if (!L_24) { goto IL_00fd; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_25 = ___0_elem; NullCheck(L_25); XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_26; L_26 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(13 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_25); int32_t L_27 = V_3; NullCheck(L_26); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_28; L_28 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t >::Invoke(11 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::RemoveNodeAt(System.Int32) */, L_26, L_27); goto IL_00fd; } IL_0081: { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_29 = ___1_mgr; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_30 = V_4; NullCheck(L_30); String_t* L_31; L_31 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_30); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_32 = V_4; NullCheck(L_32); String_t* L_33; L_33 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_32); NullCheck(L_29); VirtualActionInvoker2< String_t*, String_t* >::Invoke(11 /* System.Void System.Xml.XmlNamespaceManager::AddNamespace(System.String,System.String) */, L_29, L_31, L_33); goto IL_00fd; } IL_0097: { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_34 = V_4; NullCheck(L_34); String_t* L_35; L_35 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, L_34); NullCheck(L_35); int32_t L_36; L_36 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_35, NULL); if (L_36) { goto IL_00fd; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_37 = V_4; NullCheck(L_37); String_t* L_38; L_38 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_37); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_39 = __this->___doc_0; NullCheck(L_39); String_t* L_40 = L_39->___strXmlns_28; bool L_41; L_41 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_38, L_40, NULL); if (!L_41) { goto IL_00fd; } } { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_42 = ___1_mgr; NullCheck(L_42); String_t* L_43; L_43 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlNamespaceManager::get_DefaultNamespace() */, L_42); V_6 = L_43; String_t* L_44 = V_6; if (!L_44) { goto IL_00e9; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_45 = V_4; NullCheck(L_45); String_t* L_46; L_46 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_45); String_t* L_47 = V_6; bool L_48; L_48 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_46, L_47, NULL); if (!L_48) { goto IL_00fd; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_49 = ___0_elem; NullCheck(L_49); XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* L_50; L_50 = VirtualFuncInvoker0< XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* >::Invoke(13 /* System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() */, L_49); int32_t L_51 = V_3; NullCheck(L_50); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_52; L_52 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t >::Invoke(11 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::RemoveNodeAt(System.Int32) */, L_50, L_51); goto IL_00fd; } IL_00e9: { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_53 = ___1_mgr; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_54 = V_4; NullCheck(L_54); String_t* L_55; L_55 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_54); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_56 = V_4; NullCheck(L_56); String_t* L_57; L_57 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_56); NullCheck(L_53); VirtualActionInvoker2< String_t*, String_t* >::Invoke(11 /* System.Void System.Xml.XmlNamespaceManager::AddNamespace(System.String,System.String) */, L_53, L_55, L_57); } IL_00fd: { int32_t L_58 = V_3; V_3 = ((int32_t)il2cpp_codegen_subtract(L_58, 1)); } IL_0101: { int32_t L_59 = V_3; if ((((int32_t)L_59) >= ((int32_t)0))) { goto IL_002a; } } IL_0108: { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_60 = ___0_elem; NullCheck(L_60); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_61; L_61 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_60); V_2 = L_61; goto IL_012e; } IL_0111: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_62 = V_2; V_7 = ((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_62, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var)); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_63 = V_7; if (!L_63) { goto IL_0127; } } { XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_64 = V_7; XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_65 = ___1_mgr; XmlLoader_RemoveDuplicateNamespace_m451D261AC3A6D4918CA6661853B922BBBE39A148(__this, L_64, L_65, (bool)1, NULL); } IL_0127: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_66 = V_2; NullCheck(L_66); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_67; L_67 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_66); V_2 = L_67; } IL_012e: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_68 = V_2; if (L_68) { goto IL_0111; } } { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_69 = ___1_mgr; NullCheck(L_69); bool L_70; L_70 = VirtualFuncInvoker0< bool >::Invoke(10 /* System.Boolean System.Xml.XmlNamespaceManager::PopScope() */, L_69); return; } } // System.String System.Xml.XmlLoader::EntitizeName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlLoader_EntitizeName_mA9639629370CE5837B6174542782588E6E1A682B (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, String_t* ___0_name, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral951CCB49640C8F9E81FB4E0D82730321F4E15BB3); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_name; String_t* L_1; L_1 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E, L_0, _stringLiteral951CCB49640C8F9E81FB4E0D82730321F4E15BB3, NULL); return L_1; } } // System.Void System.Xml.XmlLoader::ExpandEntity(System.Xml.XmlEntity) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ExpandEntity_mF48C80ADCAA60579178B00F9BB747D3FDA3B2616 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* ___0_ent, const RuntimeMethod* method) { { XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_0 = ___0_ent; XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* L_1 = ___0_ent; NullCheck(L_1); String_t* L_2; L_2 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_1); String_t* L_3; L_3 = XmlLoader_EntitizeName_mA9639629370CE5837B6174542782588E6E1A682B(__this, L_2, NULL); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_4; L_4 = XmlLoader_ParsePartialContent_mB3EF08CD6158AD1D1CB317AA3A712DFF7252C1EC(__this, L_0, L_3, 6, NULL); return; } } // System.Void System.Xml.XmlLoader::ExpandEntityReference(System.Xml.XmlEntityReference) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ExpandEntityReference_m99D6DCC2F0FA00E28E73698D333FCC12EFCA7B2F (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* ___0_eref, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1710B4477A01FFE20514D8AA61891F364D71C25B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral35B44AA64754DEDC52915E7F763C081CF5B004D9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral513659CEF285C73478E9829E41D7E4C23DB53E12); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral725B1CAFF9B49E1231FDA15B85166BBEFAA36A11); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral893D84FF4ED81AC205FBC0C67CBEE1C0C752B406); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral96930EC8C6FD5250BB36A5E1040AB06A9588FD62); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5); s_Il2CppMethodInitialized = true; } bool V_0 = false; String_t* V_1 = NULL; RuntimeObject* V_2 = NULL; RuntimeObject* V_3 = NULL; { XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_0 = ___0_eref; NullCheck(L_0); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1; L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_0); __this->___doc_0 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___doc_0), (void*)L_1); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = __this->___doc_0; NullCheck(L_2); bool L_3; L_3 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_2, NULL); V_0 = L_3; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4 = __this->___doc_0; NullCheck(L_4); XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_4, (bool)1, NULL); XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_5 = ___0_eref; NullCheck(L_5); String_t* L_6; L_6 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_5); V_1 = L_6; String_t* L_7 = V_1; bool L_8; L_8 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_7, _stringLiteral35B44AA64754DEDC52915E7F763C081CF5B004D9, NULL); if (L_8) { goto IL_0077; } } { String_t* L_9 = V_1; bool L_10; L_10 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_9, _stringLiteral1710B4477A01FFE20514D8AA61891F364D71C25B, NULL); if (L_10) { goto IL_00a1; } } { String_t* L_11 = V_1; bool L_12; L_12 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_11, _stringLiteral96930EC8C6FD5250BB36A5E1040AB06A9588FD62, NULL); if (L_12) { goto IL_00cb; } } { String_t* L_13 = V_1; bool L_14; L_14 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_13, _stringLiteral513659CEF285C73478E9829E41D7E4C23DB53E12, NULL); if (L_14) { goto IL_00f5; } } { String_t* L_15 = V_1; bool L_16; L_16 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_15, _stringLiteral893D84FF4ED81AC205FBC0C67CBEE1C0C752B406, NULL); if (L_16) { goto IL_011f; } } { goto IL_0149; } IL_0077: { XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_17 = ___0_eref; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_18 = __this->___doc_0; NullCheck(L_18); XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_19; L_19 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(52 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_18, _stringLiteral725B1CAFF9B49E1231FDA15B85166BBEFAA36A11); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_20 = __this->___doc_0; NullCheck(L_17); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_21; L_21 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_17, L_19, L_20); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_22 = __this->___doc_0; bool L_23 = V_0; NullCheck(L_22); XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_22, L_23, NULL); return; } IL_00a1: { XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_24 = ___0_eref; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_25 = __this->___doc_0; NullCheck(L_25); XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_26; L_26 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(52 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_25, _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_27 = __this->___doc_0; NullCheck(L_24); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_28; L_28 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_24, L_26, L_27); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_29 = __this->___doc_0; bool L_30 = V_0; NullCheck(L_29); XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_29, L_30, NULL); return; } IL_00cb: { XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_31 = ___0_eref; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_32 = __this->___doc_0; NullCheck(L_32); XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_33; L_33 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(52 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_32, _stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_34 = __this->___doc_0; NullCheck(L_31); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_35; L_35 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_31, L_33, L_34); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_36 = __this->___doc_0; bool L_37 = V_0; NullCheck(L_36); XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_36, L_37, NULL); return; } IL_00f5: { XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_38 = ___0_eref; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_39 = __this->___doc_0; NullCheck(L_39); XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_40; L_40 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(52 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_39, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_41 = __this->___doc_0; NullCheck(L_38); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_42; L_42 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_38, L_40, L_41); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_43 = __this->___doc_0; bool L_44 = V_0; NullCheck(L_43); XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_43, L_44, NULL); return; } IL_011f: { XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_45 = ___0_eref; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_46 = __this->___doc_0; NullCheck(L_46); XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_47; L_47 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(52 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_46, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_48 = __this->___doc_0; NullCheck(L_45); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_49; L_49 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_45, L_47, L_48); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_50 = __this->___doc_0; bool L_51 = V_0; NullCheck(L_50); XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_50, L_51, NULL); return; } IL_0149: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_52 = __this->___doc_0; NullCheck(L_52); XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_53; L_53 = XmlDocument_get_Entities_m72C0183C637A5D71BB38433D1D4CD9A4E87D3A80(L_52, NULL); NullCheck(L_53); RuntimeObject* L_54; L_54 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(8 /* System.Collections.IEnumerator System.Xml.XmlNamedNodeMap::GetEnumerator() */, L_53); V_2 = L_54; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_019a: {// begin finally (depth: 1) { RuntimeObject* L_55 = V_2; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_55, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_56 = V_3; if (!L_56) { goto IL_01aa; } } { RuntimeObject* L_57 = V_3; NullCheck(L_57); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_57); } IL_01aa: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0190_1; } IL_015c_1: { RuntimeObject* L_58 = V_2; NullCheck(L_58); RuntimeObject* L_59; L_59 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_58); NullCheck(((XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE*)CastclassClass((RuntimeObject*)L_59, XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var))); String_t* L_60; L_60 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, ((XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE*)CastclassClass((RuntimeObject*)L_59, XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE_il2cpp_TypeInfo_var))); XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_61 = ___0_eref; NullCheck(L_61); String_t* L_62; L_62 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_61); bool L_63; L_63 = Ref_Equal_m60FD3EF02546279815B785F856568B01F60FE1AF(L_60, L_62, NULL); if (!L_63) { goto IL_0190_1; } } { XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_64 = ___0_eref; XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_65 = ___0_eref; NullCheck(L_65); String_t* L_66; L_66 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_65); String_t* L_67; L_67 = XmlLoader_EntitizeName_mA9639629370CE5837B6174542782588E6E1A682B(__this, L_66, NULL); XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_68; L_68 = XmlLoader_ParsePartialContent_mB3EF08CD6158AD1D1CB317AA3A712DFF7252C1EC(__this, L_64, L_67, 5, NULL); goto IL_01ff; } IL_0190_1: { RuntimeObject* L_69 = V_2; NullCheck(L_69); bool L_70; L_70 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_69); if (L_70) { goto IL_015c_1; } } { goto IL_01ab; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_01ab: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_71 = __this->___doc_0; NullCheck(L_71); bool L_72; L_72 = XmlDocument_get_ActualLoadingStatus_m63B8F5AD9C82FEF1D9EFA47926E4AABED6CD9D99_inline(L_71, NULL); if (L_72) { goto IL_01e2; } } { XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_73 = ___0_eref; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_74 = __this->___doc_0; NullCheck(L_74); XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_75; L_75 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(52 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_74, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_76 = __this->___doc_0; NullCheck(L_73); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_77; L_77 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, L_73, L_75, L_76); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_78 = __this->___doc_0; bool L_79 = V_0; NullCheck(L_78); XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_78, L_79, NULL); return; } IL_01e2: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_80 = __this->___doc_0; bool L_81 = V_0; NullCheck(L_80); XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline(L_80, L_81, NULL); XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684* L_82 = ___0_eref; NullCheck(L_82); String_t* L_83; L_83 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_82); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_84 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var))); NullCheck(L_84); XmlException__ctor_mD7C8E5B35C43BCEDBB41ADC035A38088DFE88A87(L_84, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCDFFBF7695883D821E64C727304FFE2682330A22)), L_83, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_84, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlLoader_ExpandEntityReference_m99D6DCC2F0FA00E28E73698D333FCC12EFCA7B2F_RuntimeMethod_var))); } IL_01ff: { return; } } // System.Xml.XmlReader System.Xml.XmlLoader::CreateInnerXmlReader(System.String,System.Xml.XmlNodeType,System.Xml.XmlParserContext,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlLoader_CreateInnerXmlReader_m9F7F526E3D4E37EAFA9469C1FE61159D2FE5CCC6 (XmlLoader_t066205208524F18DBFEE5E59FCAC4447778D9A9D* __this, String_t* ___0_xmlFragment, int32_t ___1_nt, XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* ___2_context, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___3_doc, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* V_1 = NULL; XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* V_2 = NULL; DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* V_3 = NULL; RuntimeObject* V_4 = NULL; { int32_t L_0 = ___1_nt; V_0 = L_0; int32_t L_1 = V_0; if ((((int32_t)L_1) == ((int32_t)6))) { goto IL_000a; } } { int32_t L_2 = V_0; if ((!(((uint32_t)L_2) == ((uint32_t)5)))) { goto IL_000c; } } IL_000a: { V_0 = 1; } IL_000c: { String_t* L_3 = ___0_xmlFragment; int32_t L_4 = V_0; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_5 = ___2_context; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_6 = (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*)il2cpp_codegen_object_new(XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); NullCheck(L_6); XmlTextReaderImpl__ctor_m1752EB0257B3129797C620899A5D76179EF65C85(L_6, L_3, L_4, L_5, NULL); V_1 = L_6; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_7 = V_1; NullCheck(L_7); XmlTextReaderImpl_set_XmlValidatingReaderCompatibilityMode_mBBE46175DBCCE969AC2B298119581E91A17FA380(L_7, (bool)1, NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_8 = ___3_doc; NullCheck(L_8); bool L_9; L_9 = XmlDocument_get_HasSetResolver_m7CBB11C7E27D95CD697F177B965CEB2E1E71358D_inline(L_8, NULL); if (!L_9) { goto IL_0032; } } { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_10 = V_1; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_11 = ___3_doc; NullCheck(L_11); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_12; L_12 = XmlDocument_GetResolver_m0B1F443F2DF5510E0733052D42BC984CB83F9119_inline(L_11, NULL); NullCheck(L_10); XmlTextReaderImpl_set_XmlResolver_mE88E51BCF47AE861AAB9121C0B023EEE73D29775(L_10, L_12, NULL); } IL_0032: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_13 = ___3_doc; NullCheck(L_13); bool L_14; L_14 = XmlDocument_get_ActualLoadingStatus_m63B8F5AD9C82FEF1D9EFA47926E4AABED6CD9D99_inline(L_13, NULL); if (L_14) { goto IL_0042; } } { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_15 = V_1; NullCheck(L_15); XmlTextReaderImpl_set_DisableUndeclaredEntityCheck_m339683347E0D9F45C31C7602CBAF90F5497CACC5_inline(L_15, (bool)1, NULL); } IL_0042: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_16 = ___3_doc; NullCheck(L_16); XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_17; L_17 = VirtualFuncInvoker0< XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* >::Invoke(43 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::get_DocumentType() */, L_16); V_2 = L_17; XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_18 = V_2; if (!L_18) { goto IL_00b6; } } { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_19 = V_1; XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_20 = V_2; NullCheck(L_20); bool L_21; L_21 = XmlDocumentType_get_ParseWithNamespaces_mC391046582C88CDC3C3496E4D2C0827C36D9B324_inline(L_20, NULL); NullCheck(L_19); XmlTextReaderImpl_set_Namespaces_mBC1F7402DC209EE48DACECE94982BC6CC1E861CE(L_19, L_21, NULL); XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_22 = V_2; NullCheck(L_22); SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_23; L_23 = XmlDocumentType_get_DtdSchemaInfo_mDF54B3A169B037A8C8A4F186206B143AF3068259_inline(L_22, NULL); if (!L_23) { goto IL_006f; } } { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_24 = V_1; XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_25 = V_2; NullCheck(L_25); SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_26; L_26 = XmlDocumentType_get_DtdSchemaInfo_mDF54B3A169B037A8C8A4F186206B143AF3068259_inline(L_25, NULL); NullCheck(L_24); XmlTextReaderImpl_SetDtdInfo_m8F11C3245888FFB1600893DBAD0135432EE06110(L_24, L_26, NULL); goto IL_00b6; } IL_006f: { RuntimeObject* L_27; L_27 = DtdParser_Create_m8CE085C707E26956F079923F3F31616A27F88A3B(NULL); XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_28 = V_1; DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* L_29 = (DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3*)il2cpp_codegen_object_new(DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3_il2cpp_TypeInfo_var); NullCheck(L_29); DtdParserProxy__ctor_m442621DC14ECF6CAB169962B3CAAF479A5F18D90(L_29, L_28, NULL); V_3 = L_29; XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_30 = ___2_context; NullCheck(L_30); String_t* L_31; L_31 = XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline(L_30, NULL); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_32 = ___2_context; NullCheck(L_32); String_t* L_33; L_33 = XmlParserContext_get_DocTypeName_m8212FEC6DBA21A5B1E95538D40951B1CB0380CF0_inline(L_32, NULL); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_34 = ___2_context; NullCheck(L_34); String_t* L_35; L_35 = XmlParserContext_get_PublicId_mCE67EDDC8A9D73A0AADB77E0F7CCF53DEB5E300D_inline(L_34, NULL); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_36 = ___2_context; NullCheck(L_36); String_t* L_37; L_37 = XmlParserContext_get_SystemId_mB4649C8C6DA52AFC5224E82BBD2B7C7A1D5CCB58_inline(L_36, NULL); XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* L_38 = ___2_context; NullCheck(L_38); String_t* L_39; L_39 = XmlParserContext_get_InternalSubset_mDD9703E47510C335AD4940AE7F761F56AA00E9DC_inline(L_38, NULL); DtdParserProxy_tEE899EFE962BA9D7D23D51152CFF64F8CD1A8AC3* L_40 = V_3; NullCheck(L_27); RuntimeObject* L_41; L_41 = InterfaceFuncInvoker6< RuntimeObject*, String_t*, String_t*, String_t*, String_t*, String_t*, RuntimeObject* >::Invoke(1 /* System.Xml.IDtdInfo System.Xml.IDtdParser::ParseFreeFloatingDtd(System.String,System.String,System.String,System.String,System.String,System.Xml.IDtdParserAdapter) */, IDtdParser_t91A29AF9801876CAFD81A0496F5AB8A65527B54B_il2cpp_TypeInfo_var, L_27, L_31, L_33, L_35, L_37, L_39, L_40); V_4 = L_41; XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* L_42 = V_2; RuntimeObject* L_43 = V_4; NullCheck(L_42); XmlDocumentType_set_DtdSchemaInfo_m6E419933465D42DAB30AD7C6FFF7ACCC6D78A4E6_inline(L_42, ((SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E*)IsInstClass((RuntimeObject*)L_43, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E_il2cpp_TypeInfo_var)), NULL); XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_44 = V_1; RuntimeObject* L_45 = V_4; NullCheck(L_44); XmlTextReaderImpl_SetDtdInfo_m8F11C3245888FFB1600893DBAD0135432EE06110(L_44, L_45, NULL); } IL_00b6: { int32_t L_46 = ___1_nt; if ((((int32_t)L_46) == ((int32_t)6))) { goto IL_00be; } } { int32_t L_47 = ___1_nt; if ((!(((uint32_t)L_47) == ((uint32_t)5)))) { goto IL_00cb; } } IL_00be: { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_48 = V_1; NullCheck(L_48); bool L_49; L_49 = VirtualFuncInvoker0< bool >::Invoke(21 /* System.Boolean System.Xml.XmlReader::Read() */, L_48); XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_50 = V_1; NullCheck(L_50); VirtualActionInvoker0::Invoke(27 /* System.Void System.Xml.XmlReader::ResolveEntity() */, L_50); } IL_00cb: { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_51 = V_1; return L_51; } } // System.Void System.Xml.XmlLoader::ParseXmlDeclarationValue(System.String,System.String&,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlLoader_ParseXmlDeclarationValue_m7A0C36D8327F336C841C6DF3F74140FCE5D6333E (String_t* ___0_strValue, String_t** ___1_version, String_t** ___2_encoding, String_t** ___3_standalone, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral29988D0F9BCADFABFF66CBF5AB73096D1CAE3128); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BAA302A400A1B9C6F712ED9DBE1D7010A5034BF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052); s_Il2CppMethodInitialized = true; } XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* V_0 = NULL; { String_t** L_0 = ___1_version; *((RuntimeObject**)L_0) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)NULL); String_t** L_1 = ___2_encoding; *((RuntimeObject**)L_1) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_1, (void*)(RuntimeObject*)NULL); String_t** L_2 = ___3_standalone; *((RuntimeObject**)L_2) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)NULL); String_t* L_3 = ___0_strValue; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_4 = (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B*)il2cpp_codegen_object_new(XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B_il2cpp_TypeInfo_var); NullCheck(L_4); XmlTextReaderImpl__ctor_mB17B348B4F2C16D6F06AB86A2803970CA0517303(L_4, L_3, (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B*)NULL, NULL); V_0 = L_4; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0059: {// begin finally (depth: 1) XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_5 = V_0; NullCheck(L_5); VirtualActionInvoker0::Invoke(22 /* System.Void System.Xml.XmlReader::Close() */, L_5); return; }// end finally (depth: 1) }); try {// begin try (depth: 1) { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_6 = V_0; NullCheck(L_6); bool L_7; L_7 = VirtualFuncInvoker0< bool >::Invoke(21 /* System.Boolean System.Xml.XmlReader::Read() */, L_6); XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_8 = V_0; NullCheck(L_8); bool L_9; L_9 = VirtualFuncInvoker1< bool, String_t* >::Invoke(16 /* System.Boolean System.Xml.XmlReader::MoveToAttribute(System.String) */, L_8, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052); if (!L_9) { goto IL_002d_1; } } { String_t** L_10 = ___1_version; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_11 = V_0; NullCheck(L_11); String_t* L_12; L_12 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_11); *((RuntimeObject**)L_10) = (RuntimeObject*)L_12; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_10, (void*)(RuntimeObject*)L_12); } IL_002d_1: { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_13 = V_0; NullCheck(L_13); bool L_14; L_14 = VirtualFuncInvoker1< bool, String_t* >::Invoke(16 /* System.Boolean System.Xml.XmlReader::MoveToAttribute(System.String) */, L_13, _stringLiteral29988D0F9BCADFABFF66CBF5AB73096D1CAE3128); if (!L_14) { goto IL_0042_1; } } { String_t** L_15 = ___2_encoding; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_16 = V_0; NullCheck(L_16); String_t* L_17; L_17 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_16); *((RuntimeObject**)L_15) = (RuntimeObject*)L_17; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_15, (void*)(RuntimeObject*)L_17); } IL_0042_1: { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_18 = V_0; NullCheck(L_18); bool L_19; L_19 = VirtualFuncInvoker1< bool, String_t* >::Invoke(16 /* System.Boolean System.Xml.XmlReader::MoveToAttribute(System.String) */, L_18, _stringLiteral5BAA302A400A1B9C6F712ED9DBE1D7010A5034BF); if (!L_19) { goto IL_0057_1; } } { String_t** L_20 = ___3_standalone; XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_21 = V_0; NullCheck(L_21); String_t* L_22; L_22 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_21); *((RuntimeObject**)L_20) = (RuntimeObject*)L_22; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_20, (void*)(RuntimeObject*)L_22); } IL_0057_1: { goto IL_0060; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0060: { return; } } // System.Exception System.Xml.XmlLoader::UnexpectedNodeType(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlLoader_UnexpectedNodeType_m302DDB86C8F1F9C46BCBD9018F67FB807EB19083 (int32_t ___0_nodetype, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral44C14DBC6A9EE22DDA5FE2FABA5577B801DFAD89); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0; L_0 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL); String_t* L_1; L_1 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(_stringLiteral44C14DBC6A9EE22DDA5FE2FABA5577B801DFAD89, NULL); Il2CppFakeBox L_2(XmlNodeType_tCA25567E42A464038FDA6BA318EC0A9627B4CB95_il2cpp_TypeInfo_var, (&___0_nodetype)); String_t* L_3; L_3 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_2), NULL); String_t* L_4; L_4 = String_Format_m3844098E7C18576D263AAF62F69BE5C70BF9A744(L_0, L_1, L_3, NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_5 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var); NullCheck(L_5); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_5, L_4, NULL); return 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.Xml.XmlName System.Xml.XmlName::Create(System.String,System.String,System.String,System.Int32,System.Xml.XmlDocument,System.Xml.XmlName,System.Xml.Schema.IXmlSchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlName_Create_m8B23A272C20C2ACD00B4F98D341BD01E23EF290C (String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_ns, int32_t ___3_hashCode, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___4_ownerDoc, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___5_next, RuntimeObject* ___6_schemaInfo, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlName_t0704430D24D202146901D342E34D878246E14F33_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___6_schemaInfo; if (L_0) { goto IL_0012; } } { String_t* L_1 = ___0_prefix; String_t* L_2 = ___1_localName; String_t* L_3 = ___2_ns; int32_t L_4 = ___3_hashCode; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = ___4_ownerDoc; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_6 = ___5_next; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_7 = (XmlName_t0704430D24D202146901D342E34D878246E14F33*)il2cpp_codegen_object_new(XmlName_t0704430D24D202146901D342E34D878246E14F33_il2cpp_TypeInfo_var); NullCheck(L_7); XmlName__ctor_m481CD54AACBDAC664A7E9E893CB364ED11C62B24(L_7, L_1, L_2, L_3, L_4, L_5, L_6, NULL); return L_7; } IL_0012: { String_t* L_8 = ___0_prefix; String_t* L_9 = ___1_localName; String_t* L_10 = ___2_ns; int32_t L_11 = ___3_hashCode; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_12 = ___4_ownerDoc; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_13 = ___5_next; RuntimeObject* L_14 = ___6_schemaInfo; XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* L_15 = (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947*)il2cpp_codegen_object_new(XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947_il2cpp_TypeInfo_var); NullCheck(L_15); XmlNameEx__ctor_m967B3032B050D5E535DC12B3F44822B3B14BE76C(L_15, L_8, L_9, L_10, L_11, L_12, L_13, L_14, NULL); return L_15; } } // System.Void System.Xml.XmlName::.ctor(System.String,System.String,System.String,System.Int32,System.Xml.XmlDocument,System.Xml.XmlName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlName__ctor_m481CD54AACBDAC664A7E9E893CB364ED11C62B24 (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_ns, int32_t ___3_hashCode, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___4_ownerDoc, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___5_next, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); String_t* L_0 = ___0_prefix; __this->___prefix_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___prefix_0), (void*)L_0); String_t* L_1 = ___1_localName; __this->___localName_1 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___localName_1), (void*)L_1); String_t* L_2 = ___2_ns; __this->___ns_2 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___ns_2), (void*)L_2); __this->___name_3 = (String_t*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___name_3), (void*)(String_t*)NULL); int32_t L_3 = ___3_hashCode; __this->___hashCode_4 = L_3; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4 = ___4_ownerDoc; __this->___ownerDoc_5 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___ownerDoc_5), (void*)L_4); XmlName_t0704430D24D202146901D342E34D878246E14F33* L_5 = ___5_next; __this->___next_6 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___next_6), (void*)L_5); return; } } // System.String System.Xml.XmlName::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___localName_1; return L_0; } } // System.String System.Xml.XmlName::get_NamespaceURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1 (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___ns_2; return L_0; } } // System.String System.Xml.XmlName::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___prefix_0; return L_0; } } // System.Int32 System.Xml.XmlName::get_HashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlName_get_HashCode_m329A9FEAF3BDEAA5F1F40CB84F7E51E1BDE58B2D (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___hashCode_4; return L_0; } } // System.Xml.XmlDocument System.Xml.XmlName::get_OwnerDocument() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlName_get_OwnerDocument_m330FA0574F04486B56352FA1E5F4336890C02A0C (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = __this->___ownerDoc_5; return L_0; } } // System.String System.Xml.XmlName::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlName_get_Name_m77B33DD36549E6E3E728EA1AD3325E339EC30435 (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* V_1 = NULL; bool V_2 = false; { String_t* L_0 = __this->___name_3; if (L_0) { goto IL_0099; } } { String_t* L_1 = __this->___prefix_0; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL); if ((((int32_t)L_2) <= ((int32_t)0))) { goto IL_008d; } } { String_t* L_3 = __this->___localName_1; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if ((((int32_t)L_4) <= ((int32_t)0))) { goto IL_007f; } } { String_t* L_5 = __this->___prefix_0; String_t* L_6 = __this->___localName_1; String_t* L_7; L_7 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_5, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, L_6, NULL); V_0 = L_7; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_8 = __this->___ownerDoc_5; NullCheck(L_8); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_9; L_9 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(L_8, NULL); V_1 = L_9; V_2 = (bool)0; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0075: {// begin finally (depth: 1) { bool L_10 = V_2; if (!L_10) { goto IL_007e; } } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_11 = V_1; Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_11, NULL); } IL_007e: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_12 = V_1; Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_12, (&V_2), NULL); String_t* L_13 = __this->___name_3; if (L_13) { goto IL_0073_1; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_14 = __this->___ownerDoc_5; NullCheck(L_14); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_15; L_15 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(L_14, NULL); String_t* L_16 = V_0; NullCheck(L_15); String_t* L_17; L_17 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_15, L_16); __this->___name_3 = L_17; Il2CppCodeGenWriteBarrier((void**)(&__this->___name_3), (void*)L_17); } IL_0073_1: { goto IL_0099; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_007f: { String_t* L_18 = __this->___prefix_0; __this->___name_3 = L_18; Il2CppCodeGenWriteBarrier((void**)(&__this->___name_3), (void*)L_18); goto IL_0099; } IL_008d: { String_t* L_19 = __this->___localName_1; __this->___name_3 = L_19; Il2CppCodeGenWriteBarrier((void**)(&__this->___name_3), (void*)L_19); } IL_0099: { String_t* L_20 = __this->___name_3; return L_20; } } // System.Xml.Schema.XmlSchemaValidity System.Xml.XmlName::get_Validity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlName_get_Validity_m99EE72CF81E24310F68E20FBDB8D2DA67C5CD943 (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { return (int32_t)(0); } } // System.Boolean System.Xml.XmlName::get_IsDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlName_get_IsDefault_m184C3AB9C1A20B9D78009C22DA191E2D1B23D3AC (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Xml.XmlName::get_IsNil() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlName_get_IsNil_mCF15AFC4476754C40495FC1B1D15B87763B82D6A (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Xml.Schema.XmlSchemaSimpleType System.Xml.XmlName::get_MemberType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* XmlName_get_MemberType_m1B22D0EC1C1532491736ADB4594C2F6C9EB55830 (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { return (XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8*)NULL; } } // System.Xml.Schema.XmlSchemaType System.Xml.XmlName::get_SchemaType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* XmlName_get_SchemaType_m079DD1FDB8EDEAA7740A5A14D0312E9BCFB597A3 (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { return (XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF*)NULL; } } // System.Xml.Schema.XmlSchemaElement System.Xml.XmlName::get_SchemaElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* XmlName_get_SchemaElement_m973E743AD39910AFFAD74D01C45B5331209B7B1B (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { return (XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970*)NULL; } } // System.Xml.Schema.XmlSchemaAttribute System.Xml.XmlName::get_SchemaAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* XmlName_get_SchemaAttribute_m37A7CD5A03742285B2786D2449C08FC675A8495A (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { return (XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F*)NULL; } } // System.Boolean System.Xml.XmlName::Equals(System.Xml.Schema.IXmlSchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlName_Equals_mD34FC141124C47719D2266FD774E0598F66E257B (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, RuntimeObject* ___0_schemaInfo, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___0_schemaInfo; return (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0); } } // System.Int32 System.Xml.XmlName::GetHashCode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlName_GetHashCode_mC2C5513D62B0E10E556D1241BC33C4AFFAD1DDCD (String_t* ___0_name, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; { V_0 = 0; String_t* L_0 = ___0_name; if (!L_0) { goto IL_0041; } } { String_t* L_1 = ___0_name; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL); V_1 = ((int32_t)il2cpp_codegen_subtract(L_2, 1)); goto IL_0029; } IL_0010: { String_t* L_3 = ___0_name; int32_t L_4 = V_1; NullCheck(L_3); Il2CppChar L_5; L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, L_4, NULL); V_2 = L_5; Il2CppChar L_6 = V_2; if ((((int32_t)L_6) == ((int32_t)((int32_t)58)))) { goto IL_002d; } } { int32_t L_7 = V_0; int32_t L_8 = V_0; Il2CppChar L_9 = V_2; V_0 = ((int32_t)il2cpp_codegen_add(L_7, ((int32_t)(((int32_t)(L_8<<7))^(int32_t)L_9)))); int32_t L_10 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract(L_10, 1)); } IL_0029: { int32_t L_11 = V_1; if ((((int32_t)L_11) >= ((int32_t)0))) { goto IL_0010; } } IL_002d: { int32_t L_12 = V_0; int32_t L_13 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_12, ((int32_t)(L_13>>((int32_t)17))))); int32_t L_14 = V_0; int32_t L_15 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_14, ((int32_t)(L_15>>((int32_t)11))))); int32_t L_16 = V_0; int32_t L_17 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_16, ((int32_t)(L_17>>5)))); } IL_0041: { int32_t L_18 = V_0; return L_18; } } #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.XmlNameEx::.ctor(System.String,System.String,System.String,System.Int32,System.Xml.XmlDocument,System.Xml.XmlName,System.Xml.Schema.IXmlSchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNameEx__ctor_m967B3032B050D5E535DC12B3F44822B3B14BE76C (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_ns, int32_t ___3_hashCode, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___4_ownerDoc, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___5_next, RuntimeObject* ___6_schemaInfo, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* G_B2_0 = NULL; XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* G_B1_0 = NULL; XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* G_B3_0 = NULL; XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* G_B3_1 = NULL; { String_t* L_0 = ___0_prefix; String_t* L_1 = ___1_localName; String_t* L_2 = ___2_ns; int32_t L_3 = ___3_hashCode; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4 = ___4_ownerDoc; XmlName_t0704430D24D202146901D342E34D878246E14F33* L_5 = ___5_next; XmlName__ctor_m481CD54AACBDAC664A7E9E893CB364ED11C62B24(__this, L_0, L_1, L_2, L_3, L_4, L_5, NULL); RuntimeObject* L_6 = ___6_schemaInfo; NullCheck(L_6); int32_t L_7; L_7 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.IXmlSchemaInfo::get_Validity() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_6); XmlNameEx_SetValidity_m6D466FF2344CA38C5D234FEE89AE009FC900095B(__this, L_7, NULL); RuntimeObject* L_8 = ___6_schemaInfo; NullCheck(L_8); bool L_9; L_9 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Xml.Schema.IXmlSchemaInfo::get_IsDefault() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_8); XmlNameEx_SetIsDefault_m74E42B17EEEDE9C419A979BD8A296B282F7ACB66(__this, L_9, NULL); RuntimeObject* L_10 = ___6_schemaInfo; NullCheck(L_10); bool L_11; L_11 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean System.Xml.Schema.IXmlSchemaInfo::get_IsNil() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_10); XmlNameEx_SetIsNil_mBEA95E9E386B8B461B171BCD5A5E88F9885630CF(__this, L_11, NULL); RuntimeObject* L_12 = ___6_schemaInfo; NullCheck(L_12); XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* L_13; L_13 = InterfaceFuncInvoker0< XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* >::Invoke(3 /* System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.IXmlSchemaInfo::get_MemberType() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_12); __this->___memberType_8 = L_13; Il2CppCodeGenWriteBarrier((void**)(&__this->___memberType_8), (void*)L_13); RuntimeObject* L_14 = ___6_schemaInfo; NullCheck(L_14); XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_15; L_15 = InterfaceFuncInvoker0< XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_14); __this->___schemaType_9 = L_15; Il2CppCodeGenWriteBarrier((void**)(&__this->___schemaType_9), (void*)L_15); RuntimeObject* L_16 = ___6_schemaInfo; NullCheck(L_16); XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* L_17; L_17 = InterfaceFuncInvoker0< XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* >::Invoke(5 /* System.Xml.Schema.XmlSchemaElement System.Xml.Schema.IXmlSchemaInfo::get_SchemaElement() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_16); G_B1_0 = __this; if (L_17) { G_B2_0 = __this; goto IL_0063; } } { RuntimeObject* L_18 = ___6_schemaInfo; NullCheck(L_18); XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* L_19; L_19 = InterfaceFuncInvoker0< XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* >::Invoke(6 /* System.Xml.Schema.XmlSchemaAttribute System.Xml.Schema.IXmlSchemaInfo::get_SchemaAttribute() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_18); G_B3_0 = L_19; G_B3_1 = G_B1_0; goto IL_006a; } IL_0063: { RuntimeObject* L_20 = ___6_schemaInfo; NullCheck(L_20); XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* L_21; L_21 = InterfaceFuncInvoker0< XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* >::Invoke(5 /* System.Xml.Schema.XmlSchemaElement System.Xml.Schema.IXmlSchemaInfo::get_SchemaElement() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_20); G_B3_0 = ((XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F*)(L_21)); G_B3_1 = G_B2_0; } IL_006a: { NullCheck(G_B3_1); G_B3_1->___decl_10 = G_B3_0; Il2CppCodeGenWriteBarrier((void**)(&G_B3_1->___decl_10), (void*)G_B3_0); return; } } // System.Xml.Schema.XmlSchemaValidity System.Xml.XmlNameEx::get_Validity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlNameEx_get_Validity_m8B63DD9F78D02F444D4E458398139C6CC07C5A17 (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ((XmlName_t0704430D24D202146901D342E34D878246E14F33*)__this)->___ownerDoc_5; NullCheck(L_0); bool L_1; L_1 = XmlDocument_get_CanReportValidity_m71D1E8A3FCDBF648B6E83D5B7690FD0FD40F8736_inline(L_0, NULL); if (L_1) { goto IL_000f; } } { return (int32_t)(0); } IL_000f: { uint8_t L_2 = __this->___flags_7; return (int32_t)(((int32_t)((int32_t)L_2&3))); } } // System.Boolean System.Xml.XmlNameEx::get_IsDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlNameEx_get_IsDefault_m189F4C78A557464D6171A5D760ABFA5FDA4C0126 (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->___flags_7; return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&4))) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Xml.XmlNameEx::get_IsNil() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlNameEx_get_IsNil_m678617751E84334EC52250E6DEE482DC77F5F0D4 (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->___flags_7; return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&8))) <= ((uint32_t)0)))? 1 : 0); } } // System.Xml.Schema.XmlSchemaSimpleType System.Xml.XmlNameEx::get_MemberType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* XmlNameEx_get_MemberType_m8BAB8AC74B747F439008F2201D27B4B3B38767B9 (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* __this, const RuntimeMethod* method) { { XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* L_0 = __this->___memberType_8; return L_0; } } // System.Xml.Schema.XmlSchemaType System.Xml.XmlNameEx::get_SchemaType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* XmlNameEx_get_SchemaType_mB2B477F468C85169937AD2A4ADD90D4D17D71AAA (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* __this, const RuntimeMethod* method) { { XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_0 = __this->___schemaType_9; return L_0; } } // System.Xml.Schema.XmlSchemaElement System.Xml.XmlNameEx::get_SchemaElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* XmlNameEx_get_SchemaElement_m4C48EAAB159145D18B4F3DAAA1CEB279B26101A1 (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___decl_10; return ((XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970*)IsInstClass((RuntimeObject*)L_0, XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970_il2cpp_TypeInfo_var)); } } // System.Xml.Schema.XmlSchemaAttribute System.Xml.XmlNameEx::get_SchemaAttribute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* XmlNameEx_get_SchemaAttribute_m7DE58A38BFDB5F19E5A6A472587E6C2176F4498D (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___decl_10; return ((XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F*)IsInstClass((RuntimeObject*)L_0, XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F_il2cpp_TypeInfo_var)); } } // System.Void System.Xml.XmlNameEx::SetValidity(System.Xml.Schema.XmlSchemaValidity) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNameEx_SetValidity_m6D466FF2344CA38C5D234FEE89AE009FC900095B (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* __this, int32_t ___0_value, const RuntimeMethod* method) { { uint8_t L_0 = __this->___flags_7; int32_t L_1 = ___0_value; __this->___flags_7 = (uint8_t)((int32_t)(uint8_t)((int32_t)(((int32_t)((int32_t)L_0&((int32_t)-4)))|((int32_t)(uint8_t)L_1)))); return; } } // System.Void System.Xml.XmlNameEx::SetIsDefault(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNameEx_SetIsDefault_m74E42B17EEEDE9C419A979BD8A296B282F7ACB66 (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; if (!L_0) { goto IL_0013; } } { uint8_t L_1 = __this->___flags_7; __this->___flags_7 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_1|4))); return; } IL_0013: { uint8_t L_2 = __this->___flags_7; __this->___flags_7 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_2&((int32_t)-5)))); return; } } // System.Void System.Xml.XmlNameEx::SetIsNil(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNameEx_SetIsNil_mBEA95E9E386B8B461B171BCD5A5E88F9885630CF (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; if (!L_0) { goto IL_0013; } } { uint8_t L_1 = __this->___flags_7; __this->___flags_7 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_1|8))); return; } IL_0013: { uint8_t L_2 = __this->___flags_7; __this->___flags_7 = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_2&((int32_t)-9)))); return; } } // System.Boolean System.Xml.XmlNameEx::Equals(System.Xml.Schema.IXmlSchemaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlNameEx_Equals_mBA8CEC2CF7A5A4C113C70D0192AF1870C96F517E (XmlNameEx_t193F012BE4D8F15CE24D3874F62E42FBD5FFC947* __this, RuntimeObject* ___0_schemaInfo, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_schemaInfo; if (!L_0) { goto IL_007d; } } { RuntimeObject* L_1 = ___0_schemaInfo; NullCheck(L_1); int32_t L_2; L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Xml.Schema.XmlSchemaValidity System.Xml.Schema.IXmlSchemaInfo::get_Validity() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_1); uint8_t L_3 = __this->___flags_7; if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)((int32_t)L_3&3)))))) { goto IL_007d; } } { RuntimeObject* L_4 = ___0_schemaInfo; NullCheck(L_4); bool L_5; L_5 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Xml.Schema.IXmlSchemaInfo::get_IsDefault() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_4); uint8_t L_6 = __this->___flags_7; if ((!(((uint32_t)L_5) == ((uint32_t)((!(((uint32_t)((int32_t)((int32_t)L_6&4))) <= ((uint32_t)0)))? 1 : 0))))) { goto IL_007d; } } { RuntimeObject* L_7 = ___0_schemaInfo; NullCheck(L_7); bool L_8; L_8 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean System.Xml.Schema.IXmlSchemaInfo::get_IsNil() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_7); uint8_t L_9 = __this->___flags_7; if ((!(((uint32_t)L_8) == ((uint32_t)((!(((uint32_t)((int32_t)((int32_t)L_9&8))) <= ((uint32_t)0)))? 1 : 0))))) { goto IL_007d; } } { RuntimeObject* L_10 = ___0_schemaInfo; NullCheck(L_10); XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* L_11; L_11 = InterfaceFuncInvoker0< XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* >::Invoke(3 /* System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.IXmlSchemaInfo::get_MemberType() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_10); XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* L_12 = __this->___memberType_8; if ((!(((RuntimeObject*)(XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8*)L_11) == ((RuntimeObject*)(XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8*)L_12)))) { goto IL_007d; } } { RuntimeObject* L_13 = ___0_schemaInfo; NullCheck(L_13); XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_14; L_14 = InterfaceFuncInvoker0< XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* >::Invoke(4 /* System.Xml.Schema.XmlSchemaType System.Xml.Schema.IXmlSchemaInfo::get_SchemaType() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_13); XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_15 = __this->___schemaType_9; if ((!(((RuntimeObject*)(XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF*)L_14) == ((RuntimeObject*)(XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF*)L_15)))) { goto IL_007d; } } { RuntimeObject* L_16 = ___0_schemaInfo; NullCheck(L_16); XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* L_17; L_17 = InterfaceFuncInvoker0< XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970* >::Invoke(5 /* System.Xml.Schema.XmlSchemaElement System.Xml.Schema.IXmlSchemaInfo::get_SchemaElement() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_16); RuntimeObject* L_18 = __this->___decl_10; if ((!(((RuntimeObject*)(XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970*)L_17) == ((RuntimeObject*)(XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970*)((XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970*)IsInstClass((RuntimeObject*)L_18, XmlSchemaElement_t24D5940E4EB4E5FFDAD1772AFBD7A83CD992C970_il2cpp_TypeInfo_var)))))) { goto IL_007d; } } { RuntimeObject* L_19 = ___0_schemaInfo; NullCheck(L_19); XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* L_20; L_20 = InterfaceFuncInvoker0< XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F* >::Invoke(6 /* System.Xml.Schema.XmlSchemaAttribute System.Xml.Schema.IXmlSchemaInfo::get_SchemaAttribute() */, IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB_il2cpp_TypeInfo_var, L_19); RuntimeObject* L_21 = __this->___decl_10; if ((!(((RuntimeObject*)(XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F*)L_20) == ((RuntimeObject*)(XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F*)((XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F*)IsInstClass((RuntimeObject*)L_21, XmlSchemaAttribute_t04AF3100B886867E3F0495E22F44305EDEC5550F_il2cpp_TypeInfo_var)))))) { goto IL_007d; } } { return (bool)1; } IL_007d: { return (bool)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.XmlNamedNodeMap::.ctor(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNamedNodeMap__ctor_mA91F36D1CB05380C6F5E60F31062962B6DE2FF08 (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_parent, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_parent; __this->___parent_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___parent_0), (void*)L_0); return; } } // System.Xml.XmlNode System.Xml.XmlNamedNodeMap::GetNamedItem(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNamedNodeMap_GetNamedItem_m3FA60E81627626104091A0930AE6E7EF9EBB3916 (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, String_t* ___0_name, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { String_t* L_0 = ___0_name; int32_t L_1; L_1 = XmlNamedNodeMap_FindNodeOffset_m99B44DA4690745D017579D4CE66A8B109B3E5BAE(__this, L_0, NULL); V_0 = L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001e; } } { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_3 = (&__this->___nodes_1); int32_t L_4 = V_0; RuntimeObject* L_5; L_5 = SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576(L_3, L_4, NULL); return ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_5, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var)); } IL_001e: { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } } // System.Xml.XmlNode System.Xml.XmlNamedNodeMap::SetNamedItem(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNamedNodeMap_SetNamedItem_m74E7FF2EB3E37A92BC87288C387443D030152D49 (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) { int32_t V_0 = 0; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_node; if (L_0) { goto IL_0005; } } { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } IL_0005: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___0_node; NullCheck(L_1); String_t* L_2; L_2 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_1); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___0_node; NullCheck(L_3); String_t* L_4; L_4 = VirtualFuncInvoker0< String_t* >::Invoke(28 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_3); int32_t L_5; L_5 = XmlNamedNodeMap_FindNodeOffset_mC74472DEDF90B693B1BB71E3B136CD32854E0A66(__this, L_2, L_4, NULL); V_0 = L_5; int32_t L_6 = V_0; if ((!(((uint32_t)L_6) == ((uint32_t)(-1))))) { goto IL_0026; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8; L_8 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::AddNode(System.Xml.XmlNode) */, __this, L_7); return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } IL_0026: { int32_t L_9 = V_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_11; L_11 = XmlNamedNodeMap_ReplaceNodeAt_mF8FDC2FDB6E09273E44EE8399CEBC314F0C1ECB2(__this, L_9, L_10, NULL); return L_11; } } // System.Int32 System.Xml.XmlNamedNodeMap::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlNamedNodeMap_get_Count_m383C4A91707F8FE7D905507CD35A043A5A7CFF29 (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, const RuntimeMethod* method) { { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_0 = (&__this->___nodes_1); int32_t L_1; L_1 = SmallXmlNodeList_get_Count_m79F61C89FC8ABD73BCB56938310461EFF1DF14BF(L_0, NULL); return L_1; } } // System.Collections.IEnumerator System.Xml.XmlNamedNodeMap::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlNamedNodeMap_GetEnumerator_mAC2C011B86BB739ECF9CE795C9B1BD9C6296F70C (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, const RuntimeMethod* method) { { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_0 = (&__this->___nodes_1); RuntimeObject* L_1; L_1 = SmallXmlNodeList_GetEnumerator_mB3807963AF68C5F75E6FF22AD8515F2F966F21CE(L_0, NULL); return L_1; } } // System.Int32 System.Xml.XmlNamedNodeMap::FindNodeOffset(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlNamedNodeMap_FindNodeOffset_m99B44DA4690745D017579D4CE66A8B109B3E5BAE (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, String_t* ___0_name, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_2 = NULL; { int32_t L_0; L_0 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, __this); V_0 = L_0; V_1 = 0; goto IL_0031; } IL_000b: { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_1 = (&__this->___nodes_1); int32_t L_2 = V_1; RuntimeObject* L_3; L_3 = SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576(L_1, L_2, NULL); V_2 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_3, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var)); String_t* L_4 = ___0_name; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = V_2; NullCheck(L_5); String_t* L_6; L_6 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, L_5); bool L_7; L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_4, L_6, NULL); if (!L_7) { goto IL_002d; } } { int32_t L_8 = V_1; return L_8; } IL_002d: { int32_t L_9 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1)); } IL_0031: { int32_t L_10 = V_1; int32_t L_11 = V_0; if ((((int32_t)L_10) < ((int32_t)L_11))) { goto IL_000b; } } { return (-1); } } // System.Int32 System.Xml.XmlNamedNodeMap::FindNodeOffset(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlNamedNodeMap_FindNodeOffset_mC74472DEDF90B693B1BB71E3B136CD32854E0A66 (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, String_t* ___0_localName, String_t* ___1_namespaceURI, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_2 = NULL; { int32_t L_0; L_0 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.XmlNamedNodeMap::get_Count() */, __this); V_0 = L_0; V_1 = 0; goto IL_003f; } IL_000b: { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_1 = (&__this->___nodes_1); int32_t L_2 = V_1; RuntimeObject* L_3; L_3 = SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576(L_1, L_2, NULL); V_2 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_3, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var)); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = V_2; NullCheck(L_4); String_t* L_5; L_5 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, L_4); String_t* L_6 = ___0_localName; bool L_7; L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_5, L_6, NULL); if (!L_7) { goto IL_003b; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = V_2; NullCheck(L_8); String_t* L_9; L_9 = VirtualFuncInvoker0< String_t* >::Invoke(28 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_8); String_t* L_10 = ___1_namespaceURI; bool L_11; L_11 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_9, L_10, NULL); if (!L_11) { goto IL_003b; } } { int32_t L_12 = V_1; return L_12; } IL_003b: { int32_t L_13 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1)); } IL_003f: { int32_t L_14 = V_1; int32_t L_15 = V_0; if ((((int32_t)L_14) < ((int32_t)L_15))) { goto IL_000b; } } { return (-1); } } // System.Xml.XmlNode System.Xml.XmlNamedNodeMap::AddNode(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNamedNodeMap_AddNode_m8312C3D9AAF475E11F679C7165079360BD04FA6D (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; String_t* V_1 = NULL; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* V_2 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_node; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0); if ((!(((uint32_t)L_1) == ((uint32_t)2)))) { goto IL_0017; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___0_node; NullCheck(((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_2, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var))); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_3; L_3 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(44 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_2, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var))); V_0 = L_3; goto IL_001e; } IL_0017: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = ___0_node; NullCheck(L_4); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5; L_5 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_4); V_0 = L_5; } IL_001e: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = ___0_node; NullCheck(L_6); String_t* L_7; L_7 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_6); V_1 = L_7; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = __this->___parent_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = V_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_11 = __this->___parent_0; String_t* L_12 = V_1; String_t* L_13 = V_1; NullCheck(L_8); XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_14; L_14 = VirtualFuncInvoker6< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, String_t*, String_t*, int32_t >::Invoke(39 /* System.Xml.XmlNodeChangedEventArgs System.Xml.XmlNode::GetEventArgs(System.Xml.XmlNode,System.Xml.XmlNode,System.Xml.XmlNode,System.String,System.String,System.Xml.XmlNodeChangedAction) */, L_8, L_9, L_10, L_11, L_12, L_13, 0); V_2 = L_14; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_15 = V_2; if (!L_15) { goto IL_004b; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_16 = __this->___parent_0; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_17 = V_2; NullCheck(L_16); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(40 /* System.Void System.Xml.XmlNode::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) */, L_16, L_17); } IL_004b: { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_18 = (&__this->___nodes_1); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_19 = ___0_node; SmallXmlNodeList_Add_m4BA68D6D8E4613E79365ACDF2413B287FA4A4F06(L_18, L_19, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_20 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_21 = __this->___parent_0; NullCheck(L_20); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(36 /* System.Void System.Xml.XmlNode::SetParent(System.Xml.XmlNode) */, L_20, L_21); XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_22 = V_2; if (!L_22) { goto IL_0072; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_23 = __this->___parent_0; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_24 = V_2; NullCheck(L_23); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(41 /* System.Void System.Xml.XmlNode::AfterEvent(System.Xml.XmlNodeChangedEventArgs) */, L_23, L_24); } IL_0072: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_25 = ___0_node; return L_25; } } // System.Xml.XmlNode System.Xml.XmlNamedNodeMap::AddNodeForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNamedNodeMap_AddNodeForLoad_m95A9C1624ACF142E0FD29FC4B572A750F5D600AF (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* V_0 = NULL; { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___1_doc; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = __this->___parent_0; NullCheck(L_0); XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_3; L_3 = XmlDocument_GetInsertEventArgsForLoad_mC008CD74A188F1B0ECBCFFBFD99A5F7B3DAB2661(L_0, L_1, L_2, NULL); V_0 = L_3; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_4 = V_0; if (!L_4) { goto IL_0018; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = ___1_doc; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_6 = V_0; NullCheck(L_5); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(40 /* System.Void System.Xml.XmlNode::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) */, L_5, L_6); } IL_0018: { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_7 = (&__this->___nodes_1); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = ___0_node; SmallXmlNodeList_Add_m4BA68D6D8E4613E79365ACDF2413B287FA4A4F06(L_7, L_8, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = __this->___parent_0; NullCheck(L_9); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(36 /* System.Void System.Xml.XmlNode::SetParent(System.Xml.XmlNode) */, L_9, L_10); XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_11 = V_0; if (!L_11) { goto IL_003a; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_12 = ___1_doc; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_13 = V_0; NullCheck(L_12); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(41 /* System.Void System.Xml.XmlNode::AfterEvent(System.Xml.XmlNodeChangedEventArgs) */, L_12, L_13); } IL_003a: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14 = ___0_node; return L_14; } } // System.Xml.XmlNode System.Xml.XmlNamedNodeMap::RemoveNodeAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNamedNodeMap_RemoveNodeAt_mA1F6B64903412EDC18F19D1CCE1D890207C6FEF3 (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, int32_t ___0_i, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; String_t* V_1 = NULL; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* V_2 = NULL; { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_0 = (&__this->___nodes_1); int32_t L_1 = ___0_i; RuntimeObject* L_2; L_2 = SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576(L_0, L_1, NULL); V_0 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_2, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var)); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = V_0; NullCheck(L_3); String_t* L_4; L_4 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_3); V_1 = L_4; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = __this->___parent_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = V_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = __this->___parent_0; String_t* L_8 = V_1; String_t* L_9 = V_1; NullCheck(L_5); XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_10; L_10 = VirtualFuncInvoker6< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, String_t*, String_t*, int32_t >::Invoke(39 /* System.Xml.XmlNodeChangedEventArgs System.Xml.XmlNode::GetEventArgs(System.Xml.XmlNode,System.Xml.XmlNode,System.Xml.XmlNode,System.String,System.String,System.Xml.XmlNodeChangedAction) */, L_5, L_6, L_7, (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL, L_8, L_9, 1); V_2 = L_10; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_11 = V_2; if (!L_11) { goto IL_003f; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12 = __this->___parent_0; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_13 = V_2; NullCheck(L_12); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(40 /* System.Void System.Xml.XmlNode::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) */, L_12, L_13); } IL_003f: { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_14 = (&__this->___nodes_1); int32_t L_15 = ___0_i; SmallXmlNodeList_RemoveAt_m36308613FA8129C77990E7650BB0A1CE49ABC882(L_14, L_15, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_16 = V_0; NullCheck(L_16); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(36 /* System.Void System.Xml.XmlNode::SetParent(System.Xml.XmlNode) */, L_16, (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL); XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_17 = V_2; if (!L_17) { goto IL_0061; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_18 = __this->___parent_0; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_19 = V_2; NullCheck(L_18); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(41 /* System.Void System.Xml.XmlNode::AfterEvent(System.Xml.XmlNodeChangedEventArgs) */, L_18, L_19); } IL_0061: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_20 = V_0; return L_20; } } // System.Xml.XmlNode System.Xml.XmlNamedNodeMap::ReplaceNodeAt(System.Int32,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNamedNodeMap_ReplaceNodeAt_mF8FDC2FDB6E09273E44EE8399CEBC314F0C1ECB2 (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, int32_t ___0_i, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_node, const RuntimeMethod* method) { { int32_t L_0 = ___0_i; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1; L_1 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t >::Invoke(11 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::RemoveNodeAt(System.Int32) */, __this, L_0); int32_t L_2 = ___0_i; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___1_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4; L_4 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, int32_t, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNamedNodeMap::InsertNodeAt(System.Int32,System.Xml.XmlNode) */, __this, L_2, L_3); return L_1; } } // System.Xml.XmlNode System.Xml.XmlNamedNodeMap::InsertNodeAt(System.Int32,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNamedNodeMap_InsertNodeAt_m72074E17CA4EC55CE99997C5BC15681BECBA0ACE (XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* __this, int32_t ___0_i, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_node, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; String_t* V_1 = NULL; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* V_2 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___1_node; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0); if ((!(((uint32_t)L_1) == ((uint32_t)2)))) { goto IL_0017; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___1_node; NullCheck(((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_2, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var))); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_3; L_3 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(44 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_2, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var))); V_0 = L_3; goto IL_001e; } IL_0017: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = ___1_node; NullCheck(L_4); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5; L_5 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_4); V_0 = L_5; } IL_001e: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = ___1_node; NullCheck(L_6); String_t* L_7; L_7 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_6); V_1 = L_7; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = __this->___parent_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = ___1_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = V_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_11 = __this->___parent_0; String_t* L_12 = V_1; String_t* L_13 = V_1; NullCheck(L_8); XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_14; L_14 = VirtualFuncInvoker6< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, String_t*, String_t*, int32_t >::Invoke(39 /* System.Xml.XmlNodeChangedEventArgs System.Xml.XmlNode::GetEventArgs(System.Xml.XmlNode,System.Xml.XmlNode,System.Xml.XmlNode,System.String,System.String,System.Xml.XmlNodeChangedAction) */, L_8, L_9, L_10, L_11, L_12, L_13, 0); V_2 = L_14; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_15 = V_2; if (!L_15) { goto IL_004b; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_16 = __this->___parent_0; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_17 = V_2; NullCheck(L_16); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(40 /* System.Void System.Xml.XmlNode::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) */, L_16, L_17); } IL_004b: { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* L_18 = (&__this->___nodes_1); int32_t L_19 = ___0_i; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_20 = ___1_node; SmallXmlNodeList_Insert_m8DCFF8C4C69AAA8B19C891D4A7304EA420946344(L_18, L_19, L_20, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_21 = ___1_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_22 = __this->___parent_0; NullCheck(L_21); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(36 /* System.Void System.Xml.XmlNode::SetParent(System.Xml.XmlNode) */, L_21, L_22); XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_23 = V_2; if (!L_23) { goto IL_0073; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_24 = __this->___parent_0; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_25 = V_2; NullCheck(L_24); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(41 /* System.Void System.Xml.XmlNode::AfterEvent(System.Xml.XmlNodeChangedEventArgs) */, L_24, L_25); } IL_0073: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_26 = ___1_node; return L_26; } } #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_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshal_pinvoke(const SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0& unmarshaled, SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshaled_pinvoke& marshaled) { if (unmarshaled.___field_0 != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___field_0)) { marshaled.___field_0 = il2cpp_codegen_com_query_interface(static_cast(unmarshaled.___field_0)); (marshaled.___field_0)->AddRef(); } else { marshaled.___field_0 = il2cpp_codegen_com_get_or_create_ccw(unmarshaled.___field_0); } } else { marshaled.___field_0 = NULL; } } IL2CPP_EXTERN_C void SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshal_pinvoke_back(const SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshaled_pinvoke& marshaled, SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0& 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.___field_0 = il2cpp_codegen_com_get_or_create_rcw_from_iunknown(marshaled.___field_0, Il2CppComObject_il2cpp_TypeInfo_var); Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___field_0), (void*)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.___field_0)) { il2cpp_codegen_com_cache_queried_interface(static_cast(unmarshaled.___field_0), Il2CppIUnknown::IID, marshaled.___field_0); } } else { unmarshaled.___field_0 = NULL; Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___field_0), (void*)NULL); } } // Conversion method for clean up from marshalling of: System.Xml.XmlNamedNodeMap/SmallXmlNodeList IL2CPP_EXTERN_C void SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshal_pinvoke_cleanup(SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_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_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshal_com(const SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0& unmarshaled, SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshaled_com& marshaled) { if (unmarshaled.___field_0 != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___field_0)) { marshaled.___field_0 = il2cpp_codegen_com_query_interface(static_cast(unmarshaled.___field_0)); (marshaled.___field_0)->AddRef(); } else { marshaled.___field_0 = il2cpp_codegen_com_get_or_create_ccw(unmarshaled.___field_0); } } else { marshaled.___field_0 = NULL; } } IL2CPP_EXTERN_C void SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshal_com_back(const SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshaled_com& marshaled, SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0& 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.___field_0 = il2cpp_codegen_com_get_or_create_rcw_from_iunknown(marshaled.___field_0, Il2CppComObject_il2cpp_TypeInfo_var); Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___field_0), (void*)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.___field_0)) { il2cpp_codegen_com_cache_queried_interface(static_cast(unmarshaled.___field_0), Il2CppIUnknown::IID, marshaled.___field_0); } } else { unmarshaled.___field_0 = NULL; Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___field_0), (void*)NULL); } } // Conversion method for clean up from marshalling of: System.Xml.XmlNamedNodeMap/SmallXmlNodeList IL2CPP_EXTERN_C void SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_marshal_com_cleanup(SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0_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_m79F61C89FC8ABD73BCB56938310461EFF1DF14BF (SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL; { RuntimeObject* L_0 = __this->___field_0; if (L_0) { goto IL_000a; } } { return 0; } IL_000a: { RuntimeObject* L_1 = __this->___field_0; V_0 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)IsInstClass((RuntimeObject*)L_1, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var)); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_2 = V_0; if (!L_2) { goto IL_0020; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = V_0; NullCheck(L_3); int32_t L_4; L_4 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_3); return L_4; } IL_0020: { return 1; } } IL2CPP_EXTERN_C int32_t SmallXmlNodeList_get_Count_m79F61C89FC8ABD73BCB56938310461EFF1DF14BF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = SmallXmlNodeList_get_Count_m79F61C89FC8ABD73BCB56938310461EFF1DF14BF(_thisAdjusted, method); return _returnValue; } // System.Object System.Xml.XmlNamedNodeMap/SmallXmlNodeList::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576 (SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* __this, int32_t ___0_index, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL; { RuntimeObject* L_0 = __this->___field_0; if (L_0) { goto IL_0013; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576_RuntimeMethod_var))); } IL_0013: { RuntimeObject* L_2 = __this->___field_0; V_0 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)IsInstClass((RuntimeObject*)L_2, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var)); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = V_0; if (!L_3) { goto IL_002a; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_4 = V_0; int32_t L_5 = ___0_index; NullCheck(L_4); RuntimeObject* L_6; L_6 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_4, L_5); return L_6; } IL_002a: { int32_t L_7 = ___0_index; if (!L_7) { goto IL_0038; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_8 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_8); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576_RuntimeMethod_var))); } IL_0038: { RuntimeObject* L_9 = __this->___field_0; return L_9; } } IL2CPP_EXTERN_C RuntimeObject* SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576_AdjustorThunk (RuntimeObject* __this, int32_t ___0_index, const RuntimeMethod* method) { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject* _returnValue; _returnValue = SmallXmlNodeList_get_Item_mFE828A47A297981D034EFC9244E53B3D34FC9576(_thisAdjusted, ___0_index, method); return _returnValue; } // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList::Add(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlNodeList_Add_m4BA68D6D8E4613E79365ACDF2413B287FA4A4F06 (SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_1 = NULL; { RuntimeObject* L_0 = __this->___field_0; if (L_0) { goto IL_0029; } } { RuntimeObject* L_1 = ___0_value; if (L_1) { goto IL_0021; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_2 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); NullCheck(L_2); ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_2, NULL); V_1 = L_2; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = V_1; NullCheck(L_3); int32_t L_4; L_4 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_3, NULL); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_5 = V_1; __this->___field_0 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___field_0), (void*)L_5); return; } IL_0021: { RuntimeObject* L_6 = ___0_value; __this->___field_0 = L_6; Il2CppCodeGenWriteBarrier((void**)(&__this->___field_0), (void*)L_6); return; } IL_0029: { RuntimeObject* L_7 = __this->___field_0; V_0 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)IsInstClass((RuntimeObject*)L_7, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var)); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_8 = V_0; if (!L_8) { goto IL_0041; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_9 = V_0; RuntimeObject* L_10 = ___0_value; NullCheck(L_9); int32_t L_11; L_11 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_9, L_10); return; } IL_0041: { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_12 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); NullCheck(L_12); ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_12, NULL); V_0 = L_12; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_13 = V_0; RuntimeObject* L_14 = __this->___field_0; NullCheck(L_13); int32_t L_15; L_15 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_13, L_14); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_16 = V_0; RuntimeObject* L_17 = ___0_value; NullCheck(L_16); int32_t L_18; L_18 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_16, L_17); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_19 = V_0; __this->___field_0 = L_19; Il2CppCodeGenWriteBarrier((void**)(&__this->___field_0), (void*)L_19); return; } } IL2CPP_EXTERN_C void SmallXmlNodeList_Add_m4BA68D6D8E4613E79365ACDF2413B287FA4A4F06_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); SmallXmlNodeList_Add_m4BA68D6D8E4613E79365ACDF2413B287FA4A4F06(_thisAdjusted, ___0_value, method); } // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlNodeList_RemoveAt_m36308613FA8129C77990E7650BB0A1CE49ABC882 (SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* __this, int32_t ___0_index, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL; { RuntimeObject* L_0 = __this->___field_0; if (L_0) { goto IL_0013; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlNodeList_RemoveAt_m36308613FA8129C77990E7650BB0A1CE49ABC882_RuntimeMethod_var))); } IL_0013: { RuntimeObject* L_2 = __this->___field_0; V_0 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)IsInstClass((RuntimeObject*)L_2, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var)); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = V_0; if (!L_3) { goto IL_002a; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_4 = V_0; int32_t L_5 = ___0_index; NullCheck(L_4); VirtualActionInvoker1< int32_t >::Invoke(42 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_4, L_5); return; } IL_002a: { int32_t L_6 = ___0_index; if (!L_6) { goto IL_0038; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_7 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_7); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlNodeList_RemoveAt_m36308613FA8129C77990E7650BB0A1CE49ABC882_RuntimeMethod_var))); } IL_0038: { __this->___field_0 = NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___field_0), (void*)NULL); return; } } IL2CPP_EXTERN_C void SmallXmlNodeList_RemoveAt_m36308613FA8129C77990E7650BB0A1CE49ABC882_AdjustorThunk (RuntimeObject* __this, int32_t ___0_index, const RuntimeMethod* method) { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); SmallXmlNodeList_RemoveAt_m36308613FA8129C77990E7650BB0A1CE49ABC882(_thisAdjusted, ___0_index, method); } // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList::Insert(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlNodeList_Insert_m8DCFF8C4C69AAA8B19C891D4A7304EA420946344 (SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* __this, int32_t ___0_index, RuntimeObject* ___1_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL; { RuntimeObject* L_0 = __this->___field_0; if (L_0) { goto IL_001e; } } { int32_t L_1 = ___0_index; if (!L_1) { goto IL_0016; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlNodeList_Insert_m8DCFF8C4C69AAA8B19C891D4A7304EA420946344_RuntimeMethod_var))); } IL_0016: { RuntimeObject* L_3 = ___1_value; SmallXmlNodeList_Add_m4BA68D6D8E4613E79365ACDF2413B287FA4A4F06(__this, L_3, NULL); return; } IL_001e: { RuntimeObject* L_4 = __this->___field_0; V_0 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)IsInstClass((RuntimeObject*)L_4, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var)); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_5 = V_0; if (!L_5) { goto IL_0036; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_6 = V_0; int32_t L_7 = ___0_index; RuntimeObject* L_8 = ___1_value; NullCheck(L_6); VirtualActionInvoker2< int32_t, RuntimeObject* >::Invoke(39 /* System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) */, L_6, L_7, L_8); return; } IL_0036: { int32_t L_9 = ___0_index; if (L_9) { goto IL_005c; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_10 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); NullCheck(L_10); ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_10, NULL); V_0 = L_10; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_11 = V_0; RuntimeObject* L_12 = ___1_value; NullCheck(L_11); int32_t L_13; L_13 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_11, L_12); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_14 = V_0; RuntimeObject* L_15 = __this->___field_0; NullCheck(L_14); int32_t L_16; L_16 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_14, L_15); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_17 = V_0; __this->___field_0 = L_17; Il2CppCodeGenWriteBarrier((void**)(&__this->___field_0), (void*)L_17); return; } IL_005c: { int32_t L_18 = ___0_index; if ((!(((uint32_t)L_18) == ((uint32_t)1)))) { goto IL_0083; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_19 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); NullCheck(L_19); ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_19, NULL); V_0 = L_19; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_20 = V_0; RuntimeObject* L_21 = __this->___field_0; NullCheck(L_20); int32_t L_22; L_22 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_20, L_21); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_23 = V_0; RuntimeObject* L_24 = ___1_value; NullCheck(L_23); int32_t L_25; L_25 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_23, L_24); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_26 = V_0; __this->___field_0 = L_26; Il2CppCodeGenWriteBarrier((void**)(&__this->___field_0), (void*)L_26); return; } IL_0083: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_27 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_27); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_27, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SmallXmlNodeList_Insert_m8DCFF8C4C69AAA8B19C891D4A7304EA420946344_RuntimeMethod_var))); } } IL2CPP_EXTERN_C void SmallXmlNodeList_Insert_m8DCFF8C4C69AAA8B19C891D4A7304EA420946344_AdjustorThunk (RuntimeObject* __this, int32_t ___0_index, RuntimeObject* ___1_value, const RuntimeMethod* method) { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); SmallXmlNodeList_Insert_m8DCFF8C4C69AAA8B19C891D4A7304EA420946344(_thisAdjusted, ___0_index, ___1_value, method); } // System.Collections.IEnumerator System.Xml.XmlNamedNodeMap/SmallXmlNodeList::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SmallXmlNodeList_GetEnumerator_mB3807963AF68C5F75E6FF22AD8515F2F966F21CE (SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SingleObjectEnumerator_t4A92C1B8B2E37167742E12C10D13D6B3D6124D91_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL; { RuntimeObject* L_0 = __this->___field_0; if (L_0) { goto IL_000e; } } { il2cpp_codegen_runtime_class_init_inline(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var); EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA* L_1 = ((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields*)il2cpp_codegen_static_fields_for(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))->___EmptyEnumerator_41; return L_1; } IL_000e: { RuntimeObject* L_2 = __this->___field_0; V_0 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)IsInstClass((RuntimeObject*)L_2, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var)); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = V_0; if (!L_3) { goto IL_0024; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_4 = V_0; NullCheck(L_4); RuntimeObject* L_5; L_5 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_4); return L_5; } IL_0024: { RuntimeObject* L_6 = __this->___field_0; SingleObjectEnumerator_t4A92C1B8B2E37167742E12C10D13D6B3D6124D91* L_7 = (SingleObjectEnumerator_t4A92C1B8B2E37167742E12C10D13D6B3D6124D91*)il2cpp_codegen_object_new(SingleObjectEnumerator_t4A92C1B8B2E37167742E12C10D13D6B3D6124D91_il2cpp_TypeInfo_var); NullCheck(L_7); SingleObjectEnumerator__ctor_m4BB660A9DDBEED542CDBF9CC35980FAEA755DB1D(L_7, L_6, NULL); return L_7; } } IL2CPP_EXTERN_C RuntimeObject* SmallXmlNodeList_GetEnumerator_mB3807963AF68C5F75E6FF22AD8515F2F966F21CE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { SmallXmlNodeList_tAF536F4BFCA26BF1B0E912818E921A3181D49EF0* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject* _returnValue; _returnValue = SmallXmlNodeList_GetEnumerator_mB3807963AF68C5F75E6FF22AD8515F2F966F21CE(_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.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator::.ctor(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleObjectEnumerator__ctor_m4BB660A9DDBEED542CDBF9CC35980FAEA755DB1D (SingleObjectEnumerator_t4A92C1B8B2E37167742E12C10D13D6B3D6124D91* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) { { __this->___position_1 = (-1); Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); RuntimeObject* L_0 = ___0_value; __this->___loneValue_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___loneValue_0), (void*)L_0); return; } } // System.Object System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SingleObjectEnumerator_get_Current_m465597EB2D9DBFBDA23A03FDB233FAEDA88E9BAF (SingleObjectEnumerator_t4A92C1B8B2E37167742E12C10D13D6B3D6124D91* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___position_1; if (!L_0) { goto IL_000e; } } { InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_1, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SingleObjectEnumerator_get_Current_m465597EB2D9DBFBDA23A03FDB233FAEDA88E9BAF_RuntimeMethod_var))); } IL_000e: { RuntimeObject* L_2 = __this->___loneValue_0; return L_2; } } // System.Boolean System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SingleObjectEnumerator_MoveNext_mD01FEE98F7C123AAF6A9D5885666CA61C35D7DD2 (SingleObjectEnumerator_t4A92C1B8B2E37167742E12C10D13D6B3D6124D91* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___position_1; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0012; } } { __this->___position_1 = 0; return (bool)1; } IL_0012: { __this->___position_1 = 1; return (bool)0; } } // System.Void System.Xml.XmlNamedNodeMap/SmallXmlNodeList/SingleObjectEnumerator::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleObjectEnumerator_Reset_m18FCFE1BFF83AA3F656DEE5E792E82380F2AB6B1 (SingleObjectEnumerator_t4A92C1B8B2E37167742E12C10D13D6B3D6124D91* __this, const RuntimeMethod* method) { { __this->___position_1 = (-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 // System.Void System.Xml.XmlNode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode__ctor_m48EA7E8280259972A9AE46D0220C05CEA99E9350 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.Void System.Xml.XmlNode::.ctor(System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode__ctor_m4EBED07EBE4C8D8191BE58A23594E381A8E43DCA (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___0_doc, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___0_doc; if (L_0) { goto IL_0019; } } { String_t* L_1; L_1 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA73D573DF83D11DB88B9E63E9DF538F46194507D)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, L_1, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNode__ctor_m4EBED07EBE4C8D8191BE58A23594E381A8E43DCA_RuntimeMethod_var))); } IL_0019: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3 = ___0_doc; __this->___parentNode_0 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___parentNode_0), (void*)L_3); return; } } // System.String System.Xml.XmlNode::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlNode_get_Value_m21CB160306F9CE778A143C9D753E99F8EF801592 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { { return (String_t*)NULL; } } // System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_get_ParentNode_mF576AC1CF834069B79BF32E497BB1A05E3E4AF63 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_0 = NULL; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_1 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = __this->___parentNode_0; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0); if ((((int32_t)L_1) == ((int32_t)((int32_t)9)))) { goto IL_0016; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = __this->___parentNode_0; return L_2; } IL_0016: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = __this->___parentNode_0; NullCheck(L_3); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4; L_4 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_3); V_0 = ((XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)IsInstClass((RuntimeObject*)L_4, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var)); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_5 = V_0; if (!L_5) { goto IL_0045; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_6 = V_0; V_1 = L_6; } IL_002c: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_7 = V_1; if ((!(((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_7) == ((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)))) { goto IL_0037; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = __this->___parentNode_0; return L_8; } IL_0037: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_9 = V_1; NullCheck(L_9); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_10 = L_9->___next_1; V_1 = L_10; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_11 = V_1; if (!L_11) { goto IL_0045; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_12 = V_1; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_13 = V_0; if ((!(((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_12) == ((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_13)))) { goto IL_002c; } } IL_0045: { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } } // System.Xml.XmlNodeList System.Xml.XmlNode::get_ChildNodes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* XmlNode_get_ChildNodes_m6437D40A51810BEF219E307A3821C80DB48B1FA7 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2* L_0 = (XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2*)il2cpp_codegen_object_new(XmlChildNodes_tBD3126123F4810D8B272B8201C07FE70CDC9C5E2_il2cpp_TypeInfo_var); NullCheck(L_0); XmlChildNodes__ctor_mE297CC7E680D376A26339D6067C7E434271234B5(L_0, __this, NULL); return L_0; } } // System.Xml.XmlNode System.Xml.XmlNode::get_PreviousSibling() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_get_PreviousSibling_mF0D096FB5E4D09F658F36BF1B5EFFC5B60377045 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } } // System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_get_NextSibling_mB3B3EFD4597AF366F3010C0CC80DC5C5B6885492 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } } // System.Xml.XmlAttributeCollection System.Xml.XmlNode::get_Attributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* XmlNode_get_Attributes_m04E6956D2BBF4491EF6310F83E382B1416378EB7 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { { return (XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0*)NULL; } } // System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlNode_get_OwnerDocument_m202868042E0CA116D7C337701E1140E16E4624EE (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = __this->___parentNode_0; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)9))))) { goto IL_001b; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = __this->___parentNode_0; return ((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)CastclassClass((RuntimeObject*)L_2, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var)); } IL_001b: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = __this->___parentNode_0; NullCheck(L_3); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4; L_4 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_3); return L_4; } } // System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_get_FirstChild_m5F667C696492597141F3F92F048DB73C5546F1CD (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_0 = NULL; { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0; L_0 = VirtualFuncInvoker0< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(18 /* System.Xml.XmlLinkedNode System.Xml.XmlNode::get_LastNode() */, __this); V_0 = L_0; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_1 = V_0; if (!L_1) { goto IL_0011; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_2 = V_0; NullCheck(L_2); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_3 = L_2->___next_1; return L_3; } IL_0011: { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } } // System.Xml.XmlNode System.Xml.XmlNode::get_LastChild() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_get_LastChild_m65D979AFE8805E2D45EF2F2C8DD18727F1286E7E (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0; L_0 = VirtualFuncInvoker0< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(18 /* System.Xml.XmlLinkedNode System.Xml.XmlNode::get_LastNode() */, __this); return L_0; } } // System.Boolean System.Xml.XmlNode::get_IsContainer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlNode_get_IsContainer_m10E45BD80BD1D3DA9726C923FF6E6D2093CAEA47 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Xml.XmlLinkedNode System.Xml.XmlNode::get_LastNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* XmlNode_get_LastNode_mBE8307841D326A20F838DB33C8487C53FD0394A7 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { { return (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL; } } // System.Void System.Xml.XmlNode::set_LastNode(System.Xml.XmlLinkedNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_set_LastNode_m1FDD89CAF833B5D2EC3134677584E14E565A805C (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___0_value, const RuntimeMethod* method) { { return; } } // System.Boolean System.Xml.XmlNode::AncestorNode(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlNode_AncestorNode_m41AA63EB8FEC823566457E333ABF6AC8AC800348 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0; L_0 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, __this); V_0 = L_0; goto IL_0016; } IL_0009: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___0_node; if ((!(((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_1) == ((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_2)))) { goto IL_000f; } } { return (bool)1; } IL_000f: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = V_0; NullCheck(L_3); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4; L_4 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_3); V_0 = L_4; } IL_0016: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = V_0; if (!L_5) { goto IL_001d; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = V_0; if ((!(((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_6) == ((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)))) { goto IL_0009; } } IL_001d: { return (bool)0; } } // System.Xml.XmlNode System.Xml.XmlNode::RemoveChild(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_RemoveChild_mC3FD98E0F9D7CF77B7CA309E39E67CB5128EFB6D (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_oldChild, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_0 = NULL; String_t* V_1 = NULL; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* V_2 = NULL; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_3 = NULL; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_4 = NULL; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_5 = NULL; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_6 = NULL; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_7 = NULL; { bool L_0; L_0 = VirtualFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Xml.XmlNode::get_IsContainer() */, __this); if (L_0) { goto IL_0018; } } { String_t* L_1; L_1 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8B0ED13848CE950B6978D8664D9AA86276D1D7EC)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_2); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, L_1, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNode_RemoveChild_mC3FD98E0F9D7CF77B7CA309E39E67CB5128EFB6D_RuntimeMethod_var))); } IL_0018: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___0_oldChild; NullCheck(L_3); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4; L_4 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_3); if ((((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_4) == ((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this))) { goto IL_0031; } } { String_t* L_5; L_5 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral83B75ABE2D6148C9AF405ED548AE801DC19C6A02)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_6); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_6, L_5, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNode_RemoveChild_mC3FD98E0F9D7CF77B7CA309E39E67CB5128EFB6D_RuntimeMethod_var))); } IL_0031: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = ___0_oldChild; V_0 = ((XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)CastclassClass((RuntimeObject*)L_7, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var)); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_8 = V_0; NullCheck(L_8); String_t* L_9; L_9 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_8); V_1 = L_9; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_10 = V_0; String_t* L_11 = V_1; String_t* L_12 = V_1; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_13; L_13 = VirtualFuncInvoker6< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, String_t*, String_t*, int32_t >::Invoke(39 /* System.Xml.XmlNodeChangedEventArgs System.Xml.XmlNode::GetEventArgs(System.Xml.XmlNode,System.Xml.XmlNode,System.Xml.XmlNode,System.String,System.String,System.Xml.XmlNodeChangedAction) */, __this, L_10, __this, (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL, L_11, L_12, 1); V_2 = L_13; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_14 = V_2; if (!L_14) { goto IL_0056; } } { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_15 = V_2; VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(40 /* System.Void System.Xml.XmlNode::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) */, __this, L_15); } IL_0056: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_16; L_16 = VirtualFuncInvoker0< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(18 /* System.Xml.XmlLinkedNode System.Xml.XmlNode::get_LastNode() */, __this); V_3 = L_16; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_17 = V_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_18; L_18 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this); if ((!(((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_17) == ((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_18)))) { goto IL_00c0; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_19 = V_0; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_20 = V_3; if ((!(((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_19) == ((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_20)))) { goto IL_0084; } } { VirtualActionInvoker1< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(19 /* System.Void System.Xml.XmlNode::set_LastNode(System.Xml.XmlLinkedNode) */, __this, (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_21 = V_0; NullCheck(L_21); L_21->___next_1 = (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL; Il2CppCodeGenWriteBarrier((void**)(&L_21->___next_1), (void*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_22 = V_0; NullCheck(L_22); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(36 /* System.Void System.Xml.XmlNode::SetParent(System.Xml.XmlNode) */, L_22, (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL); goto IL_014f; } IL_0084: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_23 = V_0; NullCheck(L_23); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_24 = L_23->___next_1; V_4 = L_24; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_25 = V_4; NullCheck(L_25); bool L_26; L_26 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_25); if (!L_26) { goto IL_00a5; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_27 = V_0; NullCheck(L_27); bool L_28; L_28 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_27); if (!L_28) { goto IL_00a5; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_29 = V_0; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_30 = V_4; XmlNode_UnnestTextNodes_m2469818048DBF234BFFBDA111C6028982B61C802(L_29, L_30, NULL); } IL_00a5: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_31 = V_3; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_32 = V_4; NullCheck(L_31); L_31->___next_1 = L_32; Il2CppCodeGenWriteBarrier((void**)(&L_31->___next_1), (void*)L_32); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_33 = V_0; NullCheck(L_33); L_33->___next_1 = (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL; Il2CppCodeGenWriteBarrier((void**)(&L_33->___next_1), (void*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_34 = V_0; NullCheck(L_34); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(36 /* System.Void System.Xml.XmlNode::SetParent(System.Xml.XmlNode) */, L_34, (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL); goto IL_014f; } IL_00c0: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_35 = V_0; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_36 = V_3; if ((!(((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_35) == ((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_36)))) { goto IL_00f6; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_37 = V_0; NullCheck(L_37); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_38; L_38 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(11 /* System.Xml.XmlNode System.Xml.XmlNode::get_PreviousSibling() */, L_37); V_5 = ((XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)CastclassClass((RuntimeObject*)L_38, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var)); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_39 = V_5; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_40 = V_0; NullCheck(L_40); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_41 = L_40->___next_1; NullCheck(L_39); L_39->___next_1 = L_41; Il2CppCodeGenWriteBarrier((void**)(&L_39->___next_1), (void*)L_41); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_42 = V_5; VirtualActionInvoker1< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(19 /* System.Void System.Xml.XmlNode::set_LastNode(System.Xml.XmlLinkedNode) */, __this, L_42); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_43 = V_0; NullCheck(L_43); L_43->___next_1 = (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL; Il2CppCodeGenWriteBarrier((void**)(&L_43->___next_1), (void*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_44 = V_0; NullCheck(L_44); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(36 /* System.Void System.Xml.XmlNode::SetParent(System.Xml.XmlNode) */, L_44, (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL); goto IL_014f; } IL_00f6: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_45 = V_0; NullCheck(L_45); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_46; L_46 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(11 /* System.Xml.XmlNode System.Xml.XmlNode::get_PreviousSibling() */, L_45); V_6 = ((XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)CastclassClass((RuntimeObject*)L_46, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var)); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_47 = V_0; NullCheck(L_47); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_48 = L_47->___next_1; V_7 = L_48; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_49 = V_7; NullCheck(L_49); bool L_50; L_50 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_49); if (!L_50) { goto IL_0138; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_51 = V_6; NullCheck(L_51); bool L_52; L_52 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_51); if (!L_52) { goto IL_0128; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_53 = V_6; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_54 = V_7; XmlNode_NestTextNodes_m0B17D4B94E3375748B4604EE250F88E59C3454EF(L_53, L_54, NULL); goto IL_0138; } IL_0128: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_55 = V_0; NullCheck(L_55); bool L_56; L_56 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_55); if (!L_56) { goto IL_0138; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_57 = V_0; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_58 = V_7; XmlNode_UnnestTextNodes_m2469818048DBF234BFFBDA111C6028982B61C802(L_57, L_58, NULL); } IL_0138: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_59 = V_6; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_60 = V_7; NullCheck(L_59); L_59->___next_1 = L_60; Il2CppCodeGenWriteBarrier((void**)(&L_59->___next_1), (void*)L_60); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_61 = V_0; NullCheck(L_61); L_61->___next_1 = (XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL; Il2CppCodeGenWriteBarrier((void**)(&L_61->___next_1), (void*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)NULL); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_62 = V_0; NullCheck(L_62); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(36 /* System.Void System.Xml.XmlNode::SetParent(System.Xml.XmlNode) */, L_62, (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL); } IL_014f: { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_63 = V_2; if (!L_63) { goto IL_0159; } } { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_64 = V_2; VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(41 /* System.Void System.Xml.XmlNode::AfterEvent(System.Xml.XmlNodeChangedEventArgs) */, __this, L_64); } IL_0159: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_65 = ___0_oldChild; return L_65; } } // System.Xml.XmlNode System.Xml.XmlNode::AppendChild(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_AppendChild_mABBDB6DB312AE2C3D643F91CA400745ED4317E61 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_newChild, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_0 = NULL; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_1 = NULL; String_t* V_2 = NULL; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* V_3 = NULL; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_4 = NULL; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_5 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_6 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_7 = NULL; { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); V_0 = L_0; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = V_0; if (L_1) { goto IL_0011; } } { V_0 = ((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)IsInstClass((RuntimeObject*)__this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var)); } IL_0011: { bool L_2; L_2 = VirtualFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Xml.XmlNode::get_IsContainer() */, __this); if (L_2) { goto IL_0029; } } { String_t* L_3; L_3 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6A27EFA262531B73C56149281CD01E877253B609)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_4 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_4); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_4, L_3, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNode_AppendChild_mABBDB6DB312AE2C3D643F91CA400745ED4317E61_RuntimeMethod_var))); } IL_0029: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ___0_newChild; if ((((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this) == ((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)L_5))) { goto IL_0036; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = ___0_newChild; bool L_7; L_7 = XmlNode_AncestorNode_m41AA63EB8FEC823566457E333ABF6AC8AC800348(__this, L_6, NULL); if (!L_7) { goto IL_0046; } } IL_0036: { String_t* L_8; L_8 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral72B68EC7EE16DACDB68DF6B1DB68A228CDEC0C10)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_9 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_9); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_9, L_8, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNode_AppendChild_mABBDB6DB312AE2C3D643F91CA400745ED4317E61_RuntimeMethod_var))); } IL_0046: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = ___0_newChild; NullCheck(L_10); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_11; L_11 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_10); if (!L_11) { goto IL_005b; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12 = ___0_newChild; NullCheck(L_12); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_13; L_13 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_12); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14 = ___0_newChild; NullCheck(L_13); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15; L_15 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(20 /* System.Xml.XmlNode System.Xml.XmlNode::RemoveChild(System.Xml.XmlNode) */, L_13, L_14); } IL_005b: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_16 = ___0_newChild; NullCheck(L_16); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_17; L_17 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, L_16); V_1 = L_17; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_18 = V_1; if (!L_18) { goto IL_007d; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_19 = V_1; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_20 = V_0; if ((((RuntimeObject*)(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)L_19) == ((RuntimeObject*)(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)L_20))) { goto IL_007d; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_21 = V_1; if ((((RuntimeObject*)(XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)L_21) == ((RuntimeObject*)(XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this))) { goto IL_007d; } } { String_t* L_22; L_22 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral30C13821C826B173FCA1891444657D393513F574)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_23 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_23); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_23, L_22, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNode_AppendChild_mABBDB6DB312AE2C3D643F91CA400745ED4317E61_RuntimeMethod_var))); } IL_007d: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_24 = ___0_newChild; NullCheck(L_24); int32_t L_25; L_25 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_24); if ((!(((uint32_t)L_25) == ((uint32_t)((int32_t)11))))) { goto IL_00b7; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_26 = ___0_newChild; NullCheck(L_26); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_27; L_27 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_26); V_6 = L_27; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_28 = V_6; V_7 = L_28; goto IL_00b0; } IL_0095: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_29 = V_7; NullCheck(L_29); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_30; L_30 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_29); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_31 = ___0_newChild; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_32 = V_7; NullCheck(L_31); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_33; L_33 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(20 /* System.Xml.XmlNode System.Xml.XmlNode::RemoveChild(System.Xml.XmlNode) */, L_31, L_32); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_34 = V_7; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_35; L_35 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(21 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChild(System.Xml.XmlNode) */, __this, L_34); V_7 = L_30; } IL_00b0: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_36 = V_7; if (L_36) { goto IL_0095; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_37 = V_6; return L_37; } IL_00b7: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_38 = ___0_newChild; if (!((XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)IsInstClass((RuntimeObject*)L_38, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var))) { goto IL_00cd; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_39 = ___0_newChild; NullCheck(L_39); int32_t L_40; L_40 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_39); bool L_41; L_41 = VirtualFuncInvoker1< bool, int32_t >::Invoke(23 /* System.Boolean System.Xml.XmlNode::IsValidChildType(System.Xml.XmlNodeType) */, __this, L_40); if (L_41) { goto IL_00dd; } } IL_00cd: { String_t* L_42; L_42 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC5D6C64CCB50E5090409E08FDF71792E4E9A8F6D)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_43 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_43); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_43, L_42, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNode_AppendChild_mABBDB6DB312AE2C3D643F91CA400745ED4317E61_RuntimeMethod_var))); } IL_00dd: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_44 = ___0_newChild; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_45; L_45 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(16 /* System.Xml.XmlNode System.Xml.XmlNode::get_LastChild() */, __this); bool L_46; L_46 = VirtualFuncInvoker2< bool, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(24 /* System.Boolean System.Xml.XmlNode::CanInsertAfter(System.Xml.XmlNode,System.Xml.XmlNode) */, __this, L_44, L_45); if (L_46) { goto IL_00fc; } } { String_t* L_47; L_47 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral52E7AA29D33516D76AAE995603260C880821A398)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_48 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_48); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_48, L_47, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_48, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNode_AppendChild_mABBDB6DB312AE2C3D643F91CA400745ED4317E61_RuntimeMethod_var))); } IL_00fc: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_49 = ___0_newChild; NullCheck(L_49); String_t* L_50; L_50 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_49); V_2 = L_50; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_51 = ___0_newChild; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_52 = ___0_newChild; NullCheck(L_52); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_53; L_53 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_52); String_t* L_54 = V_2; String_t* L_55 = V_2; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_56; L_56 = VirtualFuncInvoker6< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, String_t*, String_t*, int32_t >::Invoke(39 /* System.Xml.XmlNodeChangedEventArgs System.Xml.XmlNode::GetEventArgs(System.Xml.XmlNode,System.Xml.XmlNode,System.Xml.XmlNode,System.String,System.String,System.Xml.XmlNodeChangedAction) */, __this, L_51, L_53, __this, L_54, L_55, 0); V_3 = L_56; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_57 = V_3; if (!L_57) { goto IL_011f; } } { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_58 = V_3; VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(40 /* System.Void System.Xml.XmlNode::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) */, __this, L_58); } IL_011f: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_59; L_59 = VirtualFuncInvoker0< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(18 /* System.Xml.XmlLinkedNode System.Xml.XmlNode::get_LastNode() */, __this); V_4 = L_59; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_60 = ___0_newChild; V_5 = ((XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)CastclassClass((RuntimeObject*)L_60, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var)); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_61 = V_4; if (L_61) { goto IL_014e; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_62 = V_5; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_63 = V_5; NullCheck(L_62); L_62->___next_1 = L_63; Il2CppCodeGenWriteBarrier((void**)(&L_62->___next_1), (void*)L_63); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_64 = V_5; VirtualActionInvoker1< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(19 /* System.Void System.Xml.XmlNode::set_LastNode(System.Xml.XmlLinkedNode) */, __this, L_64); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_65 = V_5; NullCheck(L_65); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(36 /* System.Void System.Xml.XmlNode::SetParent(System.Xml.XmlNode) */, L_65, __this); goto IL_0190; } IL_014e: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_66 = V_5; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_67 = V_4; NullCheck(L_67); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_68 = L_67->___next_1; NullCheck(L_66); L_66->___next_1 = L_68; Il2CppCodeGenWriteBarrier((void**)(&L_66->___next_1), (void*)L_68); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_69 = V_4; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_70 = V_5; NullCheck(L_69); L_69->___next_1 = L_70; Il2CppCodeGenWriteBarrier((void**)(&L_69->___next_1), (void*)L_70); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_71 = V_5; VirtualActionInvoker1< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(19 /* System.Void System.Xml.XmlNode::set_LastNode(System.Xml.XmlLinkedNode) */, __this, L_71); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_72 = V_5; NullCheck(L_72); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(36 /* System.Void System.Xml.XmlNode::SetParent(System.Xml.XmlNode) */, L_72, __this); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_73 = V_4; NullCheck(L_73); bool L_74; L_74 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_73); if (!L_74) { goto IL_0190; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_75 = V_5; NullCheck(L_75); bool L_76; L_76 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_75); if (!L_76) { goto IL_0190; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_77 = V_4; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_78 = V_5; XmlNode_NestTextNodes_m0B17D4B94E3375748B4604EE250F88E59C3454EF(L_77, L_78, NULL); } IL_0190: { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_79 = V_3; if (!L_79) { goto IL_019a; } } { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_80 = V_3; VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(41 /* System.Void System.Xml.XmlNode::AfterEvent(System.Xml.XmlNodeChangedEventArgs) */, __this, L_80); } IL_019a: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_81 = V_5; return L_81; } } // System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_AppendChildForLoad_mC0306A0D3E2F625F796C99A49EF27EF24593E607 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_newChild, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* V_0 = NULL; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_1 = NULL; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* V_2 = NULL; { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___1_doc; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___0_newChild; NullCheck(L_0); XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_2; L_2 = XmlDocument_GetInsertEventArgsForLoad_mC008CD74A188F1B0ECBCFFBFD99A5F7B3DAB2661(L_0, L_1, __this, NULL); V_0 = L_2; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_3 = V_0; if (!L_3) { goto IL_0013; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_4 = ___1_doc; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_5 = V_0; NullCheck(L_4); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(40 /* System.Void System.Xml.XmlNode::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) */, L_4, L_5); } IL_0013: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_6; L_6 = VirtualFuncInvoker0< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(18 /* System.Xml.XmlLinkedNode System.Xml.XmlNode::get_LastNode() */, __this); V_1 = L_6; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = ___0_newChild; V_2 = ((XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)CastclassClass((RuntimeObject*)L_7, XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C_il2cpp_TypeInfo_var)); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_8 = V_1; if (L_8) { goto IL_003b; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_9 = V_2; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_10 = V_2; NullCheck(L_9); L_9->___next_1 = L_10; Il2CppCodeGenWriteBarrier((void**)(&L_9->___next_1), (void*)L_10); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_11 = V_2; VirtualActionInvoker1< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(19 /* System.Void System.Xml.XmlNode::set_LastNode(System.Xml.XmlLinkedNode) */, __this, L_11); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_12 = V_2; NullCheck(L_12); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(37 /* System.Void System.Xml.XmlNode::SetParentForLoad(System.Xml.XmlNode) */, L_12, __this); goto IL_0075; } IL_003b: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_13 = V_2; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_14 = V_1; NullCheck(L_14); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_15 = L_14->___next_1; NullCheck(L_13); L_13->___next_1 = L_15; Il2CppCodeGenWriteBarrier((void**)(&L_13->___next_1), (void*)L_15); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_16 = V_1; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_17 = V_2; NullCheck(L_16); L_16->___next_1 = L_17; Il2CppCodeGenWriteBarrier((void**)(&L_16->___next_1), (void*)L_17); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_18 = V_2; VirtualActionInvoker1< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(19 /* System.Void System.Xml.XmlNode::set_LastNode(System.Xml.XmlLinkedNode) */, __this, L_18); XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_19 = V_1; NullCheck(L_19); bool L_20; L_20 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_19); if (!L_20) { goto IL_006e; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_21 = V_2; NullCheck(L_21); bool L_22; L_22 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_21); if (!L_22) { goto IL_006e; } } { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_23 = V_1; XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_24 = V_2; XmlNode_NestTextNodes_m0B17D4B94E3375748B4604EE250F88E59C3454EF(L_23, L_24, NULL); goto IL_0075; } IL_006e: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_25 = V_2; NullCheck(L_25); VirtualActionInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(37 /* System.Void System.Xml.XmlNode::SetParentForLoad(System.Xml.XmlNode) */, L_25, __this); } IL_0075: { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_26 = V_0; if (!L_26) { goto IL_007f; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_27 = ___1_doc; XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_28 = V_0; NullCheck(L_27); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(41 /* System.Void System.Xml.XmlNode::AfterEvent(System.Xml.XmlNodeChangedEventArgs) */, L_27, L_28); } IL_007f: { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_29 = V_2; return L_29; } } // System.Boolean System.Xml.XmlNode::IsValidChildType(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlNode_IsValidChildType_m082300A792D957BC10E93DED85D7ABCE30880B76 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, int32_t ___0_type, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Xml.XmlNode::CanInsertAfter(System.Xml.XmlNode,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlNode_CanInsertAfter_m9D659F9DF24127C637AC6E404BA886887F89C422 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_newChild, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_refChild, const RuntimeMethod* method) { { return (bool)1; } } // System.Boolean System.Xml.XmlNode::get_HasChildNodes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlNode_get_HasChildNodes_mE74F770AA6E73A09034C67119BA55D56184528D9 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { { XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* L_0; L_0 = VirtualFuncInvoker0< XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* >::Invoke(18 /* System.Xml.XmlLinkedNode System.Xml.XmlNode::get_LastNode() */, __this); return (bool)((!(((RuntimeObject*)(XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0); } } // System.Void System.Xml.XmlNode::CopyChildren(System.Xml.XmlDocument,System.Xml.XmlNode,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_CopyChildren_mC2C0D811A1C20E5BB229C1F12A52B690D18CB5C6 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___0_doc, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_container, bool ___2_deep, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___1_container; NullCheck(L_0); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1; L_1 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_0); V_0 = L_1; goto IL_001f; } IL_0009: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = V_0; bool L_3 = ___2_deep; NullCheck(L_2); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4; L_4 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, bool >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::CloneNode(System.Boolean) */, L_2, L_3); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_5 = ___0_doc; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6; L_6 = VirtualFuncInvoker2< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(22 /* System.Xml.XmlNode System.Xml.XmlNode::AppendChildForLoad(System.Xml.XmlNode,System.Xml.XmlDocument) */, __this, L_4, L_5); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = V_0; NullCheck(L_7); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8; L_8 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_7); V_0 = L_8; } IL_001f: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = V_0; if (L_9) { goto IL_0009; } } { return; } } // System.String System.Xml.XmlNode::get_NamespaceURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlNode_get_NamespaceURI_mE894547F6A17FE4B59E2733E1C0BF2046B50A494 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __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))->___Empty_6; return L_0; } } // System.String System.Xml.XmlNode::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlNode_get_Prefix_m3169E64862861F2446236FD71DDB67C0BFA58DC1 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __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))->___Empty_6; return L_0; } } // System.Boolean System.Xml.XmlNode::get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlNode_get_IsReadOnly_mD3A80C094AE6C712D37294D662A5E468513C9E24 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); bool L_1; L_1 = XmlNode_HasReadOnlyParent_m3DCAEEACC4FB58E95F8B90877659C4AA1B2274B2(__this, NULL); return L_1; } } // System.Boolean System.Xml.XmlNode::HasReadOnlyParent(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlNode_HasReadOnlyParent_m3DCAEEACC4FB58E95F8B90877659C4AA1B2274B2 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_n, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { goto IL_002c; } IL_0002: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_n; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0); V_0 = L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) == ((int32_t)2))) { goto IL_0015; } } { int32_t L_3 = V_0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, 5))) <= ((uint32_t)1)))) { goto IL_0024; } } { return (bool)1; } IL_0015: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = ___0_n; NullCheck(((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_4, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var))); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_5; L_5 = VirtualFuncInvoker0< XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* >::Invoke(44 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_4, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var))); ___0_n = L_5; goto IL_002c; } IL_0024: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = ___0_n; NullCheck(L_6); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7; L_7 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_6); ___0_n = L_7; } IL_002c: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = ___0_n; if (L_8) { goto IL_0002; } } { return (bool)0; } } // System.Object System.Xml.XmlNode::System.ICloneable.Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlNode_System_ICloneable_Clone_mCD16FDEE036E64B065572B54D132BCA0DE167CCC (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0; L_0 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, bool >::Invoke(26 /* System.Xml.XmlNode System.Xml.XmlNode::CloneNode(System.Boolean) */, __this, (bool)1); return L_0; } } // System.Collections.IEnumerator System.Xml.XmlNode::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlNode_System_Collections_IEnumerable_GetEnumerator_m6FDE5461EDE0DECB154EA403EAD911EBFD4C4E68 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939* L_0 = (XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939*)il2cpp_codegen_object_new(XmlChildEnumerator_tDD03B83EAA250AB86DFF4B53C1430DA942E85939_il2cpp_TypeInfo_var); NullCheck(L_0); XmlChildEnumerator__ctor_mC51E8B709CB2FCB079D44B180D5EF3DF9DBC3671(L_0, __this, NULL); return L_0; } } // System.Void System.Xml.XmlNode::AppendChildText(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_AppendChildText_m8C1493DF2F031942BD58F96DE8EFC365194561A1 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, StringBuilder_t* ___0_builder, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0; L_0 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this); V_0 = L_0; goto IL_0054; } IL_0009: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0; NullCheck(L_1); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2; L_2 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, L_1); if (L_2) { goto IL_0046; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = V_0; NullCheck(L_3); int32_t L_4; L_4 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_3); if ((((int32_t)L_4) == ((int32_t)3))) { goto IL_0037; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = V_0; NullCheck(L_5); int32_t L_6; L_6 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_5); if ((((int32_t)L_6) == ((int32_t)4))) { goto IL_0037; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = V_0; NullCheck(L_7); int32_t L_8; L_8 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_7); if ((((int32_t)L_8) == ((int32_t)((int32_t)13)))) { goto IL_0037; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = V_0; NullCheck(L_9); int32_t L_10; L_10 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_9); if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)14))))) { goto IL_004d; } } IL_0037: { StringBuilder_t* L_11 = ___0_builder; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12 = V_0; NullCheck(L_12); String_t* L_13; L_13 = VirtualFuncInvoker0< String_t* >::Invoke(32 /* System.String System.Xml.XmlNode::get_InnerText() */, L_12); NullCheck(L_11); StringBuilder_t* L_14; L_14 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_11, L_13, NULL); goto IL_004d; } IL_0046: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15 = V_0; StringBuilder_t* L_16 = ___0_builder; NullCheck(L_15); XmlNode_AppendChildText_m8C1493DF2F031942BD58F96DE8EFC365194561A1(L_15, L_16, NULL); } IL_004d: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_17 = V_0; NullCheck(L_17); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_18; L_18 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_17); V_0 = L_18; } IL_0054: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_19 = V_0; if (L_19) { goto IL_0009; } } { return; } } // System.String System.Xml.XmlNode::get_InnerText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlNode_get_InnerText_mC66D119E27E20F4C1E473CB76C8209CDA7262C8D (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, 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*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; StringBuilder_t* V_1 = NULL; int32_t V_2 = 0; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0; L_0 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this); V_0 = L_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0; if (L_1) { goto IL_0010; } } { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_2; } IL_0010: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = V_0; NullCheck(L_3); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4; L_4 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_3); if (L_4) { goto IL_0033; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = V_0; NullCheck(L_5); int32_t L_6; L_6 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_5); V_2 = L_6; int32_t L_7 = V_2; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, 3))) > ((uint32_t)1)))) { goto IL_002c; } } { int32_t L_8 = V_2; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, ((int32_t)13)))) <= ((uint32_t)1)))) { goto IL_0033; } } IL_002c: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = V_0; NullCheck(L_9); String_t* L_10; L_10 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_Value() */, L_9); return L_10; } IL_0033: { StringBuilder_t* L_11 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); NullCheck(L_11); StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_11, NULL); V_1 = L_11; StringBuilder_t* L_12 = V_1; XmlNode_AppendChildText_m8C1493DF2F031942BD58F96DE8EFC365194561A1(__this, L_12, NULL); StringBuilder_t* L_13 = V_1; NullCheck(L_13); String_t* L_14; L_14 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_13); return L_14; } } // System.Void System.Xml.XmlNode::set_InnerXml(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_set_InnerXml_m9BB7FDC3294F63F301B8C3CEF9299B0422EE1E99 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB06DE16F44A88CD00ED1FDBEB9E9BFE0F4D1C2A)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNode_set_InnerXml_m9BB7FDC3294F63F301B8C3CEF9299B0422EE1E99_RuntimeMethod_var))); } } // System.String System.Xml.XmlNode::get_BaseURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlNode_get_BaseURI_mEDBF75C5F850336A84C07CFA9B9C197F40445833 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, 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*)&XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; int32_t V_1 = 0; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0; L_0 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, __this); V_0 = L_0; goto IL_003b; } IL_0009: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0; NullCheck(L_1); int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_1); V_1 = L_2; int32_t L_3 = V_1; if ((!(((uint32_t)L_3) == ((uint32_t)5)))) { goto IL_0020; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = V_0; NullCheck(((XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*)CastclassClass((RuntimeObject*)L_4, XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var))); String_t* L_5; L_5 = XmlEntityReference_get_ChildBaseURI_m0436E0491FD7F8D12694E705C57AF11BD59B62A4(((XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684*)CastclassClass((RuntimeObject*)L_4, XmlEntityReference_tD24FCCB6AFA9FEBA0265DBA9F6A27FBAC577C684_il2cpp_TypeInfo_var)), NULL); return L_5; } IL_0020: { int32_t L_6 = V_1; if ((((int32_t)L_6) == ((int32_t)((int32_t)9)))) { goto IL_002d; } } { int32_t L_7 = V_1; if ((((int32_t)L_7) == ((int32_t)6))) { goto IL_002d; } } { int32_t L_8 = V_1; if ((!(((uint32_t)L_8) == ((uint32_t)2)))) { goto IL_0034; } } IL_002d: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = V_0; NullCheck(L_9); String_t* L_10; L_10 = VirtualFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Xml.XmlNode::get_BaseURI() */, L_9); return L_10; } IL_0034: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_11 = V_0; NullCheck(L_11); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12; L_12 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_11); V_0 = L_12; } IL_003b: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_13 = V_0; if (L_13) { goto IL_0009; } } { String_t* L_14 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_14; } } // System.Void System.Xml.XmlNode::RemoveAll() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_RemoveAll_mA708E0DA19F2C6D5BC6CD66D415EA2D966300EA0 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0; L_0 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this); V_0 = L_0; goto IL_0018; } IL_0009: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0; NullCheck(L_1); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2; L_2 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_1); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = V_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4; L_4 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(20 /* System.Xml.XmlNode System.Xml.XmlNode::RemoveChild(System.Xml.XmlNode) */, __this, L_3); V_0 = L_2; } IL_0018: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = V_0; if (L_5) { goto IL_0009; } } { return; } } // System.Void System.Xml.XmlNode::SetParent(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_SetParent_mC2F3D8403B21789BAC584DC19C1AF0B59865E5A6 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) { { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_node; if (L_0) { goto IL_0010; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1; L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); __this->___parentNode_0 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___parentNode_0), (void*)L_1); return; } IL_0010: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___0_node; __this->___parentNode_0 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___parentNode_0), (void*)L_2); return; } } // System.Void System.Xml.XmlNode::SetParentForLoad(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_SetParentForLoad_mD9DC511112A848ABCA5F0F44B55595A0B11BAE41 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) { { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_node; __this->___parentNode_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___parentNode_0), (void*)L_0); return; } } // System.Xml.XmlNode System.Xml.XmlNode::FindChild(System.Xml.XmlNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNode_FindChild_mBAC2F50C00BA3C28187C5039E1EE49606961BCCA (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, int32_t ___0_type, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0; L_0 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(15 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this); V_0 = L_0; goto IL_001b; } IL_0009: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = V_0; NullCheck(L_1); int32_t L_2; L_2 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_1); int32_t L_3 = ___0_type; if ((!(((uint32_t)L_2) == ((uint32_t)L_3)))) { goto IL_0014; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = V_0; return L_4; } IL_0014: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = V_0; NullCheck(L_5); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6; L_6 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(12 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_5); V_0 = L_6; } IL_001b: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = V_0; if (L_7) { goto IL_0009; } } { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } } // System.Xml.XmlNodeChangedEventArgs System.Xml.XmlNode::GetEventArgs(System.Xml.XmlNode,System.Xml.XmlNode,System.Xml.XmlNode,System.String,System.String,System.Xml.XmlNodeChangedAction) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* XmlNode_GetEventArgs_m2D6DA637B26DD91794FE79C7612A02FDCB90E2F9 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_oldParent, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___2_newParent, String_t* ___3_oldValue, String_t* ___4_newValue, int32_t ___5_action, const RuntimeMethod* method) { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_0 = NULL; { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); V_0 = L_0; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = V_0; if (!L_1) { goto IL_0048; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = V_0; NullCheck(L_2); bool L_3; L_3 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_2, NULL); if (L_3) { goto IL_0038; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_4 = ___2_newParent; if (!L_4) { goto IL_001d; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ___2_newParent; NullCheck(L_5); bool L_6; L_6 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlNode::get_IsReadOnly() */, L_5); if (L_6) { goto IL_0028; } } IL_001d: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = ___1_oldParent; if (!L_7) { goto IL_0038; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = ___1_oldParent; NullCheck(L_8); bool L_9; L_9 = VirtualFuncInvoker0< bool >::Invoke(31 /* System.Boolean System.Xml.XmlNode::get_IsReadOnly() */, L_8); if (!L_9) { goto IL_0038; } } IL_0028: { String_t* L_10; L_10 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral84B787B593EEF7C3B662B25A9ACCB9A9CF164BDB)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_11 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_11); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_11, L_10, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNode_GetEventArgs_m2D6DA637B26DD91794FE79C7612A02FDCB90E2F9_RuntimeMethod_var))); } IL_0038: { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_12 = V_0; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_13 = ___0_node; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14 = ___1_oldParent; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_15 = ___2_newParent; String_t* L_16 = ___3_oldValue; String_t* L_17 = ___4_newValue; int32_t L_18 = ___5_action; NullCheck(L_12); XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_19; L_19 = VirtualFuncInvoker6< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, String_t*, String_t*, int32_t >::Invoke(39 /* System.Xml.XmlNodeChangedEventArgs System.Xml.XmlNode::GetEventArgs(System.Xml.XmlNode,System.Xml.XmlNode,System.Xml.XmlNode,System.String,System.String,System.Xml.XmlNodeChangedAction) */, L_12, L_13, L_14, L_15, L_16, L_17, L_18); return L_19; } IL_0048: { return (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*)NULL; } } // System.Void System.Xml.XmlNode::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_BeforeEvent_mEF8B315CF0E5248ED6E6D0FEEF371B5BD76111D1 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___0_args, const RuntimeMethod* method) { { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_0 = ___0_args; if (!L_0) { goto IL_000f; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1; L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_2 = ___0_args; NullCheck(L_1); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(40 /* System.Void System.Xml.XmlNode::BeforeEvent(System.Xml.XmlNodeChangedEventArgs) */, L_1, L_2); } IL_000f: { return; } } // System.Void System.Xml.XmlNode::AfterEvent(System.Xml.XmlNodeChangedEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_AfterEvent_m1675F6F48BB4CBAC4237341F653582DC94C5FB85 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___0_args, const RuntimeMethod* method) { { XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_0 = ___0_args; if (!L_0) { goto IL_000f; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1; L_1 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* L_2 = ___0_args; NullCheck(L_1); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(41 /* System.Void System.Xml.XmlNode::AfterEvent(System.Xml.XmlNodeChangedEventArgs) */, L_1, L_2); } IL_000f: { return; } } // System.Boolean System.Xml.XmlNode::get_IsText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlNode_get_IsText_m57DEC1BF3FF6D4CC8C1A737AF385BA0B9EC0E2D3 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Xml.XmlNode::NestTextNodes(System.Xml.XmlNode,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_NestTextNodes_m0B17D4B94E3375748B4604EE250F88E59C3454EF (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_prevNode, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_nextNode, const RuntimeMethod* method) { { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___1_nextNode; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___0_prevNode; NullCheck(L_0); L_0->___parentNode_0 = L_1; Il2CppCodeGenWriteBarrier((void**)(&L_0->___parentNode_0), (void*)L_1); return; } } // System.Void System.Xml.XmlNode::UnnestTextNodes(System.Xml.XmlNode,System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNode_UnnestTextNodes_m2469818048DBF234BFFBDA111C6028982B61C802 (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_prevNode, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_nextNode, const RuntimeMethod* method) { { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___1_nextNode; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___0_prevNode; NullCheck(L_1); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2; L_2 = VirtualFuncInvoker0< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* >::Invoke(9 /* System.Xml.XmlNode System.Xml.XmlNode::get_ParentNode() */, L_1); NullCheck(L_0); L_0->___parentNode_0 = L_2; Il2CppCodeGenWriteBarrier((void**)(&L_0->___parentNode_0), (void*)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 // System.Void System.Xml.XmlNodeChangedEventArgs::.ctor(System.Xml.XmlNode,System.Xml.XmlNode,System.Xml.XmlNode,System.String,System.String,System.Xml.XmlNodeChangedAction) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNodeChangedEventArgs__ctor_m7EA3C66B1D0582A417E9ADE33F982B08ADDB69E9 (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___1_oldParent, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___2_newParent, String_t* ___3_oldValue, String_t* ___4_newValue, int32_t ___5_action, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var); EventArgs__ctor_mC6F9412D03203ADEF854117542C8EBF61624C8C3(__this, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_node; __this->___node_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___node_2), (void*)L_0); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___1_oldParent; __this->___oldParent_3 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___oldParent_3), (void*)L_1); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_2 = ___2_newParent; __this->___newParent_4 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___newParent_4), (void*)L_2); int32_t L_3 = ___5_action; __this->___action_1 = L_3; String_t* L_4 = ___3_oldValue; __this->___oldValue_5 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___oldValue_5), (void*)L_4); String_t* L_5 = ___4_newValue; __this->___newValue_6 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___newValue_6), (void*)L_5); return; } } // System.Xml.XmlNodeChangedAction System.Xml.XmlNodeChangedEventArgs::get_Action() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlNodeChangedEventArgs_get_Action_mD307B00A56DE5422A4EE4915400EC966DF80BD04 (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___action_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 void XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_Multicast(XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* __this, RuntimeObject* ___0_sender, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___1_e, const RuntimeMethod* method) { il2cpp_array_size_t length = __this->___delegates_13->max_length; Delegate_t** delegatesToInvoke = reinterpret_cast(__this->___delegates_13->GetAddressAtUnchecked(0)); for (il2cpp_array_size_t i = 0; i < length; i++) { XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* currentDelegate = reinterpret_cast(delegatesToInvoke[i]); typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*, const RuntimeMethod*); ((FunctionPointerType)currentDelegate->___invoke_impl_1)((Il2CppObject*)currentDelegate->___method_code_6, ___0_sender, ___1_e, reinterpret_cast(currentDelegate->___method_3)); } } void XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_OpenInst(XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* __this, RuntimeObject* ___0_sender, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___1_e, const RuntimeMethod* method) { NullCheck(___0_sender); typedef void (*FunctionPointerType) (RuntimeObject*, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(___0_sender, ___1_e, method); } void XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_OpenStatic(XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* __this, RuntimeObject* ___0_sender, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___1_e, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(___0_sender, ___1_e, method); } void XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_OpenStaticInvoker(XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* __this, RuntimeObject* ___0_sender, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___1_e, const RuntimeMethod* method) { InvokerActionInvoker2< RuntimeObject*, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(__this->___method_ptr_0, method, NULL, ___0_sender, ___1_e); } void XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_ClosedStaticInvoker(XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* __this, RuntimeObject* ___0_sender, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___1_e, const RuntimeMethod* method) { InvokerActionInvoker3< RuntimeObject*, RuntimeObject*, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___0_sender, ___1_e); } void XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_OpenVirtual(XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* __this, RuntimeObject* ___0_sender, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___1_e, const RuntimeMethod* method) { NullCheck(___0_sender); VirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(il2cpp_codegen_method_get_slot(method), ___0_sender, ___1_e); } void XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_OpenInterface(XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* __this, RuntimeObject* ___0_sender, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___1_e, const RuntimeMethod* method) { NullCheck(___0_sender); InterfaceActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___0_sender, ___1_e); } void XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_OpenGenericVirtual(XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* __this, RuntimeObject* ___0_sender, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___1_e, const RuntimeMethod* method) { NullCheck(___0_sender); GenericVirtualActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(method, ___0_sender, ___1_e); } void XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_OpenGenericInterface(XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* __this, RuntimeObject* ___0_sender, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___1_e, const RuntimeMethod* method) { NullCheck(___0_sender); GenericInterfaceActionInvoker1< XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* >::Invoke(method, ___0_sender, ___1_e); } // System.Void System.Xml.XmlNodeChangedEventHandler::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNodeChangedEventHandler__ctor_mD51AE5833F8A9B1EA9DB8DC54FEF3AD64763AED9 (XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) { __this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___1_method); __this->___method_3 = ___1_method; __this->___m_target_2 = ___0_object; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___0_object); int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method); __this->___method_code_6 = (intptr_t)__this; if (MethodIsStatic((RuntimeMethod*)___1_method)) { bool isOpen = parameterCount == 2; if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___1_method)) if (isOpen) __this->___invoke_impl_1 = (intptr_t)&XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_OpenStaticInvoker; else __this->___invoke_impl_1 = (intptr_t)&XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_ClosedStaticInvoker; else if (isOpen) __this->___invoke_impl_1 = (intptr_t)&XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_OpenStatic; else { __this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0; __this->___method_code_6 = (intptr_t)__this->___m_target_2; } } else { bool isOpen = parameterCount == 1; if (isOpen) { if (__this->___method_is_virtual_12) { if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___1_method)) if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method)) __this->___invoke_impl_1 = (intptr_t)&XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_OpenGenericInterface; else __this->___invoke_impl_1 = (intptr_t)&XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_OpenGenericVirtual; else if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method)) __this->___invoke_impl_1 = (intptr_t)&XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_OpenInterface; else __this->___invoke_impl_1 = (intptr_t)&XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_OpenVirtual; } else { __this->___invoke_impl_1 = (intptr_t)&XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_OpenInst; } } else { if (___0_object == NULL) il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); __this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0; __this->___method_code_6 = (intptr_t)__this->___m_target_2; } } __this->___extra_arg_5 = (intptr_t)&XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_Multicast; } // System.Void System.Xml.XmlNodeChangedEventHandler::Invoke(System.Object,System.Xml.XmlNodeChangedEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480 (XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* __this, RuntimeObject* ___0_sender, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___1_e, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*, const RuntimeMethod*); ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_sender, ___1_e, reinterpret_cast(__this->___method_3)); } #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.XmlNodeList::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNodeList_System_IDisposable_Dispose_m755D56C61D93F597B8AFC6FB8BE9677A1973BFA0 (XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* __this, const RuntimeMethod* method) { { VirtualActionInvoker0::Invoke(8 /* System.Void System.Xml.XmlNodeList::PrivateDisposeNodeList() */, __this); return; } } // System.Void System.Xml.XmlNodeList::PrivateDisposeNodeList() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNodeList_PrivateDisposeNodeList_m3B13AE65E266052E2824582D77B44124F6C1E520 (XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* __this, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.XmlNodeList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNodeList__ctor_m29940F85BF8D20E6FFB9732648DC6DAD10539BD3 (XmlNodeList_tFC0CEED3A006BEDF6A1A420F7CB55AC33E9B7F85* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, 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.XmlNotation::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNotation__ctor_mB0560FA8AB3F3443FC6B1638265F00E268C4ED61 (XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D* __this, String_t* ___0_name, String_t* ___1_publicId, String_t* ___2_systemId, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___3_doc, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___3_doc; XmlNode__ctor_m4EBED07EBE4C8D8191BE58A23594E381A8E43DCA(__this, L_0, NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___3_doc; NullCheck(L_1); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_2; L_2 = XmlDocument_get_NameTable_m4B913865A24AEA917172F75CBDCE94C81CCB7E2C(L_1, NULL); String_t* L_3 = ___0_name; NullCheck(L_2); String_t* L_4; L_4 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_2, L_3); __this->___name_3 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___name_3), (void*)L_4); String_t* L_5 = ___1_publicId; __this->___publicId_1 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___publicId_1), (void*)L_5); String_t* L_6 = ___2_systemId; __this->___systemId_2 = L_6; Il2CppCodeGenWriteBarrier((void**)(&__this->___systemId_2), (void*)L_6); return; } } // System.String System.Xml.XmlNotation::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlNotation_get_Name_m1202E926141C2E1CE9CED0298287F965F78B6CEE (XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___name_3; return L_0; } } // System.String System.Xml.XmlNotation::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlNotation_get_LocalName_m9707D69B763CF4D2FF4AC43DFA34A7196602F9E3 (XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___name_3; return L_0; } } // System.Xml.XmlNodeType System.Xml.XmlNotation::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlNotation_get_NodeType_m72C6322ADBF0BA84D2BB23243B74B68480F57EEE (XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D* __this, const RuntimeMethod* method) { { return (int32_t)(((int32_t)12)); } } // System.Xml.XmlNode System.Xml.XmlNotation::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlNotation_CloneNode_m80D1F12EC01AB84F1B7FBE736BE186E37EABA50B (XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D* __this, bool ___0_deep, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral49457BCC8BD0CC8C758CAB29E29AAC6EE6A36D9A)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNotation_CloneNode_m80D1F12EC01AB84F1B7FBE736BE186E37EABA50B_RuntimeMethod_var))); } } // System.Boolean System.Xml.XmlNotation::get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlNotation_get_IsReadOnly_m6190C89D0880C37794A2ADA61F4B7CFB2F46806A (XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D* __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Xml.XmlNotation::set_InnerXml(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNotation_set_InnerXml_m622282FD814F18EAABCF209E0D94BEE3027C6708 (XmlNotation_t0CB6B652D5F20BB51A8A299F67BEE3D6EC91CE4D* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB06DE16F44A88CD00ED1FDBEB9E9BFE0F4D1C2A)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlNotation_set_InnerXml_m622282FD814F18EAABCF209E0D94BEE3027C6708_RuntimeMethod_var))); } } #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.XmlProcessingInstruction::.ctor(System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlProcessingInstruction__ctor_m80AB71B3DDC0E1164705B676AD06037ACEB2FD67 (XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* __this, String_t* ___0_target, String_t* ___1_data, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___2_doc, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = ___2_doc; XmlLinkedNode__ctor_mBAF93AD97DBA998E16940918D8F7EF3E585C7633(__this, L_0, NULL); String_t* L_1 = ___0_target; __this->___target_2 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___target_2), (void*)L_1); String_t* L_2 = ___1_data; __this->___data_3 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___data_3), (void*)L_2); return; } } // System.String System.Xml.XmlProcessingInstruction::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlProcessingInstruction_get_Name_m5878F25C2BBAA4F3E45A4CB296168FF55A0735C9 (XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* __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->___target_2; if (!L_0) { goto IL_000f; } } { String_t* L_1 = __this->___target_2; return L_1; } IL_000f: { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_2; } } // System.String System.Xml.XmlProcessingInstruction::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlProcessingInstruction_get_LocalName_mD5CA3656571EB5F561EA720C69AC26FE44F9733E (XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = VirtualFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.XmlNode::get_Name() */, __this); return L_0; } } // System.String System.Xml.XmlProcessingInstruction::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlProcessingInstruction_get_Value_m9BFC4E309173BF460597EC30F6D44DDA88F68F4C (XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___data_3; return L_0; } } // System.String System.Xml.XmlProcessingInstruction::get_InnerText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlProcessingInstruction_get_InnerText_mDDF2561B15E9D848132759CF7666B149E7BB3F86 (XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___data_3; return L_0; } } // System.Xml.XmlNodeType System.Xml.XmlProcessingInstruction::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlProcessingInstruction_get_NodeType_mA316EFA4D41F97CEDE5C8BD9B54CB3A81A35166C (XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* __this, const RuntimeMethod* method) { { return (int32_t)(7); } } // System.Xml.XmlNode System.Xml.XmlProcessingInstruction::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlProcessingInstruction_CloneNode_m2B3C10F20A1F79E13AB7F4EEF24DC28CBE07B7C6 (XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* __this, bool ___0_deep, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); String_t* L_1 = __this->___target_2; String_t* L_2 = __this->___data_3; NullCheck(L_0); XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3* L_3; L_3 = VirtualFuncInvoker2< XmlProcessingInstruction_t8182CD263F29029BCB56A5FBB720DEB0D51EA5A3*, String_t*, String_t* >::Invoke(50 /* System.Xml.XmlProcessingInstruction System.Xml.XmlDocument::CreateProcessingInstruction(System.String,System.String) */, L_0, L_1, L_2); return L_3; } } #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.XmlSignificantWhitespace::.ctor(System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSignificantWhitespace__ctor_mCE8AE4FC827464B5A5A54191D5D62E2AF41E078F (XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* __this, String_t* ___0_strData, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) { { String_t* L_0 = ___0_strData; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___1_doc; XmlCharacterData__ctor_m8B84C0BD8FF7329F4C5190230FA2495D808B34AF(__this, L_0, L_1, NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = ___1_doc; NullCheck(L_2); bool L_3; L_3 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_2, NULL); if (L_3) { goto IL_0029; } } { String_t* L_4 = ___0_strData; bool L_5; L_5 = XmlCharacterData_CheckOnData_mD20947276C3B576599E015E4E19C0F2779862FBA(__this, L_4, NULL); if (L_5) { goto IL_0029; } } { String_t* L_6; L_6 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7CCE57C5D7E1EEE86D308C81EAB8B71D0964327F)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_7); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_7, L_6, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSignificantWhitespace__ctor_mCE8AE4FC827464B5A5A54191D5D62E2AF41E078F_RuntimeMethod_var))); } IL_0029: { return; } } // System.String System.Xml.XmlSignificantWhitespace::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSignificantWhitespace_get_Name_m567959AB8E2FE1356B88F20AAE6091C82CC7DBFB (XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_0); String_t* L_1 = L_0->___strSignificantWhitespaceName_34; return L_1; } } // System.String System.Xml.XmlSignificantWhitespace::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSignificantWhitespace_get_LocalName_m139F89C8361EDB472F9EBB8CFE63CA34EEAF8A2A (XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_0); String_t* L_1 = L_0->___strSignificantWhitespaceName_34; return L_1; } } // System.Xml.XmlNodeType System.Xml.XmlSignificantWhitespace::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlSignificantWhitespace_get_NodeType_m21160A01DD6CB297930B84A6C4FCEFCD00CBAE2F (XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* __this, const RuntimeMethod* method) { { return (int32_t)(((int32_t)14)); } } // System.Xml.XmlNode System.Xml.XmlSignificantWhitespace::get_ParentNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlSignificantWhitespace_get_ParentNode_m7CFDE3C1D02140F6046EED96E24A7B7AE0D52041 (XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* __this, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; int32_t V_1 = 0; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0); V_1 = L_1; int32_t L_2 = V_1; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, 3))) > ((uint32_t)1)))) { goto IL_0027; } } { int32_t L_3 = V_1; if ((((int32_t)L_3) == ((int32_t)((int32_t)9)))) { goto IL_0020; } } { int32_t L_4 = V_1; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, ((int32_t)13)))) > ((uint32_t)1)))) { goto IL_0027; } } { goto IL_0046; } IL_0020: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5; L_5 = XmlNode_get_ParentNode_mF576AC1CF834069B79BF32E497BB1A05E3E4AF63(__this, NULL); return L_5; } IL_0027: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; NullCheck(L_6); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = L_6->___parentNode_0; V_0 = L_7; goto IL_003c; } IL_0035: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = V_0; NullCheck(L_8); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = L_8->___parentNode_0; V_0 = L_9; } IL_003c: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = V_0; NullCheck(L_10); bool L_11; L_11 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_10); if (L_11) { goto IL_0035; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12 = V_0; return L_12; } IL_0046: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_13 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; return L_13; } } // System.Xml.XmlNode System.Xml.XmlSignificantWhitespace::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlSignificantWhitespace_CloneNode_mD037CFA06C03E34DBBEF5F69829B98E091BFB33B (XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* __this, bool ___0_deep, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(43 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this); NullCheck(L_0); XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* L_2; L_2 = VirtualFuncInvoker1< XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE*, String_t* >::Invoke(53 /* System.Xml.XmlSignificantWhitespace System.Xml.XmlDocument::CreateSignificantWhitespace(System.String) */, L_0, L_1); return L_2; } } // System.String System.Xml.XmlSignificantWhitespace::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSignificantWhitespace_get_Value_mD7C33B8F7D6D92583EC19AE399069B2851D97B49 (XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = VirtualFuncInvoker0< String_t* >::Invoke(43 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this); return L_0; } } // System.Boolean System.Xml.XmlSignificantWhitespace::get_IsText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSignificantWhitespace_get_IsText_m55119DC9A530D53A0B71107FD645882599483724 (XmlSignificantWhitespace_t43EAA36EF021A2B6DBD9FA49B85501A43BE9CBCE* __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.XmlText::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlText__ctor_mD1D12098F7364C006DAAC8E7700C0C729CDEACDE (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* __this, String_t* ___0_strData, const RuntimeMethod* method) { { String_t* L_0 = ___0_strData; XmlText__ctor_m8FFB8DDBB2C9013F10FD94A1573DCF6A2F104059(__this, L_0, (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)NULL, NULL); return; } } // System.Void System.Xml.XmlText::.ctor(System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlText__ctor_m8FFB8DDBB2C9013F10FD94A1573DCF6A2F104059 (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* __this, String_t* ___0_strData, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) { { String_t* L_0 = ___0_strData; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___1_doc; XmlCharacterData__ctor_m8B84C0BD8FF7329F4C5190230FA2495D808B34AF(__this, L_0, L_1, NULL); return; } } // System.String System.Xml.XmlText::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlText_get_Name_mFFBDC4F67D5877B2CFC4D9784121B04887C5B31A (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_0); String_t* L_1 = L_0->___strTextName_24; return L_1; } } // System.String System.Xml.XmlText::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlText_get_LocalName_mABBF7996A678D672606F8287E93F0FCFAE5EBCAA (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_0); String_t* L_1 = L_0->___strTextName_24; return L_1; } } // System.Xml.XmlNodeType System.Xml.XmlText::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlText_get_NodeType_m6D0D465CA1A36F5DAF640EEE3A4FB55DD0F654C5 (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* __this, const RuntimeMethod* method) { { return (int32_t)(3); } } // System.Xml.XmlNode System.Xml.XmlText::get_ParentNode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlText_get_ParentNode_m96163E85630F9606807D297C501A88D21670D719 (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* __this, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; int32_t V_1 = 0; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0); V_1 = L_1; int32_t L_2 = V_1; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, 3))) > ((uint32_t)1)))) { goto IL_0022; } } { int32_t L_3 = V_1; if ((((int32_t)L_3) == ((int32_t)((int32_t)9)))) { goto IL_0020; } } { int32_t L_4 = V_1; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, ((int32_t)13)))) > ((uint32_t)1)))) { goto IL_0022; } } { goto IL_0041; } IL_0020: { return (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)NULL; } IL_0022: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; NullCheck(L_5); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = L_5->___parentNode_0; V_0 = L_6; goto IL_0037; } IL_0030: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = V_0; NullCheck(L_7); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = L_7->___parentNode_0; V_0 = L_8; } IL_0037: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = V_0; NullCheck(L_9); bool L_10; L_10 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_9); if (L_10) { goto IL_0030; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_11 = V_0; return L_11; } IL_0041: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; return L_12; } } // System.Xml.XmlNode System.Xml.XmlText::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlText_CloneNode_mC58FCAC8AD523804400FE1295053C382235F0962 (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* __this, bool ___0_deep, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(43 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this); NullCheck(L_0); XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* L_2; L_2 = VirtualFuncInvoker1< XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A*, String_t* >::Invoke(52 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_0, L_1); return L_2; } } // System.String System.Xml.XmlText::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlText_get_Value_m5CE492E7F1FFB377C9A1F9EC72E44259E0E9B23C (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = VirtualFuncInvoker0< String_t* >::Invoke(43 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this); return L_0; } } // System.Boolean System.Xml.XmlText::get_IsText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlText_get_IsText_m52A204B0EEFECFB926476B40F8C7400DE8002E86 (XmlText_t30AEB94C64DEFEE255D907869C96FDD25C6E812A* __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.XmlUnspecifiedAttribute::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUnspecifiedAttribute__ctor_m44D3E93A1FE83F8B631B4BE61CC2EA76865E36A6 (XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_namespaceURI, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___3_doc, const RuntimeMethod* method) { { String_t* L_0 = ___0_prefix; String_t* L_1 = ___1_localName; String_t* L_2 = ___2_namespaceURI; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_3 = ___3_doc; XmlAttribute__ctor_m11339257CF537ACBDA1BC5ED16CD45BF0C318971(__this, L_0, L_1, L_2, L_3, NULL); return; } } // System.Boolean System.Xml.XmlUnspecifiedAttribute::get_Specified() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlUnspecifiedAttribute_get_Specified_m7616C9E12FEDBD7614D533DA01AE6D1683681F63 (XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* __this, const RuntimeMethod* method) { { bool L_0 = __this->___fSpecified_3; return L_0; } } // System.Xml.XmlNode System.Xml.XmlUnspecifiedAttribute::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlUnspecifiedAttribute_CloneNode_mE263CEBF9D54C08ADE816062D36D35FD017D4413 (XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* __this, bool ___0_deep, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* V_0 = NULL; { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); V_0 = L_0; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = V_0; String_t* L_2; L_2 = VirtualFuncInvoker0< String_t* >::Invoke(29 /* System.String System.Xml.XmlNode::get_Prefix() */, __this); String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(30 /* System.String System.Xml.XmlNode::get_LocalName() */, __this); String_t* L_4; L_4 = VirtualFuncInvoker0< String_t* >::Invoke(28 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, __this); NullCheck(L_1); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_5; L_5 = VirtualFuncInvoker3< XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*, String_t*, String_t*, String_t* >::Invoke(56 /* System.Xml.XmlAttribute System.Xml.XmlDocument::CreateDefaultAttribute(System.String,System.String,System.String) */, L_1, L_2, L_3, L_4); XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_6 = ((XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC*)CastclassClass((RuntimeObject*)L_5, XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC_il2cpp_TypeInfo_var)); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_7 = V_0; NullCheck(L_6); VirtualActionInvoker3< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, bool >::Invoke(27 /* System.Void System.Xml.XmlNode::CopyChildren(System.Xml.XmlDocument,System.Xml.XmlNode,System.Boolean) */, L_6, L_7, __this, (bool)1); XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* L_8 = L_6; NullCheck(L_8); L_8->___fSpecified_3 = (bool)1; return L_8; } } // System.Xml.XmlNode System.Xml.XmlUnspecifiedAttribute::RemoveChild(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlUnspecifiedAttribute_RemoveChild_m3227CEDFFD6F1317D41598C8FCB6E58A7137DFCC (XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_oldChild, const RuntimeMethod* method) { { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_oldChild; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1; L_1 = XmlAttribute_RemoveChild_m81EEA6827E61E919CF45D3E4157ED643D3B81D18(__this, L_0, NULL); __this->___fSpecified_3 = (bool)1; return L_1; } } // System.Xml.XmlNode System.Xml.XmlUnspecifiedAttribute::AppendChild(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlUnspecifiedAttribute_AppendChild_m00F21938A305CBFE67ADD09005BC13316F218C3B (XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_newChild, const RuntimeMethod* method) { { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_newChild; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1; L_1 = XmlAttribute_AppendChild_mF31F0A172D904DEE1DF58B25093DCCF9E0C4CC75(__this, L_0, NULL); __this->___fSpecified_3 = (bool)1; return L_1; } } // System.Void System.Xml.XmlUnspecifiedAttribute::SetSpecified(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUnspecifiedAttribute_SetSpecified_m1CF67FF3E90E62DC5B0983B8DE91B6E95228509B (XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* __this, bool ___0_f, const RuntimeMethod* method) { { bool L_0 = ___0_f; __this->___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.XmlWhitespace::.ctor(System.String,System.Xml.XmlDocument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWhitespace__ctor_m95E6CA1AFEECB5C1B3EDDAA039864BDF315FD0AE (XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* __this, String_t* ___0_strData, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___1_doc, const RuntimeMethod* method) { { String_t* L_0 = ___0_strData; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_1 = ___1_doc; XmlCharacterData__ctor_m8B84C0BD8FF7329F4C5190230FA2495D808B34AF(__this, L_0, L_1, NULL); XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_2 = ___1_doc; NullCheck(L_2); bool L_3; L_3 = XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline(L_2, NULL); if (L_3) { goto IL_0029; } } { String_t* L_4 = ___0_strData; bool L_5; L_5 = XmlCharacterData_CheckOnData_mD20947276C3B576599E015E4E19C0F2779862FBA(__this, L_4, NULL); if (L_5) { goto IL_0029; } } { String_t* L_6; L_6 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7CCE57C5D7E1EEE86D308C81EAB8B71D0964327F)), NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_7); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_7, L_6, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlWhitespace__ctor_m95E6CA1AFEECB5C1B3EDDAA039864BDF315FD0AE_RuntimeMethod_var))); } IL_0029: { return; } } // System.String System.Xml.XmlWhitespace::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWhitespace_get_Name_mF6D7B4B3FED41218945AFCC8DAABAE23D113E2C7 (XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_0); String_t* L_1 = L_0->___strNonSignificantWhitespaceName_33; return L_1; } } // System.String System.Xml.XmlWhitespace::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWhitespace_get_LocalName_m27750405F6A0EA2A5AE58E3C36CE03E22BAB6F9B (XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); NullCheck(L_0); String_t* L_1 = L_0->___strNonSignificantWhitespaceName_33; return L_1; } } // System.Xml.XmlNodeType System.Xml.XmlWhitespace::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlWhitespace_get_NodeType_m6CF504BF111BB7684DE6CED04FF541279D1A8A4D (XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* __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_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlWhitespace_get_ParentNode_m2741B3CD1D5B0D2758C9096F45CA253CC8E690BF (XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* __this, const RuntimeMethod* method) { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_0 = NULL; int32_t V_1 = 0; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.XmlNodeType System.Xml.XmlNode::get_NodeType() */, L_0); V_1 = L_1; int32_t L_2 = V_1; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, 3))) > ((uint32_t)1)))) { goto IL_0027; } } { int32_t L_3 = V_1; if ((((int32_t)L_3) == ((int32_t)((int32_t)9)))) { goto IL_0020; } } { int32_t L_4 = V_1; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, ((int32_t)13)))) > ((uint32_t)1)))) { goto IL_0027; } } { goto IL_0046; } IL_0020: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_5; L_5 = XmlNode_get_ParentNode_mF576AC1CF834069B79BF32E497BB1A05E3E4AF63(__this, NULL); return L_5; } IL_0027: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_6 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; NullCheck(L_6); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_7 = L_6->___parentNode_0; V_0 = L_7; goto IL_003c; } IL_0035: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = V_0; NullCheck(L_8); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_9 = L_8->___parentNode_0; V_0 = L_9; } IL_003c: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_10 = V_0; NullCheck(L_10); bool L_11; L_11 = VirtualFuncInvoker0< bool >::Invoke(42 /* System.Boolean System.Xml.XmlNode::get_IsText() */, L_10); if (L_11) { goto IL_0035; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12 = V_0; return L_12; } IL_0046: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_13 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)__this)->___parentNode_0; return L_13; } } // System.String System.Xml.XmlWhitespace::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlWhitespace_get_Value_m10F045B861F64A2D7BF8B93A7E3B780BAF3EE85E (XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = VirtualFuncInvoker0< String_t* >::Invoke(43 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this); return L_0; } } // System.Xml.XmlNode System.Xml.XmlWhitespace::CloneNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlWhitespace_CloneNode_m3B9180F7900CCE22C9E9CE01D06742EE4F979D6A (XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* __this, bool ___0_deep, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0; L_0 = VirtualFuncInvoker0< XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* >::Invoke(14 /* System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() */, __this); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(43 /* System.String System.Xml.XmlCharacterData::get_Data() */, __this); NullCheck(L_0); XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* L_2; L_2 = VirtualFuncInvoker1< XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24*, String_t* >::Invoke(54 /* System.Xml.XmlWhitespace System.Xml.XmlDocument::CreateWhitespace(System.String) */, L_0, L_1); return L_2; } } // System.Boolean System.Xml.XmlWhitespace::get_IsText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlWhitespace_get_IsText_mC4F1ADD83662FEDCD8F54A2F2C60E82F0819E9DF (XmlWhitespace_t19767FEBC987857ADED0437FC1554F86E7D00D24* __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.Boolean System.Xml.EmptyEnumerator::System.Collections.IEnumerator.MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyEnumerator_System_Collections_IEnumerator_MoveNext_m1D1ED329E1A11EB09BF11A969309A8C336363E06 (EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA* __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Xml.EmptyEnumerator::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyEnumerator_System_Collections_IEnumerator_Reset_m60B63D059F4ABACCFF0136AD35A7B858CDC6DAD4 (EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA* __this, const RuntimeMethod* method) { { return; } } // System.Object System.Xml.EmptyEnumerator::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EmptyEnumerator_System_Collections_IEnumerator_get_Current_m7F54B324E8E3410019E56521EE61CF97A7CED9B5 (EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFBD1A9745DCC4D80697D44756437CCB57698AE21)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyEnumerator_System_Collections_IEnumerator_get_Current_m7F54B324E8E3410019E56521EE61CF97A7CED9B5_RuntimeMethod_var))); } } // System.Void System.Xml.EmptyEnumerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyEnumerator__ctor_m05DA73C42354A4E549CCA7E9485B294057ABA981 (EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, 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.LineInfo::.ctor(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineInfo__ctor_mFF99DC657778EB3519A941F3CB7E7C33710B0EE0 (LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* __this, int32_t ___0_lineNo, int32_t ___1_linePos, const RuntimeMethod* method) { { int32_t L_0 = ___0_lineNo; __this->___lineNo_0 = L_0; int32_t L_1 = ___1_linePos; __this->___linePos_1 = L_1; return; } } IL2CPP_EXTERN_C void LineInfo__ctor_mFF99DC657778EB3519A941F3CB7E7C33710B0EE0_AdjustorThunk (RuntimeObject* __this, int32_t ___0_lineNo, int32_t ___1_linePos, const RuntimeMethod* method) { LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); LineInfo__ctor_mFF99DC657778EB3519A941F3CB7E7C33710B0EE0(_thisAdjusted, ___0_lineNo, ___1_linePos, method); } // System.Void System.Xml.LineInfo::Set(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineInfo_Set_m5D59B42332EDBA296FA9AED5CF63D8BECC18214E (LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* __this, int32_t ___0_lineNo, int32_t ___1_linePos, const RuntimeMethod* method) { { int32_t L_0 = ___0_lineNo; __this->___lineNo_0 = L_0; int32_t L_1 = ___1_linePos; __this->___linePos_1 = L_1; return; } } IL2CPP_EXTERN_C void LineInfo_Set_m5D59B42332EDBA296FA9AED5CF63D8BECC18214E_AdjustorThunk (RuntimeObject* __this, int32_t ___0_lineNo, int32_t ___1_linePos, const RuntimeMethod* method) { LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); LineInfo_Set_m5D59B42332EDBA296FA9AED5CF63D8BECC18214E(_thisAdjusted, ___0_lineNo, ___1_linePos, 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.NameTable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameTable__ctor_mB02EE27092095D81E839D51519C4FBDA2227C261 (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlNameTable__ctor_m165D6C26354AF163FA559778C1998B36A8A5FBF6(__this, NULL); __this->___mask_2 = ((int32_t)31); int32_t L_0 = __this->___mask_2; EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* L_1 = (EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A*)(EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A*)SZArrayNew(EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_0, 1))); __this->___entries_0 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___entries_0), (void*)L_1); int32_t L_2; L_2 = Environment_get_TickCount_m183BFCF001E12849E3D898957F0B81FD88BA183C(NULL); __this->___hashCodeRandomizer_3 = L_2; return; } } // System.String System.Xml.NameTable::Add(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NameTable_Add_m5ACB3656DCB4016DAA199A6CC1ACEF6E6B01F363 (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* __this, String_t* ___0_key, 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 V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* V_3 = NULL; { String_t* L_0 = ___0_key; if (L_0) { goto IL_000e; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NameTable_Add_m5ACB3656DCB4016DAA199A6CC1ACEF6E6B01F363_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___0_key; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); V_0 = L_3; int32_t L_4 = V_0; if (L_4) { goto IL_001e; } } { String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_5; } IL_001e: { int32_t L_6 = V_0; int32_t L_7 = __this->___hashCodeRandomizer_3; V_1 = ((int32_t)il2cpp_codegen_add(L_6, L_7)); V_2 = 0; goto IL_003d; } IL_002b: { int32_t L_8 = V_1; int32_t L_9 = V_1; String_t* L_10 = ___0_key; int32_t L_11 = V_2; NullCheck(L_10); Il2CppChar L_12; L_12 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_10, L_11, NULL); V_1 = ((int32_t)il2cpp_codegen_add(L_8, ((int32_t)(((int32_t)(L_9<<7))^(int32_t)L_12)))); int32_t L_13 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_13, 1)); } IL_003d: { int32_t L_14 = V_2; String_t* L_15 = ___0_key; NullCheck(L_15); int32_t L_16; L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL); if ((((int32_t)L_14) < ((int32_t)L_16))) { goto IL_002b; } } { int32_t L_17 = V_1; int32_t L_18 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract(L_17, ((int32_t)(L_18>>((int32_t)17))))); int32_t L_19 = V_1; int32_t L_20 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract(L_19, ((int32_t)(L_20>>((int32_t)11))))); int32_t L_21 = V_1; int32_t L_22 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract(L_21, ((int32_t)(L_22>>5)))); EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* L_23 = __this->___entries_0; int32_t L_24 = V_1; int32_t L_25 = __this->___mask_2; NullCheck(L_23); int32_t L_26 = ((int32_t)(L_24&L_25)); Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_27 = (L_23)->GetAt(static_cast(L_26)); V_3 = L_27; goto IL_0091; } IL_006c: { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_28 = V_3; NullCheck(L_28); int32_t L_29 = L_28->___hashCode_1; int32_t L_30 = V_1; if ((!(((uint32_t)L_29) == ((uint32_t)L_30)))) { goto IL_008a; } } { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_31 = V_3; NullCheck(L_31); String_t* L_32 = L_31->___str_0; String_t* L_33 = ___0_key; NullCheck(L_32); bool L_34; L_34 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_32, L_33, NULL); if (!L_34) { goto IL_008a; } } { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_35 = V_3; NullCheck(L_35); String_t* L_36 = L_35->___str_0; return L_36; } IL_008a: { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_37 = V_3; NullCheck(L_37); Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_38 = L_37->___next_2; V_3 = L_38; } IL_0091: { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_39 = V_3; if (L_39) { goto IL_006c; } } { String_t* L_40 = ___0_key; int32_t L_41 = V_1; String_t* L_42; L_42 = NameTable_AddEntry_mF259DCB5A89DFE81744AF039838B918F52020C5F(__this, L_40, L_41, NULL); return L_42; } } // System.String System.Xml.NameTable::Add(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NameTable_Add_mCF098D8FE1698BF0476860D202B4953295A04B1A (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_key, int32_t ___1_start, int32_t ___2_len, 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 V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* V_3 = NULL; { int32_t L_0 = ___2_len; if (L_0) { goto IL_0009; } } { String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_1; } IL_0009: { int32_t L_2 = ___2_len; int32_t L_3 = __this->___hashCodeRandomizer_3; V_0 = ((int32_t)il2cpp_codegen_add(L_2, L_3)); int32_t L_4 = V_0; int32_t L_5 = V_0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = ___0_key; int32_t L_7 = ___1_start; NullCheck(L_6); int32_t L_8 = L_7; uint16_t L_9 = (uint16_t)(L_6)->GetAt(static_cast(L_8)); V_0 = ((int32_t)il2cpp_codegen_add(L_4, ((int32_t)(((int32_t)(L_5<<7))^(int32_t)L_9)))); int32_t L_10 = ___1_start; int32_t L_11 = ___2_len; V_1 = ((int32_t)il2cpp_codegen_add(L_10, L_11)); int32_t L_12 = ___1_start; V_2 = ((int32_t)il2cpp_codegen_add(L_12, 1)); goto IL_0034; } IL_0026: { int32_t L_13 = V_0; int32_t L_14 = V_0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_15 = ___0_key; int32_t L_16 = V_2; NullCheck(L_15); int32_t L_17 = L_16; uint16_t L_18 = (uint16_t)(L_15)->GetAt(static_cast(L_17)); V_0 = ((int32_t)il2cpp_codegen_add(L_13, ((int32_t)(((int32_t)(L_14<<7))^(int32_t)L_18)))); int32_t L_19 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_19, 1)); } IL_0034: { int32_t L_20 = V_2; int32_t L_21 = V_1; if ((((int32_t)L_20) < ((int32_t)L_21))) { goto IL_0026; } } { int32_t L_22 = V_0; int32_t L_23 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_22, ((int32_t)(L_23>>((int32_t)17))))); int32_t L_24 = V_0; int32_t L_25 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_24, ((int32_t)(L_25>>((int32_t)11))))); int32_t L_26 = V_0; int32_t L_27 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_26, ((int32_t)(L_27>>5)))); EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* L_28 = __this->___entries_0; int32_t L_29 = V_0; int32_t L_30 = __this->___mask_2; NullCheck(L_28); int32_t L_31 = ((int32_t)(L_29&L_30)); Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_32 = (L_28)->GetAt(static_cast(L_31)); V_3 = L_32; goto IL_0085; } IL_005e: { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_33 = V_3; NullCheck(L_33); int32_t L_34 = L_33->___hashCode_1; int32_t L_35 = V_0; if ((!(((uint32_t)L_34) == ((uint32_t)L_35)))) { goto IL_007e; } } { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_36 = V_3; NullCheck(L_36); String_t* L_37 = L_36->___str_0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_38 = ___0_key; int32_t L_39 = ___1_start; int32_t L_40 = ___2_len; bool L_41; L_41 = NameTable_TextEquals_m2B314F6B5578F426D698E2896C3A329002CAB767(L_37, L_38, L_39, L_40, NULL); if (!L_41) { goto IL_007e; } } { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_42 = V_3; NullCheck(L_42); String_t* L_43 = L_42->___str_0; return L_43; } IL_007e: { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_44 = V_3; NullCheck(L_44); Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_45 = L_44->___next_2; V_3 = L_45; } IL_0085: { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_46 = V_3; if (L_46) { goto IL_005e; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_47 = ___0_key; int32_t L_48 = ___1_start; int32_t L_49 = ___2_len; String_t* L_50; L_50 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_47, L_48, L_49, NULL); int32_t L_51 = V_0; String_t* L_52; L_52 = NameTable_AddEntry_mF259DCB5A89DFE81744AF039838B918F52020C5F(__this, L_50, L_51, NULL); return L_52; } } // System.String System.Xml.NameTable::Get(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NameTable_Get_m3E92F325593978B474D3BDF7E2DCEC77DEA956D8 (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* __this, String_t* ___0_value, 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 V_0 = 0; int32_t V_1 = 0; Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* V_2 = NULL; { String_t* L_0 = ___0_value; if (L_0) { goto IL_000e; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NameTable_Get_m3E92F325593978B474D3BDF7E2DCEC77DEA956D8_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___0_value; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); if (L_3) { goto IL_001c; } } { String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_4; } IL_001c: { String_t* L_5 = ___0_value; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL); int32_t L_7 = __this->___hashCodeRandomizer_3; V_0 = ((int32_t)il2cpp_codegen_add(L_6, L_7)); V_1 = 0; goto IL_0040; } IL_002e: { int32_t L_8 = V_0; int32_t L_9 = V_0; String_t* L_10 = ___0_value; int32_t L_11 = V_1; NullCheck(L_10); Il2CppChar L_12; L_12 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_10, L_11, NULL); V_0 = ((int32_t)il2cpp_codegen_add(L_8, ((int32_t)(((int32_t)(L_9<<7))^(int32_t)L_12)))); int32_t L_13 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1)); } IL_0040: { int32_t L_14 = V_1; String_t* L_15 = ___0_value; NullCheck(L_15); int32_t L_16; L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL); if ((((int32_t)L_14) < ((int32_t)L_16))) { goto IL_002e; } } { int32_t L_17 = V_0; int32_t L_18 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_17, ((int32_t)(L_18>>((int32_t)17))))); int32_t L_19 = V_0; int32_t L_20 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_19, ((int32_t)(L_20>>((int32_t)11))))); int32_t L_21 = V_0; int32_t L_22 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_21, ((int32_t)(L_22>>5)))); EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* L_23 = __this->___entries_0; int32_t L_24 = V_0; int32_t L_25 = __this->___mask_2; NullCheck(L_23); int32_t L_26 = ((int32_t)(L_24&L_25)); Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_27 = (L_23)->GetAt(static_cast(L_26)); V_2 = L_27; goto IL_0094; } IL_006f: { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_28 = V_2; NullCheck(L_28); int32_t L_29 = L_28->___hashCode_1; int32_t L_30 = V_0; if ((!(((uint32_t)L_29) == ((uint32_t)L_30)))) { goto IL_008d; } } { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_31 = V_2; NullCheck(L_31); String_t* L_32 = L_31->___str_0; String_t* L_33 = ___0_value; NullCheck(L_32); bool L_34; L_34 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_32, L_33, NULL); if (!L_34) { goto IL_008d; } } { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_35 = V_2; NullCheck(L_35); String_t* L_36 = L_35->___str_0; return L_36; } IL_008d: { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_37 = V_2; NullCheck(L_37); Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_38 = L_37->___next_2; V_2 = L_38; } IL_0094: { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_39 = V_2; if (L_39) { goto IL_006f; } } { return (String_t*)NULL; } } // System.String System.Xml.NameTable::AddEntry(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NameTable_AddEntry_mF259DCB5A89DFE81744AF039838B918F52020C5F (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* __this, String_t* ___0_str, int32_t ___1_hashCode, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* V_1 = NULL; int32_t V_2 = 0; { int32_t L_0 = ___1_hashCode; int32_t L_1 = __this->___mask_2; V_0 = ((int32_t)(L_0&L_1)); String_t* L_2 = ___0_str; int32_t L_3 = ___1_hashCode; EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* L_4 = __this->___entries_0; int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = L_5; Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_7 = (L_4)->GetAt(static_cast(L_6)); Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_8 = (Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC*)il2cpp_codegen_object_new(Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC_il2cpp_TypeInfo_var); NullCheck(L_8); Entry__ctor_m659BC03FEAA3AE1874FE82AD8740CCDEAE1CDFED(L_8, L_2, L_3, L_7, NULL); V_1 = L_8; EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* L_9 = __this->___entries_0; int32_t L_10 = V_0; Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_11 = V_1; NullCheck(L_9); ArrayElementTypeCheck (L_9, L_11); (L_9)->SetAt(static_cast(L_10), (Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC*)L_11); int32_t L_12 = __this->___count_1; V_2 = L_12; int32_t L_13 = V_2; __this->___count_1 = ((int32_t)il2cpp_codegen_add(L_13, 1)); int32_t L_14 = V_2; int32_t L_15 = __this->___mask_2; if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_0041; } } { NameTable_Grow_m34F300598474A63CEA90D7F7A71C6F9EB536D5B2(__this, NULL); } IL_0041: { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_16 = V_1; NullCheck(L_16); String_t* L_17 = L_16->___str_0; return L_17; } } // System.Void System.Xml.NameTable::Grow() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameTable_Grow_m34F300598474A63CEA90D7F7A71C6F9EB536D5B2 (NameTable_t0164DCE377A0A6E712CF54BE4CE5DA58A5537B46* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* V_1 = NULL; EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* V_2 = NULL; int32_t V_3 = 0; Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* V_4 = NULL; int32_t V_5 = 0; { int32_t L_0 = __this->___mask_2; V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_0, 2)), 1)); EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* L_1 = __this->___entries_0; V_1 = L_1; int32_t L_2 = V_0; EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* L_3 = (EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A*)(EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A*)SZArrayNew(EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_2, 1))); V_2 = L_3; V_3 = 0; goto IL_0053; } IL_001f: { EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* L_4 = V_1; int32_t L_5 = V_3; NullCheck(L_4); int32_t L_6 = L_5; Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_7 = (L_4)->GetAt(static_cast(L_6)); V_4 = L_7; goto IL_004b; } IL_0026: { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_8 = V_4; NullCheck(L_8); int32_t L_9 = L_8->___hashCode_1; int32_t L_10 = V_0; V_5 = ((int32_t)(L_9&L_10)); Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_11 = V_4; NullCheck(L_11); Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_12 = L_11->___next_2; Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_13 = V_4; EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* L_14 = V_2; int32_t L_15 = V_5; NullCheck(L_14); int32_t L_16 = L_15; Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_17 = (L_14)->GetAt(static_cast(L_16)); NullCheck(L_13); L_13->___next_2 = L_17; Il2CppCodeGenWriteBarrier((void**)(&L_13->___next_2), (void*)L_17); EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* L_18 = V_2; int32_t L_19 = V_5; Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_20 = V_4; NullCheck(L_18); ArrayElementTypeCheck (L_18, L_20); (L_18)->SetAt(static_cast(L_19), (Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC*)L_20); V_4 = L_12; } IL_004b: { Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_21 = V_4; if (L_21) { goto IL_0026; } } { int32_t L_22 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_22, 1)); } IL_0053: { int32_t L_23 = V_3; EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* L_24 = V_1; NullCheck(L_24); if ((((int32_t)L_23) < ((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length))))) { goto IL_001f; } } { EntryU5BU5D_tE4AE7874F9098D7C9B34C34630C2F2698981939A* L_25 = V_2; __this->___entries_0 = L_25; Il2CppCodeGenWriteBarrier((void**)(&__this->___entries_0), (void*)L_25); int32_t L_26 = V_0; __this->___mask_2 = L_26; return; } } // System.Boolean System.Xml.NameTable::TextEquals(System.String,System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NameTable_TextEquals_m2B314F6B5578F426D698E2896C3A329002CAB767 (String_t* ___0_str1, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___1_str2, int32_t ___2_str2Start, int32_t ___3_str2Length, const RuntimeMethod* method) { int32_t V_0 = 0; { String_t* L_0 = ___0_str1; NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL); int32_t L_2 = ___3_str2Length; if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_000b; } } { return (bool)0; } IL_000b: { V_0 = 0; goto IL_0023; } IL_000f: { String_t* L_3 = ___0_str1; int32_t L_4 = V_0; NullCheck(L_3); Il2CppChar L_5; L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, L_4, NULL); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = ___1_str2; int32_t L_7 = ___2_str2Start; int32_t L_8 = V_0; NullCheck(L_6); int32_t L_9 = ((int32_t)il2cpp_codegen_add(L_7, L_8)); uint16_t L_10 = (uint16_t)(L_6)->GetAt(static_cast(L_9)); if ((((int32_t)L_5) == ((int32_t)L_10))) { goto IL_001f; } } { return (bool)0; } IL_001f: { int32_t L_11 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1)); } IL_0023: { int32_t L_12 = V_0; String_t* L_13 = ___0_str1; NullCheck(L_13); int32_t L_14; L_14 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_13, NULL); if ((((int32_t)L_12) < ((int32_t)L_14))) { goto IL_000f; } } { 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.NameTable/Entry::.ctor(System.String,System.Int32,System.Xml.NameTable/Entry) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Entry__ctor_m659BC03FEAA3AE1874FE82AD8740CCDEAE1CDFED (Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* __this, String_t* ___0_str, int32_t ___1_hashCode, Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* ___2_next, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); String_t* L_0 = ___0_str; __this->___str_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___str_0), (void*)L_0); int32_t L_1 = ___1_hashCode; __this->___hashCode_1 = L_1; Entry_t3313D8C63B0E5621D13B18196D1FD91E4612E4CC* L_2 = ___2_next; __this->___next_2 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___next_2), (void*)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 // System.Boolean System.Xml.Ref::Equal(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Ref_Equal_m60FD3EF02546279815B785F856568B01F60FE1AF (String_t* ___0_strA, String_t* ___1_strB, const RuntimeMethod* method) { { String_t* L_0 = ___0_strA; String_t* L_1 = ___1_strB; return (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(String_t*)L_1))? 1 : 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.DtdParser::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser__ctor_m4E3B38D8F814505EEBDC983BE9A9AAE448F9F279 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __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; } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 L_0; L_0 = XmlCharType_get_Instance_m1279A3FC91B74599A9BC76979E50DBFC07F67C55(NULL); __this->___xmlCharType_4 = L_0; Il2CppCodeGenWriteBarrier((void**)&(((&__this->___xmlCharType_4))->___charProperties_2), (void*)NULL); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___systemId_5 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___systemId_5), (void*)L_1); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___publicId_6 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___publicId_6), (void*)L_2); __this->___normalize_7 = (bool)1; __this->___supportNamespaces_9 = (bool)1; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_3; memset((&L_3), 0, sizeof(L_3)); LineInfo__ctor_mFF99DC657778EB3519A941F3CB7E7C33710B0EE0((&L_3), 0, 0, /*hidden argument*/NULL); __this->___literalLineInfo_27 = L_3; __this->___literalQuoteChar_28 = ((int32_t)34); String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___documentBaseUri_29 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___documentBaseUri_29), (void*)L_4); String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; __this->___externalDtdBaseUri_30 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___externalDtdBaseUri_30), (void*)L_5); Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.Xml.IDtdParser System.Xml.DtdParser::Create() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DtdParser_Create_m8CE085C707E26956F079923F3F31616A27F88A3B (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* L_0 = (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53*)il2cpp_codegen_object_new(DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53_il2cpp_TypeInfo_var); NullCheck(L_0); DtdParser__ctor_m4E3B38D8F814505EEBDC983BE9A9AAE448F9F279(L_0, NULL); return L_0; } } // System.Void System.Xml.DtdParser::Initialize(System.Xml.IDtdParserAdapter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_Initialize_m0EBA9112535360FF3CB54D32A2F693231023460F (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, RuntimeObject* ___0_readerAdapter, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapterV1_t92703F78527FE332BF3631B8374DC793D1E82E6D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapterWithValidation_tC370E742FC1C08EECE2E2741D97D6985EF1ED347_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_2 = NULL; { RuntimeObject* L_0 = ___0_readerAdapter; __this->___readerAdapter_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___readerAdapter_0), (void*)L_0); RuntimeObject* L_1 = ___0_readerAdapter; __this->___readerAdapterWithValidation_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IDtdParserAdapterWithValidation_tC370E742FC1C08EECE2E2741D97D6985EF1ED347_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->___readerAdapterWithValidation_1), (void*)((RuntimeObject*)IsInst((RuntimeObject*)L_1, IDtdParserAdapterWithValidation_tC370E742FC1C08EECE2E2741D97D6985EF1ED347_il2cpp_TypeInfo_var))); RuntimeObject* L_2 = ___0_readerAdapter; NullCheck(L_2); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_3; L_3 = InterfaceFuncInvoker0< XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* >::Invoke(0 /* System.Xml.XmlNameTable System.Xml.IDtdParserAdapter::get_NameTable() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_2); __this->___nameTable_2 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameTable_2), (void*)L_3); RuntimeObject* L_4 = ___0_readerAdapter; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IDtdParserAdapterWithValidation_tC370E742FC1C08EECE2E2741D97D6985EF1ED347_il2cpp_TypeInfo_var)); RuntimeObject* L_5 = V_0; if (!L_5) { goto IL_0035; } } { RuntimeObject* L_6 = V_0; NullCheck(L_6); bool L_7; L_7 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Xml.IDtdParserAdapterWithValidation::get_DtdValidation() */, IDtdParserAdapterWithValidation_tC370E742FC1C08EECE2E2741D97D6985EF1ED347_il2cpp_TypeInfo_var, L_6); __this->___validate_8 = L_7; } IL_0035: { RuntimeObject* L_8 = ___0_readerAdapter; V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_8, IDtdParserAdapterV1_t92703F78527FE332BF3631B8374DC793D1E82E6D_il2cpp_TypeInfo_var)); RuntimeObject* L_9 = V_1; if (!L_9) { goto IL_0063; } } { RuntimeObject* L_10 = V_1; NullCheck(L_10); bool L_11; L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Xml.IDtdParserAdapterV1::get_V1CompatibilityMode() */, IDtdParserAdapterV1_t92703F78527FE332BF3631B8374DC793D1E82E6D_il2cpp_TypeInfo_var, L_10); __this->___v1Compat_10 = L_11; RuntimeObject* L_12 = V_1; NullCheck(L_12); bool L_13; L_13 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Xml.IDtdParserAdapterV1::get_Normalization() */, IDtdParserAdapterV1_t92703F78527FE332BF3631B8374DC793D1E82E6D_il2cpp_TypeInfo_var, L_12); __this->___normalize_7 = L_13; RuntimeObject* L_14 = V_1; NullCheck(L_14); bool L_15; L_15 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean System.Xml.IDtdParserAdapterV1::get_Namespaces() */, IDtdParserAdapterV1_t92703F78527FE332BF3631B8374DC793D1E82E6D_il2cpp_TypeInfo_var, L_14); __this->___supportNamespaces_9 = L_15; } IL_0063: { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_16 = (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E*)il2cpp_codegen_object_new(SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E_il2cpp_TypeInfo_var); NullCheck(L_16); SchemaInfo__ctor_mF2778D9A328648120368A2B00DC41949E52E0963(L_16, NULL); __this->___schemaInfo_3 = L_16; Il2CppCodeGenWriteBarrier((void**)(&__this->___schemaInfo_3), (void*)L_16); SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_17 = __this->___schemaInfo_3; NullCheck(L_17); SchemaInfo_set_SchemaType_m00F5B5934AC3BDDD71AAEB8CA3E307451FA51229_inline(L_17, 1, NULL); StringBuilder_t* L_18 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); NullCheck(L_18); StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_18, NULL); __this->___stringBuilder_25 = L_18; Il2CppCodeGenWriteBarrier((void**)(&__this->___stringBuilder_25), (void*)L_18); RuntimeObject* L_19 = ___0_readerAdapter; NullCheck(L_19); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_20; L_20 = InterfaceFuncInvoker0< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* >::Invoke(2 /* System.Uri System.Xml.IDtdParserAdapter::get_BaseUri() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_19); V_2 = L_20; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_21 = V_2; il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); bool L_22; L_22 = Uri_op_Inequality_m64BE981CDF88B751677B80D883B201BF3CFD83F7(L_21, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL); if (!L_22) { goto IL_00a1; } } { Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_23 = V_2; NullCheck(L_23); String_t* L_24; L_24 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_23); __this->___documentBaseUri_29 = L_24; Il2CppCodeGenWriteBarrier((void**)(&__this->___documentBaseUri_29), (void*)L_24); } IL_00a1: { __this->___freeFloatingDtd_23 = (bool)0; return; } } // System.Void System.Xml.DtdParser::InitializeFreeFloatingDtd(System.String,System.String,System.String,System.String,System.String,System.Xml.IDtdParserAdapter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_InitializeFreeFloatingDtd_m1508B91CB75E55A064D4DC2EC796EF2B35785B13 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, String_t* ___0_baseUri, String_t* ___1_docTypeName, String_t* ___2_publicId, String_t* ___3_systemId, String_t* ___4_internalSubset, RuntimeObject* ___5_adapter, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_2 = NULL; { RuntimeObject* L_0 = ___5_adapter; DtdParser_Initialize_m0EBA9112535360FF3CB54D32A2F693231023460F(__this, L_0, NULL); String_t* L_1 = ___1_docTypeName; if (!L_1) { goto IL_0013; } } { String_t* L_2 = ___1_docTypeName; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); if (L_3) { goto IL_001f; } } IL_0013: { String_t* L_4 = ___1_docTypeName; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var))); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5; L_5 = XmlConvert_CreateInvalidNameArgumentException_m8C7D4474D314DF1E203E65A09E377C098ACBBC59(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC3304C21E7F8F3D25BF870F3A00FB0D196C695E5)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DtdParser_InitializeFreeFloatingDtd_m1508B91CB75E55A064D4DC2EC796EF2B35785B13_RuntimeMethod_var))); } IL_001f: { String_t* L_6 = ___1_docTypeName; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); String_t* L_7; L_7 = XmlConvert_VerifyName_mDE22F8CF21CB28A05C08D86EDBAA4AA798A1FB34(L_6, NULL); String_t* L_8 = ___1_docTypeName; NullCheck(L_8); int32_t L_9; L_9 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_8, ((int32_t)58), NULL); V_0 = L_9; int32_t L_10 = V_0; if ((!(((uint32_t)L_10) == ((uint32_t)(-1))))) { goto IL_0051; } } { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_11 = __this->___schemaInfo_3; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_12 = __this->___nameTable_2; String_t* L_13 = ___1_docTypeName; NullCheck(L_12); String_t* L_14; L_14 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_12, L_13); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_15 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_15); XmlQualifiedName__ctor_m2DD62019A76524587CC7204E1AB903CDAADA6545(L_15, L_14, NULL); NullCheck(L_11); SchemaInfo_set_DocTypeName_mB87F85301E58DCCDD63697CE790A4417A07A54B0_inline(L_11, L_15, NULL); goto IL_0088; } IL_0051: { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_16 = __this->___schemaInfo_3; XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_17 = __this->___nameTable_2; String_t* L_18 = ___1_docTypeName; int32_t L_19 = V_0; NullCheck(L_18); String_t* L_20; L_20 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_18, 0, L_19, NULL); NullCheck(L_17); String_t* L_21; L_21 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_17, L_20); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_22 = __this->___nameTable_2; String_t* L_23 = ___1_docTypeName; int32_t L_24 = V_0; NullCheck(L_23); String_t* L_25; L_25 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_23, ((int32_t)il2cpp_codegen_add(L_24, 1)), NULL); NullCheck(L_22); String_t* L_26; L_26 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(6 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_22, L_25); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_27 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_27); XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_27, L_21, L_26, NULL); NullCheck(L_16); SchemaInfo_set_DocTypeName_mB87F85301E58DCCDD63697CE790A4417A07A54B0_inline(L_16, L_27, NULL); } IL_0088: { String_t* L_28 = ___3_systemId; if (!L_28) { goto IL_00bf; } } { String_t* L_29 = ___3_systemId; NullCheck(L_29); int32_t L_30; L_30 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_29, NULL); if ((((int32_t)L_30) <= ((int32_t)0))) { goto IL_00bf; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_31 = (&__this->___xmlCharType_4); String_t* L_32 = ___3_systemId; int32_t L_33; L_33 = XmlCharType_IsOnlyCharData_m5BFEFD55C4578A0117D1ED3305ACF4C062DCE9D3(L_31, L_32, NULL); int32_t L_34 = L_33; V_1 = L_34; if ((((int32_t)L_34) < ((int32_t)0))) { goto IL_00b7; } } { int32_t L_35 = __this->___curPos_13; String_t* L_36 = ___3_systemId; int32_t L_37 = V_1; DtdParser_ThrowInvalidChar_mD2161D4741D7A76279757B830E981723BEB64CA3(__this, L_35, L_36, L_37, NULL); } IL_00b7: { String_t* L_38 = ___3_systemId; __this->___systemId_5 = L_38; Il2CppCodeGenWriteBarrier((void**)(&__this->___systemId_5), (void*)L_38); } IL_00bf: { String_t* L_39 = ___2_publicId; if (!L_39) { goto IL_00f1; } } { String_t* L_40 = ___2_publicId; NullCheck(L_40); int32_t L_41; L_41 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_40, NULL); if ((((int32_t)L_41) <= ((int32_t)0))) { goto IL_00f1; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_42 = (&__this->___xmlCharType_4); String_t* L_43 = ___2_publicId; int32_t L_44; L_44 = XmlCharType_IsPublicId_m1119A6921A99A357141333030F425EDD2AAFE2AE(L_42, L_43, NULL); int32_t L_45 = L_44; V_1 = L_45; if ((((int32_t)L_45) < ((int32_t)0))) { goto IL_00ea; } } { int32_t L_46 = __this->___curPos_13; String_t* L_47 = ___2_publicId; int32_t L_48 = V_1; DtdParser_ThrowInvalidChar_mD2161D4741D7A76279757B830E981723BEB64CA3(__this, L_46, L_47, L_48, NULL); } IL_00ea: { String_t* L_49 = ___2_publicId; __this->___publicId_6 = L_49; Il2CppCodeGenWriteBarrier((void**)(&__this->___publicId_6), (void*)L_49); } IL_00f1: { String_t* L_50 = ___4_internalSubset; if (!L_50) { goto IL_0114; } } { String_t* L_51 = ___4_internalSubset; NullCheck(L_51); int32_t L_52; L_52 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_51, NULL); if ((((int32_t)L_52) <= ((int32_t)0))) { goto IL_0114; } } { RuntimeObject* L_53 = __this->___readerAdapter_0; String_t* L_54 = ___0_baseUri; String_t* L_55 = ___4_internalSubset; NullCheck(L_53); InterfaceActionInvoker2< String_t*, String_t* >::Invoke(21 /* System.Void System.Xml.IDtdParserAdapter::PushInternalDtd(System.String,System.String) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_53, L_54, L_55); __this->___hasFreeFloatingInternalSubset_24 = (bool)1; } IL_0114: { RuntimeObject* L_56 = __this->___readerAdapter_0; NullCheck(L_56); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_57; L_57 = InterfaceFuncInvoker0< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* >::Invoke(2 /* System.Uri System.Xml.IDtdParserAdapter::get_BaseUri() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_56); V_2 = L_57; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_58 = V_2; il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); bool L_59; L_59 = Uri_op_Inequality_m64BE981CDF88B751677B80D883B201BF3CFD83F7(L_58, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL); if (!L_59) { goto IL_0135; } } { Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_60 = V_2; NullCheck(L_60); String_t* L_61; L_61 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_60); __this->___documentBaseUri_29 = L_61; Il2CppCodeGenWriteBarrier((void**)(&__this->___documentBaseUri_29), (void*)L_61); } IL_0135: { __this->___freeFloatingDtd_23 = (bool)1; return; } } // System.Xml.IDtdInfo System.Xml.DtdParser::System.Xml.IDtdParser.ParseInternalDtd(System.Xml.IDtdParserAdapter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DtdParser_System_Xml_IDtdParser_ParseInternalDtd_m68D16C997BF5178214EFDB8E4D2DAD9B4C66D1DA (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, RuntimeObject* ___0_adapter, bool ___1_saveInternalSubset, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___0_adapter; DtdParser_Initialize_m0EBA9112535360FF3CB54D32A2F693231023460F(__this, L_0, NULL); bool L_1 = ___1_saveInternalSubset; DtdParser_Parse_m251123EFA9598E4851882EB21A72EDF13E3D6EC6(__this, L_1, NULL); SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_2 = __this->___schemaInfo_3; return L_2; } } // System.Xml.IDtdInfo System.Xml.DtdParser::System.Xml.IDtdParser.ParseFreeFloatingDtd(System.String,System.String,System.String,System.String,System.String,System.Xml.IDtdParserAdapter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DtdParser_System_Xml_IDtdParser_ParseFreeFloatingDtd_mED081982C4FF1EC65690A9B95D002584C3FBF4A0 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, String_t* ___0_baseUri, String_t* ___1_docTypeName, String_t* ___2_publicId, String_t* ___3_systemId, String_t* ___4_internalSubset, RuntimeObject* ___5_adapter, const RuntimeMethod* method) { { String_t* L_0 = ___0_baseUri; String_t* L_1 = ___1_docTypeName; String_t* L_2 = ___2_publicId; String_t* L_3 = ___3_systemId; String_t* L_4 = ___4_internalSubset; RuntimeObject* L_5 = ___5_adapter; DtdParser_InitializeFreeFloatingDtd_m1508B91CB75E55A064D4DC2EC796EF2B35785B13(__this, L_0, L_1, L_2, L_3, L_4, L_5, NULL); DtdParser_Parse_m251123EFA9598E4851882EB21A72EDF13E3D6EC6(__this, (bool)0, NULL); SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_6 = __this->___schemaInfo_3; return L_6; } } // System.Boolean System.Xml.DtdParser::get_ParsingInternalSubset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_get_ParsingInternalSubset_mF2EDC8896A9EF87EFC4BFB9DC631B3079DF05399 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___externalEntitiesDepth_21; return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Xml.DtdParser::get_IgnoreEntityReferences() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_get_IgnoreEntityReferences_m2DC8E61DFCB1C09453864CAC4031C467FB7340D8 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___scanningFunction_14; return (bool)((((int32_t)L_0) == ((int32_t)((int32_t)26)))? 1 : 0); } } // System.Boolean System.Xml.DtdParser::get_SaveInternalSubsetValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_get_SaveInternalSubsetValue_m85DB5C7308BF525EE652E944E696CD7A3505DF66 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAdapter_0; NullCheck(L_0); int32_t L_1; L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Xml.IDtdParserAdapter::get_EntityStackLength() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_0); if (L_1) { goto IL_0017; } } { StringBuilder_t* L_2 = __this->___internalSubsetValueSb_20; return (bool)((!(((RuntimeObject*)(StringBuilder_t*)L_2) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0); } IL_0017: { return (bool)0; } } // System.Boolean System.Xml.DtdParser::get_ParsingTopLevelMarkup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_get_ParsingTopLevelMarkup_m4836E76B7F5C3C3CA7D8574377C0F00BA2BB0BCF (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___scanningFunction_14; if (!L_0) { goto IL_001e; } } { int32_t L_1 = __this->___scanningFunction_14; if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)32))))) { goto IL_001c; } } { int32_t L_2 = __this->___savedScanningFunction_16; return (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); } IL_001c: { return (bool)0; } IL_001e: { return (bool)1; } } // System.Boolean System.Xml.DtdParser::get_SupportNamespaces() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_get_SupportNamespaces_m868EACB0340AAB10A0A36D3E54391F6B721A7791 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { bool L_0 = __this->___supportNamespaces_9; return L_0; } } // System.Boolean System.Xml.DtdParser::get_Normalize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_get_Normalize_mA95ED98D422B35FDBDAE26FA37F593B389FD122C (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { bool L_0 = __this->___normalize_7; return L_0; } } // System.Void System.Xml.DtdParser::Parse(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_Parse_m251123EFA9598E4851882EB21A72EDF13E3D6EC6 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, bool ___0_saveInternalSubset, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Values_mD416BBB037BD250D7C597A72EB36BB50CD033DC6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m8ED1DCC22330B97D3DD70AD4094E53E84535AF06_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m3D12963AA9A1E78352AD17756F85E7F8E0281CAA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mBB1E0A2F071C3C58AD52810FA1C157F300EB85FF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueCollection_GetEnumerator_mABC01CB19F774F69E736CCAB8E79BFEFC3702C8C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA98C4EB777C388F69EC48A492C07DBBBEBF41DC1); s_Il2CppMethodInitialized = true; } Enumerator_tFFB123B32E0A29A9F7621A05A0F893DF21310060 V_0; memset((&V_0), 0, sizeof(V_0)); UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* V_1 = NULL; UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* V_2 = NULL; { bool L_0 = __this->___freeFloatingDtd_23; if (!L_0) { goto IL_0010; } } { DtdParser_ParseFreeFloatingDtd_mD311D1717B2C75FCD8301944583EC6872085E967(__this, NULL); goto IL_0017; } IL_0010: { bool L_1 = ___0_saveInternalSubset; DtdParser_ParseInDocumentDtd_m152ABA7579FAFD24B3F745D24B25C5210C584668(__this, L_1, NULL); } IL_0017: { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_2 = __this->___schemaInfo_3; NullCheck(L_2); SchemaInfo_Finish_m2819E8B404C31776D077502515C4BA78BD02F569(L_2, NULL); bool L_3 = __this->___validate_8; if (!L_3) { goto IL_009d; } } { Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698* L_4 = __this->___undeclaredNotations_31; if (!L_4) { goto IL_009d; } } { Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698* L_5 = __this->___undeclaredNotations_31; NullCheck(L_5); ValueCollection_t499BCEBD608E294D297D05F15B0261C6141FF089* L_6; L_6 = Dictionary_2_get_Values_mD416BBB037BD250D7C597A72EB36BB50CD033DC6(L_5, Dictionary_2_get_Values_mD416BBB037BD250D7C597A72EB36BB50CD033DC6_RuntimeMethod_var); NullCheck(L_6); Enumerator_tFFB123B32E0A29A9F7621A05A0F893DF21310060 L_7; L_7 = ValueCollection_GetEnumerator_mABC01CB19F774F69E736CCAB8E79BFEFC3702C8C(L_6, ValueCollection_GetEnumerator_mABC01CB19F774F69E736CCAB8E79BFEFC3702C8C_RuntimeMethod_var); V_0 = L_7; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_008f: {// begin finally (depth: 1) Enumerator_Dispose_m8ED1DCC22330B97D3DD70AD4094E53E84535AF06((&V_0), Enumerator_Dispose_m8ED1DCC22330B97D3DD70AD4094E53E84535AF06_RuntimeMethod_var); return; }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0084_1; } IL_0045_1: { UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* L_8; L_8 = Enumerator_get_Current_mBB1E0A2F071C3C58AD52810FA1C157F300EB85FF_inline((&V_0), Enumerator_get_Current_mBB1E0A2F071C3C58AD52810FA1C157F300EB85FF_RuntimeMethod_var); V_1 = L_8; UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* L_9 = V_1; V_2 = L_9; goto IL_0081_1; } IL_0051_1: { UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* L_10 = V_1; NullCheck(L_10); String_t* L_11 = L_10->___name_0; String_t* L_12; L_12 = DtdParser_get_BaseUriStr_m1A09B1A26119F87C048748007B59685399A1A0AE(__this, NULL); UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* L_13 = V_1; NullCheck(L_13); int32_t L_14 = L_13->___lineNo_1; UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* L_15 = V_1; NullCheck(L_15); int32_t L_16 = L_15->___linePos_2; XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B* L_17 = (XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B*)il2cpp_codegen_object_new(XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B_il2cpp_TypeInfo_var); NullCheck(L_17); XmlSchemaException__ctor_m5EB9F0E36520DCB3AD78B355F5F120E1D7FF5EEB(L_17, _stringLiteralA98C4EB777C388F69EC48A492C07DBBBEBF41DC1, L_11, L_12, L_14, L_16, NULL); DtdParser_SendValidationEvent_m874AFDBD3F0EEC5D3AE8A195B98AE90DC472438F(__this, 0, L_17, NULL); UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* L_18 = V_2; NullCheck(L_18); UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* L_19 = L_18->___next_3; V_2 = L_19; } IL_0081_1: { UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* L_20 = V_2; if (L_20) { goto IL_0051_1; } } IL_0084_1: { bool L_21; L_21 = Enumerator_MoveNext_m3D12963AA9A1E78352AD17756F85E7F8E0281CAA((&V_0), Enumerator_MoveNext_m3D12963AA9A1E78352AD17756F85E7F8E0281CAA_RuntimeMethod_var); if (L_21) { goto IL_0045_1; } } { goto IL_009d; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_009d: { return; } } // System.Void System.Xml.DtdParser::ParseInDocumentDtd(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseInDocumentDtd_m152ABA7579FAFD24B3F745D24B25C5210C584668 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, bool ___0_saveInternalSubset, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { DtdParser_LoadParsingBuffer_mF05F85D2FBE70046CCFD312890F918B9D0961C14(__this, NULL); __this->___scanningFunction_14 = 2; __this->___nextScaningFunction_15 = 4; int32_t L_0; L_0 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); if ((((int32_t)L_0) == ((int32_t)((int32_t)23)))) { goto IL_0025; } } { DtdParser_OnUnexpectedError_m48B2712A07C18494946123F9947ED17F270DC4B6(__this, NULL); } IL_0025: { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_1 = __this->___schemaInfo_3; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_2; L_2 = DtdParser_GetNameQualified_m90D851C0C284B3597B168491C6824733D42E1979(__this, (bool)1, NULL); NullCheck(L_1); SchemaInfo_set_DocTypeName_mB87F85301E58DCCDD63697CE790A4417A07A54B0_inline(L_1, L_2, NULL); int32_t L_3; L_3 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); V_0 = L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)34)))) { goto IL_0049; } } { int32_t L_5 = V_0; if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)33))))) { goto IL_0066; } } IL_0049: { int32_t L_6 = V_0; String_t** L_7 = (&__this->___publicId_6); String_t** L_8 = (&__this->___systemId_5); DtdParser_ParseExternalId_m2B6C7C539D6B9BAA81D2D39DD40915B0F8EE1680(__this, L_6, ((int32_t)36), L_7, L_8, NULL); int32_t L_9; L_9 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); V_0 = L_9; } IL_0066: { int32_t L_10 = V_0; if ((((int32_t)L_10) == ((int32_t)((int32_t)29)))) { goto IL_0092; } } { int32_t L_11 = V_0; if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)31))))) { goto IL_008c; } } { bool L_12 = ___0_saveInternalSubset; if (!L_12) { goto IL_0084; } } { DtdParser_SaveParsingBuffer_mA50879908E86FF9D354642A7BF0CDF85ACE35D8A(__this, NULL); StringBuilder_t* L_13 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); NullCheck(L_13); StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_13, NULL); __this->___internalSubsetValueSb_20 = L_13; Il2CppCodeGenWriteBarrier((void**)(&__this->___internalSubsetValueSb_20), (void*)L_13); } IL_0084: { DtdParser_ParseInternalSubset_m4CA8AEDF9E87543186DF6F820A4F1CB15F5EA0A8(__this, NULL); goto IL_0092; } IL_008c: { DtdParser_OnUnexpectedError_m48B2712A07C18494946123F9947ED17F270DC4B6(__this, NULL); } IL_0092: { DtdParser_SaveParsingBuffer_mA50879908E86FF9D354642A7BF0CDF85ACE35D8A(__this, NULL); String_t* L_14 = __this->___systemId_5; if (!L_14) { goto IL_00b4; } } { String_t* L_15 = __this->___systemId_5; NullCheck(L_15); int32_t L_16; L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL); if ((((int32_t)L_16) <= ((int32_t)0))) { goto IL_00b4; } } { DtdParser_ParseExternalSubset_m32ACD9461EF71173C98644D59A4E0A82576D98B4(__this, NULL); } IL_00b4: { return; } } // System.Void System.Xml.DtdParser::ParseFreeFloatingDtd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseFreeFloatingDtd_mD311D1717B2C75FCD8301944583EC6872085E967 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { bool L_0 = __this->___hasFreeFloatingInternalSubset_24; if (!L_0) { goto IL_001a; } } { DtdParser_LoadParsingBuffer_mF05F85D2FBE70046CCFD312890F918B9D0961C14(__this, NULL); DtdParser_ParseInternalSubset_m4CA8AEDF9E87543186DF6F820A4F1CB15F5EA0A8(__this, NULL); DtdParser_SaveParsingBuffer_mA50879908E86FF9D354642A7BF0CDF85ACE35D8A(__this, NULL); } IL_001a: { String_t* L_1 = __this->___systemId_5; if (!L_1) { goto IL_0036; } } { String_t* L_2 = __this->___systemId_5; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); if ((((int32_t)L_3) <= ((int32_t)0))) { goto IL_0036; } } { DtdParser_ParseExternalSubset_m32ACD9461EF71173C98644D59A4E0A82576D98B4(__this, NULL); } IL_0036: { return; } } // System.Void System.Xml.DtdParser::ParseInternalSubset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseInternalSubset_m4CA8AEDF9E87543186DF6F820A4F1CB15F5EA0A8 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { DtdParser_ParseSubset_mDF6AA95DF1D5EFF0A66211B1CD546977176D66B4(__this, NULL); return; } } // System.Void System.Xml.DtdParser::ParseExternalSubset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseExternalSubset_m32ACD9461EF71173C98644D59A4E0A82576D98B4 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_0 = NULL; { RuntimeObject* L_0 = __this->___readerAdapter_0; String_t* L_1 = __this->___systemId_5; String_t* L_2 = __this->___publicId_6; NullCheck(L_0); bool L_3; L_3 = InterfaceFuncInvoker2< bool, String_t*, String_t* >::Invoke(20 /* System.Boolean System.Xml.IDtdParserAdapter::PushExternalSubset(System.String,System.String) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_0, L_1, L_2); if (L_3) { goto IL_001a; } } { return; } IL_001a: { RuntimeObject* L_4 = __this->___readerAdapter_0; NullCheck(L_4); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_5; L_5 = InterfaceFuncInvoker0< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* >::Invoke(2 /* System.Uri System.Xml.IDtdParserAdapter::get_BaseUri() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_4); V_0 = L_5; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_6 = V_0; il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); bool L_7; L_7 = Uri_op_Inequality_m64BE981CDF88B751677B80D883B201BF3CFD83F7(L_6, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL); if (!L_7) { goto IL_003b; } } { Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_8 = V_0; NullCheck(L_8); String_t* L_9; L_9 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_8); __this->___externalDtdBaseUri_30 = L_9; Il2CppCodeGenWriteBarrier((void**)(&__this->___externalDtdBaseUri_30), (void*)L_9); } IL_003b: { int32_t L_10 = __this->___externalEntitiesDepth_21; __this->___externalEntitiesDepth_21 = ((int32_t)il2cpp_codegen_add(L_10, 1)); DtdParser_LoadParsingBuffer_mF05F85D2FBE70046CCFD312890F918B9D0961C14(__this, NULL); DtdParser_ParseSubset_mDF6AA95DF1D5EFF0A66211B1CD546977176D66B4(__this, NULL); return; } } // System.Void System.Xml.DtdParser::ParseSubset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseSubset_mDF6AA95DF1D5EFF0A66211B1CD546977176D66B4 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, 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*)&_stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral324ECCE6E181944A23FC9126AE81680CA09C93D4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3A0F3831F5DAFB45C7CF0BE8E3E631BFEE684F0D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C370F917A6284F4D431AD8EB3AD2C86D406AB52); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB8592558A3214B8F63A256B8806C4A8EF96EF5FB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD259EE6AB580E33090940BF472020FA738C8617A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; IL_0000: { int32_t L_0; L_0 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); V_1 = L_0; int32_t L_1 = __this->___currentEntityId_22; V_0 = L_1; int32_t L_2 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, ((int32_t)11)))) { case 0: { goto IL_0049; } case 1: { goto IL_0054; } case 2: { goto IL_005f; } case 3: { goto IL_006a; } case 4: { goto IL_0075; } case 5: { goto IL_0080; } case 6: { goto IL_008b; } case 7: { goto IL_00b8; } case 8: { goto IL_01a9; } } } { int32_t L_3 = V_1; if ((((int32_t)L_3) == ((int32_t)((int32_t)32)))) { goto IL_0126; } } { goto IL_01e4; } IL_0049: { DtdParser_ParseAttlistDecl_m56790F6B55821549A8340D00586BA134FFDA28C1(__this, NULL); goto IL_01e4; } IL_0054: { DtdParser_ParseElementDecl_m04A22275D2342422E13554DD1FEA56FEDF7F7CA1(__this, NULL); goto IL_01e4; } IL_005f: { DtdParser_ParseEntityDecl_mDDF946172429F7DBFB301FE5F113084713B48B57(__this, NULL); goto IL_01e4; } IL_006a: { DtdParser_ParseNotationDecl_mBCCE845466278E35DDADC504075E85C358FA9EC1(__this, NULL); goto IL_01e4; } IL_0075: { DtdParser_ParseComment_mAAB19E9100AB4E6929F69BF9895CFE5430B39E96(__this, NULL); goto IL_01e4; } IL_0080: { DtdParser_ParsePI_m78FD95C2338F0BCF9535C89A24CEFB6F0802E4C9(__this, NULL); goto IL_01e4; } IL_008b: { bool L_4; L_4 = DtdParser_get_ParsingInternalSubset_mF2EDC8896A9EF87EFC4BFB9DC631B3079DF05399(__this, NULL); if (!L_4) { goto IL_00a6; } } { int32_t L_5 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, ((int32_t)il2cpp_codegen_subtract(L_5, 3)), _stringLiteral6C370F917A6284F4D431AD8EB3AD2C86D406AB52, NULL); } IL_00a6: { DtdParser_ParseCondSection_m6DF82F4650A08BC0E920DEA62D346383C57C677D(__this, NULL); int32_t L_6 = __this->___currentEntityId_22; V_0 = L_6; goto IL_01e4; } IL_00b8: { int32_t L_7 = __this->___condSectionDepth_26; if ((((int32_t)L_7) <= ((int32_t)0))) { goto IL_010e; } } { int32_t L_8 = __this->___condSectionDepth_26; __this->___condSectionDepth_26 = ((int32_t)il2cpp_codegen_subtract(L_8, 1)); bool L_9 = __this->___validate_8; if (!L_9) { goto IL_01e4; } } { int32_t L_10 = __this->___currentEntityId_22; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_11 = __this->___condSectionEntityIds_32; int32_t L_12 = __this->___condSectionDepth_26; NullCheck(L_11); int32_t L_13 = L_12; int32_t L_14 = (L_11)->GetAt(static_cast(L_13)); if ((((int32_t)L_10) == ((int32_t)L_14))) { goto IL_01e4; } } { int32_t L_15 = __this->___curPos_13; String_t* L_16 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F(__this, L_15, 0, _stringLiteralD259EE6AB580E33090940BF472020FA738C8617A, L_16, NULL); goto IL_01e4; } IL_010e: { int32_t L_17 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, ((int32_t)il2cpp_codegen_subtract(L_17, 3)), _stringLiteralB8592558A3214B8F63A256B8806C4A8EF96EF5FB, NULL); goto IL_01e4; } IL_0126: { bool L_18; L_18 = DtdParser_get_ParsingInternalSubset_mF2EDC8896A9EF87EFC4BFB9DC631B3079DF05399(__this, NULL); if (!L_18) { goto IL_0197; } } { int32_t L_19 = __this->___condSectionDepth_26; if (!L_19) { goto IL_0147; } } { int32_t L_20 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_20, _stringLiteral3A0F3831F5DAFB45C7CF0BE8E3E631BFEE684F0D, NULL); } IL_0147: { StringBuilder_t* L_21 = __this->___internalSubsetValueSb_20; if (!L_21) { goto IL_017a; } } { int32_t L_22 = __this->___curPos_13; DtdParser_SaveParsingBuffer_m002F46CF1017FA4228DEAE75ABD891C78F2505AF(__this, ((int32_t)il2cpp_codegen_subtract(L_22, 1)), NULL); SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_23 = __this->___schemaInfo_3; StringBuilder_t* L_24 = __this->___internalSubsetValueSb_20; NullCheck(L_24); String_t* L_25; L_25 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_24); NullCheck(L_23); SchemaInfo_set_InternalDtdSubset_m8352C52C8065FDD87C562CC9AC5CC098B7697CD5_inline(L_23, L_25, NULL); __this->___internalSubsetValueSb_20 = (StringBuilder_t*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___internalSubsetValueSb_20), (void*)(StringBuilder_t*)NULL); } IL_017a: { int32_t L_26; L_26 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); if ((((int32_t)L_26) == ((int32_t)((int32_t)29)))) { goto IL_01a8; } } { int32_t L_27 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mBCA8EBEE9CF9EC08AEEB6CA14BF75492689BF982(__this, L_27, _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5, NULL); return; } IL_0197: { int32_t L_28 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_28, _stringLiteral324ECCE6E181944A23FC9126AE81680CA09C93D4, NULL); } IL_01a8: { return; } IL_01a9: { bool L_29; L_29 = DtdParser_get_ParsingInternalSubset_mF2EDC8896A9EF87EFC4BFB9DC631B3079DF05399(__this, NULL); if (!L_29) { goto IL_01ca; } } { bool L_30 = __this->___freeFloatingDtd_23; if (L_30) { goto IL_01ca; } } { int32_t L_31 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_31, _stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7, NULL); } IL_01ca: { int32_t L_32 = __this->___condSectionDepth_26; if (!L_32) { goto IL_01e3; } } { int32_t L_33 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_33, _stringLiteral3A0F3831F5DAFB45C7CF0BE8E3E631BFEE684F0D, NULL); } IL_01e3: { return; } IL_01e4: { int32_t L_34 = __this->___currentEntityId_22; int32_t L_35 = V_0; if ((((int32_t)L_34) == ((int32_t)L_35))) { goto IL_0000; } } { bool L_36 = __this->___validate_8; if (!L_36) { goto IL_0214; } } { int32_t L_37 = __this->___curPos_13; String_t* L_38 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F(__this, L_37, 0, _stringLiteralD259EE6AB580E33090940BF472020FA738C8617A, L_38, NULL); goto IL_0000; } IL_0214: { bool L_39 = __this->___v1Compat_10; if (L_39) { goto IL_0000; } } { int32_t L_40 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_40, _stringLiteralD259EE6AB580E33090940BF472020FA738C8617A, NULL); goto IL_0000; } } // System.Void System.Xml.DtdParser::ParseAttlistDecl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseAttlistDecl_m56790F6B55821549A8340D00586BA134FFDA28C1 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m889D62A946A279647B91BF4A4D8B1B2C4DBBCDF3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapterWithValidation_tC370E742FC1C08EECE2E2741D97D6985EF1ED347_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD_il2cpp_TypeInfo_var); 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*)&_stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral85E61EF83FCD7B08C40AA3B100CA8FC4B41A934C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2); s_Il2CppMethodInitialized = true; } XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_0 = NULL; SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* V_1 = NULL; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* V_2 = NULL; bool V_3 = false; int32_t V_4 = 0; String_t* V_5 = NULL; { int32_t L_0; L_0 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)1, NULL); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)23))))) { goto IL_026f; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_1; L_1 = DtdParser_GetNameQualified_m90D851C0C284B3597B168491C6824733D42E1979(__this, (bool)1, NULL); V_0 = L_1; SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_2 = __this->___schemaInfo_3; NullCheck(L_2); Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* L_3; L_3 = SchemaInfo_get_ElementDecls_m238E5681BECA397E7010F7BEFBAC2D0FBEC43BD7_inline(L_2, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4 = V_0; NullCheck(L_3); bool L_5; L_5 = Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A(L_3, L_4, (&V_1), Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A_RuntimeMethod_var); if (L_5) { goto IL_005f; } } { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_6 = __this->___schemaInfo_3; NullCheck(L_6); Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* L_7; L_7 = SchemaInfo_get_UndeclaredElementDecls_m0A88B7833EFC3AAFB9DC374257DB131D1902EF1D_inline(L_6, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_8 = V_0; NullCheck(L_7); bool L_9; L_9 = Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A(L_7, L_8, (&V_1), Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A_RuntimeMethod_var); if (L_9) { goto IL_005f; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_10 = V_0; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_11 = V_0; NullCheck(L_11); String_t* L_12; L_12 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_11, NULL); SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_13 = (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD*)il2cpp_codegen_object_new(SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD_il2cpp_TypeInfo_var); NullCheck(L_13); SchemaElementDecl__ctor_m37D4F8688A2FCD66D64D442660B6E6BB0F30E70C(L_13, L_10, L_12, NULL); V_1 = L_13; SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_14 = __this->___schemaInfo_3; NullCheck(L_14); Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* L_15; L_15 = SchemaInfo_get_UndeclaredElementDecls_m0A88B7833EFC3AAFB9DC374257DB131D1902EF1D_inline(L_14, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_16 = V_0; SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_17 = V_1; NullCheck(L_15); Dictionary_2_Add_m889D62A946A279647B91BF4A4D8B1B2C4DBBCDF3(L_15, L_16, L_17, Dictionary_2_Add_m889D62A946A279647B91BF4A4D8B1B2C4DBBCDF3_RuntimeMethod_var); } IL_005f: { V_2 = (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553*)NULL; } IL_0061: { int32_t L_18; L_18 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); V_4 = L_18; int32_t L_19 = V_4; if ((((int32_t)L_19) == ((int32_t)((int32_t)23)))) { goto IL_007b; } } { int32_t L_20 = V_4; if ((((int32_t)L_20) == ((int32_t)((int32_t)29)))) { goto IL_00c8; } } { goto IL_026f; } IL_007b: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_21; L_21 = DtdParser_GetNameQualified_m90D851C0C284B3597B168491C6824733D42E1979(__this, (bool)1, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_22 = L_21; NullCheck(L_22); String_t* L_23; L_23 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_22, NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_24 = (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553*)il2cpp_codegen_object_new(SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553_il2cpp_TypeInfo_var); NullCheck(L_24); SchemaAttDef__ctor_mCE4B0F520716988FF7D1285FF25B92060D0DA76C(L_24, L_22, L_23, NULL); V_2 = L_24; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_25 = V_2; bool L_26; L_26 = DtdParser_get_ParsingInternalSubset_mF2EDC8896A9EF87EFC4BFB9DC631B3079DF05399(__this, NULL); NullCheck(L_25); SchemaDeclBase_set_IsDeclaredInExternal_m3F57DA2AD9DBAC1C431293C53E4E052A8E915D96_inline(L_25, (bool)((((int32_t)L_26) == ((int32_t)0))? 1 : 0), NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_27 = V_2; int32_t L_28; L_28 = DtdParser_get_LineNo_m4D78AF8EFE8D05D61D89C0CC1C3CB46D0263E246(__this, NULL); NullCheck(L_27); SchemaAttDef_set_LineNumber_mA7F00D8F6FAB9626DBF9444371C2D5B0EF99E07E_inline(L_27, L_28, NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_29 = V_2; int32_t L_30; L_30 = DtdParser_get_LinePos_m2FDB78628E84297247B78BA60AF304C084790005(__this, NULL); int32_t L_31 = __this->___curPos_13; int32_t L_32 = __this->___tokenStartPos_18; NullCheck(L_29); SchemaAttDef_set_LinePosition_mC3B43012E31CCE6784CCFE1B9FE8CC15B0C7E584_inline(L_29, ((int32_t)il2cpp_codegen_subtract(L_30, ((int32_t)il2cpp_codegen_subtract(L_31, L_32)))), NULL); goto IL_015c; } IL_00c8: { bool L_33 = __this->___v1Compat_10; if (!L_33) { goto IL_015b; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_34 = V_2; if (!L_34) { goto IL_015b; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_35 = V_2; NullCheck(L_35); String_t* L_36; L_36 = SchemaDeclBase_get_Prefix_mE72A285F12958A0C40F8CDEDA2838B3A09233455(L_35, NULL); NullCheck(L_36); int32_t L_37; L_37 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_36, NULL); if ((((int32_t)L_37) <= ((int32_t)0))) { goto IL_015b; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_38 = V_2; NullCheck(L_38); String_t* L_39; L_39 = SchemaDeclBase_get_Prefix_mE72A285F12958A0C40F8CDEDA2838B3A09233455(L_38, NULL); NullCheck(L_39); bool L_40; L_40 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_39, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, NULL); if (!L_40) { goto IL_015b; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_41 = V_2; NullCheck(L_41); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_42; L_42 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_41, NULL); NullCheck(L_42); String_t* L_43; L_43 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_42, NULL); bool L_44; L_44 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_43, _stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2, NULL); if (!L_44) { goto IL_015b; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_45 = V_2; NullCheck(L_45); SchemaAttDef_set_Reserved_mA68CCD19A9DFB1D612973314A38245DCA338BDC4_inline(L_45, 1, NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_46 = V_2; NullCheck(L_46); XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* L_47; L_47 = SchemaDeclBase_get_Datatype_mE6DE13C3518B65A1CF6E464F12D7D7653247AF90_inline(L_46, NULL); NullCheck(L_47); int32_t L_48; L_48 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Xml.XmlTokenizedType System.Xml.Schema.XmlSchemaDatatype::get_TokenizedType() */, L_47); if ((((int32_t)L_48) == ((int32_t)((int32_t)9)))) { goto IL_0142; } } { String_t* L_49 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_50 = V_2; NullCheck(L_50); int32_t L_51; L_51 = SchemaAttDef_get_LineNumber_m8A9494C90F0B132F2A84AF7203FE074046529A1C_inline(L_50, NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_52 = V_2; NullCheck(L_52); int32_t L_53; L_53 = SchemaAttDef_get_LinePosition_m192E37BC23204F940B4BC5BBBCC248EEAE4481D1_inline(L_52, NULL); DtdParser_Throw_mB4CABDC7A50D3C7F339CC18B8F500A9DCD78CA95(__this, _stringLiteral85E61EF83FCD7B08C40AA3B100CA8FC4B41A934C, L_49, L_51, L_53, NULL); } IL_0142: { bool L_54 = __this->___validate_8; if (!L_54) { goto IL_015b; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_55 = V_2; RuntimeObject* L_56 = __this->___readerAdapterWithValidation_1; NullCheck(L_56); RuntimeObject* L_57; L_57 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Xml.IValidationEventHandling System.Xml.IDtdParserAdapterWithValidation::get_ValidationEventHandling() */, IDtdParserAdapterWithValidation_tC370E742FC1C08EECE2E2741D97D6985EF1ED347_il2cpp_TypeInfo_var, L_56); NullCheck(L_55); SchemaAttDef_CheckXmlSpace_m03EFF5426C02492D7C4EEFEC396DC7386E20DB74(L_55, L_57, NULL); } IL_015b: { return; } IL_015c: { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_58 = V_1; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_59 = V_2; NullCheck(L_59); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_60; L_60 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_59, NULL); NullCheck(L_58); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_61; L_61 = SchemaElementDecl_GetAttDef_m157EF6E66718BDD7F087323423296A4AF4719259(L_58, L_60, NULL); V_3 = (bool)((!(((RuntimeObject*)(SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553*)L_61) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_62 = V_2; SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_63 = V_1; bool L_64 = V_3; DtdParser_ParseAttlistType_mC7CF6695229010B0320A5311BA2FA9298F6A5D29(__this, L_62, L_63, L_64, NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_65 = V_2; bool L_66 = V_3; DtdParser_ParseAttlistDefault_m2E49FD966B82593A64DFCB15F7D49C30183D859A(__this, L_65, L_66, NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_67 = V_2; NullCheck(L_67); String_t* L_68; L_68 = SchemaDeclBase_get_Prefix_mE72A285F12958A0C40F8CDEDA2838B3A09233455(L_67, NULL); NullCheck(L_68); int32_t L_69; L_69 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_68, NULL); if ((((int32_t)L_69) <= ((int32_t)0))) { goto IL_025d; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_70 = V_2; NullCheck(L_70); String_t* L_71; L_71 = SchemaDeclBase_get_Prefix_mE72A285F12958A0C40F8CDEDA2838B3A09233455(L_70, NULL); NullCheck(L_71); bool L_72; L_72 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_71, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, NULL); if (!L_72) { goto IL_025d; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_73 = V_2; NullCheck(L_73); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_74; L_74 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_73, NULL); NullCheck(L_74); String_t* L_75; L_75 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_74, NULL); bool L_76; L_76 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_75, _stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2, NULL); if (!L_76) { goto IL_023f; } } { bool L_77 = __this->___v1Compat_10; if (!L_77) { goto IL_01f7; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_78 = V_2; NullCheck(L_78); String_t* L_79; L_79 = SchemaAttDef_get_DefaultValueExpanded_m61569B11E4FBDEED7A35CD5A39675B57CE6DB78F(L_78, NULL); NullCheck(L_79); String_t* L_80; L_80 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_79, NULL); V_5 = L_80; String_t* L_81 = V_5; NullCheck(L_81); bool L_82; L_82 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_81, _stringLiteral916F4E7879C25AF1EA844F7068842D5508777C48, NULL); if (L_82) { goto IL_01ee; } } { String_t* L_83 = V_5; NullCheck(L_83); bool L_84; L_84 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_83, _stringLiteral6F5EC7239B41C242FCB23B64D91DA0070FC1C044, NULL); if (!L_84) { goto IL_025d; } } IL_01ee: { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_85 = V_2; NullCheck(L_85); SchemaAttDef_set_Reserved_mA68CCD19A9DFB1D612973314A38245DCA338BDC4_inline(L_85, 1, NULL); goto IL_025d; } IL_01f7: { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_86 = V_2; NullCheck(L_86); SchemaAttDef_set_Reserved_mA68CCD19A9DFB1D612973314A38245DCA338BDC4_inline(L_86, 1, NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_87 = V_2; NullCheck(L_87); int32_t L_88; L_88 = SchemaAttDef_get_TokenizedType_m57FC667A4FC7D2904B78B639A39E872595F7EF86(L_87, NULL); if ((((int32_t)L_88) == ((int32_t)((int32_t)9)))) { goto IL_0224; } } { String_t* L_89 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_90 = V_2; NullCheck(L_90); int32_t L_91; L_91 = SchemaAttDef_get_LineNumber_m8A9494C90F0B132F2A84AF7203FE074046529A1C_inline(L_90, NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_92 = V_2; NullCheck(L_92); int32_t L_93; L_93 = SchemaAttDef_get_LinePosition_m192E37BC23204F940B4BC5BBBCC248EEAE4481D1_inline(L_92, NULL); DtdParser_Throw_mB4CABDC7A50D3C7F339CC18B8F500A9DCD78CA95(__this, _stringLiteral85E61EF83FCD7B08C40AA3B100CA8FC4B41A934C, L_89, L_91, L_93, NULL); } IL_0224: { bool L_94 = __this->___validate_8; if (!L_94) { goto IL_025d; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_95 = V_2; RuntimeObject* L_96 = __this->___readerAdapterWithValidation_1; NullCheck(L_96); RuntimeObject* L_97; L_97 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Xml.IValidationEventHandling System.Xml.IDtdParserAdapterWithValidation::get_ValidationEventHandling() */, IDtdParserAdapterWithValidation_tC370E742FC1C08EECE2E2741D97D6985EF1ED347_il2cpp_TypeInfo_var, L_96); NullCheck(L_95); SchemaAttDef_CheckXmlSpace_m03EFF5426C02492D7C4EEFEC396DC7386E20DB74(L_95, L_97, NULL); goto IL_025d; } IL_023f: { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_98 = V_2; NullCheck(L_98); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_99; L_99 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_98, NULL); NullCheck(L_99); String_t* L_100; L_100 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_99, NULL); bool L_101; L_101 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_100, _stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29, NULL); if (!L_101) { goto IL_025d; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_102 = V_2; NullCheck(L_102); SchemaAttDef_set_Reserved_mA68CCD19A9DFB1D612973314A38245DCA338BDC4_inline(L_102, 2, NULL); } IL_025d: { bool L_103 = V_3; if (L_103) { goto IL_0061; } } { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_104 = V_1; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_105 = V_2; NullCheck(L_104); SchemaElementDecl_AddAttDef_mAF964F8485156FF16A7554A1B8DC76B7A83C12BA(L_104, L_105, NULL); goto IL_0061; } IL_026f: { DtdParser_OnUnexpectedError_m48B2712A07C18494946123F9947ED17F270DC4B6(__this, NULL); return; } } // System.Void System.Xml.DtdParser::ParseAttlistType(System.Xml.Schema.SchemaAttDef,System.Xml.Schema.SchemaElementDecl,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseAttlistType_mC7CF6695229010B0320A5311BA2FA9298F6A5D29 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___0_attrDef, SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* ___1_elementDecl, bool ___2_ignoreErrors, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_mE95F6F2001E3CA07C37D145E3D22F9A261874206_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m359254483BE42CAD4DCA8FBAFB87473FB4CF00E1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral265063C5E5B7055CDC527A6D234A14747DC2D71E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral501B98A6E74F1C51225E59A5DAE2EE433B125499); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA5D214974A6E3CCDE1B595EE7A016D3FEA5FAA61); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD93DDB9BA74539B5989A13715EBB5158C4B43486); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDE9AA762B72BCD6BE256CC115B658BDBC21C36EA); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* V_1 = NULL; String_t* V_2 = NULL; int32_t V_3 = 0; String_t* V_4 = NULL; { int32_t L_0; L_0 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)1, NULL); V_0 = L_0; int32_t L_1 = V_0; if (!L_1) { goto IL_0012; } } { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_2 = ___1_elementDecl; NullCheck(L_2); SchemaElementDecl_set_HasNonCDataAttribute_m66C35DA3287AD11A2D0DD2E47FE3B8198851F01E_inline(L_2, (bool)1, NULL); } IL_0012: { int32_t L_3 = V_0; bool L_4; L_4 = DtdParser_IsAttributeValueType_m973F7C314B5AC9D43A0AE8BAE06F879DE66F9115(__this, L_3, NULL); if (!L_4) { goto IL_01c1; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_5 = ___0_attrDef; int32_t L_6 = V_0; NullCheck(L_5); SchemaAttDef_set_TokenizedType_m66E5B35A86397A9C6E7B97C3DE2A47FC49B5D1FA(L_5, L_6, NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_7 = ___0_attrDef; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_8 = ___0_attrDef; NullCheck(L_8); XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* L_9; L_9 = SchemaDeclBase_get_Datatype_mE6DE13C3518B65A1CF6E464F12D7D7653247AF90_inline(L_8, NULL); NullCheck(L_9); int32_t L_10; L_10 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.Schema.XmlTypeCode System.Xml.Schema.XmlSchemaDatatype::get_TypeCode() */, L_9); XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* L_11; L_11 = XmlSchemaType_GetBuiltInSimpleType_m68FACA3B15481A61FB41E3282821660F27C7F57D(L_10, NULL); NullCheck(L_7); SchemaDeclBase_set_SchemaType_m4A34BA7ABAAD6A60F7AE3A2572EDD3E86893A21F_inline(L_7, L_11, NULL); int32_t L_12 = V_0; if ((((int32_t)L_12) == ((int32_t)1))) { goto IL_0044; } } { int32_t L_13 = V_0; if ((((int32_t)L_13) == ((int32_t)8))) { goto IL_0094; } } { return; } IL_0044: { bool L_14 = __this->___validate_8; if (!L_14) { goto IL_008c; } } { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_15 = ___1_elementDecl; NullCheck(L_15); bool L_16; L_16 = SchemaElementDecl_get_IsIdDeclared_m44ADA012ED628AF85A038CF178E9CA86806077B3_inline(L_15, NULL); if (!L_16) { goto IL_008c; } } { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_17 = ___1_elementDecl; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_18 = ___0_attrDef; NullCheck(L_18); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_19; L_19 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_18, NULL); NullCheck(L_17); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_20; L_20 = SchemaElementDecl_GetAttDef_m157EF6E66718BDD7F087323423296A4AF4719259(L_17, L_19, NULL); V_1 = L_20; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_21 = V_1; if (!L_21) { goto IL_0072; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_22 = V_1; NullCheck(L_22); XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* L_23; L_23 = SchemaDeclBase_get_Datatype_mE6DE13C3518B65A1CF6E464F12D7D7653247AF90_inline(L_22, NULL); NullCheck(L_23); int32_t L_24; L_24 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Xml.XmlTokenizedType System.Xml.Schema.XmlSchemaDatatype::get_TokenizedType() */, L_23); if ((((int32_t)L_24) == ((int32_t)1))) { goto IL_008c; } } IL_0072: { bool L_25 = ___2_ignoreErrors; if (L_25) { goto IL_008c; } } { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_26 = ___1_elementDecl; NullCheck(L_26); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_27; L_27 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_26, NULL); NullCheck(L_27); String_t* L_28; L_28 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_27); DtdParser_SendValidationEvent_m79ECFFB3D03874AE9095BA539FC8B7191018E58B(__this, 0, _stringLiteralD93DDB9BA74539B5989A13715EBB5158C4B43486, L_28, NULL); } IL_008c: { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_29 = ___1_elementDecl; NullCheck(L_29); SchemaElementDecl_set_IsIdDeclared_m88620A2DF06335275FD59A77CB5073E5707BA5AD_inline(L_29, (bool)1, NULL); return; } IL_0094: { bool L_30 = __this->___validate_8; if (!L_30) { goto IL_0107; } } { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_31 = ___1_elementDecl; NullCheck(L_31); bool L_32; L_32 = SchemaElementDecl_get_IsNotationDeclared_m56FEF2BE202BF5AC41DDFB7BCA33983F71A0FB0B_inline(L_31, NULL); if (!L_32) { goto IL_00c8; } } { bool L_33 = ___2_ignoreErrors; if (L_33) { goto IL_00c8; } } { int32_t L_34 = __this->___curPos_13; SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_35 = ___1_elementDecl; NullCheck(L_35); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_36; L_36 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_35, NULL); NullCheck(L_36); String_t* L_37; L_37 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_36); DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F(__this, ((int32_t)il2cpp_codegen_subtract(L_34, 8)), 0, _stringLiteralDE9AA762B72BCD6BE256CC115B658BDBC21C36EA, L_37, NULL); goto IL_0107; } IL_00c8: { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_38 = ___1_elementDecl; NullCheck(L_38); ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* L_39; L_39 = SchemaElementDecl_get_ContentValidator_m687E7878F142CFC03B5D7B4FFD6FE1F4AE6526E1_inline(L_38, NULL); if (!L_39) { goto IL_0100; } } { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_40 = ___1_elementDecl; NullCheck(L_40); ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* L_41; L_41 = SchemaElementDecl_get_ContentValidator_m687E7878F142CFC03B5D7B4FFD6FE1F4AE6526E1_inline(L_40, NULL); NullCheck(L_41); int32_t L_42; L_42 = ContentValidator_get_ContentType_m2E9C64DB3522E5A29BE6CAA4A929CBABAD1CEF23_inline(L_41, NULL); if ((!(((uint32_t)L_42) == ((uint32_t)1)))) { goto IL_0100; } } { bool L_43 = ___2_ignoreErrors; if (L_43) { goto IL_0100; } } { int32_t L_44 = __this->___curPos_13; SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_45 = ___1_elementDecl; NullCheck(L_45); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_46; L_46 = SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline(L_45, NULL); NullCheck(L_46); String_t* L_47; L_47 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_46); DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F(__this, ((int32_t)il2cpp_codegen_subtract(L_44, 8)), 0, _stringLiteral265063C5E5B7055CDC527A6D234A14747DC2D71E, L_47, NULL); } IL_0100: { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_48 = ___1_elementDecl; NullCheck(L_48); SchemaElementDecl_set_IsNotationDeclared_m33DFE77CEA01A59316738F4BC49110A7C98A2365_inline(L_48, (bool)1, NULL); } IL_0107: { int32_t L_49; L_49 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)1, NULL); if ((!(((uint32_t)L_49) == ((uint32_t)((int32_t)27))))) { goto IL_0280; } } { int32_t L_50; L_50 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); if ((!(((uint32_t)L_50) == ((uint32_t)((int32_t)24))))) { goto IL_0280; } } IL_0123: { String_t* L_51; L_51 = DtdParser_GetNameString_mA1D54806181E8700FF13260A88E2077F603C39FB(__this, NULL); V_2 = L_51; SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_52 = __this->___schemaInfo_3; NullCheck(L_52); Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* L_53; L_53 = SchemaInfo_get_Notations_m922CD199C8750B3D6F5662DB0EA272805A7EA3A1(L_52, NULL); String_t* L_54 = V_2; NullCheck(L_53); bool L_55; L_55 = Dictionary_2_ContainsKey_mE95F6F2001E3CA07C37D145E3D22F9A261874206(L_53, L_54, Dictionary_2_ContainsKey_mE95F6F2001E3CA07C37D145E3D22F9A261874206_RuntimeMethod_var); if (L_55) { goto IL_0144; } } { String_t* L_56 = V_2; DtdParser_AddUndeclaredNotation_mF35809833D2C33608CD892441E552FAEA80F4A70(__this, L_56, NULL); } IL_0144: { bool L_57 = __this->___validate_8; if (!L_57) { goto IL_0191; } } { bool L_58 = __this->___v1Compat_10; if (L_58) { goto IL_0191; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_59 = ___0_attrDef; NullCheck(L_59); List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_60; L_60 = SchemaDeclBase_get_Values_m5CBE6E5DB4DE93179FEB87F1BBC0EAF43FAF0E06_inline(L_59, NULL); if (!L_60) { goto IL_0191; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_61 = ___0_attrDef; NullCheck(L_61); List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_62; L_62 = SchemaDeclBase_get_Values_m5CBE6E5DB4DE93179FEB87F1BBC0EAF43FAF0E06_inline(L_61, NULL); String_t* L_63 = V_2; NullCheck(L_62); bool L_64; L_64 = List_1_Contains_m359254483BE42CAD4DCA8FBAFB87473FB4CF00E1(L_62, L_63, List_1_Contains_m359254483BE42CAD4DCA8FBAFB87473FB4CF00E1_RuntimeMethod_var); if (!L_64) { goto IL_0191; } } { bool L_65 = ___2_ignoreErrors; if (L_65) { goto IL_0191; } } { String_t* L_66 = V_2; String_t* L_67; L_67 = DtdParser_get_BaseUriStr_m1A09B1A26119F87C048748007B59685399A1A0AE(__this, NULL); int32_t L_68; L_68 = DtdParser_get_LineNo_m4D78AF8EFE8D05D61D89C0CC1C3CB46D0263E246(__this, NULL); int32_t L_69; L_69 = DtdParser_get_LinePos_m2FDB78628E84297247B78BA60AF304C084790005(__this, NULL); XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B* L_70 = (XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B*)il2cpp_codegen_object_new(XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B_il2cpp_TypeInfo_var); NullCheck(L_70); XmlSchemaException__ctor_m5EB9F0E36520DCB3AD78B355F5F120E1D7FF5EEB(L_70, _stringLiteralA5D214974A6E3CCDE1B595EE7A016D3FEA5FAA61, L_66, L_67, L_68, L_69, NULL); DtdParser_SendValidationEvent_m874AFDBD3F0EEC5D3AE8A195B98AE90DC472438F(__this, 0, L_70, NULL); } IL_0191: { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_71 = ___0_attrDef; String_t* L_72 = V_2; NullCheck(L_71); SchemaDeclBase_AddValue_m9C70610A093F7CD2287EB47D9FA619E1D29A1958(L_71, L_72, NULL); int32_t L_73; L_73 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); V_3 = L_73; int32_t L_74 = V_3; if ((((int32_t)L_74) == ((int32_t)((int32_t)28)))) { goto IL_01c0; } } { int32_t L_75 = V_3; if ((!(((uint32_t)L_75) == ((uint32_t)((int32_t)30))))) { goto IL_0280; } } { int32_t L_76; L_76 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); if ((((int32_t)L_76) == ((int32_t)((int32_t)24)))) { goto IL_0123; } } { goto IL_0280; } IL_01c0: { return; } IL_01c1: { int32_t L_77 = V_0; if ((!(((uint32_t)L_77) == ((uint32_t)((int32_t)27))))) { goto IL_0280; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_78 = ___0_attrDef; NullCheck(L_78); SchemaAttDef_set_TokenizedType_m66E5B35A86397A9C6E7B97C3DE2A47FC49B5D1FA(L_78, ((int32_t)9), NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_79 = ___0_attrDef; SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_80 = ___0_attrDef; NullCheck(L_80); XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* L_81; L_81 = SchemaDeclBase_get_Datatype_mE6DE13C3518B65A1CF6E464F12D7D7653247AF90_inline(L_80, NULL); NullCheck(L_81); int32_t L_82; L_82 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.Schema.XmlTypeCode System.Xml.Schema.XmlSchemaDatatype::get_TypeCode() */, L_81); XmlSchemaSimpleType_tA52BBE2D61DAD61BD3FCDF40E1CD9F41388F7FA8* L_83; L_83 = XmlSchemaType_GetBuiltInSimpleType_m68FACA3B15481A61FB41E3282821660F27C7F57D(L_82, NULL); NullCheck(L_79); SchemaDeclBase_set_SchemaType_m4A34BA7ABAAD6A60F7AE3A2572EDD3E86893A21F_inline(L_79, L_83, NULL); int32_t L_84; L_84 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); if ((!(((uint32_t)L_84) == ((uint32_t)((int32_t)25))))) { goto IL_0280; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_85 = ___0_attrDef; String_t* L_86; L_86 = DtdParser_GetNameString_mA1D54806181E8700FF13260A88E2077F603C39FB(__this, NULL); NullCheck(L_85); SchemaDeclBase_AddValue_m9C70610A093F7CD2287EB47D9FA619E1D29A1958(L_85, L_86, NULL); } IL_0201: { int32_t L_87; L_87 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); V_3 = L_87; int32_t L_88 = V_3; if ((((int32_t)L_88) == ((int32_t)((int32_t)28)))) { goto IL_027f; } } { int32_t L_89 = V_3; if ((!(((uint32_t)L_89) == ((uint32_t)((int32_t)30))))) { goto IL_0280; } } { int32_t L_90; L_90 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); if ((!(((uint32_t)L_90) == ((uint32_t)((int32_t)25))))) { goto IL_0280; } } { String_t* L_91; L_91 = DtdParser_GetNmtokenString_m2FBC77BC5054E435A4F99466E1E21D664260D1EB(__this, NULL); V_4 = L_91; bool L_92 = __this->___validate_8; if (!L_92) { goto IL_0275; } } { bool L_93 = __this->___v1Compat_10; if (L_93) { goto IL_0275; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_94 = ___0_attrDef; NullCheck(L_94); List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_95; L_95 = SchemaDeclBase_get_Values_m5CBE6E5DB4DE93179FEB87F1BBC0EAF43FAF0E06_inline(L_94, NULL); if (!L_95) { goto IL_0275; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_96 = ___0_attrDef; NullCheck(L_96); List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_97; L_97 = SchemaDeclBase_get_Values_m5CBE6E5DB4DE93179FEB87F1BBC0EAF43FAF0E06_inline(L_96, NULL); String_t* L_98 = V_4; NullCheck(L_97); bool L_99; L_99 = List_1_Contains_m359254483BE42CAD4DCA8FBAFB87473FB4CF00E1(L_97, L_98, List_1_Contains_m359254483BE42CAD4DCA8FBAFB87473FB4CF00E1_RuntimeMethod_var); if (!L_99) { goto IL_0275; } } { bool L_100 = ___2_ignoreErrors; if (L_100) { goto IL_0275; } } { String_t* L_101 = V_4; String_t* L_102; L_102 = DtdParser_get_BaseUriStr_m1A09B1A26119F87C048748007B59685399A1A0AE(__this, NULL); int32_t L_103; L_103 = DtdParser_get_LineNo_m4D78AF8EFE8D05D61D89C0CC1C3CB46D0263E246(__this, NULL); int32_t L_104; L_104 = DtdParser_get_LinePos_m2FDB78628E84297247B78BA60AF304C084790005(__this, NULL); XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B* L_105 = (XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B*)il2cpp_codegen_object_new(XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B_il2cpp_TypeInfo_var); NullCheck(L_105); XmlSchemaException__ctor_m5EB9F0E36520DCB3AD78B355F5F120E1D7FF5EEB(L_105, _stringLiteral501B98A6E74F1C51225E59A5DAE2EE433B125499, L_101, L_102, L_103, L_104, NULL); DtdParser_SendValidationEvent_m874AFDBD3F0EEC5D3AE8A195B98AE90DC472438F(__this, 0, L_105, NULL); } IL_0275: { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_106 = ___0_attrDef; String_t* L_107 = V_4; NullCheck(L_106); SchemaDeclBase_AddValue_m9C70610A093F7CD2287EB47D9FA619E1D29A1958(L_106, L_107, NULL); goto IL_0201; } IL_027f: { return; } IL_0280: { DtdParser_OnUnexpectedError_m48B2712A07C18494946123F9947ED17F270DC4B6(__this, NULL); return; } } // System.Void System.Xml.DtdParser::ParseAttlistDefault(System.Xml.Schema.SchemaAttDef,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseAttlistDefault_m2E49FD966B82593A64DFCB15F7D49C30183D859A (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* ___0_attrDef, bool ___1_ignoreErrors, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DtdValidator_tF916F1805E2290242B688583602409378173CF17_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6CF85EA4A9725419E00C90B0EC2DCE10FD2E8CE7); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0; L_0 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)1, NULL); V_0 = L_0; int32_t L_1 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, ((int32_t)20)))) { case 0: { goto IL_0027; } case 1: { goto IL_002f; } case 2: { goto IL_0037; } } } { int32_t L_2 = V_0; if ((((int32_t)L_2) == ((int32_t)((int32_t)35)))) { goto IL_004c; } } { goto IL_00cf; } IL_0027: { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_3 = ___0_attrDef; NullCheck(L_3); SchemaDeclBase_set_Presence_mB1FAF4B21DA1F38F9A40D57E54260010E54C1B91_inline(L_3, 1, NULL); return; } IL_002f: { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_4 = ___0_attrDef; NullCheck(L_4); SchemaDeclBase_set_Presence_mB1FAF4B21DA1F38F9A40D57E54260010E54C1B91_inline(L_4, 2, NULL); return; } IL_0037: { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_5 = ___0_attrDef; NullCheck(L_5); SchemaDeclBase_set_Presence_mB1FAF4B21DA1F38F9A40D57E54260010E54C1B91_inline(L_5, 3, NULL); int32_t L_6; L_6 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)1, NULL); if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)35))))) { goto IL_00cf; } } IL_004c: { bool L_7 = __this->___validate_8; if (!L_7) { goto IL_007c; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_8 = ___0_attrDef; NullCheck(L_8); XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* L_9; L_9 = SchemaDeclBase_get_Datatype_mE6DE13C3518B65A1CF6E464F12D7D7653247AF90_inline(L_8, NULL); NullCheck(L_9); int32_t L_10; L_10 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Xml.XmlTokenizedType System.Xml.Schema.XmlSchemaDatatype::get_TokenizedType() */, L_9); if ((!(((uint32_t)L_10) == ((uint32_t)1)))) { goto IL_007c; } } { bool L_11 = ___1_ignoreErrors; if (L_11) { goto IL_007c; } } { int32_t L_12 = __this->___curPos_13; String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F(__this, L_12, 0, _stringLiteral6CF85EA4A9725419E00C90B0EC2DCE10FD2E8CE7, L_13, NULL); } IL_007c: { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_14 = ___0_attrDef; NullCheck(L_14); int32_t L_15; L_15 = SchemaAttDef_get_TokenizedType_m57FC667A4FC7D2904B78B639A39E872595F7EF86(L_14, NULL); if (!L_15) { goto IL_0092; } } { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_16 = ___0_attrDef; String_t* L_17; L_17 = DtdParser_GetValueWithStrippedSpaces_mA7A8B5EF2DDCC7C0C1AE9845AF9EF4D149094FEA(__this, NULL); NullCheck(L_16); SchemaAttDef_set_DefaultValueExpanded_mE4A42E55D630D5C41EAF3480F721749DBB59B801_inline(L_16, L_17, NULL); goto IL_009e; } IL_0092: { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_18 = ___0_attrDef; String_t* L_19; L_19 = DtdParser_GetValue_m3A56A10A245D1CDB50CCBFE897A8BA1AB3F5F622(__this, NULL); NullCheck(L_18); SchemaAttDef_set_DefaultValueExpanded_mE4A42E55D630D5C41EAF3480F721749DBB59B801_inline(L_18, L_19, NULL); } IL_009e: { SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_20 = ___0_attrDef; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_21 = (&__this->___literalLineInfo_27); int32_t L_22 = L_21->___lineNo_0; NullCheck(L_20); SchemaAttDef_set_ValueLineNumber_mD19157EDC780F89AA9FD6C07FEE28363DB7BDC91_inline(L_20, L_22, NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_23 = ___0_attrDef; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_24 = (&__this->___literalLineInfo_27); int32_t L_25 = L_24->___linePos_1; NullCheck(L_23); SchemaAttDef_set_ValueLinePosition_m8AEAB2128F36C4F66C16E9CB778C94402E15D387_inline(L_23, ((int32_t)il2cpp_codegen_add(L_25, 1)), NULL); SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* L_26 = ___0_attrDef; RuntimeObject* L_27 = __this->___readerAdapter_0; il2cpp_codegen_runtime_class_init_inline(DtdValidator_tF916F1805E2290242B688583602409378173CF17_il2cpp_TypeInfo_var); DtdValidator_SetDefaultTypedValue_mE6989FDEBC8F5EFB61B0AD93B149FD7BA0B9ECA9(L_26, L_27, NULL); return; } IL_00cf: { DtdParser_OnUnexpectedError_m48B2712A07C18494946123F9947ED17F270DC4B6(__this, NULL); return; } } // System.Void System.Xml.DtdParser::ParseElementDecl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseElementDecl_m04A22275D2342422E13554DD1FEA56FEDF7F7CA1 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m889D62A946A279647B91BF4A4D8B1B2C4DBBCDF3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m1E37C29A7B6036E5D212EDE08E94808C0020EE55_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6AB660E1248762B48B0356F19FC1CB2FC99F1ABF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5); s_Il2CppMethodInitialized = true; } SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* V_0 = NULL; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* V_5 = NULL; ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* V_6 = NULL; { int32_t L_0; L_0 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)1, NULL); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)23))))) { goto IL_0181; } } { V_0 = (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD*)NULL; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_1; L_1 = DtdParser_GetNameQualified_m90D851C0C284B3597B168491C6824733D42E1979(__this, (bool)1, NULL); V_1 = L_1; SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_2 = __this->___schemaInfo_3; NullCheck(L_2); Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* L_3; L_3 = SchemaInfo_get_ElementDecls_m238E5681BECA397E7010F7BEFBAC2D0FBEC43BD7_inline(L_2, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4 = V_1; NullCheck(L_3); bool L_5; L_5 = Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A(L_3, L_4, (&V_0), Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A_RuntimeMethod_var); if (!L_5) { goto IL_005b; } } { bool L_6 = __this->___validate_8; if (!L_6) { goto IL_00a3; } } { int32_t L_7 = __this->___curPos_13; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_8 = V_1; NullCheck(L_8); String_t* L_9; L_9 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_8, NULL); NullCheck(L_9); int32_t L_10; L_10 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_9, NULL); String_t* L_11; L_11 = DtdParser_GetNameString_mA1D54806181E8700FF13260A88E2077F603C39FB(__this, NULL); DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F(__this, ((int32_t)il2cpp_codegen_subtract(L_7, L_10)), 0, _stringLiteral6AB660E1248762B48B0356F19FC1CB2FC99F1ABF, L_11, NULL); goto IL_00a3; } IL_005b: { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_12 = __this->___schemaInfo_3; NullCheck(L_12); Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* L_13; L_13 = SchemaInfo_get_UndeclaredElementDecls_m0A88B7833EFC3AAFB9DC374257DB131D1902EF1D_inline(L_12, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_14 = V_1; NullCheck(L_13); bool L_15; L_15 = Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A(L_13, L_14, (&V_0), Dictionary_2_TryGetValue_m15B366BD9B5A92299439677E2C60B2B46E07157A_RuntimeMethod_var); if (!L_15) { goto IL_0084; } } { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_16 = __this->___schemaInfo_3; NullCheck(L_16); Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* L_17; L_17 = SchemaInfo_get_UndeclaredElementDecls_m0A88B7833EFC3AAFB9DC374257DB131D1902EF1D_inline(L_16, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_18 = V_1; NullCheck(L_17); bool L_19; L_19 = Dictionary_2_Remove_m1E37C29A7B6036E5D212EDE08E94808C0020EE55(L_17, L_18, Dictionary_2_Remove_m1E37C29A7B6036E5D212EDE08E94808C0020EE55_RuntimeMethod_var); goto IL_0091; } IL_0084: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_20 = V_1; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_21 = V_1; NullCheck(L_21); String_t* L_22; L_22 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_21, NULL); SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_23 = (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD*)il2cpp_codegen_object_new(SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD_il2cpp_TypeInfo_var); NullCheck(L_23); SchemaElementDecl__ctor_m37D4F8688A2FCD66D64D442660B6E6BB0F30E70C(L_23, L_20, L_22, NULL); V_0 = L_23; } IL_0091: { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_24 = __this->___schemaInfo_3; NullCheck(L_24); Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* L_25; L_25 = SchemaInfo_get_ElementDecls_m238E5681BECA397E7010F7BEFBAC2D0FBEC43BD7_inline(L_24, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_26 = V_1; SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_27 = V_0; NullCheck(L_25); Dictionary_2_Add_m889D62A946A279647B91BF4A4D8B1B2C4DBBCDF3(L_25, L_26, L_27, Dictionary_2_Add_m889D62A946A279647B91BF4A4D8B1B2C4DBBCDF3_RuntimeMethod_var); } IL_00a3: { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_28 = V_0; bool L_29; L_29 = DtdParser_get_ParsingInternalSubset_mF2EDC8896A9EF87EFC4BFB9DC631B3079DF05399(__this, NULL); NullCheck(L_28); SchemaDeclBase_set_IsDeclaredInExternal_m3F57DA2AD9DBAC1C431293C53E4E052A8E915D96_inline(L_28, (bool)((((int32_t)L_29) == ((int32_t)0))? 1 : 0), NULL); int32_t L_30; L_30 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)1, NULL); V_3 = L_30; int32_t L_31 = V_3; if ((((int32_t)L_31) == ((int32_t)((int32_t)27)))) { goto IL_00e9; } } { int32_t L_32 = V_3; if ((((int32_t)L_32) == ((int32_t)((int32_t)44)))) { goto IL_00dc; } } { int32_t L_33 = V_3; if ((!(((uint32_t)L_33) == ((uint32_t)((int32_t)45))))) { goto IL_0181; } } { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_34 = V_0; il2cpp_codegen_runtime_class_init_inline(ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE_il2cpp_TypeInfo_var); ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* L_35 = ((ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE_StaticFields*)il2cpp_codegen_static_fields_for(ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE_il2cpp_TypeInfo_var))->___Empty_3; NullCheck(L_34); SchemaElementDecl_set_ContentValidator_m9670779D24E74D3F1272FB1C378371719F9DFB0E_inline(L_34, L_35, NULL); goto IL_0164; } IL_00dc: { SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_36 = V_0; il2cpp_codegen_runtime_class_init_inline(ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE_il2cpp_TypeInfo_var); ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* L_37 = ((ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE_StaticFields*)il2cpp_codegen_static_fields_for(ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE_il2cpp_TypeInfo_var))->___Any_6; NullCheck(L_36); SchemaElementDecl_set_ContentValidator_m9670779D24E74D3F1272FB1C378371719F9DFB0E_inline(L_36, L_37, NULL); goto IL_0164; } IL_00e9: { int32_t L_38 = __this->___currentEntityId_22; V_2 = L_38; int32_t L_39; L_39 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); V_4 = L_39; int32_t L_40 = V_4; if ((((int32_t)L_40) == ((int32_t)((int32_t)9)))) { goto IL_0134; } } { int32_t L_41 = V_4; if ((!(((uint32_t)L_41) == ((uint32_t)((int32_t)42))))) { goto IL_0181; } } { ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_42 = (ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF*)il2cpp_codegen_object_new(ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF_il2cpp_TypeInfo_var); NullCheck(L_42); ParticleContentValidator__ctor_m3B7E26A1371336703F3B8B1A1A721C139E1E8078(L_42, 3, NULL); V_5 = L_42; ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_43 = V_5; NullCheck(L_43); ParticleContentValidator_Start_mA9E5F5D3C90F19E23A9C60551E105DAE86DF45AC(L_43, NULL); ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_44 = V_5; NullCheck(L_44); ParticleContentValidator_OpenGroup_mB1BC05C6D2410C538451E560BBB054D89259FD38(L_44, NULL); ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_45 = V_5; int32_t L_46 = V_2; DtdParser_ParseElementMixedContent_mF075DA5FDA964DB2A05D84C79204A37A2F4453D6(__this, L_45, L_46, NULL); SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_47 = V_0; ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_48 = V_5; NullCheck(L_48); ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* L_49; L_49 = ParticleContentValidator_Finish_mB1589F15458B320D1A6DC7179BB70F5C616ED192(L_48, (bool)1, NULL); NullCheck(L_47); SchemaElementDecl_set_ContentValidator_m9670779D24E74D3F1272FB1C378371719F9DFB0E_inline(L_47, L_49, NULL); goto IL_0164; } IL_0134: { V_6 = (ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF*)NULL; ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_50 = (ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF*)il2cpp_codegen_object_new(ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF_il2cpp_TypeInfo_var); NullCheck(L_50); ParticleContentValidator__ctor_m3B7E26A1371336703F3B8B1A1A721C139E1E8078(L_50, 2, NULL); V_6 = L_50; ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_51 = V_6; NullCheck(L_51); ParticleContentValidator_Start_mA9E5F5D3C90F19E23A9C60551E105DAE86DF45AC(L_51, NULL); ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_52 = V_6; NullCheck(L_52); ParticleContentValidator_OpenGroup_mB1BC05C6D2410C538451E560BBB054D89259FD38(L_52, NULL); ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_53 = V_6; int32_t L_54 = V_2; DtdParser_ParseElementOnlyContent_m8227BEF84B1E93AE070877C03E77C9BA204F5F35(__this, L_53, L_54, NULL); SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* L_55 = V_0; ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_56 = V_6; NullCheck(L_56); ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* L_57; L_57 = ParticleContentValidator_Finish_mB1589F15458B320D1A6DC7179BB70F5C616ED192(L_56, (bool)1, NULL); NullCheck(L_55); SchemaElementDecl_set_ContentValidator_m9670779D24E74D3F1272FB1C378371719F9DFB0E_inline(L_55, L_57, NULL); } IL_0164: { int32_t L_58; L_58 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); if ((((int32_t)L_58) == ((int32_t)((int32_t)29)))) { goto IL_0180; } } { int32_t L_59 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mBCA8EBEE9CF9EC08AEEB6CA14BF75492689BF982(__this, L_59, _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5, NULL); } IL_0180: { return; } IL_0181: { DtdParser_OnUnexpectedError_m48B2712A07C18494946123F9947ED17F270DC4B6(__this, NULL); return; } } // System.Void System.Xml.DtdParser::ParseElementOnlyContent(System.Xml.Schema.ParticleContentValidator,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseElementOnlyContent_m8227BEF84B1E93AE070877C03E77C9BA204F5F35 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* ___0_pcv, int32_t ___1_startParenEntityId, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Peek_m0C074AC550A3838F3407E0C3699055604445DB7A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_mB31BECBC0F3FF13AE5D0EC3C5F3738DBCA64F93D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_m5E3D559C3BC63ADA67D5F6B8574A292AA3703C70_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1__ctor_m859E9CA447DBF5EE9DD9D0ECDBDA9D98D49CD0CA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_get_Count_mF5D38961851C67F431DDC6AA9FA9BC2BE63DBE2A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD259EE6AB580E33090940BF472020FA738C8617A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF2F28D0DCD35D90C0A1A591C99FD816AC6E36CB9); s_Il2CppMethodInitialized = true; } Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8* V_0 = NULL; ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* V_1 = NULL; int32_t V_2 = 0; { Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8* L_0 = (Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8*)il2cpp_codegen_object_new(Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8_il2cpp_TypeInfo_var); NullCheck(L_0); Stack_1__ctor_m859E9CA447DBF5EE9DD9D0ECDBDA9D98D49CD0CA(L_0, Stack_1__ctor_m859E9CA447DBF5EE9DD9D0ECDBDA9D98D49CD0CA_RuntimeMethod_var); V_0 = L_0; int32_t L_1 = ___1_startParenEntityId; ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* L_2 = (ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8*)il2cpp_codegen_object_new(ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8_il2cpp_TypeInfo_var); NullCheck(L_2); ParseElementOnlyContent_LocalFrame__ctor_m7E1F8F1E449038C870E9A418F8597ECFE5E6FDD1(L_2, L_1, NULL); V_1 = L_2; Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8* L_3 = V_0; ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* L_4 = V_1; NullCheck(L_3); Stack_1_Push_m5E3D559C3BC63ADA67D5F6B8574A292AA3703C70(L_3, L_4, Stack_1_Push_m5E3D559C3BC63ADA67D5F6B8574A292AA3703C70_RuntimeMethod_var); } IL_0014: { int32_t L_5; L_5 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); V_2 = L_5; int32_t L_6 = V_2; if ((((int32_t)L_6) == ((int32_t)((int32_t)23)))) { goto IL_0030; } } { int32_t L_7 = V_2; if ((((int32_t)L_7) == ((int32_t)((int32_t)27)))) { goto IL_0047; } } { int32_t L_8 = V_2; if ((((int32_t)L_8) == ((int32_t)((int32_t)29)))) { goto IL_0062; } } { goto IL_0148; } IL_0030: { ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_9 = ___0_pcv; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_10; L_10 = DtdParser_GetNameQualified_m90D851C0C284B3597B168491C6824733D42E1979(__this, (bool)1, NULL); NullCheck(L_9); ParticleContentValidator_AddName_m664A347C22696BE8E7587622B923EEF8DBAD2025(L_9, L_10, NULL, NULL); ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_11 = ___0_pcv; DtdParser_ParseHowMany_mEA47F6A972504F1CE7D55AFACC025D61A0ED3126(__this, L_11, NULL); goto IL_0078; } IL_0047: { ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_12 = ___0_pcv; NullCheck(L_12); ParticleContentValidator_OpenGroup_mB1BC05C6D2410C538451E560BBB054D89259FD38(L_12, NULL); int32_t L_13 = __this->___currentEntityId_22; ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* L_14 = (ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8*)il2cpp_codegen_object_new(ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8_il2cpp_TypeInfo_var); NullCheck(L_14); ParseElementOnlyContent_LocalFrame__ctor_m7E1F8F1E449038C870E9A418F8597ECFE5E6FDD1(L_14, L_13, NULL); V_1 = L_14; Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8* L_15 = V_0; ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* L_16 = V_1; NullCheck(L_15); Stack_1_Push_m5E3D559C3BC63ADA67D5F6B8574A292AA3703C70(L_15, L_16, Stack_1_Push_m5E3D559C3BC63ADA67D5F6B8574A292AA3703C70_RuntimeMethod_var); goto IL_0014; } IL_0062: { int32_t L_17 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_17, _stringLiteralF2F28D0DCD35D90C0A1A591C99FD816AC6E36CB9, NULL); goto IL_014e; } IL_0078: { int32_t L_18; L_18 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); V_2 = L_18; int32_t L_19 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_19, ((int32_t)28)))) { case 0: { goto IL_00f9; } case 1: { goto IL_0135; } case 2: { goto IL_00cb; } } } { int32_t L_20 = V_2; if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)43))))) { goto IL_0148; } } { ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* L_21 = V_1; NullCheck(L_21); int32_t L_22 = L_21->___parsingSchema_1; if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)30))))) { goto IL_00b8; } } { int32_t L_23 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_23, _stringLiteralF2F28D0DCD35D90C0A1A591C99FD816AC6E36CB9, NULL); } IL_00b8: { ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_24 = ___0_pcv; NullCheck(L_24); ParticleContentValidator_AddSequence_m4E844C5C7E35EB35FD72B4A18F0FB55198EBA7DA(L_24, NULL); ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* L_25 = V_1; NullCheck(L_25); L_25->___parsingSchema_1 = ((int32_t)43); goto IL_0014; } IL_00cb: { ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* L_26 = V_1; NullCheck(L_26); int32_t L_27 = L_26->___parsingSchema_1; if ((!(((uint32_t)L_27) == ((uint32_t)((int32_t)43))))) { goto IL_00e6; } } { int32_t L_28 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_28, _stringLiteralF2F28D0DCD35D90C0A1A591C99FD816AC6E36CB9, NULL); } IL_00e6: { ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_29 = ___0_pcv; NullCheck(L_29); ParticleContentValidator_AddChoice_mC56136642F8957A5E0450EBFECD4DC45CC5E0A60(L_29, NULL); ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* L_30 = V_1; NullCheck(L_30); L_30->___parsingSchema_1 = ((int32_t)30); goto IL_0014; } IL_00f9: { ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_31 = ___0_pcv; NullCheck(L_31); ParticleContentValidator_CloseGroup_mA124590CE4ABB10E0E03B9EF146A249731616B30(L_31, NULL); bool L_32 = __this->___validate_8; if (!L_32) { goto IL_012c; } } { int32_t L_33 = __this->___currentEntityId_22; ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* L_34 = V_1; NullCheck(L_34); int32_t L_35 = L_34->___startParenEntityId_0; if ((((int32_t)L_33) == ((int32_t)L_35))) { goto IL_012c; } } { int32_t L_36 = __this->___curPos_13; String_t* L_37 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F(__this, L_36, 0, _stringLiteralD259EE6AB580E33090940BF472020FA738C8617A, L_37, NULL); } IL_012c: { ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_38 = ___0_pcv; DtdParser_ParseHowMany_mEA47F6A972504F1CE7D55AFACC025D61A0ED3126(__this, L_38, NULL); goto IL_014e; } IL_0135: { int32_t L_39 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_39, _stringLiteralF2F28D0DCD35D90C0A1A591C99FD816AC6E36CB9, NULL); goto IL_014e; } IL_0148: { DtdParser_OnUnexpectedError_m48B2712A07C18494946123F9947ED17F270DC4B6(__this, NULL); } IL_014e: { Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8* L_40 = V_0; NullCheck(L_40); ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* L_41; L_41 = Stack_1_Pop_mB31BECBC0F3FF13AE5D0EC3C5F3738DBCA64F93D(L_40, Stack_1_Pop_mB31BECBC0F3FF13AE5D0EC3C5F3738DBCA64F93D_RuntimeMethod_var); Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8* L_42 = V_0; NullCheck(L_42); int32_t L_43; L_43 = Stack_1_get_Count_mF5D38961851C67F431DDC6AA9FA9BC2BE63DBE2A_inline(L_42, Stack_1_get_Count_mF5D38961851C67F431DDC6AA9FA9BC2BE63DBE2A_RuntimeMethod_var); if ((((int32_t)L_43) <= ((int32_t)0))) { goto IL_016a; } } { Stack_1_t6854CCAF9B3A062A15E0A1550AF2BC6A0615C9E8* L_44 = V_0; NullCheck(L_44); ParseElementOnlyContent_LocalFrame_t2E1C7AB8128FBBEE579A2DFCC72CC17268194CA8* L_45; L_45 = Stack_1_Peek_m0C074AC550A3838F3407E0C3699055604445DB7A(L_44, Stack_1_Peek_m0C074AC550A3838F3407E0C3699055604445DB7A_RuntimeMethod_var); V_1 = L_45; goto IL_0078; } IL_016a: { return; } } // System.Void System.Xml.DtdParser::ParseHowMany(System.Xml.Schema.ParticleContentValidator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseHowMany_mEA47F6A972504F1CE7D55AFACC025D61A0ED3126 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* ___0_pcv, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0; L_0 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); V_0 = L_0; int32_t L_1 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, ((int32_t)39)))) { case 0: { goto IL_001e; } case 1: { goto IL_0025; } case 2: { goto IL_002c; } } } { return; } IL_001e: { ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_2 = ___0_pcv; NullCheck(L_2); ParticleContentValidator_AddStar_mEE53402121A554278856D01DD84040B0DAF06017(L_2, NULL); return; } IL_0025: { ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_3 = ___0_pcv; NullCheck(L_3); ParticleContentValidator_AddQMark_m55D3B074D8781502F6A5093A434D1950C804A155(L_3, NULL); return; } IL_002c: { ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_4 = ___0_pcv; NullCheck(L_4); ParticleContentValidator_AddPlus_mA6877E25D2F1BBC78C9A16AE29B12F9CE955C7C5(L_4, NULL); return; } } // System.Void System.Xml.DtdParser::ParseElementMixedContent(System.Xml.Schema.ParticleContentValidator,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseElementMixedContent_mF075DA5FDA964DB2A05D84C79204A37A2F4453D6 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* ___0_pcv, int32_t ___1_startParenEntityId, 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*)&_stringLiteral412CDD51CEFF0076D98025A6A06AA2AF9F83EF80); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD259EE6AB580E33090940BF472020FA738C8617A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE280D065A824A791F8305234D3E093FC9A5A90C7); s_Il2CppMethodInitialized = true; } bool V_0 = false; int32_t V_1 = 0; int32_t V_2 = 0; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_3 = NULL; int32_t V_4 = 0; { V_0 = (bool)0; V_1 = (-1); int32_t L_0 = __this->___currentEntityId_22; V_2 = L_0; } IL_000b: { int32_t L_1; L_1 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); V_4 = L_1; int32_t L_2 = V_4; if ((((int32_t)L_2) == ((int32_t)((int32_t)28)))) { goto IL_0025; } } { int32_t L_3 = V_4; if ((((int32_t)L_3) == ((int32_t)((int32_t)30)))) { goto IL_007e; } } { goto IL_0128; } IL_0025: { ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_4 = ___0_pcv; NullCheck(L_4); ParticleContentValidator_CloseGroup_mA124590CE4ABB10E0E03B9EF146A249731616B30(L_4, NULL); bool L_5 = __this->___validate_8; if (!L_5) { goto IL_0053; } } { int32_t L_6 = __this->___currentEntityId_22; int32_t L_7 = ___1_startParenEntityId; if ((((int32_t)L_6) == ((int32_t)L_7))) { goto IL_0053; } } { int32_t L_8 = __this->___curPos_13; String_t* L_9 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F(__this, L_8, 0, _stringLiteralD259EE6AB580E33090940BF472020FA738C8617A, L_9, NULL); } IL_0053: { int32_t L_10; L_10 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); bool L_11 = V_0; if (!((int32_t)(((((int32_t)L_10) == ((int32_t)((int32_t)39)))? 1 : 0)&(int32_t)L_11))) { goto IL_0069; } } { ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_12 = ___0_pcv; NullCheck(L_12); ParticleContentValidator_AddStar_mEE53402121A554278856D01DD84040B0DAF06017(L_12, NULL); return; } IL_0069: { bool L_13 = V_0; if (!L_13) { goto IL_007d; } } { int32_t L_14 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mBCA8EBEE9CF9EC08AEEB6CA14BF75492689BF982(__this, L_14, _stringLiteralE280D065A824A791F8305234D3E093FC9A5A90C7, NULL); } IL_007d: { return; } IL_007e: { bool L_15 = V_0; if (L_15) { goto IL_0085; } } { V_0 = (bool)1; goto IL_008b; } IL_0085: { ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_16 = ___0_pcv; NullCheck(L_16); ParticleContentValidator_AddChoice_mC56136642F8957A5E0450EBFECD4DC45CC5E0A60(L_16, NULL); } IL_008b: { bool L_17 = __this->___validate_8; if (!L_17) { goto IL_00b5; } } { int32_t L_18 = __this->___currentEntityId_22; V_1 = L_18; int32_t L_19 = V_2; int32_t L_20 = V_1; if ((((int32_t)L_19) >= ((int32_t)L_20))) { goto IL_00b5; } } { int32_t L_21 = __this->___curPos_13; String_t* L_22 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F(__this, L_21, 0, _stringLiteralD259EE6AB580E33090940BF472020FA738C8617A, L_22, NULL); } IL_00b5: { int32_t L_23; L_23 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)23))))) { goto IL_0128; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_24; L_24 = DtdParser_GetNameQualified_m90D851C0C284B3597B168491C6824733D42E1979(__this, (bool)1, NULL); V_3 = L_24; ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_25 = ___0_pcv; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_26 = V_3; NullCheck(L_25); bool L_27; L_27 = ParticleContentValidator_Exists_mBCB763C6C4DA1D4732D98E21ECECFA2987132B9E(L_25, L_26, NULL); if (!L_27) { goto IL_00eb; } } { bool L_28 = __this->___validate_8; if (!L_28) { goto IL_00eb; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_29 = V_3; NullCheck(L_29); String_t* L_30; L_30 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_29); DtdParser_SendValidationEvent_m79ECFFB3D03874AE9095BA539FC8B7191018E58B(__this, 0, _stringLiteral412CDD51CEFF0076D98025A6A06AA2AF9F83EF80, L_30, NULL); } IL_00eb: { ParticleContentValidator_tF4F0D4B27A8136F6A679933713C879BFBD60D1AF* L_31 = ___0_pcv; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_32 = V_3; NullCheck(L_31); ParticleContentValidator_AddName_m664A347C22696BE8E7587622B923EEF8DBAD2025(L_31, L_32, NULL, NULL); bool L_33 = __this->___validate_8; if (!L_33) { goto IL_000b; } } { int32_t L_34 = __this->___currentEntityId_22; V_2 = L_34; int32_t L_35 = V_2; int32_t L_36 = V_1; if ((((int32_t)L_35) >= ((int32_t)L_36))) { goto IL_000b; } } { int32_t L_37 = __this->___curPos_13; String_t* L_38 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F(__this, L_37, 0, _stringLiteralD259EE6AB580E33090940BF472020FA738C8617A, L_38, NULL); goto IL_000b; } IL_0128: { DtdParser_OnUnexpectedError_m48B2712A07C18494946123F9947ED17F270DC4B6(__this, NULL); goto IL_000b; } } // System.Void System.Xml.DtdParser::ParseEntityDecl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseEntityDecl_mDDF946172429F7DBFB301FE5F113084713B48B57 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m0BD19F784F1A789C4FE92B64782BE1667D25902B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_mA166669C5531C48393C18457E76480F075E923CA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_mE95F6F2001E3CA07C37D145E3D22F9A261874206_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral744DBAE461E32AD381B1A38CE73D4E473E600816); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA02A8489B78BE60779EEA12413113D4FBC8C5E36); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5); s_Il2CppMethodInitialized = true; } bool V_0 = false; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* V_1 = NULL; int32_t V_2 = 0; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_3 = NULL; int32_t V_4 = 0; String_t* V_5 = NULL; String_t* V_6 = NULL; String_t* V_7 = NULL; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* G_B5_0 = NULL; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* G_B4_0 = NULL; String_t* G_B6_0 = NULL; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* G_B6_1 = NULL; { V_0 = (bool)0; V_1 = (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7*)NULL; int32_t L_0; L_0 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)1, NULL); V_4 = L_0; int32_t L_1 = V_4; if ((((int32_t)L_1) == ((int32_t)((int32_t)24)))) { goto IL_002c; } } { int32_t L_2 = V_4; if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)38))))) { goto IL_01d6; } } { V_0 = (bool)1; int32_t L_3; L_3 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)1, NULL); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)24))))) { goto IL_01d6; } } IL_002c: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4; L_4 = DtdParser_GetNameQualified_m90D851C0C284B3597B168491C6824733D42E1979(__this, (bool)0, NULL); V_3 = L_4; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_5 = V_3; bool L_6 = V_0; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_7 = (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7*)il2cpp_codegen_object_new(SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7_il2cpp_TypeInfo_var); NullCheck(L_7); SchemaEntity__ctor_m7444C0D862E0CC6A87EE2B39B4D058F657AA299C(L_7, L_5, L_6, NULL); V_1 = L_7; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_8 = V_1; String_t* L_9; L_9 = DtdParser_get_BaseUriStr_m1A09B1A26119F87C048748007B59685399A1A0AE(__this, NULL); NullCheck(L_8); SchemaEntity_set_BaseURI_mFC468DD1928AD24B87E405653FBB189A67042C61_inline(L_8, L_9, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_10 = V_1; String_t* L_11 = __this->___externalDtdBaseUri_30; NullCheck(L_11); int32_t L_12; L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL); G_B4_0 = L_10; if (!L_12) { G_B5_0 = L_10; goto IL_005e; } } { String_t* L_13 = __this->___externalDtdBaseUri_30; G_B6_0 = L_13; G_B6_1 = G_B4_0; goto IL_0064; } IL_005e: { String_t* L_14 = __this->___documentBaseUri_29; G_B6_0 = L_14; G_B6_1 = G_B5_0; } IL_0064: { NullCheck(G_B6_1); SchemaEntity_set_DeclaredURI_m0411EACB64E056C515ADBBD2118036872D76AC96_inline(G_B6_1, G_B6_0, NULL); bool L_15 = V_0; if (!L_15) { goto IL_0093; } } { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_16 = __this->___schemaInfo_3; NullCheck(L_16); Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* L_17; L_17 = SchemaInfo_get_ParameterEntities_m54F4C298FA2B2AAE10FAA43965E9DD2C84E76FBB(L_16, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_18 = V_3; NullCheck(L_17); bool L_19; L_19 = Dictionary_2_ContainsKey_mA166669C5531C48393C18457E76480F075E923CA(L_17, L_18, Dictionary_2_ContainsKey_mA166669C5531C48393C18457E76480F075E923CA_RuntimeMethod_var); if (L_19) { goto IL_00b8; } } { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_20 = __this->___schemaInfo_3; NullCheck(L_20); Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* L_21; L_21 = SchemaInfo_get_ParameterEntities_m54F4C298FA2B2AAE10FAA43965E9DD2C84E76FBB(L_20, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_22 = V_3; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_23 = V_1; NullCheck(L_21); Dictionary_2_Add_m0BD19F784F1A789C4FE92B64782BE1667D25902B(L_21, L_22, L_23, Dictionary_2_Add_m0BD19F784F1A789C4FE92B64782BE1667D25902B_RuntimeMethod_var); goto IL_00b8; } IL_0093: { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_24 = __this->___schemaInfo_3; NullCheck(L_24); Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* L_25; L_25 = SchemaInfo_get_GeneralEntities_mB8E4E7E02EB79C03BDEEB06638EBFA631DE9C9D2(L_24, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_26 = V_3; NullCheck(L_25); bool L_27; L_27 = Dictionary_2_ContainsKey_mA166669C5531C48393C18457E76480F075E923CA(L_25, L_26, Dictionary_2_ContainsKey_mA166669C5531C48393C18457E76480F075E923CA_RuntimeMethod_var); if (L_27) { goto IL_00b8; } } { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_28 = __this->___schemaInfo_3; NullCheck(L_28); Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* L_29; L_29 = SchemaInfo_get_GeneralEntities_mB8E4E7E02EB79C03BDEEB06638EBFA631DE9C9D2(L_28, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_30 = V_3; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_31 = V_1; NullCheck(L_29); Dictionary_2_Add_m0BD19F784F1A789C4FE92B64782BE1667D25902B(L_29, L_30, L_31, Dictionary_2_Add_m0BD19F784F1A789C4FE92B64782BE1667D25902B_RuntimeMethod_var); } IL_00b8: { SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_32 = V_1; bool L_33; L_33 = DtdParser_get_ParsingInternalSubset_mF2EDC8896A9EF87EFC4BFB9DC631B3079DF05399(__this, NULL); NullCheck(L_32); SchemaEntity_set_DeclaredInExternal_mE6A46D7897D9CDBF7400135BF42A153AB313D66F_inline(L_32, (bool)((((int32_t)L_33) == ((int32_t)0))? 1 : 0), NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_34 = V_1; NullCheck(L_34); SchemaEntity_set_ParsingInProgress_m6DA2762E08D1C44455A0E1CF86B7B208A6BD1480_inline(L_34, (bool)1, NULL); int32_t L_35; L_35 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)1, NULL); V_2 = L_35; int32_t L_36 = V_2; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, ((int32_t)33)))) > ((uint32_t)1)))) { goto IL_00ea; } } { int32_t L_37 = V_2; if ((((int32_t)L_37) == ((int32_t)((int32_t)35)))) { goto IL_0195; } } { goto IL_01d6; } IL_00ea: { int32_t L_38 = V_2; DtdParser_ParseExternalId_m2B6C7C539D6B9BAA81D2D39DD40915B0F8EE1680(__this, L_38, ((int32_t)13), (&V_6), (&V_5), NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_39 = V_1; NullCheck(L_39); SchemaEntity_set_IsExternal_mEA049015A7FB2840CFC3870A2F41FAC927612D12_inline(L_39, (bool)1, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_40 = V_1; String_t* L_41 = V_5; NullCheck(L_40); SchemaEntity_set_Url_m39051E42954FC32EF9283C192653BA148CB41249(L_40, L_41, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_42 = V_1; String_t* L_43 = V_6; NullCheck(L_42); SchemaEntity_set_Pubid_m38932D2D6C40B066741B4F3C85478DA7A49F1FC2_inline(L_42, L_43, NULL); int32_t L_44; L_44 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); if ((!(((uint32_t)L_44) == ((uint32_t)((int32_t)37))))) { goto IL_01c3; } } { bool L_45 = V_0; if (!L_45) { goto IL_0132; } } { int32_t L_46 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mBCA8EBEE9CF9EC08AEEB6CA14BF75492689BF982(__this, ((int32_t)il2cpp_codegen_subtract(L_46, 5)), _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5, NULL); } IL_0132: { bool L_47 = __this->___whitespaceSeen_17; if (L_47) { goto IL_0152; } } { int32_t L_48 = __this->___curPos_13; DtdParser_Throw_mA82BAD834C0CCDE0E9325996E4560953761B62D0(__this, ((int32_t)il2cpp_codegen_subtract(L_48, 5)), _stringLiteralA02A8489B78BE60779EEA12413113D4FBC8C5E36, _stringLiteral744DBAE461E32AD381B1A38CE73D4E473E600816, NULL); } IL_0152: { int32_t L_49; L_49 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)1, NULL); if ((!(((uint32_t)L_49) == ((uint32_t)((int32_t)24))))) { goto IL_01d6; } } { SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_50 = V_1; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_51; L_51 = DtdParser_GetNameQualified_m90D851C0C284B3597B168491C6824733D42E1979(__this, (bool)0, NULL); NullCheck(L_50); SchemaEntity_set_NData_mB7C417287EC6223758560683CFEF6961CCA9DD4F_inline(L_50, L_51, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_52 = V_1; NullCheck(L_52); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_53; L_53 = SchemaEntity_get_NData_m7B05467BF6357AB27C1DAFBFE27F9720C79CEC3C_inline(L_52, NULL); NullCheck(L_53); String_t* L_54; L_54 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_53, NULL); V_7 = L_54; SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_55 = __this->___schemaInfo_3; NullCheck(L_55); Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* L_56; L_56 = SchemaInfo_get_Notations_m922CD199C8750B3D6F5662DB0EA272805A7EA3A1(L_55, NULL); String_t* L_57 = V_7; NullCheck(L_56); bool L_58; L_58 = Dictionary_2_ContainsKey_mE95F6F2001E3CA07C37D145E3D22F9A261874206(L_56, L_57, Dictionary_2_ContainsKey_mE95F6F2001E3CA07C37D145E3D22F9A261874206_RuntimeMethod_var); if (L_58) { goto IL_01c3; } } { String_t* L_59 = V_7; DtdParser_AddUndeclaredNotation_mF35809833D2C33608CD892441E552FAEA80F4A70(__this, L_59, NULL); goto IL_01c3; } IL_0195: { SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_60 = V_1; String_t* L_61; L_61 = DtdParser_GetValue_m3A56A10A245D1CDB50CCBFE897A8BA1AB3F5F622(__this, NULL); NullCheck(L_60); SchemaEntity_set_Text_m62FCB261049A0B400D7C27470AFC73EA227861AF(L_60, L_61, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_62 = V_1; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_63 = (&__this->___literalLineInfo_27); int32_t L_64 = L_63->___lineNo_0; NullCheck(L_62); SchemaEntity_set_Line_m3F4EBBBF917403C4F93292B873B64063DD3850F3_inline(L_62, L_64, NULL); SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_65 = V_1; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_66 = (&__this->___literalLineInfo_27); int32_t L_67 = L_66->___linePos_1; NullCheck(L_65); SchemaEntity_set_Pos_mD4124AF35C72621D401E02AED280FF8A8934FABB_inline(L_65, L_67, NULL); } IL_01c3: { int32_t L_68; L_68 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); if ((!(((uint32_t)L_68) == ((uint32_t)((int32_t)29))))) { goto IL_01d6; } } { SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_69 = V_1; NullCheck(L_69); SchemaEntity_set_ParsingInProgress_m6DA2762E08D1C44455A0E1CF86B7B208A6BD1480_inline(L_69, (bool)0, NULL); return; } IL_01d6: { DtdParser_OnUnexpectedError_m48B2712A07C18494946123F9947ED17F270DC4B6(__this, NULL); return; } } // System.Void System.Xml.DtdParser::ParseNotationDecl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseNotationDecl_mBCCE845466278E35DDADC504075E85C358FA9EC1 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m1BD6D03E43DE090315E2B473EC6665083565F73E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_mE95F6F2001E3CA07C37D145E3D22F9A261874206_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m620783E54E80B6F38403C978D1134BC1613768B2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral34202956739DA5FD8C25F589724F7651D367199C); s_Il2CppMethodInitialized = true; } XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_0 = NULL; SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* V_1 = NULL; int32_t V_2 = 0; String_t* V_3 = NULL; String_t* V_4 = NULL; { int32_t L_0; L_0 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)1, NULL); if ((((int32_t)L_0) == ((int32_t)((int32_t)24)))) { goto IL_0011; } } { DtdParser_OnUnexpectedError_m48B2712A07C18494946123F9947ED17F270DC4B6(__this, NULL); } IL_0011: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_1; L_1 = DtdParser_GetNameQualified_m90D851C0C284B3597B168491C6824733D42E1979(__this, (bool)0, NULL); V_0 = L_1; V_1 = (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269*)NULL; SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_2 = __this->___schemaInfo_3; NullCheck(L_2); Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* L_3; L_3 = SchemaInfo_get_Notations_m922CD199C8750B3D6F5662DB0EA272805A7EA3A1(L_2, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4 = V_0; NullCheck(L_4); String_t* L_5; L_5 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_4, NULL); NullCheck(L_3); bool L_6; L_6 = Dictionary_2_ContainsKey_mE95F6F2001E3CA07C37D145E3D22F9A261874206(L_3, L_5, Dictionary_2_ContainsKey_mE95F6F2001E3CA07C37D145E3D22F9A261874206_RuntimeMethod_var); if (L_6) { goto IL_0072; } } { Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698* L_7 = __this->___undeclaredNotations_31; if (!L_7) { goto IL_004d; } } { Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698* L_8 = __this->___undeclaredNotations_31; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_9 = V_0; NullCheck(L_9); String_t* L_10; L_10 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_9, NULL); NullCheck(L_8); bool L_11; L_11 = Dictionary_2_Remove_m620783E54E80B6F38403C978D1134BC1613768B2(L_8, L_10, Dictionary_2_Remove_m620783E54E80B6F38403C978D1134BC1613768B2_RuntimeMethod_var); } IL_004d: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_12 = V_0; SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* L_13 = (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269*)il2cpp_codegen_object_new(SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269_il2cpp_TypeInfo_var); NullCheck(L_13); SchemaNotation__ctor_m2C7E7540A7A33F4B18E31AEB896806C301466457(L_13, L_12, NULL); V_1 = L_13; SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_14 = __this->___schemaInfo_3; NullCheck(L_14); Dictionary_2_t27DD7BC6C615A002762F178DF4446D10EF4486A1* L_15; L_15 = SchemaInfo_get_Notations_m922CD199C8750B3D6F5662DB0EA272805A7EA3A1(L_14, NULL); SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* L_16 = V_1; NullCheck(L_16); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_17; L_17 = SchemaNotation_get_Name_mF5CA9EBBD17ADAB3A31FC36FDB03B236C4847FCD_inline(L_16, NULL); NullCheck(L_17); String_t* L_18; L_18 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_17, NULL); SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* L_19 = V_1; NullCheck(L_15); Dictionary_2_Add_m1BD6D03E43DE090315E2B473EC6665083565F73E(L_15, L_18, L_19, Dictionary_2_Add_m1BD6D03E43DE090315E2B473EC6665083565F73E_RuntimeMethod_var); goto IL_009e; } IL_0072: { bool L_20 = __this->___validate_8; if (!L_20) { goto IL_009e; } } { int32_t L_21 = __this->___curPos_13; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_22 = V_0; NullCheck(L_22); String_t* L_23; L_23 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_22, NULL); NullCheck(L_23); int32_t L_24; L_24 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_23, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_25 = V_0; NullCheck(L_25); String_t* L_26; L_26 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_25, NULL); DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F(__this, ((int32_t)il2cpp_codegen_subtract(L_21, L_24)), 0, _stringLiteral34202956739DA5FD8C25F589724F7651D367199C, L_26, NULL); } IL_009e: { int32_t L_27; L_27 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)1, NULL); V_2 = L_27; int32_t L_28 = V_2; if ((((int32_t)L_28) == ((int32_t)((int32_t)34)))) { goto IL_00b0; } } { int32_t L_29 = V_2; if ((!(((uint32_t)L_29) == ((uint32_t)((int32_t)33))))) { goto IL_00d0; } } IL_00b0: { int32_t L_30 = V_2; DtdParser_ParseExternalId_m2B6C7C539D6B9BAA81D2D39DD40915B0F8EE1680(__this, L_30, 8, (&V_3), (&V_4), NULL); SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* L_31 = V_1; if (!L_31) { goto IL_00d6; } } { SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* L_32 = V_1; String_t* L_33 = V_4; NullCheck(L_32); SchemaNotation_set_SystemLiteral_mE508FA22D4C2368801F3A5AA2B5797F1221234CD_inline(L_32, L_33, NULL); SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* L_34 = V_1; String_t* L_35 = V_3; NullCheck(L_34); SchemaNotation_set_Pubid_m3829B9FB66E7CB42DBAE04A487127361BFF4357B_inline(L_34, L_35, NULL); goto IL_00d6; } IL_00d0: { DtdParser_OnUnexpectedError_m48B2712A07C18494946123F9947ED17F270DC4B6(__this, NULL); } IL_00d6: { int32_t L_36; L_36 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); if ((((int32_t)L_36) == ((int32_t)((int32_t)29)))) { goto IL_00e7; } } { DtdParser_OnUnexpectedError_m48B2712A07C18494946123F9947ED17F270DC4B6(__this, NULL); } IL_00e7: { return; } } // System.Void System.Xml.DtdParser::AddUndeclaredNotation(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_AddUndeclaredNotation_mF35809833D2C33608CD892441E552FAEA80F4A70 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, String_t* ___0_notationName, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_mF9A60D8A0C976AFEE10941219915771AE92C4AA2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mF8AA7901FEFABA7D6FCE95EB586FD42E58B1F0A7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mE03838E6B9827A6EFC4AF300FBEFAEFECFC20210_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* V_0 = NULL; UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* V_1 = NULL; { Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698* L_0 = __this->___undeclaredNotations_31; if (L_0) { goto IL_0013; } } { Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698* L_1 = (Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698*)il2cpp_codegen_object_new(Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698_il2cpp_TypeInfo_var); NullCheck(L_1); Dictionary_2__ctor_mE03838E6B9827A6EFC4AF300FBEFAEFECFC20210(L_1, Dictionary_2__ctor_mE03838E6B9827A6EFC4AF300FBEFAEFECFC20210_RuntimeMethod_var); __this->___undeclaredNotations_31 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___undeclaredNotations_31), (void*)L_1); } IL_0013: { String_t* L_2 = ___0_notationName; int32_t L_3; L_3 = DtdParser_get_LineNo_m4D78AF8EFE8D05D61D89C0CC1C3CB46D0263E246(__this, NULL); int32_t L_4; L_4 = DtdParser_get_LinePos_m2FDB78628E84297247B78BA60AF304C084790005(__this, NULL); String_t* L_5 = ___0_notationName; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL); UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* L_7 = (UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E*)il2cpp_codegen_object_new(UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E_il2cpp_TypeInfo_var); NullCheck(L_7); UndeclaredNotation__ctor_m6237B782B12B39FB8BF173A6ABA4C298D685F300(L_7, L_2, L_3, ((int32_t)il2cpp_codegen_subtract(L_4, L_6)), NULL); V_0 = L_7; Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698* L_8 = __this->___undeclaredNotations_31; String_t* L_9 = ___0_notationName; NullCheck(L_8); bool L_10; L_10 = Dictionary_2_TryGetValue_mF8AA7901FEFABA7D6FCE95EB586FD42E58B1F0A7(L_8, L_9, (&V_1), Dictionary_2_TryGetValue_mF8AA7901FEFABA7D6FCE95EB586FD42E58B1F0A7_RuntimeMethod_var); if (!L_10) { goto IL_0051; } } { UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* L_11 = V_0; UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* L_12 = V_1; NullCheck(L_12); UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* L_13 = L_12->___next_3; NullCheck(L_11); L_11->___next_3 = L_13; Il2CppCodeGenWriteBarrier((void**)(&L_11->___next_3), (void*)L_13); UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* L_14 = V_1; UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* L_15 = V_0; NullCheck(L_14); L_14->___next_3 = L_15; Il2CppCodeGenWriteBarrier((void**)(&L_14->___next_3), (void*)L_15); return; } IL_0051: { Dictionary_2_t5B9132F36AB4802E2DCBBC379E9A521504442698* L_16 = __this->___undeclaredNotations_31; String_t* L_17 = ___0_notationName; UndeclaredNotation_t82679CBF782A166873D4AA6AE22DFBF9FA2FDC1E* L_18 = V_0; NullCheck(L_16); Dictionary_2_Add_mF9A60D8A0C976AFEE10941219915771AE92C4AA2(L_16, L_17, L_18, Dictionary_2_Add_mF9A60D8A0C976AFEE10941219915771AE92C4AA2_RuntimeMethod_var); return; } } // System.Void System.Xml.DtdParser::ParseComment() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseComment_mAAB19E9100AB4E6929F69BF9895CFE5430B39E96 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB0AADDDCB10777660C04FFF62EE090971E9CB5CA); s_Il2CppMethodInitialized = true; } il2cpp::utils::ExceptionSupportStack __active_exceptions; { DtdParser_SaveParsingBuffer_mA50879908E86FF9D354642A7BF0CDF85ACE35D8A(__this, NULL); } try {// begin try (depth: 1) { bool L_0; L_0 = DtdParser_get_SaveInternalSubsetValue_m85DB5C7308BF525EE652E944E696CD7A3505DF66(__this, NULL); if (!L_0) { goto IL_0032_1; } } { RuntimeObject* L_1 = __this->___readerAdapter_0; StringBuilder_t* L_2 = __this->___internalSubsetValueSb_20; NullCheck(L_1); InterfaceActionInvoker1< StringBuilder_t* >::Invoke(17 /* System.Void System.Xml.IDtdParserAdapter::ParseComment(System.Text.StringBuilder) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_1, L_2); StringBuilder_t* L_3 = __this->___internalSubsetValueSb_20; NullCheck(L_3); StringBuilder_t* L_4; L_4 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_3, _stringLiteralB0AADDDCB10777660C04FFF62EE090971E9CB5CA, NULL); goto IL_003e_1; } IL_0032_1: { RuntimeObject* L_5 = __this->___readerAdapter_0; NullCheck(L_5); InterfaceActionInvoker1< StringBuilder_t* >::Invoke(17 /* System.Void System.Xml.IDtdParserAdapter::ParseComment(System.Text.StringBuilder) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_5, (StringBuilder_t*)NULL); } IL_003e_1: { goto IL_006c; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0040; } throw e; } CATCH_0040: {// begin catch(System.Xml.XmlException) { NullCheck(((XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)IL2CPP_GET_ACTIVE_EXCEPTION(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*))); String_t* L_6; L_6 = XmlException_get_ResString_m977084C1A1F883C2BED73B1F956D980E62649C7A_inline(((XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)IL2CPP_GET_ACTIVE_EXCEPTION(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)), NULL); bool L_7; L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC)), NULL); if (!L_7) { goto IL_0068; } } { int32_t L_8 = __this->___currentEntityId_22; if (!L_8) { goto IL_0068; } } { DtdParser_SendValidationEvent_m79ECFFB3D03874AE9095BA539FC8B7191018E58B(__this, 0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD259EE6AB580E33090940BF472020FA738C8617A)), (String_t*)NULL, NULL); goto IL_006a; } IL_0068: { IL2CPP_RETHROW_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)); } IL_006a: { IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_006c; } }// end catch (depth: 1) IL_006c: { DtdParser_LoadParsingBuffer_mF05F85D2FBE70046CCFD312890F918B9D0961C14(__this, NULL); return; } } // System.Void System.Xml.DtdParser::ParsePI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParsePI_m78FD95C2338F0BCF9535C89A24CEFB6F0802E4C9 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB); s_Il2CppMethodInitialized = true; } { DtdParser_SaveParsingBuffer_mA50879908E86FF9D354642A7BF0CDF85ACE35D8A(__this, NULL); bool L_0; L_0 = DtdParser_get_SaveInternalSubsetValue_m85DB5C7308BF525EE652E944E696CD7A3505DF66(__this, NULL); if (!L_0) { goto IL_0032; } } { RuntimeObject* L_1 = __this->___readerAdapter_0; StringBuilder_t* L_2 = __this->___internalSubsetValueSb_20; NullCheck(L_1); InterfaceActionInvoker1< StringBuilder_t* >::Invoke(16 /* System.Void System.Xml.IDtdParserAdapter::ParsePI(System.Text.StringBuilder) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_1, L_2); StringBuilder_t* L_3 = __this->___internalSubsetValueSb_20; NullCheck(L_3); StringBuilder_t* L_4; L_4 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_3, _stringLiteral6C80BE31B3A7206EDCC7D55B9B8DC0407E7A87EB, NULL); goto IL_003e; } IL_0032: { RuntimeObject* L_5 = __this->___readerAdapter_0; NullCheck(L_5); InterfaceActionInvoker1< StringBuilder_t* >::Invoke(16 /* System.Void System.Xml.IDtdParserAdapter::ParsePI(System.Text.StringBuilder) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_5, (StringBuilder_t*)NULL); } IL_003e: { DtdParser_LoadParsingBuffer_mF05F85D2FBE70046CCFD312890F918B9D0961C14(__this, NULL); return; } } // System.Void System.Xml.DtdParser::ParseCondSection() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseCondSection_m6DF82F4650A08BC0E920DEA62D346383C57C677D (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD259EE6AB580E33090940BF472020FA738C8617A); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_2 = NULL; { int32_t L_0 = __this->___currentEntityId_22; V_0 = L_0; int32_t L_1; L_1 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); V_1 = L_1; int32_t L_2 = V_1; if ((((int32_t)L_2) == ((int32_t)((int32_t)46)))) { goto IL_00cd; } } { int32_t L_3 = V_1; if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)47))))) { goto IL_0134; } } { int32_t L_4; L_4 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)31))))) { goto IL_0134; } } { bool L_5 = __this->___validate_8; if (!L_5) { goto IL_0055; } } { int32_t L_6 = V_0; int32_t L_7 = __this->___currentEntityId_22; if ((((int32_t)L_6) == ((int32_t)L_7))) { goto IL_0055; } } { int32_t L_8 = __this->___curPos_13; String_t* L_9 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F(__this, L_8, 0, _stringLiteralD259EE6AB580E33090940BF472020FA738C8617A, L_9, NULL); } IL_0055: { bool L_10 = __this->___validate_8; if (!L_10) { goto IL_00be; } } { Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_11 = __this->___condSectionEntityIds_32; if (L_11) { goto IL_0073; } } { Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)2); __this->___condSectionEntityIds_32 = L_12; Il2CppCodeGenWriteBarrier((void**)(&__this->___condSectionEntityIds_32), (void*)L_12); goto IL_00b0; } IL_0073: { Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_13 = __this->___condSectionEntityIds_32; NullCheck(L_13); int32_t L_14 = __this->___condSectionDepth_26; if ((!(((uint32_t)((int32_t)(((RuntimeArray*)L_13)->max_length))) == ((uint32_t)L_14)))) { goto IL_00b0; } } { Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = __this->___condSectionEntityIds_32; NullCheck(L_15); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_16 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_15)->max_length)), 2))); V_2 = L_16; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_17 = __this->___condSectionEntityIds_32; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_18 = V_2; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_19 = __this->___condSectionEntityIds_32; NullCheck(L_19); Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_17, 0, (RuntimeArray*)L_18, 0, ((int32_t)(((RuntimeArray*)L_19)->max_length)), NULL); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_20 = V_2; __this->___condSectionEntityIds_32 = L_20; Il2CppCodeGenWriteBarrier((void**)(&__this->___condSectionEntityIds_32), (void*)L_20); } IL_00b0: { Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_21 = __this->___condSectionEntityIds_32; int32_t L_22 = __this->___condSectionDepth_26; int32_t L_23 = V_0; NullCheck(L_21); (L_21)->SetAt(static_cast(L_22), (int32_t)L_23); } IL_00be: { int32_t L_24 = __this->___condSectionDepth_26; __this->___condSectionDepth_26 = ((int32_t)il2cpp_codegen_add(L_24, 1)); return; } IL_00cd: { int32_t L_25; L_25 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); if ((!(((uint32_t)L_25) == ((uint32_t)((int32_t)31))))) { goto IL_0134; } } { bool L_26 = __this->___validate_8; if (!L_26) { goto IL_0100; } } { int32_t L_27 = V_0; int32_t L_28 = __this->___currentEntityId_22; if ((((int32_t)L_27) == ((int32_t)L_28))) { goto IL_0100; } } { int32_t L_29 = __this->___curPos_13; String_t* L_30 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F(__this, L_29, 0, _stringLiteralD259EE6AB580E33090940BF472020FA738C8617A, L_30, NULL); } IL_0100: { int32_t L_31; L_31 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); if ((!(((uint32_t)L_31) == ((uint32_t)((int32_t)18))))) { goto IL_0134; } } { bool L_32 = __this->___validate_8; if (!L_32) { goto IL_013a; } } { int32_t L_33 = V_0; int32_t L_34 = __this->___currentEntityId_22; if ((((int32_t)L_33) == ((int32_t)L_34))) { goto IL_013a; } } { int32_t L_35 = __this->___curPos_13; String_t* L_36 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F(__this, L_35, 0, _stringLiteralD259EE6AB580E33090940BF472020FA738C8617A, L_36, NULL); return; } IL_0134: { DtdParser_OnUnexpectedError_m48B2712A07C18494946123F9947ED17F270DC4B6(__this, NULL); } IL_013a: { return; } } // System.Void System.Xml.DtdParser::ParseExternalId(System.Xml.DtdParser/Token,System.Xml.DtdParser/Token,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ParseExternalId_m2B6C7C539D6B9BAA81D2D39DD40915B0F8EE1680 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_idTokenType, int32_t ___1_declType, String_t** ___2_publicId, String_t** ___3_systemId, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral427B5CD0C06701810B3C126A307EAE3A6260A3C9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA02A8489B78BE60779EEA12413113D4FBC8C5E36); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677); s_Il2CppMethodInitialized = true; } LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; { int32_t L_0; L_0 = DtdParser_get_LineNo_m4D78AF8EFE8D05D61D89C0CC1C3CB46D0263E246(__this, NULL); int32_t L_1; L_1 = DtdParser_get_LinePos_m2FDB78628E84297247B78BA60AF304C084790005(__this, NULL); LineInfo__ctor_mFF99DC657778EB3519A941F3CB7E7C33710B0EE0((&V_0), L_0, ((int32_t)il2cpp_codegen_subtract(L_1, 6)), NULL); String_t** L_2 = ___2_publicId; *((RuntimeObject**)L_2) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)NULL); String_t** L_3 = ___3_systemId; *((RuntimeObject**)L_3) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_3, (void*)(RuntimeObject*)NULL); int32_t L_4; L_4 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)1, NULL); if ((((int32_t)L_4) == ((int32_t)((int32_t)35)))) { goto IL_003d; } } { int32_t L_5 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mE75F8A57E36D0ED9A0E029E79C5D0F5E71B82570(__this, L_5, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D, NULL); } IL_003d: { int32_t L_6 = ___0_idTokenType; if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)34))))) { goto IL_00d1; } } { String_t** L_7 = ___3_systemId; String_t* L_8; L_8 = DtdParser_GetValue_m3A56A10A245D1CDB50CCBFE897A8BA1AB3F5F622(__this, NULL); *((RuntimeObject**)L_7) = (RuntimeObject*)L_8; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_7, (void*)(RuntimeObject*)L_8); String_t** L_9 = ___3_systemId; String_t* L_10 = *((String_t**)L_9); NullCheck(L_10); int32_t L_11; L_11 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_10, ((int32_t)35), NULL); if ((((int32_t)L_11) < ((int32_t)0))) { goto IL_0098; } } { int32_t L_12 = __this->___curPos_13; String_t** L_13 = ___3_systemId; String_t* L_14 = *((String_t**)L_13); NullCheck(L_14); int32_t L_15; L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17 = L_16; String_t** L_18 = ___3_systemId; String_t* L_19 = *((String_t**)L_18); String_t** L_20 = ___3_systemId; String_t* L_21 = *((String_t**)L_20); NullCheck(L_21); int32_t L_22; L_22 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_21, ((int32_t)35), NULL); NullCheck(L_19); String_t* L_23; L_23 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_19, L_22, NULL); NullCheck(L_17); ArrayElementTypeCheck (L_17, L_23); (L_17)->SetAt(static_cast(0), (String_t*)L_23); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_24 = L_17; String_t** L_25 = ___3_systemId; String_t* L_26 = *((String_t**)L_25); NullCheck(L_24); ArrayElementTypeCheck (L_24, L_26); (L_24)->SetAt(static_cast(1), (String_t*)L_26); DtdParser_Throw_mEE35AE1DA02A2343A42F062D85BA7D04AA9666C5(__this, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_12, L_15)), 1)), _stringLiteral427B5CD0C06701810B3C126A307EAE3A6260A3C9, L_24, NULL); } IL_0098: { int32_t L_27 = ___1_declType; if ((!(((uint32_t)L_27) == ((uint32_t)((int32_t)36))))) { goto IL_0227; } } { bool L_28 = __this->___freeFloatingDtd_23; if (L_28) { goto IL_0227; } } { LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_29 = (&__this->___literalLineInfo_27); int32_t* L_30 = (&L_29->___linePos_1); int32_t* L_31 = L_30; int32_t L_32 = *((int32_t*)L_31); *((int32_t*)L_31) = (int32_t)((int32_t)il2cpp_codegen_add(L_32, 1)); RuntimeObject* L_33 = __this->___readerAdapter_0; String_t** L_34 = ___3_systemId; String_t* L_35 = *((String_t**)L_34); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_36 = V_0; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_37 = __this->___literalLineInfo_27; NullCheck(L_33); InterfaceActionInvoker3< String_t*, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 >::Invoke(22 /* System.Void System.Xml.IDtdParserAdapter::OnSystemId(System.String,System.Xml.LineInfo,System.Xml.LineInfo) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_33, L_35, L_36, L_37); return; } IL_00d1: { String_t** L_38 = ___2_publicId; String_t* L_39; L_39 = DtdParser_GetValue_m3A56A10A245D1CDB50CCBFE897A8BA1AB3F5F622(__this, NULL); *((RuntimeObject**)L_38) = (RuntimeObject*)L_39; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_38, (void*)(RuntimeObject*)L_39); XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_40 = (&__this->___xmlCharType_4); String_t** L_41 = ___2_publicId; String_t* L_42 = *((String_t**)L_41); int32_t L_43; L_43 = XmlCharType_IsPublicId_m1119A6921A99A357141333030F425EDD2AAFE2AE(L_40, L_42, NULL); int32_t L_44 = L_43; V_1 = L_44; if ((((int32_t)L_44) < ((int32_t)0))) { goto IL_0106; } } { int32_t L_45 = __this->___curPos_13; String_t** L_46 = ___2_publicId; String_t* L_47 = *((String_t**)L_46); NullCheck(L_47); int32_t L_48; L_48 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_47, NULL); int32_t L_49 = V_1; String_t** L_50 = ___2_publicId; String_t* L_51 = *((String_t**)L_50); int32_t L_52 = V_1; DtdParser_ThrowInvalidChar_mD2161D4741D7A76279757B830E981723BEB64CA3(__this, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_45, 1)), L_48)), L_49)), L_51, L_52, NULL); } IL_0106: { int32_t L_53 = ___1_declType; if ((!(((uint32_t)L_53) == ((uint32_t)((int32_t)36))))) { goto IL_01c3; } } { bool L_54 = __this->___freeFloatingDtd_23; if (L_54) { goto IL_01c3; } } { LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_55 = (&__this->___literalLineInfo_27); int32_t* L_56 = (&L_55->___linePos_1); int32_t* L_57 = L_56; int32_t L_58 = *((int32_t*)L_57); *((int32_t*)L_57) = (int32_t)((int32_t)il2cpp_codegen_add(L_58, 1)); RuntimeObject* L_59 = __this->___readerAdapter_0; String_t** L_60 = ___2_publicId; String_t* L_61 = *((String_t**)L_60); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_62 = V_0; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_63 = __this->___literalLineInfo_27; NullCheck(L_59); InterfaceActionInvoker3< String_t*, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 >::Invoke(23 /* System.Void System.Xml.IDtdParserAdapter::OnPublicId(System.String,System.Xml.LineInfo,System.Xml.LineInfo) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_59, L_61, L_62, L_63); int32_t L_64; L_64 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); if ((!(((uint32_t)L_64) == ((uint32_t)((int32_t)35))))) { goto IL_01ac; } } { bool L_65 = __this->___whitespaceSeen_17; if (L_65) { goto IL_017d; } } { Il2CppChar L_66 = __this->___literalQuoteChar_28; String_t* L_67; L_67 = String_CreateString_mAA0705B41B390BDB42F67894B9B67C956814C71B(NULL, L_66, 1, NULL); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_68 = (&__this->___literalLineInfo_27); int32_t L_69 = L_68->___lineNo_0; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_70 = (&__this->___literalLineInfo_27); int32_t L_71 = L_70->___linePos_1; DtdParser_Throw_mB4CABDC7A50D3C7F339CC18B8F500A9DCD78CA95(__this, _stringLiteralA02A8489B78BE60779EEA12413113D4FBC8C5E36, L_67, L_69, L_71, NULL); } IL_017d: { String_t** L_72 = ___3_systemId; String_t* L_73; L_73 = DtdParser_GetValue_m3A56A10A245D1CDB50CCBFE897A8BA1AB3F5F622(__this, NULL); *((RuntimeObject**)L_72) = (RuntimeObject*)L_73; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_72, (void*)(RuntimeObject*)L_73); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_74 = (&__this->___literalLineInfo_27); int32_t* L_75 = (&L_74->___linePos_1); int32_t* L_76 = L_75; int32_t L_77 = *((int32_t*)L_76); *((int32_t*)L_76) = (int32_t)((int32_t)il2cpp_codegen_add(L_77, 1)); RuntimeObject* L_78 = __this->___readerAdapter_0; String_t** L_79 = ___3_systemId; String_t* L_80 = *((String_t**)L_79); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_81 = V_0; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 L_82 = __this->___literalLineInfo_27; NullCheck(L_78); InterfaceActionInvoker3< String_t*, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24, LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24 >::Invoke(22 /* System.Void System.Xml.IDtdParserAdapter::OnSystemId(System.String,System.Xml.LineInfo,System.Xml.LineInfo) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_78, L_80, L_81, L_82); return; } IL_01ac: { int32_t L_83 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mE75F8A57E36D0ED9A0E029E79C5D0F5E71B82570(__this, L_83, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D, NULL); return; } IL_01c3: { int32_t L_84; L_84 = DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A(__this, (bool)0, NULL); if ((!(((uint32_t)L_84) == ((uint32_t)((int32_t)35))))) { goto IL_020d; } } { bool L_85 = __this->___whitespaceSeen_17; if (L_85) { goto IL_0203; } } { Il2CppChar L_86 = __this->___literalQuoteChar_28; String_t* L_87; L_87 = String_CreateString_mAA0705B41B390BDB42F67894B9B67C956814C71B(NULL, L_86, 1, NULL); LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_88 = (&__this->___literalLineInfo_27); int32_t L_89 = L_88->___lineNo_0; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_90 = (&__this->___literalLineInfo_27); int32_t L_91 = L_90->___linePos_1; DtdParser_Throw_mB4CABDC7A50D3C7F339CC18B8F500A9DCD78CA95(__this, _stringLiteralA02A8489B78BE60779EEA12413113D4FBC8C5E36, L_87, L_89, L_91, NULL); } IL_0203: { String_t** L_92 = ___3_systemId; String_t* L_93; L_93 = DtdParser_GetValue_m3A56A10A245D1CDB50CCBFE897A8BA1AB3F5F622(__this, NULL); *((RuntimeObject**)L_92) = (RuntimeObject*)L_93; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_92, (void*)(RuntimeObject*)L_93); return; } IL_020d: { int32_t L_94 = ___1_declType; if ((((int32_t)L_94) == ((int32_t)8))) { goto IL_0227; } } { int32_t L_95 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mE75F8A57E36D0ED9A0E029E79C5D0F5E71B82570(__this, L_95, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D, NULL); } IL_0227: { return; } } // System.Xml.DtdParser/Token System.Xml.DtdParser::GetToken(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_GetToken_m314D3A1BA5596BD50E08F67B39CBFBE2AF04FE8A (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, bool ___0_needWhiteSpace, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA02A8489B78BE60779EEA12413113D4FBC8C5E36); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; int32_t V_1 = 0; int32_t V_2 = 0; { __this->___whitespaceSeen_17 = (bool)0; } IL_0007: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_0 = L_3; Il2CppChar L_4 = V_0; if ((!(((uint32_t)L_4) <= ((uint32_t)((int32_t)13))))) { goto IL_003f; } } { Il2CppChar L_5 = V_0; if (!L_5) { goto IL_0054; } } { Il2CppChar L_6 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, ((int32_t)9)))) { case 0: { goto IL_014d; } case 1: { goto IL_0082; } case 2: { goto IL_01c0; } case 3: { goto IL_01c0; } case 4: { goto IL_00ad; } } } { goto IL_01c0; } IL_003f: { Il2CppChar L_7 = V_0; if ((((int32_t)L_7) == ((int32_t)((int32_t)32)))) { goto IL_014d; } } { Il2CppChar L_8 = V_0; if ((((int32_t)L_8) == ((int32_t)((int32_t)37)))) { goto IL_0167; } } { goto IL_01c0; } IL_0054: { int32_t L_9 = __this->___curPos_13; int32_t L_10 = __this->___charsUsed_12; if ((((int32_t)L_9) == ((int32_t)L_10))) { goto IL_0388; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = __this->___chars_11; int32_t L_12 = __this->___charsUsed_12; int32_t L_13 = __this->___curPos_13; DtdParser_ThrowInvalidChar_m67D089CB4F65FC2275C1FE545C178FF42CB61944(__this, L_11, L_12, L_13, NULL); goto IL_0388; } IL_0082: { __this->___whitespaceSeen_17 = (bool)1; int32_t L_14 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_14, 1)); RuntimeObject* L_15 = __this->___readerAdapter_0; int32_t L_16 = __this->___curPos_13; NullCheck(L_15); InterfaceActionInvoker1< int32_t >::Invoke(13 /* System.Void System.Xml.IDtdParserAdapter::OnNewLine(System.Int32) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_15, L_16); goto IL_0007; } IL_00ad: { __this->___whitespaceSeen_17 = (bool)1; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = __this->___chars_11; int32_t L_18 = __this->___curPos_13; NullCheck(L_17); int32_t L_19 = ((int32_t)il2cpp_codegen_add(L_18, 1)); uint16_t L_20 = (uint16_t)(L_17)->GetAt(static_cast(L_19)); if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)10))))) { goto IL_00fa; } } { bool L_21; L_21 = DtdParser_get_Normalize_mA95ED98D422B35FDBDAE26FA37F593B389FD122C_inline(__this, NULL); if (!L_21) { goto IL_00ea; } } { DtdParser_SaveParsingBuffer_mA50879908E86FF9D354642A7BF0CDF85ACE35D8A(__this, NULL); RuntimeObject* L_22 = __this->___readerAdapter_0; RuntimeObject* L_23 = L_22; NullCheck(L_23); int32_t L_24; L_24 = InterfaceFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Xml.IDtdParserAdapter::get_CurrentPosition() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_23); V_1 = L_24; int32_t L_25 = V_1; NullCheck(L_23); InterfaceActionInvoker1< int32_t >::Invoke(6 /* System.Void System.Xml.IDtdParserAdapter::set_CurrentPosition(System.Int32) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_23, ((int32_t)il2cpp_codegen_add(L_25, 1))); } IL_00ea: { int32_t L_26 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_26, 2)); goto IL_0137; } IL_00fa: { int32_t L_27 = __this->___curPos_13; int32_t L_28 = __this->___charsUsed_12; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_27, 1))) < ((int32_t)L_28))) { goto IL_011a; } } { RuntimeObject* L_29 = __this->___readerAdapter_0; NullCheck(L_29); bool L_30; L_30 = InterfaceFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.Xml.IDtdParserAdapter::get_IsEof() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_29); if (!L_30) { goto IL_0388; } } IL_011a: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_31 = __this->___chars_11; int32_t L_32 = __this->___curPos_13; NullCheck(L_31); (L_31)->SetAt(static_cast(L_32), (Il2CppChar)((int32_t)10)); int32_t L_33 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_33, 1)); } IL_0137: { RuntimeObject* L_34 = __this->___readerAdapter_0; int32_t L_35 = __this->___curPos_13; NullCheck(L_34); InterfaceActionInvoker1< int32_t >::Invoke(13 /* System.Void System.Xml.IDtdParserAdapter::OnNewLine(System.Int32) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_34, L_35); goto IL_0007; } IL_014d: { __this->___whitespaceSeen_17 = (bool)1; int32_t L_36 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_36, 1)); goto IL_0007; } IL_0167: { int32_t L_37 = __this->___charsUsed_12; int32_t L_38 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_37, L_38))) < ((int32_t)2))) { goto IL_0388; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_39 = (&__this->___xmlCharType_4); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_40 = __this->___chars_11; int32_t L_41 = __this->___curPos_13; NullCheck(L_40); int32_t L_42 = ((int32_t)il2cpp_codegen_add(L_41, 1)); uint16_t L_43 = (uint16_t)(L_40)->GetAt(static_cast(L_42)); bool L_44; L_44 = XmlCharType_IsWhiteSpace_m6F9F3A19B8A95FF5CBF1B197E400A0F194AC9387(L_39, L_43, NULL); if (L_44) { goto IL_01c0; } } { bool L_45; L_45 = DtdParser_get_IgnoreEntityReferences_m2DC8E61DFCB1C09453864CAC4031C467FB7340D8(__this, NULL); if (!L_45) { goto IL_01b1; } } { int32_t L_46 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_46, 1)); goto IL_0007; } IL_01b1: { bool L_47; L_47 = DtdParser_HandleEntityReference_mEE956B6F9F4B05B092B23769C7446B988111557C(__this, (bool)1, (bool)0, (bool)0, NULL); goto IL_0007; } IL_01c0: { bool L_48 = ___0_needWhiteSpace; if (!L_48) { goto IL_01f2; } } { bool L_49 = __this->___whitespaceSeen_17; if (L_49) { goto IL_01f2; } } { int32_t L_50 = __this->___scanningFunction_14; if ((((int32_t)L_50) == ((int32_t)((int32_t)32)))) { goto IL_01f2; } } { int32_t L_51 = __this->___curPos_13; int32_t L_52 = __this->___curPos_13; String_t* L_53; L_53 = DtdParser_ParseUnexpectedToken_m207C66A0CCCD7B01EC54A015C8F1CB228665119C(__this, L_52, NULL); DtdParser_Throw_mA82BAD834C0CCDE0E9325996E4560953761B62D0(__this, L_51, _stringLiteralA02A8489B78BE60779EEA12413113D4FBC8C5E36, L_53, NULL); } IL_01f2: { int32_t L_54 = __this->___curPos_13; __this->___tokenStartPos_18 = L_54; } IL_01fe: { int32_t L_55 = __this->___scanningFunction_14; V_2 = L_55; int32_t L_56 = V_2; switch (L_56) { case 0: { goto IL_02a9; } case 1: { goto IL_0294; } case 2: { goto IL_029b; } case 3: { goto IL_02a2; } case 4: { goto IL_02b0; } case 5: { goto IL_02b7; } case 6: { goto IL_02be; } case 7: { goto IL_02c5; } case 8: { goto IL_02cc; } case 9: { goto IL_02d3; } case 10: { goto IL_02da; } case 11: { goto IL_02e1; } case 12: { goto IL_02e8; } case 13: { goto IL_02ef; } case 14: { goto IL_02f6; } case 15: { goto IL_02fd; } case 16: { goto IL_0304; } case 17: { goto IL_030b; } case 18: { goto IL_0312; } case 19: { goto IL_0319; } case 20: { goto IL_033c; } case 21: { goto IL_0343; } case 22: { goto IL_034a; } case 23: { goto IL_0320; } case 24: { goto IL_0351; } case 25: { goto IL_0358; } case 26: { goto IL_035f; } case 27: { goto IL_0385; } case 28: { goto IL_0327; } case 29: { goto IL_032e; } case 30: { goto IL_0335; } case 31: { goto IL_0366; } case 32: { goto IL_036d; } } } { goto IL_0385; } IL_0294: { int32_t L_57; L_57 = DtdParser_ScanNameExpected_mE86BA18BAC4E482467ACBF7324AC50A7A036612C(__this, NULL); return L_57; } IL_029b: { int32_t L_58; L_58 = DtdParser_ScanQNameExpected_mA3CEF7926D1ADB4516533C14CA5AC11B577780DD(__this, NULL); return L_58; } IL_02a2: { int32_t L_59; L_59 = DtdParser_ScanNmtokenExpected_mA1C480DC3339EDB16295740B126CD6E065C1A9EB(__this, NULL); return L_59; } IL_02a9: { int32_t L_60; L_60 = DtdParser_ScanSubsetContent_m3DDC1C5F54961537AD8EFC21533E8B079CD3CFE4(__this, NULL); return L_60; } IL_02b0: { int32_t L_61; L_61 = DtdParser_ScanDoctype1_m8CC5B6D8A23BC79BC7D24753A9283D4B7678BBD9(__this, NULL); return L_61; } IL_02b7: { int32_t L_62; L_62 = DtdParser_ScanDoctype2_m49CE285688D0AF32C97161251B5BAED8DC35CAC6(__this, NULL); return L_62; } IL_02be: { int32_t L_63; L_63 = DtdParser_ScanElement1_m72C790C87EF7495318BB9181081FFB608299E94D(__this, NULL); return L_63; } IL_02c5: { int32_t L_64; L_64 = DtdParser_ScanElement2_m8B93B60343DFF685D0BD5A6769BD73FB39E39F45(__this, NULL); return L_64; } IL_02cc: { int32_t L_65; L_65 = DtdParser_ScanElement3_m28CF7EC133A70479C5F5740091A0F58D03E70EA6(__this, NULL); return L_65; } IL_02d3: { int32_t L_66; L_66 = DtdParser_ScanElement4_m6F360CB881C17BFFB2C688BBF7FA4C9751AB284E(__this, NULL); return L_66; } IL_02da: { int32_t L_67; L_67 = DtdParser_ScanElement5_m88E34616D6F10E1061C7B3CADEF68E1FF1DF7126(__this, NULL); return L_67; } IL_02e1: { int32_t L_68; L_68 = DtdParser_ScanElement6_m5B40A19C9CD3EAED210B4829382140426A14E936(__this, NULL); return L_68; } IL_02e8: { int32_t L_69; L_69 = DtdParser_ScanElement7_m3F94F17E421650A3A8D8BDEC02F8201CD2AB1BC7(__this, NULL); return L_69; } IL_02ef: { int32_t L_70; L_70 = DtdParser_ScanAttlist1_m83EEEF8CFE21CC81A36DA270900584135021C828(__this, NULL); return L_70; } IL_02f6: { int32_t L_71; L_71 = DtdParser_ScanAttlist2_m7E560A6A423783BEB4E7F99C9B4FF69C833D061D(__this, NULL); return L_71; } IL_02fd: { int32_t L_72; L_72 = DtdParser_ScanAttlist3_mF035EBFC23BF70F98B6DFD34112D12607DC8E74D(__this, NULL); return L_72; } IL_0304: { int32_t L_73; L_73 = DtdParser_ScanAttlist4_mCD308E6A3D25EB060DBC8C35FADB8F6A67991587(__this, NULL); return L_73; } IL_030b: { int32_t L_74; L_74 = DtdParser_ScanAttlist5_m35AA80B4939B569B63EACFBD15C3A7A279E08C82(__this, NULL); return L_74; } IL_0312: { int32_t L_75; L_75 = DtdParser_ScanAttlist6_mF627B2ACA8D7005BF6E61B406E7D9016E817B0AE(__this, NULL); return L_75; } IL_0319: { int32_t L_76; L_76 = DtdParser_ScanAttlist7_m180D2F146EE05F9ED0732FDA13ADF88F8A0AB239(__this, NULL); return L_76; } IL_0320: { int32_t L_77; L_77 = DtdParser_ScanNotation1_m4C4E5782C3B83C24E6F9F08D87B22C4B82E780FB(__this, NULL); return L_77; } IL_0327: { int32_t L_78; L_78 = DtdParser_ScanSystemId_m4BFDE8AB3CAEF9D217E5FDEBEA038712AC85F601(__this, NULL); return L_78; } IL_032e: { int32_t L_79; L_79 = DtdParser_ScanPublicId1_m1095E6AE70E11A9B956708FFBE530301689F82A5(__this, NULL); return L_79; } IL_0335: { int32_t L_80; L_80 = DtdParser_ScanPublicId2_mFDAA7AB884FAFD43C7864DA3C22C00BD0024B9DD(__this, NULL); return L_80; } IL_033c: { int32_t L_81; L_81 = DtdParser_ScanEntity1_mE0247D128601F57689966E73F7F89597F017AC53(__this, NULL); return L_81; } IL_0343: { int32_t L_82; L_82 = DtdParser_ScanEntity2_m2C5A6BB88090ADF0B9649F21210AAD33A4FB7115(__this, NULL); return L_82; } IL_034a: { int32_t L_83; L_83 = DtdParser_ScanEntity3_m83E67C0E0412FC7E29A40113DFBD9663F1832487(__this, NULL); return L_83; } IL_0351: { int32_t L_84; L_84 = DtdParser_ScanCondSection1_mC6FDCA0100720F5289856689A51097AA12C05FDC(__this, NULL); return L_84; } IL_0358: { int32_t L_85; L_85 = DtdParser_ScanCondSection2_m4F6CA7E86BF773FA2EAA8ACA577C4F96A1DC7A9A(__this, NULL); return L_85; } IL_035f: { int32_t L_86; L_86 = DtdParser_ScanCondSection3_m1A14F74065167EFD8938C66911DA82D34F5B1429(__this, NULL); return L_86; } IL_0366: { int32_t L_87; L_87 = DtdParser_ScanClosingTag_m5AB673393CE16B30CE50A23B70DE0B8EC66E23B5(__this, NULL); return L_87; } IL_036d: { __this->___whitespaceSeen_17 = (bool)1; int32_t L_88 = __this->___savedScanningFunction_16; __this->___scanningFunction_14 = L_88; goto IL_01fe; } IL_0385: { return (int32_t)(((int32_t)9)); } IL_0388: { RuntimeObject* L_89 = __this->___readerAdapter_0; NullCheck(L_89); bool L_90; L_90 = InterfaceFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.Xml.IDtdParserAdapter::get_IsEof() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_89); if (L_90) { goto IL_03a0; } } { int32_t L_91; L_91 = DtdParser_ReadData_m02D6859FB085D58E010B7F25EF813156B8CC3109(__this, NULL); if (L_91) { goto IL_0007; } } IL_03a0: { bool L_92; L_92 = DtdParser_HandleEntityEnd_m741F32D866045C1FEBD97EE495E22BECA25B453D(__this, (bool)0, NULL); if (L_92) { goto IL_0007; } } { int32_t L_93 = __this->___scanningFunction_14; if (L_93) { goto IL_03b7; } } { return (int32_t)(((int32_t)19)); } IL_03b7: { int32_t L_94 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_94, _stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7, NULL); goto IL_0007; } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanSubsetContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanSubsetContent_m3DDC1C5F54961537AD8EFC21533E8B079CD3CFE4 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral324ECCE6E181944A23FC9126AE81680CA09C93D4); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; Il2CppChar V_1 = 0x0; Il2CppChar V_2 = 0x0; IL_0000: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_0 = L_3; Il2CppChar L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)60)))) { goto IL_0020; } } { Il2CppChar L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)93)))) { goto IL_0453; } } { goto IL_04f3; } IL_0020: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = __this->___chars_11; int32_t L_7 = __this->___curPos_13; NullCheck(L_6); int32_t L_8 = ((int32_t)il2cpp_codegen_add(L_7, 1)); uint16_t L_9 = (uint16_t)(L_6)->GetAt(static_cast(L_8)); V_1 = L_9; Il2CppChar L_10 = V_1; if ((((int32_t)L_10) == ((int32_t)((int32_t)33)))) { goto IL_0042; } } { Il2CppChar L_11 = V_1; if ((((int32_t)L_11) == ((int32_t)((int32_t)63)))) { goto IL_041b; } } { goto IL_042c; } IL_0042: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = __this->___chars_11; int32_t L_13 = __this->___curPos_13; NullCheck(L_12); int32_t L_14 = ((int32_t)il2cpp_codegen_add(L_13, 2)); uint16_t L_15 = (uint16_t)(L_12)->GetAt(static_cast(L_14)); V_2 = L_15; Il2CppChar L_16 = V_2; if ((!(((uint32_t)L_16) <= ((uint32_t)((int32_t)65))))) { goto IL_006c; } } { Il2CppChar L_17 = V_2; if ((((int32_t)L_17) == ((int32_t)((int32_t)45)))) { goto IL_03a3; } } { Il2CppChar L_18 = V_2; if ((((int32_t)L_18) == ((int32_t)((int32_t)65)))) { goto IL_0206; } } { goto IL_03f0; } IL_006c: { Il2CppChar L_19 = V_2; if ((((int32_t)L_19) == ((int32_t)((int32_t)69)))) { goto IL_0086; } } { Il2CppChar L_20 = V_2; if ((((int32_t)L_20) == ((int32_t)((int32_t)78)))) { goto IL_02be; } } { Il2CppChar L_21 = V_2; if ((((int32_t)L_21) == ((int32_t)((int32_t)91)))) { goto IL_038a; } } { goto IL_03f0; } IL_0086: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = __this->___chars_11; int32_t L_23 = __this->___curPos_13; NullCheck(L_22); int32_t L_24 = ((int32_t)il2cpp_codegen_add(L_23, 3)); uint16_t L_25 = (uint16_t)(L_22)->GetAt(static_cast(L_24)); if ((!(((uint32_t)L_25) == ((uint32_t)((int32_t)76))))) { goto IL_0140; } } { int32_t L_26 = __this->___charsUsed_12; int32_t L_27 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_26, L_27))) < ((int32_t)((int32_t)9)))) { goto IL_0513; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_28 = __this->___chars_11; int32_t L_29 = __this->___curPos_13; NullCheck(L_28); int32_t L_30 = ((int32_t)il2cpp_codegen_add(L_29, 4)); uint16_t L_31 = (uint16_t)(L_28)->GetAt(static_cast(L_30)); if ((!(((uint32_t)L_31) == ((uint32_t)((int32_t)69))))) { goto IL_010f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_32 = __this->___chars_11; int32_t L_33 = __this->___curPos_13; NullCheck(L_32); int32_t L_34 = ((int32_t)il2cpp_codegen_add(L_33, 5)); uint16_t L_35 = (uint16_t)(L_32)->GetAt(static_cast(L_34)); if ((!(((uint32_t)L_35) == ((uint32_t)((int32_t)77))))) { goto IL_010f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_36 = __this->___chars_11; int32_t L_37 = __this->___curPos_13; NullCheck(L_36); int32_t L_38 = ((int32_t)il2cpp_codegen_add(L_37, 6)); uint16_t L_39 = (uint16_t)(L_36)->GetAt(static_cast(L_38)); if ((!(((uint32_t)L_39) == ((uint32_t)((int32_t)69))))) { goto IL_010f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_40 = __this->___chars_11; int32_t L_41 = __this->___curPos_13; NullCheck(L_40); int32_t L_42 = ((int32_t)il2cpp_codegen_add(L_41, 7)); uint16_t L_43 = (uint16_t)(L_40)->GetAt(static_cast(L_42)); if ((!(((uint32_t)L_43) == ((uint32_t)((int32_t)78))))) { goto IL_010f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_44 = __this->___chars_11; int32_t L_45 = __this->___curPos_13; NullCheck(L_44); int32_t L_46 = ((int32_t)il2cpp_codegen_add(L_45, 8)); uint16_t L_47 = (uint16_t)(L_44)->GetAt(static_cast(L_46)); if ((((int32_t)L_47) == ((int32_t)((int32_t)84)))) { goto IL_0120; } } IL_010f: { int32_t L_48 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_48, _stringLiteral324ECCE6E181944A23FC9126AE81680CA09C93D4, NULL); } IL_0120: { int32_t L_49 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_49, ((int32_t)9))); __this->___scanningFunction_14 = 2; __this->___nextScaningFunction_15 = 6; return (int32_t)(((int32_t)12)); } IL_0140: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_50 = __this->___chars_11; int32_t L_51 = __this->___curPos_13; NullCheck(L_50); int32_t L_52 = ((int32_t)il2cpp_codegen_add(L_51, 3)); uint16_t L_53 = (uint16_t)(L_50)->GetAt(static_cast(L_52)); if ((!(((uint32_t)L_53) == ((uint32_t)((int32_t)78))))) { goto IL_01df; } } { int32_t L_54 = __this->___charsUsed_12; int32_t L_55 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_54, L_55))) < ((int32_t)8))) { goto IL_0513; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_56 = __this->___chars_11; int32_t L_57 = __this->___curPos_13; NullCheck(L_56); int32_t L_58 = ((int32_t)il2cpp_codegen_add(L_57, 4)); uint16_t L_59 = (uint16_t)(L_56)->GetAt(static_cast(L_58)); if ((!(((uint32_t)L_59) == ((uint32_t)((int32_t)84))))) { goto IL_01b5; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_60 = __this->___chars_11; int32_t L_61 = __this->___curPos_13; NullCheck(L_60); int32_t L_62 = ((int32_t)il2cpp_codegen_add(L_61, 5)); uint16_t L_63 = (uint16_t)(L_60)->GetAt(static_cast(L_62)); if ((!(((uint32_t)L_63) == ((uint32_t)((int32_t)73))))) { goto IL_01b5; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_64 = __this->___chars_11; int32_t L_65 = __this->___curPos_13; NullCheck(L_64); int32_t L_66 = ((int32_t)il2cpp_codegen_add(L_65, 6)); uint16_t L_67 = (uint16_t)(L_64)->GetAt(static_cast(L_66)); if ((!(((uint32_t)L_67) == ((uint32_t)((int32_t)84))))) { goto IL_01b5; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_68 = __this->___chars_11; int32_t L_69 = __this->___curPos_13; NullCheck(L_68); int32_t L_70 = ((int32_t)il2cpp_codegen_add(L_69, 7)); uint16_t L_71 = (uint16_t)(L_68)->GetAt(static_cast(L_70)); if ((((int32_t)L_71) == ((int32_t)((int32_t)89)))) { goto IL_01c6; } } IL_01b5: { int32_t L_72 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_72, _stringLiteral324ECCE6E181944A23FC9126AE81680CA09C93D4, NULL); } IL_01c6: { int32_t L_73 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_73, 8)); __this->___scanningFunction_14 = ((int32_t)20); return (int32_t)(((int32_t)13)); } IL_01df: { int32_t L_74 = __this->___charsUsed_12; int32_t L_75 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_74, L_75))) < ((int32_t)4))) { goto IL_0513; } } { int32_t L_76 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_76, _stringLiteral324ECCE6E181944A23FC9126AE81680CA09C93D4, NULL); return (int32_t)(((int32_t)9)); } IL_0206: { int32_t L_77 = __this->___charsUsed_12; int32_t L_78 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_77, L_78))) < ((int32_t)((int32_t)9)))) { goto IL_0513; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_79 = __this->___chars_11; int32_t L_80 = __this->___curPos_13; NullCheck(L_79); int32_t L_81 = ((int32_t)il2cpp_codegen_add(L_80, 3)); uint16_t L_82 = (uint16_t)(L_79)->GetAt(static_cast(L_81)); if ((!(((uint32_t)L_82) == ((uint32_t)((int32_t)84))))) { goto IL_028c; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_83 = __this->___chars_11; int32_t L_84 = __this->___curPos_13; NullCheck(L_83); int32_t L_85 = ((int32_t)il2cpp_codegen_add(L_84, 4)); uint16_t L_86 = (uint16_t)(L_83)->GetAt(static_cast(L_85)); if ((!(((uint32_t)L_86) == ((uint32_t)((int32_t)84))))) { goto IL_028c; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_87 = __this->___chars_11; int32_t L_88 = __this->___curPos_13; NullCheck(L_87); int32_t L_89 = ((int32_t)il2cpp_codegen_add(L_88, 5)); uint16_t L_90 = (uint16_t)(L_87)->GetAt(static_cast(L_89)); if ((!(((uint32_t)L_90) == ((uint32_t)((int32_t)76))))) { goto IL_028c; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_91 = __this->___chars_11; int32_t L_92 = __this->___curPos_13; NullCheck(L_91); int32_t L_93 = ((int32_t)il2cpp_codegen_add(L_92, 6)); uint16_t L_94 = (uint16_t)(L_91)->GetAt(static_cast(L_93)); if ((!(((uint32_t)L_94) == ((uint32_t)((int32_t)73))))) { goto IL_028c; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_95 = __this->___chars_11; int32_t L_96 = __this->___curPos_13; NullCheck(L_95); int32_t L_97 = ((int32_t)il2cpp_codegen_add(L_96, 7)); uint16_t L_98 = (uint16_t)(L_95)->GetAt(static_cast(L_97)); if ((!(((uint32_t)L_98) == ((uint32_t)((int32_t)83))))) { goto IL_028c; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_99 = __this->___chars_11; int32_t L_100 = __this->___curPos_13; NullCheck(L_99); int32_t L_101 = ((int32_t)il2cpp_codegen_add(L_100, 8)); uint16_t L_102 = (uint16_t)(L_99)->GetAt(static_cast(L_101)); if ((((int32_t)L_102) == ((int32_t)((int32_t)84)))) { goto IL_029d; } } IL_028c: { int32_t L_103 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_103, _stringLiteral324ECCE6E181944A23FC9126AE81680CA09C93D4, NULL); } IL_029d: { int32_t L_104 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_104, ((int32_t)9))); __this->___scanningFunction_14 = 2; __this->___nextScaningFunction_15 = ((int32_t)13); return (int32_t)(((int32_t)11)); } IL_02be: { int32_t L_105 = __this->___charsUsed_12; int32_t L_106 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_105, L_106))) < ((int32_t)((int32_t)10)))) { goto IL_0513; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_107 = __this->___chars_11; int32_t L_108 = __this->___curPos_13; NullCheck(L_107); int32_t L_109 = ((int32_t)il2cpp_codegen_add(L_108, 3)); uint16_t L_110 = (uint16_t)(L_107)->GetAt(static_cast(L_109)); if ((!(((uint32_t)L_110) == ((uint32_t)((int32_t)79))))) { goto IL_0358; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_111 = __this->___chars_11; int32_t L_112 = __this->___curPos_13; NullCheck(L_111); int32_t L_113 = ((int32_t)il2cpp_codegen_add(L_112, 4)); uint16_t L_114 = (uint16_t)(L_111)->GetAt(static_cast(L_113)); if ((!(((uint32_t)L_114) == ((uint32_t)((int32_t)84))))) { goto IL_0358; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_115 = __this->___chars_11; int32_t L_116 = __this->___curPos_13; NullCheck(L_115); int32_t L_117 = ((int32_t)il2cpp_codegen_add(L_116, 5)); uint16_t L_118 = (uint16_t)(L_115)->GetAt(static_cast(L_117)); if ((!(((uint32_t)L_118) == ((uint32_t)((int32_t)65))))) { goto IL_0358; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_119 = __this->___chars_11; int32_t L_120 = __this->___curPos_13; NullCheck(L_119); int32_t L_121 = ((int32_t)il2cpp_codegen_add(L_120, 6)); uint16_t L_122 = (uint16_t)(L_119)->GetAt(static_cast(L_121)); if ((!(((uint32_t)L_122) == ((uint32_t)((int32_t)84))))) { goto IL_0358; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_123 = __this->___chars_11; int32_t L_124 = __this->___curPos_13; NullCheck(L_123); int32_t L_125 = ((int32_t)il2cpp_codegen_add(L_124, 7)); uint16_t L_126 = (uint16_t)(L_123)->GetAt(static_cast(L_125)); if ((!(((uint32_t)L_126) == ((uint32_t)((int32_t)73))))) { goto IL_0358; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_127 = __this->___chars_11; int32_t L_128 = __this->___curPos_13; NullCheck(L_127); int32_t L_129 = ((int32_t)il2cpp_codegen_add(L_128, 8)); uint16_t L_130 = (uint16_t)(L_127)->GetAt(static_cast(L_129)); if ((!(((uint32_t)L_130) == ((uint32_t)((int32_t)79))))) { goto IL_0358; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_131 = __this->___chars_11; int32_t L_132 = __this->___curPos_13; NullCheck(L_131); int32_t L_133 = ((int32_t)il2cpp_codegen_add(L_132, ((int32_t)9))); uint16_t L_134 = (uint16_t)(L_131)->GetAt(static_cast(L_133)); if ((((int32_t)L_134) == ((int32_t)((int32_t)78)))) { goto IL_0369; } } IL_0358: { int32_t L_135 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_135, _stringLiteral324ECCE6E181944A23FC9126AE81680CA09C93D4, NULL); } IL_0369: { int32_t L_136 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_136, ((int32_t)10))); __this->___scanningFunction_14 = 1; __this->___nextScaningFunction_15 = ((int32_t)23); return (int32_t)(((int32_t)14)); } IL_038a: { int32_t L_137 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_137, 3)); __this->___scanningFunction_14 = ((int32_t)24); return (int32_t)(((int32_t)17)); } IL_03a3: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_138 = __this->___chars_11; int32_t L_139 = __this->___curPos_13; NullCheck(L_138); int32_t L_140 = ((int32_t)il2cpp_codegen_add(L_139, 3)); uint16_t L_141 = (uint16_t)(L_138)->GetAt(static_cast(L_140)); if ((!(((uint32_t)L_141) == ((uint32_t)((int32_t)45))))) { goto IL_03c7; } } { int32_t L_142 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_142, 4)); return (int32_t)(((int32_t)15)); } IL_03c7: { int32_t L_143 = __this->___charsUsed_12; int32_t L_144 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_143, L_144))) < ((int32_t)4))) { goto IL_0513; } } { int32_t L_145 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_145, _stringLiteral324ECCE6E181944A23FC9126AE81680CA09C93D4, NULL); goto IL_0513; } IL_03f0: { int32_t L_146 = __this->___charsUsed_12; int32_t L_147 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_146, L_147))) < ((int32_t)3))) { goto IL_0513; } } { int32_t L_148 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, ((int32_t)il2cpp_codegen_add(L_148, 2)), _stringLiteral324ECCE6E181944A23FC9126AE81680CA09C93D4, NULL); goto IL_0513; } IL_041b: { int32_t L_149 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_149, 2)); return (int32_t)(((int32_t)16)); } IL_042c: { int32_t L_150 = __this->___charsUsed_12; int32_t L_151 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_150, L_151))) < ((int32_t)2))) { goto IL_0513; } } { int32_t L_152 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_152, _stringLiteral324ECCE6E181944A23FC9126AE81680CA09C93D4, NULL); return (int32_t)(((int32_t)9)); } IL_0453: { int32_t L_153 = __this->___charsUsed_12; int32_t L_154 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_153, L_154))) >= ((int32_t)2))) { goto IL_0473; } } { RuntimeObject* L_155 = __this->___readerAdapter_0; NullCheck(L_155); bool L_156; L_156 = InterfaceFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.Xml.IDtdParserAdapter::get_IsEof() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_155); if (!L_156) { goto IL_0513; } } IL_0473: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_157 = __this->___chars_11; int32_t L_158 = __this->___curPos_13; NullCheck(L_157); int32_t L_159 = ((int32_t)il2cpp_codegen_add(L_158, 1)); uint16_t L_160 = (uint16_t)(L_157)->GetAt(static_cast(L_159)); if ((((int32_t)L_160) == ((int32_t)((int32_t)93)))) { goto IL_049f; } } { int32_t L_161 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_161, 1)); __this->___scanningFunction_14 = ((int32_t)31); return (int32_t)(((int32_t)32)); } IL_049f: { int32_t L_162 = __this->___charsUsed_12; int32_t L_163 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_162, L_163))) >= ((int32_t)3))) { goto IL_04bc; } } { RuntimeObject* L_164 = __this->___readerAdapter_0; NullCheck(L_164); bool L_165; L_165 = InterfaceFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.Xml.IDtdParserAdapter::get_IsEof() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_164); if (!L_165) { goto IL_0513; } } IL_04bc: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_166 = __this->___chars_11; int32_t L_167 = __this->___curPos_13; NullCheck(L_166); int32_t L_168 = ((int32_t)il2cpp_codegen_add(L_167, 1)); uint16_t L_169 = (uint16_t)(L_166)->GetAt(static_cast(L_168)); if ((!(((uint32_t)L_169) == ((uint32_t)((int32_t)93))))) { goto IL_04f3; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_170 = __this->___chars_11; int32_t L_171 = __this->___curPos_13; NullCheck(L_170); int32_t L_172 = ((int32_t)il2cpp_codegen_add(L_171, 2)); uint16_t L_173 = (uint16_t)(L_170)->GetAt(static_cast(L_172)); if ((!(((uint32_t)L_173) == ((uint32_t)((int32_t)62))))) { goto IL_04f3; } } { int32_t L_174 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_174, 3)); return (int32_t)(((int32_t)18)); } IL_04f3: { int32_t L_175 = __this->___charsUsed_12; int32_t L_176 = __this->___curPos_13; if (!((int32_t)il2cpp_codegen_subtract(L_175, L_176))) { goto IL_0513; } } { int32_t L_177 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_177, _stringLiteral324ECCE6E181944A23FC9126AE81680CA09C93D4, NULL); } IL_0513: { int32_t L_178; L_178 = DtdParser_ReadData_m02D6859FB085D58E010B7F25EF813156B8CC3109(__this, NULL); if (L_178) { goto IL_0000; } } { int32_t L_179 = __this->___charsUsed_12; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_179, _stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7, NULL); goto IL_0000; } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanNameExpected() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanNameExpected_mE86BA18BAC4E482467ACBF7324AC50A7A036612C (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { DtdParser_ScanName_mC452081ACDFAE2FB825E73D7F7F506FD967F3DB0(__this, NULL); int32_t L_0 = __this->___nextScaningFunction_15; __this->___scanningFunction_14 = L_0; return (int32_t)(((int32_t)24)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanQNameExpected() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanQNameExpected_mA3CEF7926D1ADB4516533C14CA5AC11B577780DD (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { DtdParser_ScanQName_mAD528C25DE449B69809006B17DF6015439150DE3(__this, NULL); int32_t L_0 = __this->___nextScaningFunction_15; __this->___scanningFunction_14 = L_0; return (int32_t)(((int32_t)23)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanNmtokenExpected() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanNmtokenExpected_mA1C480DC3339EDB16295740B126CD6E065C1A9EB (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { DtdParser_ScanNmtoken_mD2A9057AA5C523117A422FBB2B5119B915133919(__this, NULL); int32_t L_0 = __this->___nextScaningFunction_15; __this->___scanningFunction_14 = L_0; return (int32_t)(((int32_t)25)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanDoctype1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanDoctype1_m8CC5B6D8A23BC79BC7D24753A9283D4B7678BBD9 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9581D9240473127371BCEE2DE4DB4A276F510956); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_0 = L_3; Il2CppChar L_4 = V_0; if ((!(((uint32_t)L_4) <= ((uint32_t)((int32_t)80))))) { goto IL_0025; } } { Il2CppChar L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)62)))) { goto IL_00a2; } } { Il2CppChar L_6 = V_0; if ((((int32_t)L_6) == ((int32_t)((int32_t)80)))) { goto IL_0034; } } { goto IL_00ba; } IL_0025: { Il2CppChar L_7 = V_0; if ((((int32_t)L_7) == ((int32_t)((int32_t)83)))) { goto IL_005f; } } { Il2CppChar L_8 = V_0; if ((((int32_t)L_8) == ((int32_t)((int32_t)91)))) { goto IL_008a; } } { goto IL_00ba; } IL_0034: { bool L_9; L_9 = DtdParser_EatPublicKeyword_m36E41ED431E35D882457C69703585B584F86D47E(__this, NULL); if (L_9) { goto IL_004d; } } { int32_t L_10 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_10, _stringLiteral9581D9240473127371BCEE2DE4DB4A276F510956, NULL); } IL_004d: { __this->___nextScaningFunction_15 = 5; __this->___scanningFunction_14 = ((int32_t)29); return (int32_t)(((int32_t)33)); } IL_005f: { bool L_11; L_11 = DtdParser_EatSystemKeyword_mA6344D8F8E24209177DE25810ECC484A5202D452(__this, NULL); if (L_11) { goto IL_0078; } } { int32_t L_12 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_12, _stringLiteral9581D9240473127371BCEE2DE4DB4A276F510956, NULL); } IL_0078: { __this->___nextScaningFunction_15 = 5; __this->___scanningFunction_14 = ((int32_t)28); return (int32_t)(((int32_t)34)); } IL_008a: { int32_t L_13 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_13, 1)); __this->___scanningFunction_14 = 0; return (int32_t)(((int32_t)31)); } IL_00a2: { int32_t L_14 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_14, 1)); __this->___scanningFunction_14 = 0; return (int32_t)(((int32_t)29)); } IL_00ba: { int32_t L_15 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_15, _stringLiteral9581D9240473127371BCEE2DE4DB4A276F510956, NULL); return (int32_t)(((int32_t)9)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanDoctype2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanDoctype2_m49CE285688D0AF32C97161251B5BAED8DC35CAC6 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral41EF1659C5E772235CFEA4B5A94D5DF6799C5608); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_0 = L_3; Il2CppChar L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)62)))) { goto IL_0030; } } { Il2CppChar L_5 = V_0; if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)91))))) { goto IL_0048; } } { int32_t L_6 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_6, 1)); __this->___scanningFunction_14 = 0; return (int32_t)(((int32_t)31)); } IL_0030: { int32_t L_7 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_7, 1)); __this->___scanningFunction_14 = 0; return (int32_t)(((int32_t)29)); } IL_0048: { int32_t L_8 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_8, _stringLiteral41EF1659C5E772235CFEA4B5A94D5DF6799C5608, NULL); return (int32_t)(((int32_t)9)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanClosingTag() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanClosingTag_m5AB673393CE16B30CE50A23B70DE0B8EC66E23B5 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5); s_Il2CppMethodInitialized = true; } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); if ((((int32_t)L_3) == ((int32_t)((int32_t)62)))) { goto IL_0022; } } { int32_t L_4 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mBCA8EBEE9CF9EC08AEEB6CA14BF75492689BF982(__this, L_4, _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5, NULL); } IL_0022: { int32_t L_5 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_5, 1)); __this->___scanningFunction_14 = 0; return (int32_t)(((int32_t)29)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanElement1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanElement1_m72C790C87EF7495318BB9181081FFB608299E94D (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF2F28D0DCD35D90C0A1A591C99FD816AC6E36CB9); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; IL_0000: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_0 = L_3; Il2CppChar L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)40)))) { goto IL_0025; } } { Il2CppChar L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)65)))) { goto IL_00bb; } } { Il2CppChar L_6 = V_0; if ((((int32_t)L_6) == ((int32_t)((int32_t)69)))) { goto IL_003d; } } { goto IL_010a; } IL_0025: { __this->___scanningFunction_14 = 7; int32_t L_7 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_7, 1)); return (int32_t)(((int32_t)27)); } IL_003d: { int32_t L_8 = __this->___charsUsed_12; int32_t L_9 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_8, L_9))) < ((int32_t)5))) { goto IL_011b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = __this->___chars_11; int32_t L_11 = __this->___curPos_13; NullCheck(L_10); int32_t L_12 = ((int32_t)il2cpp_codegen_add(L_11, 1)); uint16_t L_13 = (uint16_t)(L_10)->GetAt(static_cast(L_12)); if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)77))))) { goto IL_010a; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_14 = __this->___chars_11; int32_t L_15 = __this->___curPos_13; NullCheck(L_14); int32_t L_16 = ((int32_t)il2cpp_codegen_add(L_15, 2)); uint16_t L_17 = (uint16_t)(L_14)->GetAt(static_cast(L_16)); if ((!(((uint32_t)L_17) == ((uint32_t)((int32_t)80))))) { goto IL_010a; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_18 = __this->___chars_11; int32_t L_19 = __this->___curPos_13; NullCheck(L_18); int32_t L_20 = ((int32_t)il2cpp_codegen_add(L_19, 3)); uint16_t L_21 = (uint16_t)(L_18)->GetAt(static_cast(L_20)); if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)84))))) { goto IL_010a; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = __this->___chars_11; int32_t L_23 = __this->___curPos_13; NullCheck(L_22); int32_t L_24 = ((int32_t)il2cpp_codegen_add(L_23, 4)); uint16_t L_25 = (uint16_t)(L_22)->GetAt(static_cast(L_24)); if ((!(((uint32_t)L_25) == ((uint32_t)((int32_t)89))))) { goto IL_010a; } } { int32_t L_26 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_26, 5)); __this->___scanningFunction_14 = ((int32_t)31); return (int32_t)(((int32_t)45)); } IL_00bb: { int32_t L_27 = __this->___charsUsed_12; int32_t L_28 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_27, L_28))) < ((int32_t)3))) { goto IL_011b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_29 = __this->___chars_11; int32_t L_30 = __this->___curPos_13; NullCheck(L_29); int32_t L_31 = ((int32_t)il2cpp_codegen_add(L_30, 1)); uint16_t L_32 = (uint16_t)(L_29)->GetAt(static_cast(L_31)); if ((!(((uint32_t)L_32) == ((uint32_t)((int32_t)78))))) { goto IL_010a; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_33 = __this->___chars_11; int32_t L_34 = __this->___curPos_13; NullCheck(L_33); int32_t L_35 = ((int32_t)il2cpp_codegen_add(L_34, 2)); uint16_t L_36 = (uint16_t)(L_33)->GetAt(static_cast(L_35)); if ((!(((uint32_t)L_36) == ((uint32_t)((int32_t)89))))) { goto IL_010a; } } { int32_t L_37 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_37, 3)); __this->___scanningFunction_14 = ((int32_t)31); return (int32_t)(((int32_t)44)); } IL_010a: { int32_t L_38 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_38, _stringLiteralF2F28D0DCD35D90C0A1A591C99FD816AC6E36CB9, NULL); } IL_011b: { int32_t L_39; L_39 = DtdParser_ReadData_m02D6859FB085D58E010B7F25EF813156B8CC3109(__this, NULL); if (L_39) { goto IL_0000; } } { int32_t L_40 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_40, _stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7, NULL); goto IL_0000; } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanElement2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanElement2_m8B93B60343DFF685D0BD5A6769BD73FB39E39F45 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE37FDA7277F15534CECEDAEFDA7350672DC07A1D); s_Il2CppMethodInitialized = true; } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)35))))) { goto IL_00dd; } } { goto IL_002f; } IL_0016: { int32_t L_4; L_4 = DtdParser_ReadData_m02D6859FB085D58E010B7F25EF813156B8CC3109(__this, NULL); if (L_4) { goto IL_002f; } } { int32_t L_5 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_5, _stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7, NULL); } IL_002f: { int32_t L_6 = __this->___charsUsed_12; int32_t L_7 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_6, L_7))) < ((int32_t)7))) { goto IL_0016; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = __this->___chars_11; int32_t L_9 = __this->___curPos_13; NullCheck(L_8); int32_t L_10 = ((int32_t)il2cpp_codegen_add(L_9, 1)); uint16_t L_11 = (uint16_t)(L_8)->GetAt(static_cast(L_10)); if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)80))))) { goto IL_00ca; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = __this->___chars_11; int32_t L_13 = __this->___curPos_13; NullCheck(L_12); int32_t L_14 = ((int32_t)il2cpp_codegen_add(L_13, 2)); uint16_t L_15 = (uint16_t)(L_12)->GetAt(static_cast(L_14)); if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)67))))) { goto IL_00ca; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = __this->___chars_11; int32_t L_17 = __this->___curPos_13; NullCheck(L_16); int32_t L_18 = ((int32_t)il2cpp_codegen_add(L_17, 3)); uint16_t L_19 = (uint16_t)(L_16)->GetAt(static_cast(L_18)); if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)68))))) { goto IL_00ca; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_20 = __this->___chars_11; int32_t L_21 = __this->___curPos_13; NullCheck(L_20); int32_t L_22 = ((int32_t)il2cpp_codegen_add(L_21, 4)); uint16_t L_23 = (uint16_t)(L_20)->GetAt(static_cast(L_22)); if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)65))))) { goto IL_00ca; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = __this->___chars_11; int32_t L_25 = __this->___curPos_13; NullCheck(L_24); int32_t L_26 = ((int32_t)il2cpp_codegen_add(L_25, 5)); uint16_t L_27 = (uint16_t)(L_24)->GetAt(static_cast(L_26)); if ((!(((uint32_t)L_27) == ((uint32_t)((int32_t)84))))) { goto IL_00ca; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_28 = __this->___chars_11; int32_t L_29 = __this->___curPos_13; NullCheck(L_28); int32_t L_30 = ((int32_t)il2cpp_codegen_add(L_29, 6)); uint16_t L_31 = (uint16_t)(L_28)->GetAt(static_cast(L_30)); if ((!(((uint32_t)L_31) == ((uint32_t)((int32_t)65))))) { goto IL_00ca; } } { int32_t L_32 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_32, 7)); __this->___scanningFunction_14 = ((int32_t)11); return (int32_t)(((int32_t)42)); } IL_00ca: { int32_t L_33 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, ((int32_t)il2cpp_codegen_add(L_33, 1)), _stringLiteralE37FDA7277F15534CECEDAEFDA7350672DC07A1D, NULL); } IL_00dd: { __this->___scanningFunction_14 = 8; return (int32_t)(((int32_t)9)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanElement3() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanElement3_m28CF7EC133A70479C5F5740091A0F58D03E70EA6 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { Il2CppChar V_0 = 0x0; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_0 = L_3; Il2CppChar L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)40)))) { goto IL_001a; } } { Il2CppChar L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)62)))) { goto IL_002b; } } { goto IL_0043; } IL_001a: { int32_t L_6 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_6, 1)); return (int32_t)(((int32_t)27)); } IL_002b: { int32_t L_7 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_7, 1)); __this->___scanningFunction_14 = 0; return (int32_t)(((int32_t)29)); } IL_0043: { DtdParser_ScanQName_mAD528C25DE449B69809006B17DF6015439150DE3(__this, NULL); __this->___scanningFunction_14 = ((int32_t)9); return (int32_t)(((int32_t)23)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanElement4() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanElement4_m6F360CB881C17BFFB2C688BBF7FA4C9751AB284E (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral465E30F3D21D06E0DA20D8DA61A1DEC0DAB8C6A5); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Il2CppChar V_1 = 0x0; { __this->___scanningFunction_14 = ((int32_t)10); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_1 = L_3; Il2CppChar L_4 = V_1; if ((((int32_t)L_4) == ((int32_t)((int32_t)42)))) { goto IL_0027; } } { Il2CppChar L_5 = V_1; if ((((int32_t)L_5) == ((int32_t)((int32_t)43)))) { goto IL_0031; } } { Il2CppChar L_6 = V_1; if ((((int32_t)L_6) == ((int32_t)((int32_t)63)))) { goto IL_002c; } } { goto IL_0036; } IL_0027: { V_0 = ((int32_t)39); goto IL_0039; } IL_002c: { V_0 = ((int32_t)40); goto IL_0039; } IL_0031: { V_0 = ((int32_t)41); goto IL_0039; } IL_0036: { return (int32_t)(((int32_t)9)); } IL_0039: { bool L_7 = __this->___whitespaceSeen_17; if (!L_7) { goto IL_0052; } } { int32_t L_8 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_8, _stringLiteral465E30F3D21D06E0DA20D8DA61A1DEC0DAB8C6A5, NULL); } IL_0052: { int32_t L_9 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_9, 1)); int32_t L_10 = V_0; return L_10; } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanElement5() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanElement5_m88E34616D6F10E1061C7B3CADEF68E1FF1DF7126 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E813A351BDAF588C5F27BAF94CA6FA9357A2BD3); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_0 = L_3; Il2CppChar L_4 = V_0; if ((!(((uint32_t)L_4) <= ((uint32_t)((int32_t)44))))) { goto IL_001f; } } { Il2CppChar L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)41)))) { goto IL_005b; } } { Il2CppChar L_6 = V_0; if ((((int32_t)L_6) == ((int32_t)((int32_t)44)))) { goto IL_002b; } } { goto IL_008c; } IL_001f: { Il2CppChar L_7 = V_0; if ((((int32_t)L_7) == ((int32_t)((int32_t)62)))) { goto IL_0074; } } { Il2CppChar L_8 = V_0; if ((((int32_t)L_8) == ((int32_t)((int32_t)124)))) { goto IL_0043; } } { goto IL_008c; } IL_002b: { int32_t L_9 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_9, 1)); __this->___scanningFunction_14 = 8; return (int32_t)(((int32_t)43)); } IL_0043: { int32_t L_10 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_10, 1)); __this->___scanningFunction_14 = 8; return (int32_t)(((int32_t)30)); } IL_005b: { int32_t L_11 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_11, 1)); __this->___scanningFunction_14 = ((int32_t)9); return (int32_t)(((int32_t)28)); } IL_0074: { int32_t L_12 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_12, 1)); __this->___scanningFunction_14 = 0; return (int32_t)(((int32_t)29)); } IL_008c: { int32_t L_13 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_13, _stringLiteral7E813A351BDAF588C5F27BAF94CA6FA9357A2BD3, NULL); return (int32_t)(((int32_t)9)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanElement6() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanElement6_m5B40A19C9CD3EAED210B4829382140426A14E936 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA42779B09629BCE81B76EF626A57A0B40F2AD827); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_0 = L_3; Il2CppChar L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)41)))) { goto IL_001a; } } { Il2CppChar L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)124)))) { goto IL_0033; } } { goto IL_0053; } IL_001a: { int32_t L_6 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_6, 1)); __this->___scanningFunction_14 = ((int32_t)12); return (int32_t)(((int32_t)28)); } IL_0033: { int32_t L_7 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_7, 1)); __this->___nextScaningFunction_15 = ((int32_t)11); __this->___scanningFunction_14 = 2; return (int32_t)(((int32_t)30)); } IL_0053: { int32_t L_8 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mE75F8A57E36D0ED9A0E029E79C5D0F5E71B82570(__this, L_8, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D, _stringLiteralA42779B09629BCE81B76EF626A57A0B40F2AD827, NULL); return (int32_t)(((int32_t)9)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanElement7() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanElement7_m3F94F17E421650A3A8D8BDEC02F8201CD2AB1BC7 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { __this->___scanningFunction_14 = ((int32_t)31); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)42))))) { goto IL_0032; } } { bool L_4 = __this->___whitespaceSeen_17; if (L_4) { goto IL_0032; } } { int32_t L_5 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_5, 1)); return (int32_t)(((int32_t)39)); } IL_0032: { return (int32_t)(((int32_t)9)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanAttlist1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanAttlist1_m83EEEF8CFE21CC81A36DA270900584135021C828 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA02A8489B78BE60779EEA12413113D4FBC8C5E36); s_Il2CppMethodInitialized = true; } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)62))))) { goto IL_0029; } } { int32_t L_4 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_4, 1)); __this->___scanningFunction_14 = 0; return (int32_t)(((int32_t)29)); } IL_0029: { bool L_5 = __this->___whitespaceSeen_17; if (L_5) { goto IL_004e; } } { int32_t L_6 = __this->___curPos_13; int32_t L_7 = __this->___curPos_13; String_t* L_8; L_8 = DtdParser_ParseUnexpectedToken_m207C66A0CCCD7B01EC54A015C8F1CB228665119C(__this, L_7, NULL); DtdParser_Throw_mA82BAD834C0CCDE0E9325996E4560953761B62D0(__this, L_6, _stringLiteralA02A8489B78BE60779EEA12413113D4FBC8C5E36, L_8, NULL); } IL_004e: { DtdParser_ScanQName_mAD528C25DE449B69809006B17DF6015439150DE3(__this, NULL); __this->___scanningFunction_14 = ((int32_t)14); return (int32_t)(((int32_t)23)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanAttlist2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanAttlist2_m7E560A6A423783BEB4E7F99C9B4FF69C833D061D (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral26FEE84CC21450278EF3064F22658C1FBAD97632); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5EA907DF837264718D0DC8D41DDEAFB889AC5C57); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; Il2CppChar V_1 = 0x0; IL_0000: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_0 = L_3; Il2CppChar L_4 = V_0; if ((!(((uint32_t)L_4) <= ((uint32_t)((int32_t)67))))) { goto IL_0022; } } { Il2CppChar L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)40)))) { goto IL_003f; } } { Il2CppChar L_6 = V_0; if ((((int32_t)L_6) == ((int32_t)((int32_t)67)))) { goto IL_005f; } } { goto IL_044e; } IL_0022: { Il2CppChar L_7 = V_0; if ((((int32_t)L_7) == ((int32_t)((int32_t)69)))) { goto IL_00e7; } } { Il2CppChar L_8 = V_0; if ((((int32_t)L_8) == ((int32_t)((int32_t)73)))) { goto IL_01e9; } } { Il2CppChar L_9 = V_0; if ((((int32_t)L_9) == ((int32_t)((int32_t)78)))) { goto IL_02b5; } } { goto IL_044e; } IL_003f: { int32_t L_10 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_10, 1)); __this->___scanningFunction_14 = 3; __this->___nextScaningFunction_15 = ((int32_t)17); return (int32_t)(((int32_t)27)); } IL_005f: { int32_t L_11 = __this->___charsUsed_12; int32_t L_12 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_11, L_12))) < ((int32_t)5))) { goto IL_045f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_13 = __this->___chars_11; int32_t L_14 = __this->___curPos_13; NullCheck(L_13); int32_t L_15 = ((int32_t)il2cpp_codegen_add(L_14, 1)); uint16_t L_16 = (uint16_t)(L_13)->GetAt(static_cast(L_15)); if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)68))))) { goto IL_00be; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = __this->___chars_11; int32_t L_18 = __this->___curPos_13; NullCheck(L_17); int32_t L_19 = ((int32_t)il2cpp_codegen_add(L_18, 2)); uint16_t L_20 = (uint16_t)(L_17)->GetAt(static_cast(L_19)); if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)65))))) { goto IL_00be; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_21 = __this->___chars_11; int32_t L_22 = __this->___curPos_13; NullCheck(L_21); int32_t L_23 = ((int32_t)il2cpp_codegen_add(L_22, 3)); uint16_t L_24 = (uint16_t)(L_21)->GetAt(static_cast(L_23)); if ((!(((uint32_t)L_24) == ((uint32_t)((int32_t)84))))) { goto IL_00be; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_25 = __this->___chars_11; int32_t L_26 = __this->___curPos_13; NullCheck(L_25); int32_t L_27 = ((int32_t)il2cpp_codegen_add(L_26, 4)); uint16_t L_28 = (uint16_t)(L_25)->GetAt(static_cast(L_27)); if ((((int32_t)L_28) == ((int32_t)((int32_t)65)))) { goto IL_00cf; } } IL_00be: { int32_t L_29 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_29, _stringLiteral5EA907DF837264718D0DC8D41DDEAFB889AC5C57, NULL); } IL_00cf: { int32_t L_30 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_30, 5)); __this->___scanningFunction_14 = ((int32_t)18); return (int32_t)(0); } IL_00e7: { int32_t L_31 = __this->___charsUsed_12; int32_t L_32 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_31, L_32))) < ((int32_t)((int32_t)9)))) { goto IL_045f; } } { __this->___scanningFunction_14 = ((int32_t)18); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_33 = __this->___chars_11; int32_t L_34 = __this->___curPos_13; NullCheck(L_33); int32_t L_35 = ((int32_t)il2cpp_codegen_add(L_34, 1)); uint16_t L_36 = (uint16_t)(L_33)->GetAt(static_cast(L_35)); if ((!(((uint32_t)L_36) == ((uint32_t)((int32_t)78))))) { goto IL_014f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_37 = __this->___chars_11; int32_t L_38 = __this->___curPos_13; NullCheck(L_37); int32_t L_39 = ((int32_t)il2cpp_codegen_add(L_38, 2)); uint16_t L_40 = (uint16_t)(L_37)->GetAt(static_cast(L_39)); if ((!(((uint32_t)L_40) == ((uint32_t)((int32_t)84))))) { goto IL_014f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_41 = __this->___chars_11; int32_t L_42 = __this->___curPos_13; NullCheck(L_41); int32_t L_43 = ((int32_t)il2cpp_codegen_add(L_42, 3)); uint16_t L_44 = (uint16_t)(L_41)->GetAt(static_cast(L_43)); if ((!(((uint32_t)L_44) == ((uint32_t)((int32_t)73))))) { goto IL_014f; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_45 = __this->___chars_11; int32_t L_46 = __this->___curPos_13; NullCheck(L_45); int32_t L_47 = ((int32_t)il2cpp_codegen_add(L_46, 4)); uint16_t L_48 = (uint16_t)(L_45)->GetAt(static_cast(L_47)); if ((((int32_t)L_48) == ((int32_t)((int32_t)84)))) { goto IL_0160; } } IL_014f: { int32_t L_49 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_49, _stringLiteral26FEE84CC21450278EF3064F22658C1FBAD97632, NULL); } IL_0160: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_50 = __this->___chars_11; int32_t L_51 = __this->___curPos_13; NullCheck(L_50); int32_t L_52 = ((int32_t)il2cpp_codegen_add(L_51, 5)); uint16_t L_53 = (uint16_t)(L_50)->GetAt(static_cast(L_52)); V_1 = L_53; Il2CppChar L_54 = V_1; if ((((int32_t)L_54) == ((int32_t)((int32_t)73)))) { goto IL_017c; } } { Il2CppChar L_55 = V_1; if ((((int32_t)L_55) == ((int32_t)((int32_t)89)))) { goto IL_01c3; } } { goto IL_01d3; } IL_017c: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_56 = __this->___chars_11; int32_t L_57 = __this->___curPos_13; NullCheck(L_56); int32_t L_58 = ((int32_t)il2cpp_codegen_add(L_57, 6)); uint16_t L_59 = (uint16_t)(L_56)->GetAt(static_cast(L_58)); if ((!(((uint32_t)L_59) == ((uint32_t)((int32_t)69))))) { goto IL_01a2; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_60 = __this->___chars_11; int32_t L_61 = __this->___curPos_13; NullCheck(L_60); int32_t L_62 = ((int32_t)il2cpp_codegen_add(L_61, 7)); uint16_t L_63 = (uint16_t)(L_60)->GetAt(static_cast(L_62)); if ((((int32_t)L_63) == ((int32_t)((int32_t)83)))) { goto IL_01b3; } } IL_01a2: { int32_t L_64 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_64, _stringLiteral26FEE84CC21450278EF3064F22658C1FBAD97632, NULL); } IL_01b3: { int32_t L_65 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_65, 8)); return (int32_t)(5); } IL_01c3: { int32_t L_66 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_66, 6)); return (int32_t)(4); } IL_01d3: { int32_t L_67 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_67, _stringLiteral26FEE84CC21450278EF3064F22658C1FBAD97632, NULL); goto IL_045f; } IL_01e9: { int32_t L_68 = __this->___charsUsed_12; int32_t L_69 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_68, L_69))) < ((int32_t)6))) { goto IL_045f; } } { __this->___scanningFunction_14 = ((int32_t)18); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_70 = __this->___chars_11; int32_t L_71 = __this->___curPos_13; NullCheck(L_70); int32_t L_72 = ((int32_t)il2cpp_codegen_add(L_71, 1)); uint16_t L_73 = (uint16_t)(L_70)->GetAt(static_cast(L_72)); if ((((int32_t)L_73) == ((int32_t)((int32_t)68)))) { goto IL_0228; } } { int32_t L_74 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_74, _stringLiteral26FEE84CC21450278EF3064F22658C1FBAD97632, NULL); } IL_0228: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_75 = __this->___chars_11; int32_t L_76 = __this->___curPos_13; NullCheck(L_75); int32_t L_77 = ((int32_t)il2cpp_codegen_add(L_76, 2)); uint16_t L_78 = (uint16_t)(L_75)->GetAt(static_cast(L_77)); if ((((int32_t)L_78) == ((int32_t)((int32_t)82)))) { goto IL_024b; } } { int32_t L_79 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_79, 2)); return (int32_t)(1); } IL_024b: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_80 = __this->___chars_11; int32_t L_81 = __this->___curPos_13; NullCheck(L_80); int32_t L_82 = ((int32_t)il2cpp_codegen_add(L_81, 3)); uint16_t L_83 = (uint16_t)(L_80)->GetAt(static_cast(L_82)); if ((!(((uint32_t)L_83) == ((uint32_t)((int32_t)69))))) { goto IL_0271; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_84 = __this->___chars_11; int32_t L_85 = __this->___curPos_13; NullCheck(L_84); int32_t L_86 = ((int32_t)il2cpp_codegen_add(L_85, 4)); uint16_t L_87 = (uint16_t)(L_84)->GetAt(static_cast(L_86)); if ((((int32_t)L_87) == ((int32_t)((int32_t)70)))) { goto IL_0282; } } IL_0271: { int32_t L_88 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_88, _stringLiteral26FEE84CC21450278EF3064F22658C1FBAD97632, NULL); } IL_0282: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_89 = __this->___chars_11; int32_t L_90 = __this->___curPos_13; NullCheck(L_89); int32_t L_91 = ((int32_t)il2cpp_codegen_add(L_90, 5)); uint16_t L_92 = (uint16_t)(L_89)->GetAt(static_cast(L_91)); if ((((int32_t)L_92) == ((int32_t)((int32_t)83)))) { goto IL_02a5; } } { int32_t L_93 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_93, 5)); return (int32_t)(2); } IL_02a5: { int32_t L_94 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_94, 6)); return (int32_t)(3); } IL_02b5: { int32_t L_95 = __this->___charsUsed_12; int32_t L_96 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_95, L_96))) >= ((int32_t)8))) { goto IL_02d5; } } { RuntimeObject* L_97 = __this->___readerAdapter_0; NullCheck(L_97); bool L_98; L_98 = InterfaceFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.Xml.IDtdParserAdapter::get_IsEof() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_97); if (!L_98) { goto IL_045f; } } IL_02d5: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_99 = __this->___chars_11; int32_t L_100 = __this->___curPos_13; NullCheck(L_99); int32_t L_101 = ((int32_t)il2cpp_codegen_add(L_100, 1)); uint16_t L_102 = (uint16_t)(L_99)->GetAt(static_cast(L_101)); V_1 = L_102; Il2CppChar L_103 = V_1; if ((((int32_t)L_103) == ((int32_t)((int32_t)77)))) { goto IL_0390; } } { Il2CppChar L_104 = V_1; if ((!(((uint32_t)L_104) == ((uint32_t)((int32_t)79))))) { goto IL_043b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_105 = __this->___chars_11; int32_t L_106 = __this->___curPos_13; NullCheck(L_105); int32_t L_107 = ((int32_t)il2cpp_codegen_add(L_106, 2)); uint16_t L_108 = (uint16_t)(L_105)->GetAt(static_cast(L_107)); if ((!(((uint32_t)L_108) == ((uint32_t)((int32_t)84))))) { goto IL_0367; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_109 = __this->___chars_11; int32_t L_110 = __this->___curPos_13; NullCheck(L_109); int32_t L_111 = ((int32_t)il2cpp_codegen_add(L_110, 3)); uint16_t L_112 = (uint16_t)(L_109)->GetAt(static_cast(L_111)); if ((!(((uint32_t)L_112) == ((uint32_t)((int32_t)65))))) { goto IL_0367; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_113 = __this->___chars_11; int32_t L_114 = __this->___curPos_13; NullCheck(L_113); int32_t L_115 = ((int32_t)il2cpp_codegen_add(L_114, 4)); uint16_t L_116 = (uint16_t)(L_113)->GetAt(static_cast(L_115)); if ((!(((uint32_t)L_116) == ((uint32_t)((int32_t)84))))) { goto IL_0367; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_117 = __this->___chars_11; int32_t L_118 = __this->___curPos_13; NullCheck(L_117); int32_t L_119 = ((int32_t)il2cpp_codegen_add(L_118, 5)); uint16_t L_120 = (uint16_t)(L_117)->GetAt(static_cast(L_119)); if ((!(((uint32_t)L_120) == ((uint32_t)((int32_t)73))))) { goto IL_0367; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_121 = __this->___chars_11; int32_t L_122 = __this->___curPos_13; NullCheck(L_121); int32_t L_123 = ((int32_t)il2cpp_codegen_add(L_122, 6)); uint16_t L_124 = (uint16_t)(L_121)->GetAt(static_cast(L_123)); if ((!(((uint32_t)L_124) == ((uint32_t)((int32_t)79))))) { goto IL_0367; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_125 = __this->___chars_11; int32_t L_126 = __this->___curPos_13; NullCheck(L_125); int32_t L_127 = ((int32_t)il2cpp_codegen_add(L_126, 7)); uint16_t L_128 = (uint16_t)(L_125)->GetAt(static_cast(L_127)); if ((((int32_t)L_128) == ((int32_t)((int32_t)78)))) { goto IL_0378; } } IL_0367: { int32_t L_129 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_129, _stringLiteral26FEE84CC21450278EF3064F22658C1FBAD97632, NULL); } IL_0378: { int32_t L_130 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_130, 8)); __this->___scanningFunction_14 = ((int32_t)15); return (int32_t)(8); } IL_0390: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_131 = __this->___chars_11; int32_t L_132 = __this->___curPos_13; NullCheck(L_131); int32_t L_133 = ((int32_t)il2cpp_codegen_add(L_132, 2)); uint16_t L_134 = (uint16_t)(L_131)->GetAt(static_cast(L_133)); if ((!(((uint32_t)L_134) == ((uint32_t)((int32_t)84))))) { goto IL_03ef; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_135 = __this->___chars_11; int32_t L_136 = __this->___curPos_13; NullCheck(L_135); int32_t L_137 = ((int32_t)il2cpp_codegen_add(L_136, 3)); uint16_t L_138 = (uint16_t)(L_135)->GetAt(static_cast(L_137)); if ((!(((uint32_t)L_138) == ((uint32_t)((int32_t)79))))) { goto IL_03ef; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_139 = __this->___chars_11; int32_t L_140 = __this->___curPos_13; NullCheck(L_139); int32_t L_141 = ((int32_t)il2cpp_codegen_add(L_140, 4)); uint16_t L_142 = (uint16_t)(L_139)->GetAt(static_cast(L_141)); if ((!(((uint32_t)L_142) == ((uint32_t)((int32_t)75))))) { goto IL_03ef; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_143 = __this->___chars_11; int32_t L_144 = __this->___curPos_13; NullCheck(L_143); int32_t L_145 = ((int32_t)il2cpp_codegen_add(L_144, 5)); uint16_t L_146 = (uint16_t)(L_143)->GetAt(static_cast(L_145)); if ((!(((uint32_t)L_146) == ((uint32_t)((int32_t)69))))) { goto IL_03ef; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_147 = __this->___chars_11; int32_t L_148 = __this->___curPos_13; NullCheck(L_147); int32_t L_149 = ((int32_t)il2cpp_codegen_add(L_148, 6)); uint16_t L_150 = (uint16_t)(L_147)->GetAt(static_cast(L_149)); if ((((int32_t)L_150) == ((int32_t)((int32_t)78)))) { goto IL_0400; } } IL_03ef: { int32_t L_151 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_151, _stringLiteral26FEE84CC21450278EF3064F22658C1FBAD97632, NULL); } IL_0400: { __this->___scanningFunction_14 = ((int32_t)18); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_152 = __this->___chars_11; int32_t L_153 = __this->___curPos_13; NullCheck(L_152); int32_t L_154 = ((int32_t)il2cpp_codegen_add(L_153, 7)); uint16_t L_155 = (uint16_t)(L_152)->GetAt(static_cast(L_154)); if ((!(((uint32_t)L_155) == ((uint32_t)((int32_t)83))))) { goto IL_042b; } } { int32_t L_156 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_156, 8)); return (int32_t)(7); } IL_042b: { int32_t L_157 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_157, 7)); return (int32_t)(6); } IL_043b: { int32_t L_158 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_158, _stringLiteral26FEE84CC21450278EF3064F22658C1FBAD97632, NULL); goto IL_045f; } IL_044e: { int32_t L_159 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_159, _stringLiteral26FEE84CC21450278EF3064F22658C1FBAD97632, NULL); } IL_045f: { int32_t L_160; L_160 = DtdParser_ReadData_m02D6859FB085D58E010B7F25EF813156B8CC3109(__this, NULL); if (L_160) { goto IL_0000; } } { int32_t L_161 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_161, _stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7, NULL); goto IL_0000; } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanAttlist3() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanAttlist3_mF035EBFC23BF70F98B6DFD34112D12607DC8E74D (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73); s_Il2CppMethodInitialized = true; } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)40))))) { goto IL_0031; } } { int32_t L_4 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_4, 1)); __this->___scanningFunction_14 = 1; __this->___nextScaningFunction_15 = ((int32_t)16); return (int32_t)(((int32_t)27)); } IL_0031: { int32_t L_5 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mBCA8EBEE9CF9EC08AEEB6CA14BF75492689BF982(__this, L_5, _stringLiteralA3DFC0C77ACADE0EE48DCC73E795A597D0270A73, NULL); return (int32_t)(((int32_t)9)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanAttlist4() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanAttlist4_mCD308E6A3D25EB060DBC8C35FADB8F6A67991587 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA42779B09629BCE81B76EF626A57A0B40F2AD827); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_0 = L_3; Il2CppChar L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)41)))) { goto IL_001a; } } { Il2CppChar L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)124)))) { goto IL_0033; } } { goto IL_0053; } IL_001a: { int32_t L_6 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_6, 1)); __this->___scanningFunction_14 = ((int32_t)18); return (int32_t)(((int32_t)28)); } IL_0033: { int32_t L_7 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_7, 1)); __this->___scanningFunction_14 = 1; __this->___nextScaningFunction_15 = ((int32_t)16); return (int32_t)(((int32_t)30)); } IL_0053: { int32_t L_8 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mE75F8A57E36D0ED9A0E029E79C5D0F5E71B82570(__this, L_8, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D, _stringLiteralA42779B09629BCE81B76EF626A57A0B40F2AD827, NULL); return (int32_t)(((int32_t)9)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanAttlist5() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanAttlist5_m35AA80B4939B569B63EACFBD15C3A7A279E08C82 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA42779B09629BCE81B76EF626A57A0B40F2AD827); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_0 = L_3; Il2CppChar L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)41)))) { goto IL_001a; } } { Il2CppChar L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)124)))) { goto IL_0033; } } { goto IL_0053; } IL_001a: { int32_t L_6 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_6, 1)); __this->___scanningFunction_14 = ((int32_t)18); return (int32_t)(((int32_t)28)); } IL_0033: { int32_t L_7 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_7, 1)); __this->___scanningFunction_14 = 3; __this->___nextScaningFunction_15 = ((int32_t)17); return (int32_t)(((int32_t)30)); } IL_0053: { int32_t L_8 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mE75F8A57E36D0ED9A0E029E79C5D0F5E71B82570(__this, L_8, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D, _stringLiteralA42779B09629BCE81B76EF626A57A0B40F2AD827, NULL); return (int32_t)(((int32_t)9)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanAttlist6() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanAttlist6_mF627B2ACA8D7005BF6E61B406E7D9016E817B0AE (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral601E51A43FF6581ACBC417FEE88AE4098CBBB1A4); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; Il2CppChar V_1 = 0x0; IL_0000: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_0 = L_3; Il2CppChar L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)34)))) { goto IL_0020; } } { Il2CppChar L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)35)))) { goto IL_0033; } } { Il2CppChar L_6 = V_0; if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)39))))) { goto IL_026a; } } IL_0020: { int32_t L_7; L_7 = DtdParser_ScanLiteral_m04C307F1A42A05A09ED322C754538E90C2ED0026(__this, 0, NULL); __this->___scanningFunction_14 = ((int32_t)13); return (int32_t)(((int32_t)35)); } IL_0033: { int32_t L_8 = __this->___charsUsed_12; int32_t L_9 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_8, L_9))) < ((int32_t)6))) { goto IL_027b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = __this->___chars_11; int32_t L_11 = __this->___curPos_13; NullCheck(L_10); int32_t L_12 = ((int32_t)il2cpp_codegen_add(L_11, 1)); uint16_t L_13 = (uint16_t)(L_10)->GetAt(static_cast(L_12)); V_1 = L_13; Il2CppChar L_14 = V_1; if ((((int32_t)L_14) == ((int32_t)((int32_t)70)))) { goto IL_01e1; } } { Il2CppChar L_15 = V_1; if ((((int32_t)L_15) == ((int32_t)((int32_t)73)))) { goto IL_0132; } } { Il2CppChar L_16 = V_1; if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)82))))) { goto IL_0257; } } { int32_t L_17 = __this->___charsUsed_12; int32_t L_18 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_17, L_18))) < ((int32_t)((int32_t)9)))) { goto IL_027b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = __this->___chars_11; int32_t L_20 = __this->___curPos_13; NullCheck(L_19); int32_t L_21 = ((int32_t)il2cpp_codegen_add(L_20, 2)); uint16_t L_22 = (uint16_t)(L_19)->GetAt(static_cast(L_21)); if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)69))))) { goto IL_0107; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_23 = __this->___chars_11; int32_t L_24 = __this->___curPos_13; NullCheck(L_23); int32_t L_25 = ((int32_t)il2cpp_codegen_add(L_24, 3)); uint16_t L_26 = (uint16_t)(L_23)->GetAt(static_cast(L_25)); if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)81))))) { goto IL_0107; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_27 = __this->___chars_11; int32_t L_28 = __this->___curPos_13; NullCheck(L_27); int32_t L_29 = ((int32_t)il2cpp_codegen_add(L_28, 4)); uint16_t L_30 = (uint16_t)(L_27)->GetAt(static_cast(L_29)); if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)85))))) { goto IL_0107; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_31 = __this->___chars_11; int32_t L_32 = __this->___curPos_13; NullCheck(L_31); int32_t L_33 = ((int32_t)il2cpp_codegen_add(L_32, 5)); uint16_t L_34 = (uint16_t)(L_31)->GetAt(static_cast(L_33)); if ((!(((uint32_t)L_34) == ((uint32_t)((int32_t)73))))) { goto IL_0107; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_35 = __this->___chars_11; int32_t L_36 = __this->___curPos_13; NullCheck(L_35); int32_t L_37 = ((int32_t)il2cpp_codegen_add(L_36, 6)); uint16_t L_38 = (uint16_t)(L_35)->GetAt(static_cast(L_37)); if ((!(((uint32_t)L_38) == ((uint32_t)((int32_t)82))))) { goto IL_0107; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_39 = __this->___chars_11; int32_t L_40 = __this->___curPos_13; NullCheck(L_39); int32_t L_41 = ((int32_t)il2cpp_codegen_add(L_40, 7)); uint16_t L_42 = (uint16_t)(L_39)->GetAt(static_cast(L_41)); if ((!(((uint32_t)L_42) == ((uint32_t)((int32_t)69))))) { goto IL_0107; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_43 = __this->___chars_11; int32_t L_44 = __this->___curPos_13; NullCheck(L_43); int32_t L_45 = ((int32_t)il2cpp_codegen_add(L_44, 8)); uint16_t L_46 = (uint16_t)(L_43)->GetAt(static_cast(L_45)); if ((((int32_t)L_46) == ((int32_t)((int32_t)68)))) { goto IL_0118; } } IL_0107: { int32_t L_47 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_47, _stringLiteral601E51A43FF6581ACBC417FEE88AE4098CBBB1A4, NULL); } IL_0118: { int32_t L_48 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_48, ((int32_t)9))); __this->___scanningFunction_14 = ((int32_t)13); return (int32_t)(((int32_t)20)); } IL_0132: { int32_t L_49 = __this->___charsUsed_12; int32_t L_50 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_49, L_50))) < ((int32_t)8))) { goto IL_027b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_51 = __this->___chars_11; int32_t L_52 = __this->___curPos_13; NullCheck(L_51); int32_t L_53 = ((int32_t)il2cpp_codegen_add(L_52, 2)); uint16_t L_54 = (uint16_t)(L_51)->GetAt(static_cast(L_53)); if ((!(((uint32_t)L_54) == ((uint32_t)((int32_t)77))))) { goto IL_01b7; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_55 = __this->___chars_11; int32_t L_56 = __this->___curPos_13; NullCheck(L_55); int32_t L_57 = ((int32_t)il2cpp_codegen_add(L_56, 3)); uint16_t L_58 = (uint16_t)(L_55)->GetAt(static_cast(L_57)); if ((!(((uint32_t)L_58) == ((uint32_t)((int32_t)80))))) { goto IL_01b7; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_59 = __this->___chars_11; int32_t L_60 = __this->___curPos_13; NullCheck(L_59); int32_t L_61 = ((int32_t)il2cpp_codegen_add(L_60, 4)); uint16_t L_62 = (uint16_t)(L_59)->GetAt(static_cast(L_61)); if ((!(((uint32_t)L_62) == ((uint32_t)((int32_t)76))))) { goto IL_01b7; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_63 = __this->___chars_11; int32_t L_64 = __this->___curPos_13; NullCheck(L_63); int32_t L_65 = ((int32_t)il2cpp_codegen_add(L_64, 5)); uint16_t L_66 = (uint16_t)(L_63)->GetAt(static_cast(L_65)); if ((!(((uint32_t)L_66) == ((uint32_t)((int32_t)73))))) { goto IL_01b7; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_67 = __this->___chars_11; int32_t L_68 = __this->___curPos_13; NullCheck(L_67); int32_t L_69 = ((int32_t)il2cpp_codegen_add(L_68, 6)); uint16_t L_70 = (uint16_t)(L_67)->GetAt(static_cast(L_69)); if ((!(((uint32_t)L_70) == ((uint32_t)((int32_t)69))))) { goto IL_01b7; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_71 = __this->___chars_11; int32_t L_72 = __this->___curPos_13; NullCheck(L_71); int32_t L_73 = ((int32_t)il2cpp_codegen_add(L_72, 7)); uint16_t L_74 = (uint16_t)(L_71)->GetAt(static_cast(L_73)); if ((((int32_t)L_74) == ((int32_t)((int32_t)68)))) { goto IL_01c8; } } IL_01b7: { int32_t L_75 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_75, _stringLiteral601E51A43FF6581ACBC417FEE88AE4098CBBB1A4, NULL); } IL_01c8: { int32_t L_76 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_76, 8)); __this->___scanningFunction_14 = ((int32_t)13); return (int32_t)(((int32_t)21)); } IL_01e1: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_77 = __this->___chars_11; int32_t L_78 = __this->___curPos_13; NullCheck(L_77); int32_t L_79 = ((int32_t)il2cpp_codegen_add(L_78, 2)); uint16_t L_80 = (uint16_t)(L_77)->GetAt(static_cast(L_79)); if ((!(((uint32_t)L_80) == ((uint32_t)((int32_t)73))))) { goto IL_022d; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_81 = __this->___chars_11; int32_t L_82 = __this->___curPos_13; NullCheck(L_81); int32_t L_83 = ((int32_t)il2cpp_codegen_add(L_82, 3)); uint16_t L_84 = (uint16_t)(L_81)->GetAt(static_cast(L_83)); if ((!(((uint32_t)L_84) == ((uint32_t)((int32_t)88))))) { goto IL_022d; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_85 = __this->___chars_11; int32_t L_86 = __this->___curPos_13; NullCheck(L_85); int32_t L_87 = ((int32_t)il2cpp_codegen_add(L_86, 4)); uint16_t L_88 = (uint16_t)(L_85)->GetAt(static_cast(L_87)); if ((!(((uint32_t)L_88) == ((uint32_t)((int32_t)69))))) { goto IL_022d; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_89 = __this->___chars_11; int32_t L_90 = __this->___curPos_13; NullCheck(L_89); int32_t L_91 = ((int32_t)il2cpp_codegen_add(L_90, 5)); uint16_t L_92 = (uint16_t)(L_89)->GetAt(static_cast(L_91)); if ((((int32_t)L_92) == ((int32_t)((int32_t)68)))) { goto IL_023e; } } IL_022d: { int32_t L_93 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_93, _stringLiteral601E51A43FF6581ACBC417FEE88AE4098CBBB1A4, NULL); } IL_023e: { int32_t L_94 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_94, 6)); __this->___scanningFunction_14 = ((int32_t)19); return (int32_t)(((int32_t)22)); } IL_0257: { int32_t L_95 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_95, _stringLiteral601E51A43FF6581ACBC417FEE88AE4098CBBB1A4, NULL); goto IL_027b; } IL_026a: { int32_t L_96 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_96, _stringLiteral601E51A43FF6581ACBC417FEE88AE4098CBBB1A4, NULL); } IL_027b: { int32_t L_97; L_97 = DtdParser_ReadData_m02D6859FB085D58E010B7F25EF813156B8CC3109(__this, NULL); if (L_97) { goto IL_0000; } } { int32_t L_98 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_98, _stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7, NULL); goto IL_0000; } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanAttlist7() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanAttlist7_m180D2F146EE05F9ED0732FDA13ADF88F8A0AB239 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_0 = L_3; Il2CppChar L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)34)))) { goto IL_0018; } } { Il2CppChar L_5 = V_0; if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)39))))) { goto IL_002b; } } IL_0018: { int32_t L_6; L_6 = DtdParser_ScanLiteral_m04C307F1A42A05A09ED322C754538E90C2ED0026(__this, 0, NULL); __this->___scanningFunction_14 = ((int32_t)13); return (int32_t)(((int32_t)35)); } IL_002b: { int32_t L_7 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mE75F8A57E36D0ED9A0E029E79C5D0F5E71B82570(__this, L_7, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D, NULL); return (int32_t)(((int32_t)9)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanLiteral(System.Xml.DtdParser/LiteralType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanLiteral_m04C307F1A42A05A09ED322C754538E90C2ED0026 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_literalType, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral292FFF1AFC6A39FAE710753C820C4EC3DD0D4613); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8DF28038BAE3947FE2A10B2562359E7D3A2BF989); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; Il2CppChar V_1 = 0x0; int32_t V_2 = 0; int32_t V_3 = 0; Il2CppChar V_4 = 0x0; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_9 = NULL; int32_t G_B3_0 = 0; StringBuilder_t* G_B29_0 = NULL; StringBuilder_t* G_B28_0 = NULL; String_t* G_B30_0 = NULL; StringBuilder_t* G_B30_1 = NULL; StringBuilder_t* G_B33_0 = NULL; StringBuilder_t* G_B32_0 = NULL; String_t* G_B34_0 = NULL; StringBuilder_t* G_B34_1 = NULL; RuntimeObject* G_B57_0 = NULL; RuntimeObject* G_B56_0 = NULL; StringBuilder_t* G_B58_0 = NULL; RuntimeObject* G_B58_1 = NULL; int32_t G_B62_0 = 0; RuntimeObject* G_B62_1 = NULL; int32_t G_B61_0 = 0; RuntimeObject* G_B61_1 = NULL; StringBuilder_t* G_B63_0 = NULL; int32_t G_B63_1 = 0; RuntimeObject* G_B63_2 = NULL; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_0 = L_3; int32_t L_4 = ___0_literalType; if (!L_4) { goto IL_0015; } } { G_B3_0 = ((int32_t)10); goto IL_0017; } IL_0015: { G_B3_0 = ((int32_t)32); } IL_0017: { V_1 = G_B3_0; int32_t L_5 = __this->___currentEntityId_22; V_2 = L_5; LineInfo_t415DCF0EAD0FB3806F779BA170EC9058E47CCB24* L_6 = (&__this->___literalLineInfo_27); int32_t L_7; L_7 = DtdParser_get_LineNo_m4D78AF8EFE8D05D61D89C0CC1C3CB46D0263E246(__this, NULL); int32_t L_8; L_8 = DtdParser_get_LinePos_m2FDB78628E84297247B78BA60AF304C084790005(__this, NULL); LineInfo_Set_m5D59B42332EDBA296FA9AED5CF63D8BECC18214E(L_6, L_7, L_8, NULL); int32_t L_9 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_9, 1)); int32_t L_10 = __this->___curPos_13; __this->___tokenStartPos_18 = L_10; StringBuilder_t* L_11 = __this->___stringBuilder_25; NullCheck(L_11); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_11, 0, NULL); goto IL_006c; } IL_005e: { int32_t L_12 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_12, 1)); } IL_006c: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_13 = (&__this->___xmlCharType_4); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = L_13->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_15 = __this->___chars_11; int32_t L_16 = __this->___curPos_13; NullCheck(L_15); int32_t L_17 = L_16; uint16_t L_18 = (uint16_t)(L_15)->GetAt(static_cast(L_17)); NullCheck(L_14); uint16_t L_19 = L_18; uint8_t L_20 = (L_14)->GetAt(static_cast(L_19)); if (!((int32_t)((int32_t)L_20&((int32_t)128)))) { goto IL_009e; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_21 = __this->___chars_11; int32_t L_22 = __this->___curPos_13; NullCheck(L_21); int32_t L_23 = L_22; uint16_t L_24 = (uint16_t)(L_21)->GetAt(static_cast(L_23)); if ((!(((uint32_t)L_24) == ((uint32_t)((int32_t)37))))) { goto IL_005e; } } IL_009e: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_25 = __this->___chars_11; int32_t L_26 = __this->___curPos_13; NullCheck(L_25); int32_t L_27 = L_26; uint16_t L_28 = (uint16_t)(L_25)->GetAt(static_cast(L_27)); Il2CppChar L_29 = V_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { goto IL_0102; } } { int32_t L_30 = __this->___currentEntityId_22; int32_t L_31 = V_2; if ((!(((uint32_t)L_30) == ((uint32_t)L_31)))) { goto IL_0102; } } { StringBuilder_t* L_32 = __this->___stringBuilder_25; NullCheck(L_32); int32_t L_33; L_33 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_32, NULL); if ((((int32_t)L_33) <= ((int32_t)0))) { goto IL_00ea; } } { StringBuilder_t* L_34 = __this->___stringBuilder_25; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_35 = __this->___chars_11; int32_t L_36 = __this->___tokenStartPos_18; int32_t L_37 = __this->___curPos_13; int32_t L_38 = __this->___tokenStartPos_18; NullCheck(L_34); StringBuilder_t* L_39; L_39 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_34, L_35, L_36, ((int32_t)il2cpp_codegen_subtract(L_37, L_38)), NULL); } IL_00ea: { int32_t L_40 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_40, 1)); Il2CppChar L_41 = V_0; __this->___literalQuoteChar_28 = L_41; return (int32_t)(((int32_t)35)); } IL_0102: { int32_t L_42 = __this->___curPos_13; int32_t L_43 = __this->___tokenStartPos_18; V_3 = ((int32_t)il2cpp_codegen_subtract(L_42, L_43)); int32_t L_44 = V_3; if ((((int32_t)L_44) <= ((int32_t)0))) { goto IL_0139; } } { StringBuilder_t* L_45 = __this->___stringBuilder_25; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_46 = __this->___chars_11; int32_t L_47 = __this->___tokenStartPos_18; int32_t L_48 = V_3; NullCheck(L_45); StringBuilder_t* L_49; L_49 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_45, L_46, L_47, L_48, NULL); int32_t L_50 = __this->___curPos_13; __this->___tokenStartPos_18 = L_50; } IL_0139: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_51 = __this->___chars_11; int32_t L_52 = __this->___curPos_13; NullCheck(L_51); int32_t L_53 = L_52; uint16_t L_54 = (uint16_t)(L_51)->GetAt(static_cast(L_53)); V_4 = L_54; Il2CppChar L_55 = V_4; if ((!(((uint32_t)L_55) <= ((uint32_t)((int32_t)39))))) { goto IL_0193; } } { Il2CppChar L_56 = V_4; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_56, ((int32_t)9)))) { case 0: { goto IL_02fd; } case 1: { goto IL_01b8; } case 2: { goto IL_054d; } case 3: { goto IL_054d; } case 4: { goto IL_01fd; } } } { Il2CppChar L_57 = V_4; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_57, ((int32_t)34)))) { case 0: { goto IL_01a5; } case 1: { goto IL_054d; } case 2: { goto IL_054d; } case 3: { goto IL_0366; } case 4: { goto IL_039b; } case 5: { goto IL_01a5; } } } { goto IL_054d; } IL_0193: { Il2CppChar L_58 = V_4; if ((((int32_t)L_58) == ((int32_t)((int32_t)60)))) { goto IL_0337; } } { Il2CppChar L_59 = V_4; if ((!(((uint32_t)L_59) == ((uint32_t)((int32_t)62))))) { goto IL_054d; } } IL_01a5: { int32_t L_60 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_60, 1)); goto IL_006c; } IL_01b8: { int32_t L_61 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_61, 1)); bool L_62; L_62 = DtdParser_get_Normalize_mA95ED98D422B35FDBDAE26FA37F593B389FD122C_inline(__this, NULL); if (!L_62) { goto IL_01e7; } } { StringBuilder_t* L_63 = __this->___stringBuilder_25; Il2CppChar L_64 = V_1; NullCheck(L_63); StringBuilder_t* L_65; L_65 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_63, L_64, NULL); int32_t L_66 = __this->___curPos_13; __this->___tokenStartPos_18 = L_66; } IL_01e7: { RuntimeObject* L_67 = __this->___readerAdapter_0; int32_t L_68 = __this->___curPos_13; NullCheck(L_67); InterfaceActionInvoker1< int32_t >::Invoke(13 /* System.Void System.Xml.IDtdParserAdapter::OnNewLine(System.Int32) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_67, L_68); goto IL_006c; } IL_01fd: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_69 = __this->___chars_11; int32_t L_70 = __this->___curPos_13; NullCheck(L_69); int32_t L_71 = ((int32_t)il2cpp_codegen_add(L_70, 1)); uint16_t L_72 = (uint16_t)(L_69)->GetAt(static_cast(L_71)); if ((!(((uint32_t)L_72) == ((uint32_t)((int32_t)10))))) { goto IL_02a5; } } { bool L_73; L_73 = DtdParser_get_Normalize_mA95ED98D422B35FDBDAE26FA37F593B389FD122C_inline(__this, NULL); if (!L_73) { goto IL_0295; } } { int32_t L_74 = ___0_literalType; if (L_74) { goto IL_0245; } } { StringBuilder_t* L_75 = __this->___stringBuilder_25; RuntimeObject* L_76 = __this->___readerAdapter_0; NullCheck(L_76); bool L_77; L_77 = InterfaceFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Xml.IDtdParserAdapter::get_IsEntityEolNormalized() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_76); G_B28_0 = L_75; if (L_77) { G_B29_0 = L_75; goto IL_0238; } } { G_B30_0 = _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745; G_B30_1 = G_B28_0; goto IL_023d; } IL_0238: { G_B30_0 = _stringLiteral8A8EFDA91C6C257127F8C8D526FAD7E7552766AA; G_B30_1 = G_B29_0; } IL_023d: { NullCheck(G_B30_1); StringBuilder_t* L_78; L_78 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B30_1, G_B30_0, NULL); goto IL_026a; } IL_0245: { StringBuilder_t* L_79 = __this->___stringBuilder_25; RuntimeObject* L_80 = __this->___readerAdapter_0; NullCheck(L_80); bool L_81; L_81 = InterfaceFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Xml.IDtdParserAdapter::get_IsEntityEolNormalized() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_80); G_B32_0 = L_79; if (L_81) { G_B33_0 = L_79; goto IL_025f; } } { G_B34_0 = _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD; G_B34_1 = G_B32_0; goto IL_0264; } IL_025f: { G_B34_0 = _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5; G_B34_1 = G_B33_0; } IL_0264: { NullCheck(G_B34_1); StringBuilder_t* L_82; L_82 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B34_1, G_B34_0, NULL); } IL_026a: { int32_t L_83 = __this->___curPos_13; __this->___tokenStartPos_18 = ((int32_t)il2cpp_codegen_add(L_83, 2)); DtdParser_SaveParsingBuffer_mA50879908E86FF9D354642A7BF0CDF85ACE35D8A(__this, NULL); RuntimeObject* L_84 = __this->___readerAdapter_0; RuntimeObject* L_85 = L_84; NullCheck(L_85); int32_t L_86; L_86 = InterfaceFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Xml.IDtdParserAdapter::get_CurrentPosition() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_85); V_5 = L_86; int32_t L_87 = V_5; NullCheck(L_85); InterfaceActionInvoker1< int32_t >::Invoke(6 /* System.Void System.Xml.IDtdParserAdapter::set_CurrentPosition(System.Int32) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_85, ((int32_t)il2cpp_codegen_add(L_87, 1))); } IL_0295: { int32_t L_88 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_88, 2)); goto IL_02e7; } IL_02a5: { int32_t L_89 = __this->___curPos_13; int32_t L_90 = __this->___charsUsed_12; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_89, 1))) == ((int32_t)L_90))) { goto IL_05cf; } } { int32_t L_91 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_91, 1)); bool L_92; L_92 = DtdParser_get_Normalize_mA95ED98D422B35FDBDAE26FA37F593B389FD122C_inline(__this, NULL); if (!L_92) { goto IL_02e7; } } { StringBuilder_t* L_93 = __this->___stringBuilder_25; Il2CppChar L_94 = V_1; NullCheck(L_93); StringBuilder_t* L_95; L_95 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_93, L_94, NULL); int32_t L_96 = __this->___curPos_13; __this->___tokenStartPos_18 = L_96; } IL_02e7: { RuntimeObject* L_97 = __this->___readerAdapter_0; int32_t L_98 = __this->___curPos_13; NullCheck(L_97); InterfaceActionInvoker1< int32_t >::Invoke(13 /* System.Void System.Xml.IDtdParserAdapter::OnNewLine(System.Int32) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_97, L_98); goto IL_006c; } IL_02fd: { int32_t L_99 = ___0_literalType; if (L_99) { goto IL_0324; } } { bool L_100; L_100 = DtdParser_get_Normalize_mA95ED98D422B35FDBDAE26FA37F593B389FD122C_inline(__this, NULL); if (!L_100) { goto IL_0324; } } { StringBuilder_t* L_101 = __this->___stringBuilder_25; NullCheck(L_101); StringBuilder_t* L_102; L_102 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_101, ((int32_t)32), NULL); int32_t L_103 = __this->___tokenStartPos_18; __this->___tokenStartPos_18 = ((int32_t)il2cpp_codegen_add(L_103, 1)); } IL_0324: { int32_t L_104 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_104, 1)); goto IL_006c; } IL_0337: { int32_t L_105 = ___0_literalType; if (L_105) { goto IL_0353; } } { int32_t L_106 = __this->___curPos_13; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_107; L_107 = XmlException_BuildCharExceptionArgs_m5C3D183AB941552746F7DC656366F28CA5BAFC65(((int32_t)60), 0, NULL); DtdParser_Throw_mEE35AE1DA02A2343A42F062D85BA7D04AA9666C5(__this, L_106, _stringLiteral292FFF1AFC6A39FAE710753C820C4EC3DD0D4613, L_107, NULL); } IL_0353: { int32_t L_108 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_108, 1)); goto IL_006c; } IL_0366: { int32_t L_109 = ___0_literalType; if ((((int32_t)L_109) == ((int32_t)1))) { goto IL_037d; } } { int32_t L_110 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_110, 1)); goto IL_006c; } IL_037d: { int32_t L_111 = ___0_literalType; bool L_112; L_112 = DtdParser_HandleEntityReference_mEE956B6F9F4B05B092B23769C7446B988111557C(__this, (bool)1, (bool)1, (bool)((((int32_t)L_111) == ((int32_t)0))? 1 : 0), NULL); int32_t L_113 = __this->___curPos_13; __this->___tokenStartPos_18 = L_113; goto IL_006c; } IL_039b: { int32_t L_114 = ___0_literalType; if ((!(((uint32_t)L_114) == ((uint32_t)2)))) { goto IL_03b2; } } { int32_t L_115 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_115, 1)); goto IL_006c; } IL_03b2: { int32_t L_116 = __this->___curPos_13; int32_t L_117 = __this->___charsUsed_12; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_116, 1))) == ((int32_t)L_117))) { goto IL_05cf; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_118 = __this->___chars_11; int32_t L_119 = __this->___curPos_13; NullCheck(L_118); int32_t L_120 = ((int32_t)il2cpp_codegen_add(L_119, 1)); uint16_t L_121 = (uint16_t)(L_118)->GetAt(static_cast(L_120)); if ((!(((uint32_t)L_121) == ((uint32_t)((int32_t)35))))) { goto IL_0445; } } { DtdParser_SaveParsingBuffer_mA50879908E86FF9D354642A7BF0CDF85ACE35D8A(__this, NULL); RuntimeObject* L_122 = __this->___readerAdapter_0; bool L_123; L_123 = DtdParser_get_SaveInternalSubsetValue_m85DB5C7308BF525EE652E944E696CD7A3505DF66(__this, NULL); G_B56_0 = L_122; if (L_123) { G_B57_0 = L_122; goto IL_03ef; } } { G_B58_0 = ((StringBuilder_t*)(NULL)); G_B58_1 = G_B56_0; goto IL_03f5; } IL_03ef: { StringBuilder_t* L_124 = __this->___internalSubsetValueSb_20; G_B58_0 = L_124; G_B58_1 = G_B57_0; } IL_03f5: { NullCheck(G_B58_1); int32_t L_125; L_125 = InterfaceFuncInvoker1< int32_t, StringBuilder_t* >::Invoke(14 /* System.Int32 System.Xml.IDtdParserAdapter::ParseNumericCharRef(System.Text.StringBuilder) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, G_B58_1, G_B58_0); V_6 = L_125; DtdParser_LoadParsingBuffer_mF05F85D2FBE70046CCFD312890F918B9D0961C14(__this, NULL); StringBuilder_t* L_126 = __this->___stringBuilder_25; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_127 = __this->___chars_11; int32_t L_128 = __this->___curPos_13; int32_t L_129 = V_6; int32_t L_130 = __this->___curPos_13; NullCheck(L_126); StringBuilder_t* L_131; L_131 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_126, L_127, L_128, ((int32_t)il2cpp_codegen_subtract(L_129, L_130)), NULL); RuntimeObject* L_132 = __this->___readerAdapter_0; int32_t L_133 = V_6; NullCheck(L_132); InterfaceActionInvoker1< int32_t >::Invoke(6 /* System.Void System.Xml.IDtdParserAdapter::set_CurrentPosition(System.Int32) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_132, L_133); int32_t L_134 = V_6; __this->___tokenStartPos_18 = L_134; int32_t L_135 = V_6; __this->___curPos_13 = L_135; goto IL_006c; } IL_0445: { DtdParser_SaveParsingBuffer_mA50879908E86FF9D354642A7BF0CDF85ACE35D8A(__this, NULL); int32_t L_136 = ___0_literalType; if (L_136) { goto IL_04d9; } } { RuntimeObject* L_137 = __this->___readerAdapter_0; bool L_138; L_138 = DtdParser_get_SaveInternalSubsetValue_m85DB5C7308BF525EE652E944E696CD7A3505DF66(__this, NULL); G_B61_0 = 1; G_B61_1 = L_137; if (L_138) { G_B62_0 = 1; G_B62_1 = L_137; goto IL_0463; } } { G_B63_0 = ((StringBuilder_t*)(NULL)); G_B63_1 = G_B61_0; G_B63_2 = G_B61_1; goto IL_0469; } IL_0463: { StringBuilder_t* L_139 = __this->___internalSubsetValueSb_20; G_B63_0 = L_139; G_B63_1 = G_B62_0; G_B63_2 = G_B62_1; } IL_0469: { NullCheck(G_B63_2); int32_t L_140; L_140 = InterfaceFuncInvoker2< int32_t, bool, StringBuilder_t* >::Invoke(15 /* System.Int32 System.Xml.IDtdParserAdapter::ParseNamedCharRef(System.Boolean,System.Text.StringBuilder) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, G_B63_2, (bool)G_B63_1, G_B63_0); V_7 = L_140; DtdParser_LoadParsingBuffer_mF05F85D2FBE70046CCFD312890F918B9D0961C14(__this, NULL); int32_t L_141 = V_7; if ((((int32_t)L_141) < ((int32_t)0))) { goto IL_04be; } } { StringBuilder_t* L_142 = __this->___stringBuilder_25; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_143 = __this->___chars_11; int32_t L_144 = __this->___curPos_13; int32_t L_145 = V_7; int32_t L_146 = __this->___curPos_13; NullCheck(L_142); StringBuilder_t* L_147; L_147 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_142, L_143, L_144, ((int32_t)il2cpp_codegen_subtract(L_145, L_146)), NULL); RuntimeObject* L_148 = __this->___readerAdapter_0; int32_t L_149 = V_7; NullCheck(L_148); InterfaceActionInvoker1< int32_t >::Invoke(6 /* System.Void System.Xml.IDtdParserAdapter::set_CurrentPosition(System.Int32) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_148, L_149); int32_t L_150 = V_7; __this->___tokenStartPos_18 = L_150; int32_t L_151 = V_7; __this->___curPos_13 = L_151; goto IL_006c; } IL_04be: { bool L_152; L_152 = DtdParser_HandleEntityReference_mEE956B6F9F4B05B092B23769C7446B988111557C(__this, (bool)0, (bool)1, (bool)1, NULL); int32_t L_153 = __this->___curPos_13; __this->___tokenStartPos_18 = L_153; goto IL_006c; } IL_04d9: { RuntimeObject* L_154 = __this->___readerAdapter_0; NullCheck(L_154); int32_t L_155; L_155 = InterfaceFuncInvoker2< int32_t, bool, StringBuilder_t* >::Invoke(15 /* System.Int32 System.Xml.IDtdParserAdapter::ParseNamedCharRef(System.Boolean,System.Text.StringBuilder) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_154, (bool)0, (StringBuilder_t*)NULL); V_8 = L_155; DtdParser_LoadParsingBuffer_mF05F85D2FBE70046CCFD312890F918B9D0961C14(__this, NULL); int32_t L_156 = V_8; if ((((int32_t)L_156) < ((int32_t)0))) { goto IL_050c; } } { int32_t L_157 = __this->___curPos_13; __this->___tokenStartPos_18 = L_157; int32_t L_158 = V_8; __this->___curPos_13 = L_158; goto IL_006c; } IL_050c: { StringBuilder_t* L_159 = __this->___stringBuilder_25; NullCheck(L_159); StringBuilder_t* L_160; L_160 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_159, ((int32_t)38), NULL); int32_t L_161 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_161, 1)); int32_t L_162 = __this->___curPos_13; __this->___tokenStartPos_18 = L_162; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_163; L_163 = DtdParser_ScanEntityName_m88D8D0B3BD33BEB5120E1AA008E13FEBC4B03482(__this, NULL); V_9 = L_163; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_164 = V_9; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_165; L_165 = DtdParser_VerifyEntityReference_m84A330F3B961DFFD33E4BFA07F60013BCF96665E(__this, L_164, (bool)0, (bool)0, (bool)0, NULL); goto IL_006c; } IL_054d: { int32_t L_166 = __this->___curPos_13; int32_t L_167 = __this->___charsUsed_12; if ((((int32_t)L_166) == ((int32_t)L_167))) { goto IL_05cf; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_168 = __this->___chars_11; int32_t L_169 = __this->___curPos_13; NullCheck(L_168); int32_t L_170 = L_169; uint16_t L_171 = (uint16_t)(L_168)->GetAt(static_cast(L_170)); bool L_172; L_172 = XmlCharType_IsHighSurrogate_mB3E741B22E4B47DC85F7F18A411F031D8717BA60(L_171, NULL); if (!L_172) { goto IL_05b4; } } { int32_t L_173 = __this->___curPos_13; int32_t L_174 = __this->___charsUsed_12; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_173, 1))) == ((int32_t)L_174))) { goto IL_05cf; } } { int32_t L_175 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_175, 1)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_176 = __this->___chars_11; int32_t L_177 = __this->___curPos_13; NullCheck(L_176); int32_t L_178 = L_177; uint16_t L_179 = (uint16_t)(L_176)->GetAt(static_cast(L_178)); bool L_180; L_180 = XmlCharType_IsLowSurrogate_m8D27C4276BE118C7FF3ECC1707EEE026D28FC456(L_179, NULL); if (!L_180) { goto IL_05b4; } } { int32_t L_181 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_181, 1)); goto IL_006c; } IL_05b4: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_182 = __this->___chars_11; int32_t L_183 = __this->___charsUsed_12; int32_t L_184 = __this->___curPos_13; DtdParser_ThrowInvalidChar_m67D089CB4F65FC2275C1FE545C178FF42CB61944(__this, L_182, L_183, L_184, NULL); return (int32_t)(((int32_t)9)); } IL_05cf: { RuntimeObject* L_185 = __this->___readerAdapter_0; NullCheck(L_185); bool L_186; L_186 = InterfaceFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.Xml.IDtdParserAdapter::get_IsEof() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_185); if (L_186) { goto IL_05e4; } } { int32_t L_187; L_187 = DtdParser_ReadData_m02D6859FB085D58E010B7F25EF813156B8CC3109(__this, NULL); if (L_187) { goto IL_0602; } } IL_05e4: { int32_t L_188 = ___0_literalType; if ((((int32_t)L_188) == ((int32_t)2))) { goto IL_05f1; } } { bool L_189; L_189 = DtdParser_HandleEntityEnd_m741F32D866045C1FEBD97EE495E22BECA25B453D(__this, (bool)1, NULL); if (L_189) { goto IL_0602; } } IL_05f1: { int32_t L_190 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_190, _stringLiteral8DF28038BAE3947FE2A10B2562359E7D3A2BF989, NULL); } IL_0602: { int32_t L_191 = __this->___curPos_13; __this->___tokenStartPos_18 = L_191; goto IL_006c; } } // System.Xml.XmlQualifiedName System.Xml.DtdParser::ScanEntityName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* DtdParser_ScanEntityName_m88D8D0B3BD33BEB5120E1AA008E13FEBC4B03482 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral951CCB49640C8F9E81FB4E0D82730321F4E15BB3); s_Il2CppMethodInitialized = true; } XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; try {// begin try (depth: 1) DtdParser_ScanName_mC452081ACDFAE2FB825E73D7F7F506FD967F3DB0(__this, NULL); goto IL_0027; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_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.Xml.XmlException) V_0 = ((XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)IL2CPP_GET_ACTIVE_EXCEPTION(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)); String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_il2cpp_TypeInfo_var))))->___Empty_6; XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_1 = V_0; NullCheck(L_1); int32_t L_2; L_2 = XmlException_get_LineNumber_m4DBE53D0E13988CF2A5055C4B853F1399DE1A926_inline(L_1, NULL); XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_3 = V_0; NullCheck(L_3); int32_t L_4; L_4 = XmlException_get_LinePosition_m8045E03E183F6B07D6394A1B1FBD55E2CBE2DCB4_inline(L_3, NULL); DtdParser_Throw_mB4CABDC7A50D3C7F339CC18B8F500A9DCD78CA95(__this, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF270172D9DCB1A35388598EC124CE3AE08AC3E54)), L_0, L_2, L_4, NULL); IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0027; }// end catch (depth: 1) IL_0027: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = __this->___chars_11; int32_t L_6 = __this->___curPos_13; NullCheck(L_5); int32_t L_7 = L_6; uint16_t L_8 = (uint16_t)(L_5)->GetAt(static_cast(L_7)); if ((((int32_t)L_8) == ((int32_t)((int32_t)59)))) { goto IL_0049; } } { int32_t L_9 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mBCA8EBEE9CF9EC08AEEB6CA14BF75492689BF982(__this, L_9, _stringLiteral951CCB49640C8F9E81FB4E0D82730321F4E15BB3, NULL); } IL_0049: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_10; L_10 = DtdParser_GetNameQualified_m90D851C0C284B3597B168491C6824733D42E1979(__this, (bool)0, NULL); int32_t L_11 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_11, 1)); return L_10; } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanNotation1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanNotation1_m4C4E5782C3B83C24E6F9F08D87B22C4B82E780FB (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral59EB542A9E6EFCBFACCAE7DFE982B1F399E566DA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9581D9240473127371BCEE2DE4DB4A276F510956); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_0 = L_3; Il2CppChar L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)80)))) { goto IL_001a; } } { Il2CppChar L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)83)))) { goto IL_0046; } } { goto IL_0072; } IL_001a: { bool L_6; L_6 = DtdParser_EatPublicKeyword_m36E41ED431E35D882457C69703585B584F86D47E(__this, NULL); if (L_6) { goto IL_0033; } } { int32_t L_7 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_7, _stringLiteral9581D9240473127371BCEE2DE4DB4A276F510956, NULL); } IL_0033: { __this->___nextScaningFunction_15 = ((int32_t)31); __this->___scanningFunction_14 = ((int32_t)29); return (int32_t)(((int32_t)33)); } IL_0046: { bool L_8; L_8 = DtdParser_EatSystemKeyword_mA6344D8F8E24209177DE25810ECC484A5202D452(__this, NULL); if (L_8) { goto IL_005f; } } { int32_t L_9 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_9, _stringLiteral9581D9240473127371BCEE2DE4DB4A276F510956, NULL); } IL_005f: { __this->___nextScaningFunction_15 = ((int32_t)31); __this->___scanningFunction_14 = ((int32_t)28); return (int32_t)(((int32_t)34)); } IL_0072: { int32_t L_10 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_10, _stringLiteral59EB542A9E6EFCBFACCAE7DFE982B1F399E566DA, NULL); return (int32_t)(((int32_t)9)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanSystemId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanSystemId_m4BFDE8AB3CAEF9D217E5FDEBEA038712AC85F601 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677); s_Il2CppMethodInitialized = true; } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); if ((((int32_t)L_3) == ((int32_t)((int32_t)34)))) { goto IL_0038; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = __this->___chars_11; int32_t L_5 = __this->___curPos_13; NullCheck(L_4); int32_t L_6 = L_5; uint16_t L_7 = (uint16_t)(L_4)->GetAt(static_cast(L_6)); if ((((int32_t)L_7) == ((int32_t)((int32_t)39)))) { goto IL_0038; } } { int32_t L_8 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mE75F8A57E36D0ED9A0E029E79C5D0F5E71B82570(__this, L_8, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D, NULL); } IL_0038: { int32_t L_9; L_9 = DtdParser_ScanLiteral_m04C307F1A42A05A09ED322C754538E90C2ED0026(__this, 2, NULL); int32_t L_10 = __this->___nextScaningFunction_15; __this->___scanningFunction_14 = L_10; return (int32_t)(((int32_t)35)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanEntity1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanEntity1_mE0247D128601F57689966E73F7F89597F017AC53 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)37))))) { goto IL_0031; } } { int32_t L_4 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_4, 1)); __this->___nextScaningFunction_15 = ((int32_t)21); __this->___scanningFunction_14 = 1; return (int32_t)(((int32_t)38)); } IL_0031: { DtdParser_ScanName_mC452081ACDFAE2FB825E73D7F7F506FD967F3DB0(__this, NULL); __this->___scanningFunction_14 = ((int32_t)21); return (int32_t)(((int32_t)24)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanEntity2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanEntity2_m2C5A6BB88090ADF0B9649F21210AAD33A4FB7115 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2E08A69B160B273B33CB600405C55F98F76617CC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9581D9240473127371BCEE2DE4DB4A276F510956); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); V_0 = L_3; Il2CppChar L_4 = V_0; if ((!(((uint32_t)L_4) <= ((uint32_t)((int32_t)39))))) { goto IL_001f; } } { Il2CppChar L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)34)))) { goto IL_0083; } } { Il2CppChar L_6 = V_0; if ((((int32_t)L_6) == ((int32_t)((int32_t)39)))) { goto IL_0083; } } { goto IL_0096; } IL_001f: { Il2CppChar L_7 = V_0; if ((((int32_t)L_7) == ((int32_t)((int32_t)80)))) { goto IL_002b; } } { Il2CppChar L_8 = V_0; if ((((int32_t)L_8) == ((int32_t)((int32_t)83)))) { goto IL_0057; } } { goto IL_0096; } IL_002b: { bool L_9; L_9 = DtdParser_EatPublicKeyword_m36E41ED431E35D882457C69703585B584F86D47E(__this, NULL); if (L_9) { goto IL_0044; } } { int32_t L_10 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_10, _stringLiteral9581D9240473127371BCEE2DE4DB4A276F510956, NULL); } IL_0044: { __this->___nextScaningFunction_15 = ((int32_t)22); __this->___scanningFunction_14 = ((int32_t)29); return (int32_t)(((int32_t)33)); } IL_0057: { bool L_11; L_11 = DtdParser_EatSystemKeyword_mA6344D8F8E24209177DE25810ECC484A5202D452(__this, NULL); if (L_11) { goto IL_0070; } } { int32_t L_12 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_12, _stringLiteral9581D9240473127371BCEE2DE4DB4A276F510956, NULL); } IL_0070: { __this->___nextScaningFunction_15 = ((int32_t)22); __this->___scanningFunction_14 = ((int32_t)28); return (int32_t)(((int32_t)34)); } IL_0083: { int32_t L_13; L_13 = DtdParser_ScanLiteral_m04C307F1A42A05A09ED322C754538E90C2ED0026(__this, 1, NULL); __this->___scanningFunction_14 = ((int32_t)31); return (int32_t)(((int32_t)35)); } IL_0096: { int32_t L_14 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_14, _stringLiteral2E08A69B160B273B33CB600405C55F98F76617CC, NULL); return (int32_t)(((int32_t)9)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanEntity3() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanEntity3_m83E67C0E0412FC7E29A40113DFBD9663F1832487 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)78))))) { goto IL_009a; } } { goto IL_001e; } IL_0016: { int32_t L_4; L_4 = DtdParser_ReadData_m02D6859FB085D58E010B7F25EF813156B8CC3109(__this, NULL); if (!L_4) { goto IL_009a; } } IL_001e: { int32_t L_5 = __this->___charsUsed_12; int32_t L_6 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_5, L_6))) < ((int32_t)5))) { goto IL_0016; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = __this->___chars_11; int32_t L_8 = __this->___curPos_13; NullCheck(L_7); int32_t L_9 = ((int32_t)il2cpp_codegen_add(L_8, 1)); uint16_t L_10 = (uint16_t)(L_7)->GetAt(static_cast(L_9)); if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)68))))) { goto IL_009a; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = __this->___chars_11; int32_t L_12 = __this->___curPos_13; NullCheck(L_11); int32_t L_13 = ((int32_t)il2cpp_codegen_add(L_12, 2)); uint16_t L_14 = (uint16_t)(L_11)->GetAt(static_cast(L_13)); if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)65))))) { goto IL_009a; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_15 = __this->___chars_11; int32_t L_16 = __this->___curPos_13; NullCheck(L_15); int32_t L_17 = ((int32_t)il2cpp_codegen_add(L_16, 3)); uint16_t L_18 = (uint16_t)(L_15)->GetAt(static_cast(L_17)); if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)84))))) { goto IL_009a; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = __this->___chars_11; int32_t L_20 = __this->___curPos_13; NullCheck(L_19); int32_t L_21 = ((int32_t)il2cpp_codegen_add(L_20, 4)); uint16_t L_22 = (uint16_t)(L_19)->GetAt(static_cast(L_21)); if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)65))))) { goto IL_009a; } } { int32_t L_23 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_23, 5)); __this->___scanningFunction_14 = 1; __this->___nextScaningFunction_15 = ((int32_t)31); return (int32_t)(((int32_t)37)); } IL_009a: { __this->___scanningFunction_14 = ((int32_t)31); return (int32_t)(((int32_t)9)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanPublicId1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanPublicId1_m1095E6AE70E11A9B956708FFBE530301689F82A5 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677); s_Il2CppMethodInitialized = true; } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); if ((((int32_t)L_3) == ((int32_t)((int32_t)34)))) { goto IL_0038; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = __this->___chars_11; int32_t L_5 = __this->___curPos_13; NullCheck(L_4); int32_t L_6 = L_5; uint16_t L_7 = (uint16_t)(L_4)->GetAt(static_cast(L_6)); if ((((int32_t)L_7) == ((int32_t)((int32_t)39)))) { goto IL_0038; } } { int32_t L_8 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mE75F8A57E36D0ED9A0E029E79C5D0F5E71B82570(__this, L_8, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D, NULL); } IL_0038: { int32_t L_9; L_9 = DtdParser_ScanLiteral_m04C307F1A42A05A09ED322C754538E90C2ED0026(__this, 2, NULL); __this->___scanningFunction_14 = ((int32_t)30); return (int32_t)(((int32_t)35)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanPublicId2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanPublicId2_mFDAA7AB884FAFD43C7864DA3C22C00BD0024B9DD (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); if ((((int32_t)L_3) == ((int32_t)((int32_t)34)))) { goto IL_0031; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = __this->___chars_11; int32_t L_5 = __this->___curPos_13; NullCheck(L_4); int32_t L_6 = L_5; uint16_t L_7 = (uint16_t)(L_4)->GetAt(static_cast(L_6)); if ((((int32_t)L_7) == ((int32_t)((int32_t)39)))) { goto IL_0031; } } { int32_t L_8 = __this->___nextScaningFunction_15; __this->___scanningFunction_14 = L_8; return (int32_t)(((int32_t)9)); } IL_0031: { int32_t L_9; L_9 = DtdParser_ScanLiteral_m04C307F1A42A05A09ED322C754538E90C2ED0026(__this, 2, NULL); int32_t L_10 = __this->___nextScaningFunction_15; __this->___scanningFunction_14 = L_10; return (int32_t)(((int32_t)35)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanCondSection1() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanCondSection1_mC6FDCA0100720F5289856689A51097AA12C05FDC (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral72AA82468046288272E323F13B397B70AFA72BDD); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); if ((((int32_t)L_3) == ((int32_t)((int32_t)73)))) { goto IL_0022; } } { int32_t L_4 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_4, _stringLiteral72AA82468046288272E323F13B397B70AFA72BDD, NULL); } IL_0022: { int32_t L_5 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_5, 1)); } IL_0030: { int32_t L_6 = __this->___charsUsed_12; int32_t L_7 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_6, L_7))) < ((int32_t)5))) { goto IL_01c0; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = __this->___chars_11; int32_t L_9 = __this->___curPos_13; NullCheck(L_8); int32_t L_10 = L_9; uint16_t L_11 = (uint16_t)(L_8)->GetAt(static_cast(L_10)); V_0 = L_11; Il2CppChar L_12 = V_0; if ((((int32_t)L_12) == ((int32_t)((int32_t)71)))) { goto IL_0121; } } { Il2CppChar L_13 = V_0; if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)78))))) { goto IL_01aa; } } { int32_t L_14 = __this->___charsUsed_12; int32_t L_15 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_14, L_15))) < ((int32_t)6))) { goto IL_01c0; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = __this->___chars_11; int32_t L_17 = __this->___curPos_13; NullCheck(L_16); int32_t L_18 = ((int32_t)il2cpp_codegen_add(L_17, 1)); uint16_t L_19 = (uint16_t)(L_16)->GetAt(static_cast(L_18)); if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)67))))) { goto IL_01aa; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_20 = __this->___chars_11; int32_t L_21 = __this->___curPos_13; NullCheck(L_20); int32_t L_22 = ((int32_t)il2cpp_codegen_add(L_21, 2)); uint16_t L_23 = (uint16_t)(L_20)->GetAt(static_cast(L_22)); if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)76))))) { goto IL_01aa; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = __this->___chars_11; int32_t L_25 = __this->___curPos_13; NullCheck(L_24); int32_t L_26 = ((int32_t)il2cpp_codegen_add(L_25, 3)); uint16_t L_27 = (uint16_t)(L_24)->GetAt(static_cast(L_26)); if ((!(((uint32_t)L_27) == ((uint32_t)((int32_t)85))))) { goto IL_01aa; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_28 = __this->___chars_11; int32_t L_29 = __this->___curPos_13; NullCheck(L_28); int32_t L_30 = ((int32_t)il2cpp_codegen_add(L_29, 4)); uint16_t L_31 = (uint16_t)(L_28)->GetAt(static_cast(L_30)); if ((!(((uint32_t)L_31) == ((uint32_t)((int32_t)68))))) { goto IL_01aa; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_32 = __this->___chars_11; int32_t L_33 = __this->___curPos_13; NullCheck(L_32); int32_t L_34 = ((int32_t)il2cpp_codegen_add(L_33, 5)); uint16_t L_35 = (uint16_t)(L_32)->GetAt(static_cast(L_34)); if ((!(((uint32_t)L_35) == ((uint32_t)((int32_t)69))))) { goto IL_01aa; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_36 = (&__this->___xmlCharType_4); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_37 = __this->___chars_11; int32_t L_38 = __this->___curPos_13; NullCheck(L_37); int32_t L_39 = ((int32_t)il2cpp_codegen_add(L_38, 6)); uint16_t L_40 = (uint16_t)(L_37)->GetAt(static_cast(L_39)); bool L_41; L_41 = XmlCharType_IsNameSingleChar_mA5C27AEE5BABB098031EA8BE197F9E2E63F0478A(L_36, L_40, NULL); if (L_41) { goto IL_01aa; } } { __this->___nextScaningFunction_15 = 0; __this->___scanningFunction_14 = ((int32_t)25); int32_t L_42 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_42, 6)); return (int32_t)(((int32_t)47)); } IL_0121: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_43 = __this->___chars_11; int32_t L_44 = __this->___curPos_13; NullCheck(L_43); int32_t L_45 = ((int32_t)il2cpp_codegen_add(L_44, 1)); uint16_t L_46 = (uint16_t)(L_43)->GetAt(static_cast(L_45)); if ((!(((uint32_t)L_46) == ((uint32_t)((int32_t)78))))) { goto IL_01aa; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_47 = __this->___chars_11; int32_t L_48 = __this->___curPos_13; NullCheck(L_47); int32_t L_49 = ((int32_t)il2cpp_codegen_add(L_48, 2)); uint16_t L_50 = (uint16_t)(L_47)->GetAt(static_cast(L_49)); if ((!(((uint32_t)L_50) == ((uint32_t)((int32_t)79))))) { goto IL_01aa; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_51 = __this->___chars_11; int32_t L_52 = __this->___curPos_13; NullCheck(L_51); int32_t L_53 = ((int32_t)il2cpp_codegen_add(L_52, 3)); uint16_t L_54 = (uint16_t)(L_51)->GetAt(static_cast(L_53)); if ((!(((uint32_t)L_54) == ((uint32_t)((int32_t)82))))) { goto IL_01aa; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_55 = __this->___chars_11; int32_t L_56 = __this->___curPos_13; NullCheck(L_55); int32_t L_57 = ((int32_t)il2cpp_codegen_add(L_56, 4)); uint16_t L_58 = (uint16_t)(L_55)->GetAt(static_cast(L_57)); if ((!(((uint32_t)L_58) == ((uint32_t)((int32_t)69))))) { goto IL_01aa; } } { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_59 = (&__this->___xmlCharType_4); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_60 = __this->___chars_11; int32_t L_61 = __this->___curPos_13; NullCheck(L_60); int32_t L_62 = ((int32_t)il2cpp_codegen_add(L_61, 5)); uint16_t L_63 = (uint16_t)(L_60)->GetAt(static_cast(L_62)); bool L_64; L_64 = XmlCharType_IsNameSingleChar_mA5C27AEE5BABB098031EA8BE197F9E2E63F0478A(L_59, L_63, NULL); if (L_64) { goto IL_01aa; } } { __this->___nextScaningFunction_15 = ((int32_t)26); __this->___scanningFunction_14 = ((int32_t)25); int32_t L_65 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_65, 5)); return (int32_t)(((int32_t)46)); } IL_01aa: { int32_t L_66 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, ((int32_t)il2cpp_codegen_subtract(L_66, 1)), _stringLiteral72AA82468046288272E323F13B397B70AFA72BDD, NULL); return (int32_t)(((int32_t)9)); } IL_01c0: { int32_t L_67; L_67 = DtdParser_ReadData_m02D6859FB085D58E010B7F25EF813156B8CC3109(__this, NULL); if (L_67) { goto IL_0030; } } { int32_t L_68 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_68, _stringLiteral2EEF1C33FFEE9D9CFE23A3918F92A99600508AA7, NULL); goto IL_0030; } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanCondSection2() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanCondSection2_m4F6CA7E86BF773FA2EAA8ACA577C4F96A1DC7A9A (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1); s_Il2CppMethodInitialized = true; } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___curPos_13; NullCheck(L_0); int32_t L_2 = L_1; uint16_t L_3 = (uint16_t)(L_0)->GetAt(static_cast(L_2)); if ((((int32_t)L_3) == ((int32_t)((int32_t)91)))) { goto IL_0022; } } { int32_t L_4 = __this->___curPos_13; DtdParser_ThrowUnexpectedToken_mBCA8EBEE9CF9EC08AEEB6CA14BF75492689BF982(__this, L_4, _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1, NULL); } IL_0022: { int32_t L_5 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_5, 1)); int32_t L_6 = __this->___nextScaningFunction_15; __this->___scanningFunction_14 = L_6; return (int32_t)(((int32_t)31)); } } // System.Xml.DtdParser/Token System.Xml.DtdParser::ScanCondSection3() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ScanCondSection3_m1A14F74065167EFD8938C66911DA82D34F5B1429 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3A0F3831F5DAFB45C7CF0BE8E3E631BFEE684F0D); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Il2CppChar V_1 = 0x0; { V_0 = 0; goto IL_0012; } IL_0004: { int32_t L_0 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_0, 1)); } IL_0012: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_1 = (&__this->___xmlCharType_4); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = L_1->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = __this->___chars_11; int32_t L_4 = __this->___curPos_13; NullCheck(L_3); int32_t L_5 = L_4; uint16_t L_6 = (uint16_t)(L_3)->GetAt(static_cast(L_5)); NullCheck(L_2); uint16_t L_7 = L_6; uint8_t L_8 = (L_2)->GetAt(static_cast(L_7)); if (!((int32_t)((int32_t)L_8&((int32_t)64)))) { goto IL_0041; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = __this->___chars_11; int32_t L_10 = __this->___curPos_13; NullCheck(L_9); int32_t L_11 = L_10; uint16_t L_12 = (uint16_t)(L_9)->GetAt(static_cast(L_11)); if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)93))))) { goto IL_0004; } } IL_0041: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_13 = __this->___chars_11; int32_t L_14 = __this->___curPos_13; NullCheck(L_13); int32_t L_15 = L_14; uint16_t L_16 = (uint16_t)(L_13)->GetAt(static_cast(L_15)); V_1 = L_16; Il2CppChar L_17 = V_1; if ((!(((uint32_t)L_17) <= ((uint32_t)((int32_t)38))))) { goto IL_0080; } } { Il2CppChar L_18 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_18, ((int32_t)9)))) { case 0: { goto IL_009a; } case 1: { goto IL_00ad; } case 2: { goto IL_021a; } case 3: { goto IL_021a; } case 4: { goto IL_00d1; } } } { Il2CppChar L_19 = V_1; if ((((int32_t)L_19) == ((int32_t)((int32_t)34)))) { goto IL_009a; } } { Il2CppChar L_20 = V_1; if ((((int32_t)L_20) == ((int32_t)((int32_t)38)))) { goto IL_009a; } } { goto IL_021a; } IL_0080: { Il2CppChar L_21 = V_1; if ((((int32_t)L_21) == ((int32_t)((int32_t)39)))) { goto IL_009a; } } { Il2CppChar L_22 = V_1; if ((((int32_t)L_22) == ((int32_t)((int32_t)60)))) { goto IL_0138; } } { Il2CppChar L_23 = V_1; if ((((int32_t)L_23) == ((int32_t)((int32_t)93)))) { goto IL_019b; } } { goto IL_021a; } IL_009a: { int32_t L_24 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_24, 1)); goto IL_0012; } IL_00ad: { int32_t L_25 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_25, 1)); RuntimeObject* L_26 = __this->___readerAdapter_0; int32_t L_27 = __this->___curPos_13; NullCheck(L_26); InterfaceActionInvoker1< int32_t >::Invoke(13 /* System.Void System.Xml.IDtdParserAdapter::OnNewLine(System.Int32) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_26, L_27); goto IL_0012; } IL_00d1: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_28 = __this->___chars_11; int32_t L_29 = __this->___curPos_13; NullCheck(L_28); int32_t L_30 = ((int32_t)il2cpp_codegen_add(L_29, 1)); uint16_t L_31 = (uint16_t)(L_28)->GetAt(static_cast(L_30)); if ((!(((uint32_t)L_31) == ((uint32_t)((int32_t)10))))) { goto IL_00f4; } } { int32_t L_32 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_32, 2)); goto IL_0122; } IL_00f4: { int32_t L_33 = __this->___curPos_13; int32_t L_34 = __this->___charsUsed_12; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_33, 1))) < ((int32_t)L_34))) { goto IL_0114; } } { RuntimeObject* L_35 = __this->___readerAdapter_0; NullCheck(L_35); bool L_36; L_36 = InterfaceFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.Xml.IDtdParserAdapter::get_IsEof() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_35); if (!L_36) { goto IL_029c; } } IL_0114: { int32_t L_37 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_37, 1)); } IL_0122: { RuntimeObject* L_38 = __this->___readerAdapter_0; int32_t L_39 = __this->___curPos_13; NullCheck(L_38); InterfaceActionInvoker1< int32_t >::Invoke(13 /* System.Void System.Xml.IDtdParserAdapter::OnNewLine(System.Int32) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_38, L_39); goto IL_0012; } IL_0138: { int32_t L_40 = __this->___charsUsed_12; int32_t L_41 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_40, L_41))) < ((int32_t)3))) { goto IL_029c; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_42 = __this->___chars_11; int32_t L_43 = __this->___curPos_13; NullCheck(L_42); int32_t L_44 = ((int32_t)il2cpp_codegen_add(L_43, 1)); uint16_t L_45 = (uint16_t)(L_42)->GetAt(static_cast(L_44)); if ((!(((uint32_t)L_45) == ((uint32_t)((int32_t)33))))) { goto IL_0171; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_46 = __this->___chars_11; int32_t L_47 = __this->___curPos_13; NullCheck(L_46); int32_t L_48 = ((int32_t)il2cpp_codegen_add(L_47, 2)); uint16_t L_49 = (uint16_t)(L_46)->GetAt(static_cast(L_48)); if ((((int32_t)L_49) == ((int32_t)((int32_t)91)))) { goto IL_0184; } } IL_0171: { int32_t L_50 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_50, 1)); goto IL_0012; } IL_0184: { int32_t L_51 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_51, 1)); int32_t L_52 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_52, 3)); goto IL_0012; } IL_019b: { int32_t L_53 = __this->___charsUsed_12; int32_t L_54 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_53, L_54))) < ((int32_t)3))) { goto IL_029c; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_55 = __this->___chars_11; int32_t L_56 = __this->___curPos_13; NullCheck(L_55); int32_t L_57 = ((int32_t)il2cpp_codegen_add(L_56, 1)); uint16_t L_58 = (uint16_t)(L_55)->GetAt(static_cast(L_57)); if ((!(((uint32_t)L_58) == ((uint32_t)((int32_t)93))))) { goto IL_01d4; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_59 = __this->___chars_11; int32_t L_60 = __this->___curPos_13; NullCheck(L_59); int32_t L_61 = ((int32_t)il2cpp_codegen_add(L_60, 2)); uint16_t L_62 = (uint16_t)(L_59)->GetAt(static_cast(L_61)); if ((((int32_t)L_62) == ((int32_t)((int32_t)62)))) { goto IL_01e7; } } IL_01d4: { int32_t L_63 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_63, 1)); goto IL_0012; } IL_01e7: { int32_t L_64 = V_0; if ((((int32_t)L_64) <= ((int32_t)0))) { goto IL_0202; } } { int32_t L_65 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract(L_65, 1)); int32_t L_66 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_66, 3)); goto IL_0012; } IL_0202: { int32_t L_67 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_67, 3)); __this->___scanningFunction_14 = 0; return (int32_t)(((int32_t)18)); } IL_021a: { int32_t L_68 = __this->___curPos_13; int32_t L_69 = __this->___charsUsed_12; if ((((int32_t)L_68) == ((int32_t)L_69))) { goto IL_029c; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_70 = __this->___chars_11; int32_t L_71 = __this->___curPos_13; NullCheck(L_70); int32_t L_72 = L_71; uint16_t L_73 = (uint16_t)(L_70)->GetAt(static_cast(L_72)); bool L_74; L_74 = XmlCharType_IsHighSurrogate_mB3E741B22E4B47DC85F7F18A411F031D8717BA60(L_73, NULL); if (!L_74) { goto IL_0281; } } { int32_t L_75 = __this->___curPos_13; int32_t L_76 = __this->___charsUsed_12; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_75, 1))) == ((int32_t)L_76))) { goto IL_029c; } } { int32_t L_77 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_77, 1)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_78 = __this->___chars_11; int32_t L_79 = __this->___curPos_13; NullCheck(L_78); int32_t L_80 = L_79; uint16_t L_81 = (uint16_t)(L_78)->GetAt(static_cast(L_80)); bool L_82; L_82 = XmlCharType_IsLowSurrogate_m8D27C4276BE118C7FF3ECC1707EEE026D28FC456(L_81, NULL); if (!L_82) { goto IL_0281; } } { int32_t L_83 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_83, 1)); goto IL_0012; } IL_0281: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_84 = __this->___chars_11; int32_t L_85 = __this->___charsUsed_12; int32_t L_86 = __this->___curPos_13; DtdParser_ThrowInvalidChar_m67D089CB4F65FC2275C1FE545C178FF42CB61944(__this, L_84, L_85, L_86, NULL); return (int32_t)(((int32_t)9)); } IL_029c: { RuntimeObject* L_87 = __this->___readerAdapter_0; NullCheck(L_87); bool L_88; L_88 = InterfaceFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.Xml.IDtdParserAdapter::get_IsEof() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_87); if (L_88) { goto IL_02b1; } } { int32_t L_89; L_89 = DtdParser_ReadData_m02D6859FB085D58E010B7F25EF813156B8CC3109(__this, NULL); if (L_89) { goto IL_02ce; } } IL_02b1: { bool L_90; L_90 = DtdParser_HandleEntityEnd_m741F32D866045C1FEBD97EE495E22BECA25B453D(__this, (bool)0, NULL); if (L_90) { goto IL_0012; } } { int32_t L_91 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_91, _stringLiteral3A0F3831F5DAFB45C7CF0BE8E3E631BFEE684F0D, NULL); } IL_02ce: { int32_t L_92 = __this->___curPos_13; __this->___tokenStartPos_18 = L_92; goto IL_0012; } } // System.Void System.Xml.DtdParser::ScanName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ScanName_mC452081ACDFAE2FB825E73D7F7F506FD967F3DB0 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { DtdParser_ScanQName_mA660766FD83DC7827E0C5B52412321F8E9A0EDC4(__this, (bool)0, NULL); return; } } // System.Void System.Xml.DtdParser::ScanQName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ScanQName_mAD528C25DE449B69809006B17DF6015439150DE3 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { bool L_0; L_0 = DtdParser_get_SupportNamespaces_m868EACB0340AAB10A0A36D3E54391F6B721A7791_inline(__this, NULL); DtdParser_ScanQName_mA660766FD83DC7827E0C5B52412321F8E9A0EDC4(__this, L_0, NULL); return; } } // System.Void System.Xml.DtdParser::ScanQName(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ScanQName_mA660766FD83DC7827E0C5B52412321F8E9A0EDC4 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, bool ___0_isQName, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralECBDA2D88A8582D98728DD584F3E41B98CC4893D); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* G_B22_0 = NULL; DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* G_B21_0 = NULL; int32_t G_B23_0 = 0; DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* G_B23_1 = NULL; { int32_t L_0 = __this->___curPos_13; __this->___tokenStartPos_18 = L_0; V_0 = (-1); } IL_000e: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_1 = (&__this->___xmlCharType_4); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = L_1->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = __this->___chars_11; int32_t L_4 = __this->___curPos_13; NullCheck(L_3); int32_t L_5 = L_4; uint16_t L_6 = (uint16_t)(L_3)->GetAt(static_cast(L_5)); NullCheck(L_2); uint16_t L_7 = L_6; uint8_t L_8 = (L_2)->GetAt(static_cast(L_7)); if (((int32_t)((int32_t)L_8&4))) { goto IL_003c; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = __this->___chars_11; int32_t L_10 = __this->___curPos_13; NullCheck(L_9); int32_t L_11 = L_10; uint16_t L_12 = (uint16_t)(L_9)->GetAt(static_cast(L_11)); if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)58))))) { goto IL_004c; } } IL_003c: { int32_t L_13 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_13, 1)); goto IL_00a4; } IL_004c: { int32_t L_14 = __this->___curPos_13; int32_t L_15 = __this->___charsUsed_12; if ((((int32_t)((int32_t)il2cpp_codegen_add(L_14, 1))) < ((int32_t)L_15))) { goto IL_007c; } } { bool L_16; L_16 = DtdParser_ReadDataInName_mD211C27DF640D9443E3258AE20A48F095699717B(__this, NULL); if (L_16) { goto IL_000e; } } { int32_t L_17 = __this->___curPos_13; DtdParser_Throw_mA82BAD834C0CCDE0E9325996E4560953761B62D0(__this, L_17, _stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC, _stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B, NULL); goto IL_00a4; } IL_007c: { int32_t L_18 = __this->___curPos_13; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = __this->___chars_11; int32_t L_20 = __this->___charsUsed_12; int32_t L_21 = __this->___curPos_13; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_22; L_22 = XmlException_BuildCharExceptionArgs_mCD358DAB8D23BF377EEC6C41C523161FE2B9A2A5(L_19, L_20, L_21, NULL); DtdParser_Throw_mEE35AE1DA02A2343A42F062D85BA7D04AA9666C5(__this, L_18, _stringLiteralECBDA2D88A8582D98728DD584F3E41B98CC4893D, L_22, NULL); } IL_00a4: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_23 = (&__this->___xmlCharType_4); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_24 = L_23->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_25 = __this->___chars_11; int32_t L_26 = __this->___curPos_13; NullCheck(L_25); int32_t L_27 = L_26; uint16_t L_28 = (uint16_t)(L_25)->GetAt(static_cast(L_27)); NullCheck(L_24); uint16_t L_29 = L_28; uint8_t L_30 = (L_24)->GetAt(static_cast(L_29)); if (!((int32_t)((int32_t)L_30&8))) { goto IL_00d1; } } { int32_t L_31 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_31, 1)); goto IL_00a4; } IL_00d1: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_32 = __this->___chars_11; int32_t L_33 = __this->___curPos_13; NullCheck(L_32); int32_t L_34 = L_33; uint16_t L_35 = (uint16_t)(L_32)->GetAt(static_cast(L_34)); if ((!(((uint32_t)L_35) == ((uint32_t)((int32_t)58))))) { goto IL_0136; } } { bool L_36 = ___0_isQName; if (!L_36) { goto IL_0123; } } { int32_t L_37 = V_0; if ((((int32_t)L_37) == ((int32_t)(-1)))) { goto IL_0102; } } { int32_t L_38 = __this->___curPos_13; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_39; L_39 = XmlException_BuildCharExceptionArgs_m5C3D183AB941552746F7DC656366F28CA5BAFC65(((int32_t)58), 0, NULL); DtdParser_Throw_mEE35AE1DA02A2343A42F062D85BA7D04AA9666C5(__this, L_38, _stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05, L_39, NULL); } IL_0102: { int32_t L_40 = __this->___curPos_13; int32_t L_41 = __this->___tokenStartPos_18; V_0 = ((int32_t)il2cpp_codegen_subtract(L_40, L_41)); int32_t L_42 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_42, 1)); goto IL_000e; } IL_0123: { int32_t L_43 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_43, 1)); goto IL_00a4; } IL_0136: { int32_t L_44 = __this->___curPos_13; int32_t L_45 = __this->___charsUsed_12; if ((!(((uint32_t)L_44) == ((uint32_t)L_45)))) { goto IL_0173; } } { bool L_46; L_46 = DtdParser_ReadDataInName_mD211C27DF640D9443E3258AE20A48F095699717B(__this, NULL); if (L_46) { goto IL_00a4; } } { int32_t L_47 = __this->___tokenStartPos_18; int32_t L_48 = __this->___curPos_13; if ((!(((uint32_t)L_47) == ((uint32_t)L_48)))) { goto IL_0173; } } { int32_t L_49 = __this->___curPos_13; DtdParser_Throw_mA82BAD834C0CCDE0E9325996E4560953761B62D0(__this, L_49, _stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC, _stringLiteral5BB3788A197C26B8310159EC9A81635814ABB05B, NULL); } IL_0173: { int32_t L_50 = V_0; G_B21_0 = __this; if ((((int32_t)L_50) == ((int32_t)(-1)))) { G_B22_0 = __this; goto IL_0182; } } { int32_t L_51 = __this->___tokenStartPos_18; int32_t L_52 = V_0; G_B23_0 = ((int32_t)il2cpp_codegen_add(L_51, L_52)); G_B23_1 = G_B21_0; goto IL_0183; } IL_0182: { G_B23_0 = (-1); G_B23_1 = G_B22_0; } IL_0183: { NullCheck(G_B23_1); G_B23_1->___colonPos_19 = G_B23_0; return; } } // System.Boolean System.Xml.DtdParser::ReadDataInName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_ReadDataInName_mD211C27DF640D9443E3258AE20A48F095699717B (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->___curPos_13; int32_t L_1 = __this->___tokenStartPos_18; V_0 = ((int32_t)il2cpp_codegen_subtract(L_0, L_1)); int32_t L_2 = __this->___tokenStartPos_18; __this->___curPos_13 = L_2; int32_t L_3; L_3 = DtdParser_ReadData_m02D6859FB085D58E010B7F25EF813156B8CC3109(__this, NULL); int32_t L_4 = __this->___curPos_13; __this->___tokenStartPos_18 = L_4; int32_t L_5 = __this->___curPos_13; int32_t L_6 = V_0; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_5, L_6)); return (bool)((!(((uint32_t)L_3) <= ((uint32_t)0)))? 1 : 0); } } // System.Void System.Xml.DtdParser::ScanNmtoken() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ScanNmtoken_mD2A9057AA5C523117A422FBB2B5119B915133919 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6BF61ABC5F7B64F3477624AFB1B9EBB636A0543B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = __this->___curPos_13; __this->___tokenStartPos_18 = L_0; } IL_000c: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_1 = (&__this->___xmlCharType_4); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = L_1->___charProperties_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = __this->___chars_11; int32_t L_4 = __this->___curPos_13; NullCheck(L_3); int32_t L_5 = L_4; uint16_t L_6 = (uint16_t)(L_3)->GetAt(static_cast(L_5)); NullCheck(L_2); uint16_t L_7 = L_6; uint8_t L_8 = (L_2)->GetAt(static_cast(L_7)); if (((int32_t)((int32_t)L_8&8))) { goto IL_003a; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = __this->___chars_11; int32_t L_10 = __this->___curPos_13; NullCheck(L_9); int32_t L_11 = L_10; uint16_t L_12 = (uint16_t)(L_9)->GetAt(static_cast(L_11)); if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)58))))) { goto IL_004a; } } IL_003a: { int32_t L_13 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_13, 1)); goto IL_000c; } IL_004a: { int32_t L_14 = __this->___curPos_13; int32_t L_15 = __this->___charsUsed_12; if ((((int32_t)L_14) >= ((int32_t)L_15))) { goto IL_0090; } } { int32_t L_16 = __this->___curPos_13; int32_t L_17 = __this->___tokenStartPos_18; if (((int32_t)il2cpp_codegen_subtract(L_16, L_17))) { goto IL_008f; } } { int32_t L_18 = __this->___curPos_13; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = __this->___chars_11; int32_t L_20 = __this->___charsUsed_12; int32_t L_21 = __this->___curPos_13; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_22; L_22 = XmlException_BuildCharExceptionArgs_mCD358DAB8D23BF377EEC6C41C523161FE2B9A2A5(L_19, L_20, L_21, NULL); DtdParser_Throw_mEE35AE1DA02A2343A42F062D85BA7D04AA9666C5(__this, L_18, _stringLiteralB66EDA098CD2E33A3EA4EAA0192B7D288FB4BE05, L_22, NULL); } IL_008f: { return; } IL_0090: { int32_t L_23 = __this->___curPos_13; int32_t L_24 = __this->___tokenStartPos_18; V_0 = ((int32_t)il2cpp_codegen_subtract(L_23, L_24)); int32_t L_25 = __this->___tokenStartPos_18; __this->___curPos_13 = L_25; int32_t L_26; L_26 = DtdParser_ReadData_m02D6859FB085D58E010B7F25EF813156B8CC3109(__this, NULL); if (L_26) { goto IL_00e7; } } { int32_t L_27 = V_0; if ((((int32_t)L_27) <= ((int32_t)0))) { goto IL_00d1; } } { int32_t L_28 = __this->___curPos_13; __this->___tokenStartPos_18 = L_28; int32_t L_29 = __this->___curPos_13; int32_t L_30 = V_0; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_29, L_30)); return; } IL_00d1: { int32_t L_31 = __this->___curPos_13; DtdParser_Throw_mA82BAD834C0CCDE0E9325996E4560953761B62D0(__this, L_31, _stringLiteralC3DB0D079E5BFE18627887A05D78AFD607BC0AAC, _stringLiteral6BF61ABC5F7B64F3477624AFB1B9EBB636A0543B, NULL); } IL_00e7: { int32_t L_32 = __this->___curPos_13; __this->___tokenStartPos_18 = L_32; int32_t L_33 = __this->___curPos_13; int32_t L_34 = V_0; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_33, L_34)); goto IL_000c; } } // System.Boolean System.Xml.DtdParser::EatPublicKeyword() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_EatPublicKeyword_m36E41ED431E35D882457C69703585B584F86D47E (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { goto IL_000c; } IL_0002: { int32_t L_0; L_0 = DtdParser_ReadData_m02D6859FB085D58E010B7F25EF813156B8CC3109(__this, NULL); if (L_0) { goto IL_000c; } } { return (bool)0; } IL_000c: { int32_t L_1 = __this->___charsUsed_12; int32_t L_2 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_1, L_2))) < ((int32_t)6))) { goto IL_0002; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = __this->___chars_11; int32_t L_4 = __this->___curPos_13; NullCheck(L_3); int32_t L_5 = ((int32_t)il2cpp_codegen_add(L_4, 1)); uint16_t L_6 = (uint16_t)(L_3)->GetAt(static_cast(L_5)); if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)85))))) { goto IL_007b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = __this->___chars_11; int32_t L_8 = __this->___curPos_13; NullCheck(L_7); int32_t L_9 = ((int32_t)il2cpp_codegen_add(L_8, 2)); uint16_t L_10 = (uint16_t)(L_7)->GetAt(static_cast(L_9)); if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)66))))) { goto IL_007b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = __this->___chars_11; int32_t L_12 = __this->___curPos_13; NullCheck(L_11); int32_t L_13 = ((int32_t)il2cpp_codegen_add(L_12, 3)); uint16_t L_14 = (uint16_t)(L_11)->GetAt(static_cast(L_13)); if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)76))))) { goto IL_007b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_15 = __this->___chars_11; int32_t L_16 = __this->___curPos_13; NullCheck(L_15); int32_t L_17 = ((int32_t)il2cpp_codegen_add(L_16, 4)); uint16_t L_18 = (uint16_t)(L_15)->GetAt(static_cast(L_17)); if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)73))))) { goto IL_007b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = __this->___chars_11; int32_t L_20 = __this->___curPos_13; NullCheck(L_19); int32_t L_21 = ((int32_t)il2cpp_codegen_add(L_20, 5)); uint16_t L_22 = (uint16_t)(L_19)->GetAt(static_cast(L_21)); if ((((int32_t)L_22) == ((int32_t)((int32_t)67)))) { goto IL_007d; } } IL_007b: { return (bool)0; } IL_007d: { int32_t L_23 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_23, 6)); return (bool)1; } } // System.Boolean System.Xml.DtdParser::EatSystemKeyword() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_EatSystemKeyword_mA6344D8F8E24209177DE25810ECC484A5202D452 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { goto IL_000c; } IL_0002: { int32_t L_0; L_0 = DtdParser_ReadData_m02D6859FB085D58E010B7F25EF813156B8CC3109(__this, NULL); if (L_0) { goto IL_000c; } } { return (bool)0; } IL_000c: { int32_t L_1 = __this->___charsUsed_12; int32_t L_2 = __this->___curPos_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_1, L_2))) < ((int32_t)6))) { goto IL_0002; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = __this->___chars_11; int32_t L_4 = __this->___curPos_13; NullCheck(L_3); int32_t L_5 = ((int32_t)il2cpp_codegen_add(L_4, 1)); uint16_t L_6 = (uint16_t)(L_3)->GetAt(static_cast(L_5)); if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)89))))) { goto IL_007b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = __this->___chars_11; int32_t L_8 = __this->___curPos_13; NullCheck(L_7); int32_t L_9 = ((int32_t)il2cpp_codegen_add(L_8, 2)); uint16_t L_10 = (uint16_t)(L_7)->GetAt(static_cast(L_9)); if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)83))))) { goto IL_007b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = __this->___chars_11; int32_t L_12 = __this->___curPos_13; NullCheck(L_11); int32_t L_13 = ((int32_t)il2cpp_codegen_add(L_12, 3)); uint16_t L_14 = (uint16_t)(L_11)->GetAt(static_cast(L_13)); if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)84))))) { goto IL_007b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_15 = __this->___chars_11; int32_t L_16 = __this->___curPos_13; NullCheck(L_15); int32_t L_17 = ((int32_t)il2cpp_codegen_add(L_16, 4)); uint16_t L_18 = (uint16_t)(L_15)->GetAt(static_cast(L_17)); if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)69))))) { goto IL_007b; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = __this->___chars_11; int32_t L_20 = __this->___curPos_13; NullCheck(L_19); int32_t L_21 = ((int32_t)il2cpp_codegen_add(L_20, 5)); uint16_t L_22 = (uint16_t)(L_19)->GetAt(static_cast(L_21)); if ((((int32_t)L_22) == ((int32_t)((int32_t)77)))) { goto IL_007d; } } IL_007b: { return (bool)0; } IL_007d: { int32_t L_23 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_23, 6)); return (bool)1; } } // System.Xml.XmlQualifiedName System.Xml.DtdParser::GetNameQualified(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* DtdParser_GetNameQualified_m90D851C0C284B3597B168491C6824733D42E1979 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, bool ___0_canHavePrefix, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB9895E6DD32A29F645457E316DC78EBC804C2C86); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->___colonPos_19; if ((!(((uint32_t)L_0) == ((uint32_t)(-1))))) { goto IL_0033; } } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_1 = __this->___nameTable_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->___chars_11; int32_t L_3 = __this->___tokenStartPos_18; int32_t L_4 = __this->___curPos_13; int32_t L_5 = __this->___tokenStartPos_18; NullCheck(L_1); String_t* L_6; L_6 = VirtualFuncInvoker3< String_t*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(5 /* System.String System.Xml.XmlNameTable::Add(System.Char[],System.Int32,System.Int32) */, L_1, L_2, L_3, ((int32_t)il2cpp_codegen_subtract(L_4, L_5))); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_7 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_7); XmlQualifiedName__ctor_m2DD62019A76524587CC7204E1AB903CDAADA6545(L_7, L_6, NULL); return L_7; } IL_0033: { bool L_8 = ___0_canHavePrefix; if (!L_8) { goto IL_0088; } } { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_9 = __this->___nameTable_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = __this->___chars_11; int32_t L_11 = __this->___colonPos_19; int32_t L_12 = __this->___curPos_13; int32_t L_13 = __this->___colonPos_19; NullCheck(L_9); String_t* L_14; L_14 = VirtualFuncInvoker3< String_t*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(5 /* System.String System.Xml.XmlNameTable::Add(System.Char[],System.Int32,System.Int32) */, L_9, L_10, ((int32_t)il2cpp_codegen_add(L_11, 1)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_12, L_13)), 1))); XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_15 = __this->___nameTable_2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = __this->___chars_11; int32_t L_17 = __this->___tokenStartPos_18; int32_t L_18 = __this->___colonPos_19; int32_t L_19 = __this->___tokenStartPos_18; NullCheck(L_15); String_t* L_20; L_20 = VirtualFuncInvoker3< String_t*, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, int32_t >::Invoke(5 /* System.String System.Xml.XmlNameTable::Add(System.Char[],System.Int32,System.Int32) */, L_15, L_16, L_17, ((int32_t)il2cpp_codegen_subtract(L_18, L_19))); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_21 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_21); XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_21, L_14, L_20, NULL); return L_21; } IL_0088: { int32_t L_22 = __this->___tokenStartPos_18; String_t* L_23; L_23 = DtdParser_GetNameString_mA1D54806181E8700FF13260A88E2077F603C39FB(__this, NULL); DtdParser_Throw_mA82BAD834C0CCDE0E9325996E4560953761B62D0(__this, L_22, _stringLiteralB9895E6DD32A29F645457E316DC78EBC804C2C86, L_23, NULL); return (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL; } } // System.String System.Xml.DtdParser::GetNameString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DtdParser_GetNameString_mA1D54806181E8700FF13260A88E2077F603C39FB (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___chars_11; int32_t L_1 = __this->___tokenStartPos_18; int32_t L_2 = __this->___curPos_13; int32_t L_3 = __this->___tokenStartPos_18; String_t* L_4; L_4 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_0, L_1, ((int32_t)il2cpp_codegen_subtract(L_2, L_3)), NULL); return L_4; } } // System.String System.Xml.DtdParser::GetNmtokenString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DtdParser_GetNmtokenString_m2FBC77BC5054E435A4F99466E1E21D664260D1EB (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = DtdParser_GetNameString_mA1D54806181E8700FF13260A88E2077F603C39FB(__this, NULL); return L_0; } } // System.String System.Xml.DtdParser::GetValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DtdParser_GetValue_m3A56A10A245D1CDB50CCBFE897A8BA1AB3F5F622 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { StringBuilder_t* L_0 = __this->___stringBuilder_25; NullCheck(L_0); int32_t L_1; L_1 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_0, NULL); if (L_1) { goto IL_002e; } } { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = __this->___chars_11; int32_t L_3 = __this->___tokenStartPos_18; int32_t L_4 = __this->___curPos_13; int32_t L_5 = __this->___tokenStartPos_18; String_t* L_6; L_6 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_2, L_3, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_4, L_5)), 1)), NULL); return L_6; } IL_002e: { StringBuilder_t* L_7 = __this->___stringBuilder_25; NullCheck(L_7); String_t* L_8; L_8 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_7); return L_8; } } // System.String System.Xml.DtdParser::GetValueWithStrippedSpaces() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DtdParser_GetValueWithStrippedSpaces_mA7A8B5EF2DDCC7C0C1AE9845AF9EF4D149094FEA (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { String_t* G_B3_0 = NULL; { StringBuilder_t* L_0 = __this->___stringBuilder_25; NullCheck(L_0); int32_t L_1; L_1 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_0, NULL); if (!L_1) { goto IL_001a; } } { StringBuilder_t* L_2 = __this->___stringBuilder_25; NullCheck(L_2); String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_2); G_B3_0 = L_3; goto IL_003a; } IL_001a: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = __this->___chars_11; int32_t L_5 = __this->___tokenStartPos_18; int32_t L_6 = __this->___curPos_13; int32_t L_7 = __this->___tokenStartPos_18; String_t* L_8; L_8 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_4, L_5, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_6, L_7)), 1)), NULL); G_B3_0 = L_8; } IL_003a: { String_t* L_9; L_9 = DtdParser_StripSpaces_m779772633AEEDFC9310BF2C339B1A011B22A9615(G_B3_0, NULL); return L_9; } } // System.Int32 System.Xml.DtdParser::ReadData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_ReadData_m02D6859FB085D58E010B7F25EF813156B8CC3109 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DtdParser_SaveParsingBuffer_mA50879908E86FF9D354642A7BF0CDF85ACE35D8A(__this, NULL); RuntimeObject* L_0 = __this->___readerAdapter_0; NullCheck(L_0); int32_t L_1; L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Xml.IDtdParserAdapter::ReadData() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_0); DtdParser_LoadParsingBuffer_mF05F85D2FBE70046CCFD312890F918B9D0961C14(__this, NULL); return L_1; } } // System.Void System.Xml.DtdParser::LoadParsingBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_LoadParsingBuffer_mF05F85D2FBE70046CCFD312890F918B9D0961C14 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAdapter_0; NullCheck(L_0); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1; L_1 = InterfaceFuncInvoker0< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* >::Invoke(3 /* System.Char[] System.Xml.IDtdParserAdapter::get_ParsingBuffer() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_0); __this->___chars_11 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___chars_11), (void*)L_1); RuntimeObject* L_2 = __this->___readerAdapter_0; NullCheck(L_2); int32_t L_3; L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 System.Xml.IDtdParserAdapter::get_ParsingBufferLength() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_2); __this->___charsUsed_12 = L_3; RuntimeObject* L_4 = __this->___readerAdapter_0; NullCheck(L_4); int32_t L_5; L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Xml.IDtdParserAdapter::get_CurrentPosition() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_4); __this->___curPos_13 = L_5; return; } } // System.Void System.Xml.DtdParser::SaveParsingBuffer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_SaveParsingBuffer_mA50879908E86FF9D354642A7BF0CDF85ACE35D8A (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___curPos_13; DtdParser_SaveParsingBuffer_m002F46CF1017FA4228DEAE75ABD891C78F2505AF(__this, L_0, NULL); return; } } // System.Void System.Xml.DtdParser::SaveParsingBuffer(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_SaveParsingBuffer_m002F46CF1017FA4228DEAE75ABD891C78F2505AF (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_internalSubsetValueEndPos, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { bool L_0; L_0 = DtdParser_get_SaveInternalSubsetValue_m85DB5C7308BF525EE652E944E696CD7A3505DF66(__this, NULL); if (!L_0) { goto IL_0030; } } { RuntimeObject* L_1 = __this->___readerAdapter_0; NullCheck(L_1); int32_t L_2; L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Xml.IDtdParserAdapter::get_CurrentPosition() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_1); V_0 = L_2; int32_t L_3 = ___0_internalSubsetValueEndPos; int32_t L_4 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_3, L_4))) <= ((int32_t)0))) { goto IL_0030; } } { StringBuilder_t* L_5 = __this->___internalSubsetValueSb_20; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = __this->___chars_11; int32_t L_7 = V_0; int32_t L_8 = ___0_internalSubsetValueEndPos; int32_t L_9 = V_0; NullCheck(L_5); StringBuilder_t* L_10; L_10 = StringBuilder_Append_mC09A30993B77CC4D8E906720683B6386F0E15747(L_5, L_6, L_7, ((int32_t)il2cpp_codegen_subtract(L_8, L_9)), NULL); } IL_0030: { RuntimeObject* L_11 = __this->___readerAdapter_0; int32_t L_12 = __this->___curPos_13; NullCheck(L_11); InterfaceActionInvoker1< int32_t >::Invoke(6 /* System.Void System.Xml.IDtdParserAdapter::set_CurrentPosition(System.Int32) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_11, L_12); return; } } // System.Boolean System.Xml.DtdParser::HandleEntityReference(System.Boolean,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_HandleEntityReference_mEE956B6F9F4B05B092B23769C7446B988111557C (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, bool ___0_paramEntity, bool ___1_inLiteral, bool ___2_inAttribute, const RuntimeMethod* method) { { int32_t L_0 = __this->___curPos_13; __this->___curPos_13 = ((int32_t)il2cpp_codegen_add(L_0, 1)); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_1; L_1 = DtdParser_ScanEntityName_m88D8D0B3BD33BEB5120E1AA008E13FEBC4B03482(__this, NULL); bool L_2 = ___0_paramEntity; bool L_3 = ___1_inLiteral; bool L_4 = ___2_inAttribute; bool L_5; L_5 = DtdParser_HandleEntityReference_m372D3BB5C39D1333272D001572C4337128FD411B(__this, L_1, L_2, L_3, L_4, NULL); return L_5; } } // System.Boolean System.Xml.DtdParser::HandleEntityReference(System.Xml.XmlQualifiedName,System.Boolean,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_HandleEntityReference_m372D3BB5C39D1333272D001572C4337128FD411B (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_entityName, bool ___1_paramEntity, bool ___2_inLiteral, bool ___3_inAttribute, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral798FAE79042022F0E20CDBB3AD4A4E26A3AA7677); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD27E638C5F6B34DE55DDC1E7B33B6C164CB88CAC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE9BAFB0222941360F2752ADB95BF13DFDF07C373); s_Il2CppMethodInitialized = true; } SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* V_0 = NULL; int32_t V_1 = 0; int32_t G_B9_0 = 0; DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* G_B9_1 = NULL; int32_t G_B8_0 = 0; DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* G_B8_1 = NULL; String_t* G_B10_0 = NULL; int32_t G_B10_1 = 0; DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* G_B10_2 = NULL; { DtdParser_SaveParsingBuffer_mA50879908E86FF9D354642A7BF0CDF85ACE35D8A(__this, NULL); bool L_0 = ___1_paramEntity; if (!L_0) { goto IL_0038; } } { bool L_1; L_1 = DtdParser_get_ParsingInternalSubset_mF2EDC8896A9EF87EFC4BFB9DC631B3079DF05399(__this, NULL); if (!L_1) { goto IL_0038; } } { bool L_2; L_2 = DtdParser_get_ParsingTopLevelMarkup_m4836E76B7F5C3C3CA7D8574377C0F00BA2BB0BCF(__this, NULL); if (L_2) { goto IL_0038; } } { int32_t L_3 = __this->___curPos_13; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4 = ___0_entityName; NullCheck(L_4); String_t* L_5; L_5 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_4, NULL); NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL); DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_3, L_6)), 1)), _stringLiteral798FAE79042022F0E20CDBB3AD4A4E26A3AA7677, NULL); } IL_0038: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_7 = ___0_entityName; bool L_8 = ___1_paramEntity; bool L_9 = ___3_inAttribute; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_10; L_10 = DtdParser_VerifyEntityReference_m84A330F3B961DFFD33E4BFA07F60013BCF96665E(__this, L_7, L_8, (bool)1, L_9, NULL); V_0 = L_10; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_11 = V_0; if (L_11) { goto IL_0049; } } { return (bool)0; } IL_0049: { SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_12 = V_0; NullCheck(L_12); bool L_13; L_13 = SchemaEntity_get_ParsingInProgress_m1A11FBE9700163EB33B81751FB96EA42F99F90EC_inline(L_12, NULL); if (!L_13) { goto IL_0080; } } { int32_t L_14 = __this->___curPos_13; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_15 = ___0_entityName; NullCheck(L_15); String_t* L_16; L_16 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_15, NULL); NullCheck(L_16); int32_t L_17; L_17 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_16, NULL); bool L_18 = ___1_paramEntity; G_B8_0 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_14, L_17)), 1)); G_B8_1 = __this; if (L_18) { G_B9_0 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_14, L_17)), 1)); G_B9_1 = __this; goto IL_0070; } } { G_B10_0 = _stringLiteralD27E638C5F6B34DE55DDC1E7B33B6C164CB88CAC; G_B10_1 = G_B8_0; G_B10_2 = G_B8_1; goto IL_0075; } IL_0070: { G_B10_0 = _stringLiteralE9BAFB0222941360F2752ADB95BF13DFDF07C373; G_B10_1 = G_B9_0; G_B10_2 = G_B9_1; } IL_0075: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_19 = ___0_entityName; NullCheck(L_19); String_t* L_20; L_20 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_19, NULL); NullCheck(G_B10_2); DtdParser_Throw_mA82BAD834C0CCDE0E9325996E4560953761B62D0(G_B10_2, G_B10_1, G_B10_0, L_20, NULL); } IL_0080: { SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_21 = V_0; NullCheck(L_21); bool L_22; L_22 = SchemaEntity_get_IsExternal_mBFBDEF21B96AE11DAF242E5B7E2C3B63693FC8CE_inline(L_21, NULL); if (!L_22) { goto IL_00aa; } } { RuntimeObject* L_23 = __this->___readerAdapter_0; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_24 = V_0; NullCheck(L_23); bool L_25; L_25 = InterfaceFuncInvoker2< bool, RuntimeObject*, int32_t* >::Invoke(18 /* System.Boolean System.Xml.IDtdParserAdapter::PushEntity(System.Xml.IDtdEntityInfo,System.Int32&) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_23, L_24, (&V_1)); if (L_25) { goto IL_009a; } } { return (bool)0; } IL_009a: { int32_t L_26 = __this->___externalEntitiesDepth_21; __this->___externalEntitiesDepth_21 = ((int32_t)il2cpp_codegen_add(L_26, 1)); goto IL_00cb; } IL_00aa: { SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_27 = V_0; NullCheck(L_27); String_t* L_28; L_28 = SchemaEntity_get_Text_mDCF201E623D7A98F87E859ACDEE9B5B6B4E953AE_inline(L_27, NULL); NullCheck(L_28); int32_t L_29; L_29 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_28, NULL); if (L_29) { goto IL_00b9; } } { return (bool)0; } IL_00b9: { RuntimeObject* L_30 = __this->___readerAdapter_0; SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_31 = V_0; NullCheck(L_30); bool L_32; L_32 = InterfaceFuncInvoker2< bool, RuntimeObject*, int32_t* >::Invoke(18 /* System.Boolean System.Xml.IDtdParserAdapter::PushEntity(System.Xml.IDtdEntityInfo,System.Int32&) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_30, L_31, (&V_1)); if (L_32) { goto IL_00cb; } } { return (bool)0; } IL_00cb: { int32_t L_33 = V_1; __this->___currentEntityId_22 = L_33; bool L_34 = ___1_paramEntity; if (!L_34) { goto IL_00f6; } } { bool L_35 = ___2_inLiteral; if (L_35) { goto IL_00f6; } } { int32_t L_36 = __this->___scanningFunction_14; if ((((int32_t)L_36) == ((int32_t)((int32_t)32)))) { goto IL_00f6; } } { int32_t L_37 = __this->___scanningFunction_14; __this->___savedScanningFunction_16 = L_37; __this->___scanningFunction_14 = ((int32_t)32); } IL_00f6: { DtdParser_LoadParsingBuffer_mF05F85D2FBE70046CCFD312890F918B9D0961C14(__this, NULL); return (bool)1; } } // System.Boolean System.Xml.DtdParser::HandleEntityEnd(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_HandleEntityEnd_m741F32D866045C1FEBD97EE495E22BECA25B453D (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, bool ___0_inLiteral, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { DtdParser_SaveParsingBuffer_mA50879908E86FF9D354642A7BF0CDF85ACE35D8A(__this, NULL); RuntimeObject* L_0 = __this->___readerAdapter_0; int32_t* L_1 = (&__this->___currentEntityId_22); NullCheck(L_0); bool L_2; L_2 = InterfaceFuncInvoker2< bool, RuntimeObject**, int32_t* >::Invoke(19 /* System.Boolean System.Xml.IDtdParserAdapter::PopEntity(System.Xml.IDtdEntityInfo&,System.Int32&) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_0, (&V_0), L_1); if (L_2) { goto IL_001d; } } { return (bool)0; } IL_001d: { DtdParser_LoadParsingBuffer_mF05F85D2FBE70046CCFD312890F918B9D0961C14(__this, NULL); RuntimeObject* L_3 = V_0; if (L_3) { goto IL_003e; } } { int32_t L_4 = __this->___scanningFunction_14; if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)32))))) { goto IL_003c; } } { int32_t L_5 = __this->___savedScanningFunction_16; __this->___scanningFunction_14 = L_5; } IL_003c: { return (bool)0; } IL_003e: { RuntimeObject* L_6 = V_0; NullCheck(L_6); bool L_7; L_7 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Xml.IDtdEntityInfo::get_IsExternal() */, IDtdEntityInfo_t554100CF6FA38D7516CEFDDA083D02E64A2D5C27_il2cpp_TypeInfo_var, L_6); if (!L_7) { goto IL_0054; } } { int32_t L_8 = __this->___externalEntitiesDepth_21; __this->___externalEntitiesDepth_21 = ((int32_t)il2cpp_codegen_subtract(L_8, 1)); } IL_0054: { bool L_9 = ___0_inLiteral; if (L_9) { goto IL_0075; } } { int32_t L_10 = __this->___scanningFunction_14; if ((((int32_t)L_10) == ((int32_t)((int32_t)32)))) { goto IL_0075; } } { int32_t L_11 = __this->___scanningFunction_14; __this->___savedScanningFunction_16 = L_11; __this->___scanningFunction_14 = ((int32_t)32); } IL_0075: { return (bool)1; } } // System.Xml.Schema.SchemaEntity System.Xml.DtdParser::VerifyEntityReference(System.Xml.XmlQualifiedName,System.Boolean,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* DtdParser_VerifyEntityReference_m84A330F3B961DFFD33E4BFA07F60013BCF96665E (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_entityName, bool ___1_paramEntity, bool ___2_mustBeDeclared, bool ___3_inAttribute, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m0691587A5208D87AFCC3DD80D1AF2FC784239F01_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral17372CA6EE06884491DF8D3AEFE02DC203DF0717); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7CA3591A74B899B2FB7AAADBB9C6AA9722CD2C06); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB04A560846A93D4D813C44EFBD0968D2875C5049); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCDFFBF7695883D821E64C727304FFE2682330A22); s_Il2CppMethodInitialized = true; } SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* V_0 = NULL; { bool L_0 = ___1_paramEntity; if (!L_0) { goto IL_0019; } } { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_1 = __this->___schemaInfo_3; NullCheck(L_1); Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* L_2; L_2 = SchemaInfo_get_ParameterEntities_m54F4C298FA2B2AAE10FAA43965E9DD2C84E76FBB(L_1, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_3 = ___0_entityName; NullCheck(L_2); bool L_4; L_4 = Dictionary_2_TryGetValue_m0691587A5208D87AFCC3DD80D1AF2FC784239F01(L_2, L_3, (&V_0), Dictionary_2_TryGetValue_m0691587A5208D87AFCC3DD80D1AF2FC784239F01_RuntimeMethod_var); goto IL_002d; } IL_0019: { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_5 = __this->___schemaInfo_3; NullCheck(L_5); Dictionary_2_t129029582481E96143BD747690E92DB7E444261E* L_6; L_6 = SchemaInfo_get_GeneralEntities_mB8E4E7E02EB79C03BDEEB06638EBFA631DE9C9D2(L_5, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_7 = ___0_entityName; NullCheck(L_6); bool L_8; L_8 = Dictionary_2_TryGetValue_m0691587A5208D87AFCC3DD80D1AF2FC784239F01(L_6, L_7, (&V_0), Dictionary_2_TryGetValue_m0691587A5208D87AFCC3DD80D1AF2FC784239F01_RuntimeMethod_var); } IL_002d: { SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_9 = V_0; if (L_9) { goto IL_00cb; } } { bool L_10 = ___1_paramEntity; if (!L_10) { goto IL_0069; } } { bool L_11 = __this->___validate_8; if (!L_11) { goto IL_00c9; } } { int32_t L_12 = __this->___curPos_13; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_13 = ___0_entityName; NullCheck(L_13); String_t* L_14; L_14 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_13, NULL); NullCheck(L_14); int32_t L_15; L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_16 = ___0_entityName; NullCheck(L_16); String_t* L_17; L_17 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_16, NULL); DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F(__this, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_12, L_15)), 1)), 0, _stringLiteralCDFFBF7695883D821E64C727304FFE2682330A22, L_17, NULL); goto IL_00c9; } IL_0069: { bool L_18 = ___2_mustBeDeclared; if (!L_18) { goto IL_00c9; } } { bool L_19; L_19 = DtdParser_get_ParsingInternalSubset_mF2EDC8896A9EF87EFC4BFB9DC631B3079DF05399(__this, NULL); if (L_19) { goto IL_00a4; } } { bool L_20 = __this->___validate_8; if (!L_20) { goto IL_00c9; } } { int32_t L_21 = __this->___curPos_13; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_22 = ___0_entityName; NullCheck(L_22); String_t* L_23; L_23 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_22, NULL); NullCheck(L_23); int32_t L_24; L_24 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_23, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_25 = ___0_entityName; NullCheck(L_25); String_t* L_26; L_26 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_25, NULL); DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F(__this, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_21, L_24)), 1)), 0, _stringLiteral7CA3591A74B899B2FB7AAADBB9C6AA9722CD2C06, L_26, NULL); goto IL_00c9; } IL_00a4: { int32_t L_27 = __this->___curPos_13; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_28 = ___0_entityName; NullCheck(L_28); String_t* L_29; L_29 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_28, NULL); NullCheck(L_29); int32_t L_30; L_30 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_29, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_31 = ___0_entityName; NullCheck(L_31); String_t* L_32; L_32 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_31, NULL); DtdParser_Throw_mA82BAD834C0CCDE0E9325996E4560953761B62D0(__this, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_27, L_30)), 1)), _stringLiteral7CA3591A74B899B2FB7AAADBB9C6AA9722CD2C06, L_32, NULL); } IL_00c9: { return (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7*)NULL; } IL_00cb: { SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_33 = V_0; NullCheck(L_33); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_34; L_34 = SchemaEntity_get_NData_m7B05467BF6357AB27C1DAFBFE27F9720C79CEC3C_inline(L_33, NULL); NullCheck(L_34); bool L_35; L_35 = XmlQualifiedName_get_IsEmpty_m37942163D9A870E85BE8762845953C6A6579A400(L_34, NULL); if (L_35) { goto IL_00fd; } } { int32_t L_36 = __this->___curPos_13; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_37 = ___0_entityName; NullCheck(L_37); String_t* L_38; L_38 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_37, NULL); NullCheck(L_38); int32_t L_39; L_39 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_38, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_40 = ___0_entityName; NullCheck(L_40); String_t* L_41; L_41 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_40, NULL); DtdParser_Throw_mA82BAD834C0CCDE0E9325996E4560953761B62D0(__this, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_36, L_39)), 1)), _stringLiteral17372CA6EE06884491DF8D3AEFE02DC203DF0717, L_41, NULL); } IL_00fd: { bool L_42 = ___3_inAttribute; if (!L_42) { goto IL_012e; } } { SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_43 = V_0; NullCheck(L_43); bool L_44; L_44 = SchemaEntity_get_IsExternal_mBFBDEF21B96AE11DAF242E5B7E2C3B63693FC8CE_inline(L_43, NULL); if (!L_44) { goto IL_012e; } } { int32_t L_45 = __this->___curPos_13; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_46 = ___0_entityName; NullCheck(L_46); String_t* L_47; L_47 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_46, NULL); NullCheck(L_47); int32_t L_48; L_48 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_47, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_49 = ___0_entityName; NullCheck(L_49); String_t* L_50; L_50 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_49, NULL); DtdParser_Throw_mA82BAD834C0CCDE0E9325996E4560953761B62D0(__this, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_45, L_48)), 1)), _stringLiteralB04A560846A93D4D813C44EFBD0968D2875C5049, L_50, NULL); } IL_012e: { SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* L_51 = V_0; return L_51; } } // System.Void System.Xml.DtdParser::SendValidationEvent(System.Int32,System.Xml.Schema.XmlSeverityType,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_SendValidationEvent_m235191F9EC6673C3DB193451B67E6B89CB1E5A2F (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_pos, int32_t ___1_severity, String_t* ___2_code, String_t* ___3_arg, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___1_severity; String_t* L_1 = ___2_code; String_t* L_2 = ___3_arg; String_t* L_3; L_3 = DtdParser_get_BaseUriStr_m1A09B1A26119F87C048748007B59685399A1A0AE(__this, NULL); int32_t L_4; L_4 = DtdParser_get_LineNo_m4D78AF8EFE8D05D61D89C0CC1C3CB46D0263E246(__this, NULL); int32_t L_5; L_5 = DtdParser_get_LinePos_m2FDB78628E84297247B78BA60AF304C084790005(__this, NULL); int32_t L_6 = ___0_pos; int32_t L_7 = __this->___curPos_13; XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B* L_8 = (XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B*)il2cpp_codegen_object_new(XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B_il2cpp_TypeInfo_var); NullCheck(L_8); XmlSchemaException__ctor_m5EB9F0E36520DCB3AD78B355F5F120E1D7FF5EEB(L_8, L_1, L_2, L_3, L_4, ((int32_t)il2cpp_codegen_add(L_5, ((int32_t)il2cpp_codegen_subtract(L_6, L_7)))), NULL); DtdParser_SendValidationEvent_m874AFDBD3F0EEC5D3AE8A195B98AE90DC472438F(__this, L_0, L_8, NULL); return; } } // System.Void System.Xml.DtdParser::SendValidationEvent(System.Xml.Schema.XmlSeverityType,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_SendValidationEvent_m79ECFFB3D03874AE9095BA539FC8B7191018E58B (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_severity, String_t* ___1_code, String_t* ___2_arg, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___0_severity; String_t* L_1 = ___1_code; String_t* L_2 = ___2_arg; String_t* L_3; L_3 = DtdParser_get_BaseUriStr_m1A09B1A26119F87C048748007B59685399A1A0AE(__this, NULL); int32_t L_4; L_4 = DtdParser_get_LineNo_m4D78AF8EFE8D05D61D89C0CC1C3CB46D0263E246(__this, NULL); int32_t L_5; L_5 = DtdParser_get_LinePos_m2FDB78628E84297247B78BA60AF304C084790005(__this, NULL); XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B* L_6 = (XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B*)il2cpp_codegen_object_new(XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B_il2cpp_TypeInfo_var); NullCheck(L_6); XmlSchemaException__ctor_m5EB9F0E36520DCB3AD78B355F5F120E1D7FF5EEB(L_6, L_1, L_2, L_3, L_4, L_5, NULL); DtdParser_SendValidationEvent_m874AFDBD3F0EEC5D3AE8A195B98AE90DC472438F(__this, L_0, L_6, NULL); return; } } // System.Void System.Xml.DtdParser::SendValidationEvent(System.Xml.Schema.XmlSeverityType,System.Xml.Schema.XmlSchemaException) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_SendValidationEvent_m874AFDBD3F0EEC5D3AE8A195B98AE90DC472438F (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_severity, XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B* ___1_e, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapterWithValidation_tC370E742FC1C08EECE2E2741D97D6985EF1ED347_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IValidationEventHandling_t5929D7539D965D446556F7740F36A2BF7C6CC57E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { RuntimeObject* L_0 = __this->___readerAdapterWithValidation_1; NullCheck(L_0); RuntimeObject* L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Xml.IValidationEventHandling System.Xml.IDtdParserAdapterWithValidation::get_ValidationEventHandling() */, IDtdParserAdapterWithValidation_tC370E742FC1C08EECE2E2741D97D6985EF1ED347_il2cpp_TypeInfo_var, L_0); V_0 = L_1; RuntimeObject* L_2 = V_0; if (!L_2) { goto IL_0017; } } { RuntimeObject* L_3 = V_0; XmlSchemaException_tC4D30BFEFBB18F850A9BD416C523818FDC02833B* L_4 = ___1_e; int32_t L_5 = ___0_severity; NullCheck(L_3); InterfaceActionInvoker2< Exception_t*, int32_t >::Invoke(0 /* System.Void System.Xml.IValidationEventHandling::SendEvent(System.Exception,System.Xml.Schema.XmlSeverityType) */, IValidationEventHandling_t5929D7539D965D446556F7740F36A2BF7C6CC57E_il2cpp_TypeInfo_var, L_3, L_4, L_5); } IL_0017: { return; } } // System.Boolean System.Xml.DtdParser::IsAttributeValueType(System.Xml.DtdParser/Token) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DtdParser_IsAttributeValueType_m973F7C314B5AC9D43A0AE8BAE06F879DE66F9115 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_token, const RuntimeMethod* method) { { int32_t L_0 = ___0_token; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000c; } } { int32_t L_1 = ___0_token; return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)8))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_000c: { return (bool)0; } } // System.Int32 System.Xml.DtdParser::get_LineNo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_get_LineNo_m4D78AF8EFE8D05D61D89C0CC1C3CB46D0263E246 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->___readerAdapter_0; NullCheck(L_0); int32_t L_1; L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Xml.IDtdParserAdapter::get_LineNo() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_0); return L_1; } } // System.Int32 System.Xml.DtdParser::get_LinePos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DtdParser_get_LinePos_m2FDB78628E84297247B78BA60AF304C084790005 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->___curPos_13; RuntimeObject* L_1 = __this->___readerAdapter_0; NullCheck(L_1); int32_t L_2; L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Xml.IDtdParserAdapter::get_LineStartPosition() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_1); return ((int32_t)il2cpp_codegen_subtract(L_0, L_2)); } } // System.String System.Xml.DtdParser::get_BaseUriStr() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DtdParser_get_BaseUriStr_m1A09B1A26119F87C048748007B59685399A1A0AE (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_0 = NULL; { RuntimeObject* L_0 = __this->___readerAdapter_0; NullCheck(L_0); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_1; L_1 = InterfaceFuncInvoker0< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* >::Invoke(2 /* System.Uri System.Xml.IDtdParserAdapter::get_BaseUri() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_0); V_0 = L_1; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_2 = V_0; il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); bool L_3; L_3 = Uri_op_Inequality_m64BE981CDF88B751677B80D883B201BF3CFD83F7(L_2, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL); if (L_3) { goto IL_001b; } } { String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_4; } IL_001b: { Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_5 = V_0; NullCheck(L_5); String_t* L_6; L_6 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_5); return L_6; } } // System.Void System.Xml.DtdParser::OnUnexpectedError() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_OnUnexpectedError_m48B2712A07C18494946123F9947ED17F270DC4B6 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB080109AD5D6C864D18C1BFD1A3B9116504CCC72); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->___curPos_13; DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77(__this, L_0, _stringLiteralB080109AD5D6C864D18C1BFD1A3B9116504CCC72, NULL); return; } } // System.Void System.Xml.DtdParser::Throw(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_Throw_m227864B3930C74094485358ABBE02CE11F3E9E77 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_curPos, String_t* ___1_res, 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 = ___0_curPos; String_t* L_1 = ___1_res; String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; DtdParser_Throw_mA82BAD834C0CCDE0E9325996E4560953761B62D0(__this, L_0, L_1, L_2, NULL); return; } } // System.Void System.Xml.DtdParser::Throw(System.Int32,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_Throw_mA82BAD834C0CCDE0E9325996E4560953761B62D0 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_curPos, String_t* ___1_res, String_t* ___2_arg, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_0 = NULL; int32_t G_B2_0 = 0; int32_t G_B2_1 = 0; String_t* G_B2_2 = NULL; String_t* G_B2_3 = NULL; RuntimeObject* G_B2_4 = NULL; int32_t G_B1_0 = 0; int32_t G_B1_1 = 0; String_t* G_B1_2 = NULL; String_t* G_B1_3 = NULL; RuntimeObject* G_B1_4 = NULL; String_t* G_B3_0 = NULL; int32_t G_B3_1 = 0; int32_t G_B3_2 = 0; String_t* G_B3_3 = NULL; String_t* G_B3_4 = NULL; RuntimeObject* G_B3_5 = NULL; { int32_t L_0 = ___0_curPos; __this->___curPos_13 = L_0; RuntimeObject* L_1 = __this->___readerAdapter_0; NullCheck(L_1); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_2; L_2 = InterfaceFuncInvoker0< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* >::Invoke(2 /* System.Uri System.Xml.IDtdParserAdapter::get_BaseUri() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_1); V_0 = L_2; RuntimeObject* L_3 = __this->___readerAdapter_0; String_t* L_4 = ___1_res; String_t* L_5 = ___2_arg; int32_t L_6; L_6 = DtdParser_get_LineNo_m4D78AF8EFE8D05D61D89C0CC1C3CB46D0263E246(__this, NULL); int32_t L_7; L_7 = DtdParser_get_LinePos_m2FDB78628E84297247B78BA60AF304C084790005(__this, NULL); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_8 = V_0; il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); bool L_9; L_9 = Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194(L_8, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL); G_B1_0 = L_7; G_B1_1 = L_6; G_B1_2 = L_5; G_B1_3 = L_4; G_B1_4 = L_3; if (L_9) { G_B2_0 = L_7; G_B2_1 = L_6; G_B2_2 = L_5; G_B2_3 = L_4; G_B2_4 = L_3; goto IL_0038; } } { Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_10 = V_0; NullCheck(L_10); String_t* L_11; L_11 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10); G_B3_0 = L_11; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; G_B3_3 = G_B1_2; G_B3_4 = G_B1_3; G_B3_5 = G_B1_4; goto IL_0039; } IL_0038: { G_B3_0 = ((String_t*)(NULL)); G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; G_B3_3 = G_B2_2; G_B3_4 = G_B2_3; G_B3_5 = G_B2_4; } IL_0039: { XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_12 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); NullCheck(L_12); XmlException__ctor_m93B63C9E4FE7C5B4DAE86D7F5B9FA23451CC7077(L_12, G_B3_4, G_B3_3, G_B3_2, G_B3_1, G_B3_0, NULL); NullCheck(G_B3_5); InterfaceActionInvoker1< Exception_t* >::Invoke(24 /* System.Void System.Xml.IDtdParserAdapter::Throw(System.Exception) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, G_B3_5, L_12); return; } } // System.Void System.Xml.DtdParser::Throw(System.Int32,System.String,System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_Throw_mEE35AE1DA02A2343A42F062D85BA7D04AA9666C5 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_curPos, String_t* ___1_res, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___2_args, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_0 = NULL; int32_t G_B2_0 = 0; int32_t G_B2_1 = 0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B2_2 = NULL; String_t* G_B2_3 = NULL; RuntimeObject* G_B2_4 = NULL; int32_t G_B1_0 = 0; int32_t G_B1_1 = 0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B1_2 = NULL; String_t* G_B1_3 = NULL; RuntimeObject* G_B1_4 = NULL; String_t* G_B3_0 = NULL; int32_t G_B3_1 = 0; int32_t G_B3_2 = 0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B3_3 = NULL; String_t* G_B3_4 = NULL; RuntimeObject* G_B3_5 = NULL; { int32_t L_0 = ___0_curPos; __this->___curPos_13 = L_0; RuntimeObject* L_1 = __this->___readerAdapter_0; NullCheck(L_1); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_2; L_2 = InterfaceFuncInvoker0< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* >::Invoke(2 /* System.Uri System.Xml.IDtdParserAdapter::get_BaseUri() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_1); V_0 = L_2; RuntimeObject* L_3 = __this->___readerAdapter_0; String_t* L_4 = ___1_res; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = ___2_args; int32_t L_6; L_6 = DtdParser_get_LineNo_m4D78AF8EFE8D05D61D89C0CC1C3CB46D0263E246(__this, NULL); int32_t L_7; L_7 = DtdParser_get_LinePos_m2FDB78628E84297247B78BA60AF304C084790005(__this, NULL); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_8 = V_0; il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); bool L_9; L_9 = Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194(L_8, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL); G_B1_0 = L_7; G_B1_1 = L_6; G_B1_2 = L_5; G_B1_3 = L_4; G_B1_4 = L_3; if (L_9) { G_B2_0 = L_7; G_B2_1 = L_6; G_B2_2 = L_5; G_B2_3 = L_4; G_B2_4 = L_3; goto IL_0038; } } { Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_10 = V_0; NullCheck(L_10); String_t* L_11; L_11 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10); G_B3_0 = L_11; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; G_B3_3 = G_B1_2; G_B3_4 = G_B1_3; G_B3_5 = G_B1_4; goto IL_0039; } IL_0038: { G_B3_0 = ((String_t*)(NULL)); G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; G_B3_3 = G_B2_2; G_B3_4 = G_B2_3; G_B3_5 = G_B2_4; } IL_0039: { XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_12 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); NullCheck(L_12); XmlException__ctor_m9BF115E3E8CAC81B474E36A76805DC4F2E856879(L_12, G_B3_4, G_B3_3, G_B3_2, G_B3_1, G_B3_0, NULL); NullCheck(G_B3_5); InterfaceActionInvoker1< Exception_t* >::Invoke(24 /* System.Void System.Xml.IDtdParserAdapter::Throw(System.Exception) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, G_B3_5, L_12); return; } } // System.Void System.Xml.DtdParser::Throw(System.String,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_Throw_mB4CABDC7A50D3C7F339CC18B8F500A9DCD78CA95 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, String_t* ___0_res, String_t* ___1_arg, int32_t ___2_lineNo, int32_t ___3_linePos, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_0 = NULL; int32_t G_B2_0 = 0; int32_t G_B2_1 = 0; String_t* G_B2_2 = NULL; String_t* G_B2_3 = NULL; RuntimeObject* G_B2_4 = NULL; int32_t G_B1_0 = 0; int32_t G_B1_1 = 0; String_t* G_B1_2 = NULL; String_t* G_B1_3 = NULL; RuntimeObject* G_B1_4 = NULL; String_t* G_B3_0 = NULL; int32_t G_B3_1 = 0; int32_t G_B3_2 = 0; String_t* G_B3_3 = NULL; String_t* G_B3_4 = NULL; RuntimeObject* G_B3_5 = NULL; { RuntimeObject* L_0 = __this->___readerAdapter_0; NullCheck(L_0); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_1; L_1 = InterfaceFuncInvoker0< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* >::Invoke(2 /* System.Uri System.Xml.IDtdParserAdapter::get_BaseUri() */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, L_0); V_0 = L_1; RuntimeObject* L_2 = __this->___readerAdapter_0; String_t* L_3 = ___0_res; String_t* L_4 = ___1_arg; int32_t L_5 = ___2_lineNo; int32_t L_6 = ___3_linePos; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_7 = V_0; il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var); bool L_8; L_8 = Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194(L_7, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL); G_B1_0 = L_6; G_B1_1 = L_5; G_B1_2 = L_4; G_B1_3 = L_3; G_B1_4 = L_2; if (L_8) { G_B2_0 = L_6; G_B2_1 = L_5; G_B2_2 = L_4; G_B2_3 = L_3; G_B2_4 = L_2; goto IL_0028; } } { Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_9 = V_0; NullCheck(L_9); String_t* L_10; L_10 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_9); G_B3_0 = L_10; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; G_B3_3 = G_B1_2; G_B3_4 = G_B1_3; G_B3_5 = G_B1_4; goto IL_0029; } IL_0028: { G_B3_0 = ((String_t*)(NULL)); G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; G_B3_3 = G_B2_2; G_B3_4 = G_B2_3; G_B3_5 = G_B2_4; } IL_0029: { XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* L_11 = (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596*)il2cpp_codegen_object_new(XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596_il2cpp_TypeInfo_var); NullCheck(L_11); XmlException__ctor_m93B63C9E4FE7C5B4DAE86D7F5B9FA23451CC7077(L_11, G_B3_4, G_B3_3, G_B3_2, G_B3_1, G_B3_0, NULL); NullCheck(G_B3_5); InterfaceActionInvoker1< Exception_t* >::Invoke(24 /* System.Void System.Xml.IDtdParserAdapter::Throw(System.Exception) */, IDtdParserAdapter_t3BCF4AF35AE181234EB048BE11244FF2D622A311_il2cpp_TypeInfo_var, G_B3_5, L_11); return; } } // System.Void System.Xml.DtdParser::ThrowInvalidChar(System.Int32,System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ThrowInvalidChar_mD2161D4741D7A76279757B830E981723BEB64CA3 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_pos, String_t* ___1_data, int32_t ___2_invCharPos, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___0_pos; String_t* L_1 = ___1_data; int32_t L_2 = ___2_invCharPos; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3; L_3 = XmlException_BuildCharExceptionArgs_m0420A013644159380BB744A41E3AF1F4CEA5E9D8(L_1, L_2, NULL); DtdParser_Throw_mEE35AE1DA02A2343A42F062D85BA7D04AA9666C5(__this, L_0, _stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0, L_3, NULL); return; } } // System.Void System.Xml.DtdParser::ThrowInvalidChar(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ThrowInvalidChar_m67D089CB4F65FC2275C1FE545C178FF42CB61944 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_data, int32_t ___1_length, int32_t ___2_invCharPos, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___2_invCharPos; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = ___0_data; int32_t L_2 = ___1_length; int32_t L_3 = ___2_invCharPos; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4; L_4 = XmlException_BuildCharExceptionArgs_mCD358DAB8D23BF377EEC6C41C523161FE2B9A2A5(L_1, L_2, L_3, NULL); DtdParser_Throw_mEE35AE1DA02A2343A42F062D85BA7D04AA9666C5(__this, L_0, _stringLiteral37FDAAF1C91F947734553260891C6678930EDDA0, L_4, NULL); return; } } // System.Void System.Xml.DtdParser::ThrowUnexpectedToken(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ThrowUnexpectedToken_mBCA8EBEE9CF9EC08AEEB6CA14BF75492689BF982 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_pos, String_t* ___1_expectedToken, const RuntimeMethod* method) { { int32_t L_0 = ___0_pos; String_t* L_1 = ___1_expectedToken; DtdParser_ThrowUnexpectedToken_mE75F8A57E36D0ED9A0E029E79C5D0F5E71B82570(__this, L_0, L_1, (String_t*)NULL, NULL); return; } } // System.Void System.Xml.DtdParser::ThrowUnexpectedToken(System.Int32,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DtdParser_ThrowUnexpectedToken_mE75F8A57E36D0ED9A0E029E79C5D0F5E71B82570 (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_pos, String_t* ___1_expectedToken1, String_t* ___2_expectedToken2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral168C49673280639EC773D92BF193FBACAED8BF52); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC7A4DCEE2BCE29D8E3625DA7D1C87881873A907C); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { int32_t L_0 = ___0_pos; String_t* L_1; L_1 = DtdParser_ParseUnexpectedToken_m207C66A0CCCD7B01EC54A015C8F1CB228665119C(__this, L_0, NULL); V_0 = L_1; String_t* L_2 = ___2_expectedToken2; if (!L_2) { goto IL_002f; } } { int32_t L_3 = __this->___curPos_13; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)3); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = L_4; String_t* L_6 = V_0; NullCheck(L_5); ArrayElementTypeCheck (L_5, L_6); (L_5)->SetAt(static_cast(0), (String_t*)L_6); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = L_5; String_t* L_8 = ___1_expectedToken1; NullCheck(L_7); ArrayElementTypeCheck (L_7, L_8); (L_7)->SetAt(static_cast(1), (String_t*)L_8); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_9 = L_7; String_t* L_10 = ___2_expectedToken2; NullCheck(L_9); ArrayElementTypeCheck (L_9, L_10); (L_9)->SetAt(static_cast(2), (String_t*)L_10); DtdParser_Throw_mEE35AE1DA02A2343A42F062D85BA7D04AA9666C5(__this, L_3, _stringLiteral168C49673280639EC773D92BF193FBACAED8BF52, L_9, NULL); return; } IL_002f: { int32_t L_11 = __this->___curPos_13; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)2); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = L_12; String_t* L_14 = V_0; NullCheck(L_13); ArrayElementTypeCheck (L_13, L_14); (L_13)->SetAt(static_cast(0), (String_t*)L_14); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_15 = L_13; String_t* L_16 = ___1_expectedToken1; NullCheck(L_15); ArrayElementTypeCheck (L_15, L_16); (L_15)->SetAt(static_cast(1), (String_t*)L_16); DtdParser_Throw_mEE35AE1DA02A2343A42F062D85BA7D04AA9666C5(__this, L_11, _stringLiteralC7A4DCEE2BCE29D8E3625DA7D1C87881873A907C, L_15, NULL); return; } } // System.String System.Xml.DtdParser::ParseUnexpectedToken(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DtdParser_ParseUnexpectedToken_m207C66A0CCCD7B01EC54A015C8F1CB228665119C (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, int32_t ___0_startPos, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t G_B6_0 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* G_B6_1 = NULL; int32_t G_B5_0 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* G_B5_1 = NULL; int32_t G_B7_0 = 0; int32_t G_B7_1 = 0; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* G_B7_2 = NULL; { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_0 = (&__this->___xmlCharType_4); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = __this->___chars_11; int32_t L_2 = ___0_startPos; NullCheck(L_1); int32_t L_3 = L_2; uint16_t L_4 = (uint16_t)(L_1)->GetAt(static_cast(L_3)); bool L_5; L_5 = XmlCharType_IsNCNameSingleChar_mAE9940C767975DB6F8EA438AAE5F7DFC7666DB54(L_0, L_4, NULL); if (!L_5) { goto IL_004b; } } { int32_t L_6 = ___0_startPos; V_0 = L_6; } IL_0017: { XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3* L_7 = (&__this->___xmlCharType_4); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = __this->___chars_11; int32_t L_9 = V_0; NullCheck(L_8); int32_t L_10 = L_9; uint16_t L_11 = (uint16_t)(L_8)->GetAt(static_cast(L_10)); bool L_12; L_12 = XmlCharType_IsNCNameSingleChar_mAE9940C767975DB6F8EA438AAE5F7DFC7666DB54(L_7, L_11, NULL); if (!L_12) { goto IL_0032; } } { int32_t L_13 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_13, 1)); goto IL_0017; } IL_0032: { int32_t L_14 = V_0; int32_t L_15 = ___0_startPos; V_1 = ((int32_t)il2cpp_codegen_subtract(L_14, L_15)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = __this->___chars_11; int32_t L_17 = ___0_startPos; int32_t L_18 = V_1; G_B5_0 = L_17; G_B5_1 = L_16; if ((((int32_t)L_18) > ((int32_t)0))) { G_B6_0 = L_17; G_B6_1 = L_16; goto IL_0044; } } { G_B7_0 = 1; G_B7_1 = G_B5_0; G_B7_2 = G_B5_1; goto IL_0045; } IL_0044: { int32_t L_19 = V_1; G_B7_0 = L_19; G_B7_1 = G_B6_0; G_B7_2 = G_B6_1; } IL_0045: { String_t* L_20; L_20 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, G_B7_2, G_B7_1, G_B7_0, NULL); return L_20; } IL_004b: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_21 = __this->___chars_11; int32_t L_22 = ___0_startPos; String_t* L_23; L_23 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_21, L_22, 1, NULL); return L_23; } } // System.String System.Xml.DtdParser::StripSpaces(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DtdParser_StripSpaces_m779772633AEEDFC9310BF2C339B1A011B22A9615 (String_t* ___0_value, 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*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; StringBuilder_t* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; { String_t* L_0 = ___0_value; NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL); V_0 = L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) > ((int32_t)0))) { goto IL_0011; } } { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_3; } IL_0011: { V_1 = 0; V_2 = (StringBuilder_t*)NULL; goto IL_0025; } IL_0017: { int32_t L_4 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_4, 1)); int32_t L_5 = V_1; int32_t L_6 = V_0; if ((!(((uint32_t)L_5) == ((uint32_t)L_6)))) { goto IL_0025; } } { return _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745; } IL_0025: { String_t* L_7 = ___0_value; int32_t L_8 = V_1; NullCheck(L_7); Il2CppChar L_9; L_9 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_7, L_8, NULL); if ((((int32_t)L_9) == ((int32_t)((int32_t)32)))) { goto IL_0017; } } { int32_t L_10 = V_1; V_3 = L_10; goto IL_00ae; } IL_0034: { String_t* L_11 = ___0_value; int32_t L_12 = V_3; NullCheck(L_11); Il2CppChar L_13; L_13 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_11, L_12, NULL); if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)32))))) { goto IL_00aa; } } { int32_t L_14 = V_3; V_4 = ((int32_t)il2cpp_codegen_add(L_14, 1)); goto IL_004c; } IL_0046: { int32_t L_15 = V_4; V_4 = ((int32_t)il2cpp_codegen_add(L_15, 1)); } IL_004c: { int32_t L_16 = V_4; int32_t L_17 = V_0; if ((((int32_t)L_16) >= ((int32_t)L_17))) { goto IL_005d; } } { String_t* L_18 = ___0_value; int32_t L_19 = V_4; NullCheck(L_18); Il2CppChar L_20; L_20 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_18, L_19, NULL); if ((((int32_t)L_20) == ((int32_t)((int32_t)32)))) { goto IL_0046; } } IL_005d: { int32_t L_21 = V_4; int32_t L_22 = V_0; if ((!(((uint32_t)L_21) == ((uint32_t)L_22)))) { goto IL_0083; } } { StringBuilder_t* L_23 = V_2; if (L_23) { goto IL_0070; } } { String_t* L_24 = ___0_value; int32_t L_25 = V_1; int32_t L_26 = V_3; int32_t L_27 = V_1; NullCheck(L_24); String_t* L_28; L_28 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_24, L_25, ((int32_t)il2cpp_codegen_subtract(L_26, L_27)), NULL); return L_28; } IL_0070: { StringBuilder_t* L_29 = V_2; String_t* L_30 = ___0_value; int32_t L_31 = V_1; int32_t L_32 = V_3; int32_t L_33 = V_1; NullCheck(L_29); StringBuilder_t* L_34; L_34 = StringBuilder_Append_mE7CA22532FEF1545B8BC357CB7CAA304BA264703(L_29, L_30, L_31, ((int32_t)il2cpp_codegen_subtract(L_32, L_33)), NULL); StringBuilder_t* L_35 = V_2; NullCheck(L_35); String_t* L_36; L_36 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_35); return L_36; } IL_0083: { int32_t L_37 = V_4; int32_t L_38 = V_3; if ((((int32_t)L_37) <= ((int32_t)((int32_t)il2cpp_codegen_add(L_38, 1))))) { goto IL_00aa; } } { StringBuilder_t* L_39 = V_2; if (L_39) { goto IL_0094; } } { int32_t L_40 = V_0; StringBuilder_t* L_41 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); NullCheck(L_41); StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_41, L_40, NULL); V_2 = L_41; } IL_0094: { StringBuilder_t* L_42 = V_2; String_t* L_43 = ___0_value; int32_t L_44 = V_1; int32_t L_45 = V_3; int32_t L_46 = V_1; NullCheck(L_42); StringBuilder_t* L_47; L_47 = StringBuilder_Append_mE7CA22532FEF1545B8BC357CB7CAA304BA264703(L_42, L_43, L_44, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_45, L_46)), 1)), NULL); int32_t L_48 = V_4; V_1 = L_48; int32_t L_49 = V_4; V_3 = ((int32_t)il2cpp_codegen_subtract(L_49, 1)); } IL_00aa: { int32_t L_50 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_50, 1)); } IL_00ae: { int32_t L_51 = V_3; int32_t L_52 = V_0; if ((((int32_t)L_51) < ((int32_t)L_52))) { goto IL_0034; } } { StringBuilder_t* L_53 = V_2; if (L_53) { goto IL_00c5; } } { int32_t L_54 = V_1; if (!L_54) { goto IL_00c3; } } { String_t* L_55 = ___0_value; int32_t L_56 = V_1; int32_t L_57 = V_0; int32_t L_58 = V_1; NullCheck(L_55); String_t* L_59; L_59 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_55, L_56, ((int32_t)il2cpp_codegen_subtract(L_57, L_58)), NULL); return L_59; } IL_00c3: { String_t* L_60 = ___0_value; return L_60; } IL_00c5: { int32_t L_61 = V_3; int32_t L_62 = V_1; if ((((int32_t)L_61) <= ((int32_t)L_62))) { goto IL_00d5; } } { StringBuilder_t* L_63 = V_2; String_t* L_64 = ___0_value; int32_t L_65 = V_1; int32_t L_66 = V_3; int32_t L_67 = V_1; NullCheck(L_63); StringBuilder_t* L_68; L_68 = StringBuilder_Append_mE7CA22532FEF1545B8BC357CB7CAA304BA264703(L_63, L_64, L_65, ((int32_t)il2cpp_codegen_subtract(L_66, L_67)), NULL); } IL_00d5: { StringBuilder_t* L_69 = V_2; NullCheck(L_69); String_t* L_70; L_70 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_69); return L_70; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____stringLength_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlReaderSettings_set_IsXmlResolverSet_m871B57224C2E3918C193D03425F0F409E4A44A03_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___U3CIsXmlResolverSetU3Ek__BackingField_18 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_OuterReader_mF7512246D5575745BD1DB502B6C778F3FD54456D_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___0_value, const RuntimeMethod* method) { { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___0_value; __this->___outerReader_74 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___outerReader_74), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ParsingState_get_LineNo_mF3AF997B368E18B626BEE701B8DEB7FBB0267A3F_inline (ParsingState_tF0FABA16483FCC2DB710460D11CD79D35C4E2886* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___lineNo_11; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlTextReaderImpl_get_DtdParserProxy_NameTable_m9D90E1683C95F7DB7AA9244FF91A472B3BD48685_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___nameTable_19; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReaderImpl_get_DtdParserProxy_NamespaceResolver_m801F8EFB95433131030357031EF73C68EB43F490_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_0 = __this->___namespaceManager_37; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlTextReaderImpl_get_DtdParserProxy_ValidationEventHandling_mB2F5898C6DDF21BDA19FB52D66B0EC56F10908C3_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->___validationEventHandling_56; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_Normalization_m69989B2A994543AFE386FFF064EA7C9C674AF212_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___normalize_23; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_Namespaces_mDE78BC151B29E932636DF2B4521450C3FF8F25F6_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___supportNamespaces_24; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTextReaderImpl_get_DtdParserProxy_V1CompatibilityMode_mFA338124C3C5FF871125360FA041C8E74C7AE978_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___v1Compat_36; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlName_get_HashCode_m329A9FEAF3BDEAA5F1F40CB84F7E51E1BDE58B2D_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___hashCode_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlName_get_LocalName_mD4DE8695A21CB393834F0DDFDD6D6B610E91A64D_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___localName_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlName_get_Prefix_m42E3E78749764ECBE9586AFC0FC3EBFD2B7A2E4E_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___prefix_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlName_get_NamespaceURI_mCF07F0E78CAF17DDF53DD8CD44C5D415B4E010D1_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___ns_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocument_get_IsLoading_mD97F2D54DE1BD3B4F8B496F4D8D31C061FA8A52D_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___isLoading_20; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlName_get_OwnerDocument_m330FA0574F04486B56352FA1E5F4336890C02A0C_inline (XmlName_t0704430D24D202146901D342E34D878246E14F33* __this, const RuntimeMethod* method) { { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_0 = __this->___ownerDoc_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* XmlDocument_get_DtdSchemaInfo_mF52E9F32AB9D1914DBC6D91A8277AE843B6E1E6E_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0 = __this->___schemaInfo_7; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlElement_get_XmlName_mA93482D1053CABDD02D7E3B23EBA56F74904101D_inline (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlName_t0704430D24D202146901D342E34D878246E14F33* XmlAttribute_get_XmlName_m27554E8E37DD8255E54A68102CE270316933FFB9_inline (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = __this->___name_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDeclaration_set_Version_m0B2CCCDE1930526B6429925E8139340ED17C26D0_inline (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->___version_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___version_2), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Version_m50261F1E46B645E69A99504F494FFD3BF915E633_inline (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___version_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Encoding_m09D89DCD8457C62A6E49B9506A65A271DDBD011F_inline (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___encoding_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDeclaration_get_Standalone_m46CC1833EE3C478318FF865E98A6899E440DDC6C_inline (XmlDeclaration_tA04662FA58C306A24C864BDE73D1B410858E7A79* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___standalone_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* XmlDocument_get_Implementation_m627A29B6D4CA09108F494BBE9AE070155CA6AE10_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* L_0 = __this->___implementation_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_SetBaseURI_mE44F99B7DFBF6C63E7041125703303F9146C146E_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, String_t* ___0_inBaseURI, const RuntimeMethod* method) { { String_t* L_0 = ___0_inBaseURI; __this->___baseURI_37 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___baseURI_37), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* SchemaElementDecl_get_AttDefs_m2E3114DFAB8D978CBFAA6E31C2CD18A9AA9DAC50_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, const RuntimeMethod* method) { { Dictionary_2_tB85C1B2FFF985BA01AD2B7199C083B43C1476CC1* L_0 = __this->___attdefs_11; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaDeclBase_get_Presence_mCF2610A186758B71CAFF2FC2586D9B604C2AE539_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___presence_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaDeclBase_get_Name_m013DF0DD721FE902399C2DF4D2E6F8DAD50ECFAE_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) { { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = __this->___name_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___name_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaInfo_get_SchemaType_m44BE9221A63C4D13AE45A2054A875B533518B0FC_inline (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___schemaType_10; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___ns_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* SchemaInfo_get_ElementDecls_m238E5681BECA397E7010F7BEFBAC2D0FBEC43BD7_inline (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method) { { Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* L_0 = __this->___elementDecls_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlUnspecifiedAttribute_SetSpecified_m1CF67FF3E90E62DC5B0983B8DE91B6E95228509B_inline (XmlUnspecifiedAttribute_tE47F7C121F619F5C6D79E61829694B516B6C4CDC* __this, bool ___0_f, const RuntimeMethod* method) { { bool L_0 = ___0_f; __this->___fSpecified_3 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_PublicId_m9E81FAF2D0AA9DC847D118813CBEB085F0CE1955_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___publicId_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_SystemId_m17B225C509C0F5A4ECBB838AA81D15DED4016909_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___systemId_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlDocumentType_get_InternalSubset_mBD8D585ED0401EE1FC02F6FD5445E2109B083FEF_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___internalSubset_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* XmlImplementation_get_NameTable_m8951702F59619310BD4A9528D2FF471352518CDF_inline (XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* __this, const RuntimeMethod* method) { { XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* L_0 = __this->___nameTable_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocument_get_HasSetResolver_m7CBB11C7E27D95CD697F177B965CEB2E1E71358D_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___bSetResolver_39; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlDocument_GetResolver_m0B1F443F2DF5510E0733052D42BC984CB83F9119_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_0 = __this->___resolver_38; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_set_IsLoading_mB72FABCA30EF280F608CC171BFB6749813A0D8B5_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___isLoading_20 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlNodeChangedEventArgs_get_Action_mD307B00A56DE5422A4EE4915400EC966DF80BD04_inline (XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___action_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlNodeChangedEventHandler_Invoke_m64C7CF87945A0BAEFCED39FC27B1D9F2E31C1480_inline (XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* __this, RuntimeObject* ___0_sender, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A* ___1_e, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, XmlNodeChangedEventArgs_t965F2E02F8433933D197A0D1AF1EFEEDB524DF3A*, const RuntimeMethod*); ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_sender, ___1_e, reinterpret_cast(__this->___method_3)); } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlEntity_get_SystemId_mBD4E3AB5EBAE7C852E533B9E184A316BECF47FA7_inline (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___systemId_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* XmlTextReader_get_Impl_m99AA88D6B2335764B7B4171CCC9D9C77329D72D8_inline (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, const RuntimeMethod* method) { { XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* L_0 = __this->___impl_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlReaderSettings_get_ValidationType_mFF201BAC3A2B593BB69E691E0AA3814455185F8A_inline (XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___validationType_13; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_set_Schemas_m434B1F13D18F926E959FCC426F4731C9AC385A3B_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___0_value, const RuntimeMethod* method) { { XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_0 = ___0_value; __this->___schemas_8 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___schemas_8), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlElement_set_XmlName_m15166904F386EAB60030EAB490CC0FD1CB624EFC_inline (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___0_value, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = ___0_value; __this->___name_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___name_2), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlAttribute_set_XmlName_m8D259D5CC4750809EACB5E213333E1E55D8BB6BB_inline (XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* __this, XmlName_t0704430D24D202146901D342E34D878246E14F33* ___0_value, const RuntimeMethod* method) { { XmlName_t0704430D24D202146901D342E34D878246E14F33* L_0 = ___0_value; __this->___name_1 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___name_1), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocumentType_get_ParseWithNamespaces_mC391046582C88CDC3C3496E4D2C0827C36D9B324_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) { { bool L_0 = __this->___namespaces_6; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocumentType_set_DtdSchemaInfo_m6E419933465D42DAB30AD7C6FFF7ACCC6D78A4E6_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___0_value, const RuntimeMethod* method) { { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0 = ___0_value; __this->___schemaInfo_9 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___schemaInfo_9), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_set_DtdSchemaInfo_m95A0C58965F2B17BDA49D5F4E18304A11EEC7876_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___0_value, const RuntimeMethod* method) { { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0 = ___0_value; __this->___schemaInfo_7 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___schemaInfo_7), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaNotation_get_Name_mF5CA9EBBD17ADAB3A31FC36FDB03B236C4847FCD_inline (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, const RuntimeMethod* method) { { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = __this->___name_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaNotation_get_Pubid_m28D7BB40FF192EDC5B5461FBE0FF7E690A3B6BFE_inline (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___pubid_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaNotation_get_SystemLiteral_m0E99C9B3C22B1F8535F3C9334B91EEFD0C2F1DF3_inline (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___systemLiteral_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaEntity_get_Name_m8A17CC3B68A15DCD4C3ACEC6AE82AB7BF5CDBEAC_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) { { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = __this->___qname_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Text_mDCF201E623D7A98F87E859ACDEE9B5B6B4E953AE_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___text_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Pubid_m9845E8CD129266AFA62E58F857D88D0941C88C82_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___pubid_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SchemaEntity_get_Url_m7519C52A444DFD11468483C299A6C9D6A92F1CFB_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___url_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* SchemaEntity_get_NData_m7B05467BF6357AB27C1DAFBFE27F9720C79CEC3C_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) { { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = __this->___ndata_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlEntity_SetBaseURI_mFEBE0339CA3A522BDC09A278FFBA3A9D77A578B3_inline (XmlEntity_t9EBE8B1B9DF630903E192B114309C8DA0064D9FE* __this, String_t* ___0_inBaseURI, const RuntimeMethod* method) { { String_t* L_0 = ___0_inBaseURI; __this->___baseURI_6 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___baseURI_6), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlDocument_set_Entities_mBBF7C97889080847540A0F31B1751726E81FF756_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* ___0_value, const RuntimeMethod* method) { { XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* L_0 = ___0_value; __this->___entities_4 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___entities_4), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* SchemaDeclBase_get_Datatype_mE6DE13C3518B65A1CF6E464F12D7D7653247AF90_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) { { XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* L_0 = __this->___datatype_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* XmlParserContext_get_NamespaceManager_mB51E2BAE011C0C53FB2DF0C9DFF21EA17DCD58B7_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* L_0 = __this->____nsMgr_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocument_get_ActualLoadingStatus_m63B8F5AD9C82FEF1D9EFA47926E4AABED6CD9D99_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___actualLoadingStatus_10; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTextReaderImpl_set_DisableUndeclaredEntityCheck_m339683347E0D9F45C31C7602CBAF90F5497CACC5_inline (XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___disableUndeclaredEntityCheck_73 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* XmlDocumentType_get_DtdSchemaInfo_mDF54B3A169B037A8C8A4F186206B143AF3068259_inline (XmlDocumentType_tFD7379E45412FC2EBD65280ED3DE7A1C941A8D9E* __this, const RuntimeMethod* method) { { SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* L_0 = __this->___schemaInfo_9; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_BaseURI_m203B1A13A7DFA09528C49D2198E7B9382BA91892_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____baseURI_8; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_DocTypeName_m8212FEC6DBA21A5B1E95538D40951B1CB0380CF0_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____docTypeName_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_PublicId_mCE67EDDC8A9D73A0AADB77E0F7CCF53DEB5E300D_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____pubId_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_SystemId_mB4649C8C6DA52AFC5224E82BBD2B7C7A1D5CCB58_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____sysId_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlParserContext_get_InternalSubset_mDD9703E47510C335AD4940AE7F761F56AA00E9DC_inline (XmlParserContext_t843976A0319F7334808DCCAAA4F36EAB41A92F3B* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____internalSubset_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlDocument_get_CanReportValidity_m71D1E8A3FCDBF648B6E83D5B7690FD0FD40F8736_inline (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) { { bool L_0 = __this->___reportValidity_9; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaInfo_set_SchemaType_m00F5B5934AC3BDDD71AAEB8CA3E307451FA51229_inline (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->___schemaType_10 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaInfo_set_DocTypeName_mB87F85301E58DCCDD63697CE790A4417A07A54B0_inline (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_value, const RuntimeMethod* method) { { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = ___0_value; __this->___docTypeName_4 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___docTypeName_4), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaInfo_set_InternalDtdSubset_m8352C52C8065FDD87C562CC9AC5CC098B7697CD5_inline (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->___internalDtdSubset_5 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___internalDtdSubset_5), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* SchemaInfo_get_UndeclaredElementDecls_m0A88B7833EFC3AAFB9DC374257DB131D1902EF1D_inline (SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* __this, const RuntimeMethod* method) { { Dictionary_2_t798E72FD52A5F6525F4F83621BBE86BBAB28533A* L_0 = __this->___undeclaredElementDecls_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaDeclBase_set_IsDeclaredInExternal_m3F57DA2AD9DBAC1C431293C53E4E052A8E915D96_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___isDeclaredInExternal_2 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaAttDef_set_LineNumber_mA7F00D8F6FAB9626DBF9444371C2D5B0EF99E07E_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->___lineNum_12 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaAttDef_set_LinePosition_mC3B43012E31CCE6784CCFE1B9FE8CC15B0C7E584_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->___linePos_13 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaAttDef_set_Reserved_mA68CCD19A9DFB1D612973314A38245DCA338BDC4_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->___reserved_16 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_LineNumber_m8A9494C90F0B132F2A84AF7203FE074046529A1C_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___lineNum_12; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SchemaAttDef_get_LinePosition_m192E37BC23204F940B4BC5BBBCC248EEAE4481D1_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___linePos_13; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaElementDecl_set_HasNonCDataAttribute_m66C35DA3287AD11A2D0DD2E47FE3B8198851F01E_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___hasNonCDataAttribute_14 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaDeclBase_set_SchemaType_m4A34BA7ABAAD6A60F7AE3A2572EDD3E86893A21F_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___0_value, const RuntimeMethod* method) { { XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* L_0 = ___0_value; __this->___schemaType_4 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___schemaType_4), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaElementDecl_get_IsIdDeclared_m44ADA012ED628AF85A038CF178E9CA86806077B3_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, const RuntimeMethod* method) { { bool L_0 = __this->___isIdDeclared_13; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaElementDecl_set_IsIdDeclared_m88620A2DF06335275FD59A77CB5073E5707BA5AD_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___isIdDeclared_13 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaElementDecl_get_IsNotationDeclared_m56FEF2BE202BF5AC41DDFB7BCA33983F71A0FB0B_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, const RuntimeMethod* method) { { bool L_0 = __this->___isNotationDeclared_16; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* SchemaElementDecl_get_ContentValidator_m687E7878F142CFC03B5D7B4FFD6FE1F4AE6526E1_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, const RuntimeMethod* method) { { ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* L_0 = __this->___contentValidator_18; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ContentValidator_get_ContentType_m2E9C64DB3522E5A29BE6CAA4A929CBABAD1CEF23_inline (ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___contentType_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaElementDecl_set_IsNotationDeclared_m33DFE77CEA01A59316738F4BC49110A7C98A2365_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___isNotationDeclared_16 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* SchemaDeclBase_get_Values_m5CBE6E5DB4DE93179FEB87F1BBC0EAF43FAF0E06_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, const RuntimeMethod* method) { { List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_0 = __this->___values_10; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaDeclBase_set_Presence_mB1FAF4B21DA1F38F9A40D57E54260010E54C1B91_inline (SchemaDeclBase_t04E301687597D1FA19FFC9A6A2D08746D3EF169B* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->___presence_3 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaAttDef_set_DefaultValueExpanded_mE4A42E55D630D5C41EAF3480F721749DBB59B801_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->___defExpanded_11 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___defExpanded_11), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaAttDef_set_ValueLineNumber_mD19157EDC780F89AA9FD6C07FEE28363DB7BDC91_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->___valueLineNum_14 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaAttDef_set_ValueLinePosition_m8AEAB2128F36C4F66C16E9CB778C94402E15D387_inline (SchemaAttDef_tC497C6246FCEF4C205C09DC0A9D186A4C2E81553* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->___valueLinePos_15 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaElementDecl_set_ContentValidator_m9670779D24E74D3F1272FB1C378371719F9DFB0E_inline (SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* __this, ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* ___0_value, const RuntimeMethod* method) { { ContentValidator_t42EB1802005FF0D871EE98A34ADB69091CCE48FE* L_0 = ___0_value; __this->___contentValidator_18 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___contentValidator_18), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_BaseURI_mFC468DD1928AD24B87E405653FBB189A67042C61_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->___baseURI_11 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___baseURI_11), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_DeclaredURI_m0411EACB64E056C515ADBBD2118036872D76AC96_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->___declaredURI_12 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___declaredURI_12), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_DeclaredInExternal_mE6A46D7897D9CDBF7400135BF42A153AB313D66F_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___isDeclaredInExternal_10 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_ParsingInProgress_m6DA2762E08D1C44455A0E1CF86B7B208A6BD1480_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___parsingInProgress_9 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_IsExternal_mEA049015A7FB2840CFC3870A2F41FAC927612D12_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___isExternal_8 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_Pubid_m38932D2D6C40B066741B4F3C85478DA7A49F1FC2_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->___pubid_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___pubid_2), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_NData_mB7C417287EC6223758560683CFEF6961CCA9DD4F_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_value, const RuntimeMethod* method) { { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = ___0_value; __this->___ndata_4 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___ndata_4), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_Line_m3F4EBBBF917403C4F93292B873B64063DD3850F3_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->___lineNumber_5 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaEntity_set_Pos_mD4124AF35C72621D401E02AED280FF8A8934FABB_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->___linePosition_6 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaNotation_set_SystemLiteral_mE508FA22D4C2368801F3A5AA2B5797F1221234CD_inline (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->___systemLiteral_1 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___systemLiteral_1), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SchemaNotation_set_Pubid_m3829B9FB66E7CB42DBAE04A487127361BFF4357B_inline (SchemaNotation_tDA4063F0DD51070BAD94B42C2F44BD1055372269* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->___pubid_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___pubid_2), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlException_get_ResString_m977084C1A1F883C2BED73B1F956D980E62649C7A_inline (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___res_18; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DtdParser_get_Normalize_mA95ED98D422B35FDBDAE26FA37F593B389FD122C_inline (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { bool L_0 = __this->___normalize_7; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlException_get_LineNumber_m4DBE53D0E13988CF2A5055C4B853F1399DE1A926_inline (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___lineNumber_20; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlException_get_LinePosition_m8045E03E183F6B07D6394A1B1FBD55E2CBE2DCB4_inline (XmlException_t86B8FDC142BBE4C73921439C9F1631092526D596* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___linePosition_21; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DtdParser_get_SupportNamespaces_m868EACB0340AAB10A0A36D3E54391F6B721A7791_inline (DtdParser_t31747CA45152BB55FE1F36C68444606A21100C53* __this, const RuntimeMethod* method) { { bool L_0 = __this->___supportNamespaces_9; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaEntity_get_ParsingInProgress_m1A11FBE9700163EB33B81751FB96EA42F99F90EC_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) { { bool L_0 = __this->___parsingInProgress_9; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SchemaEntity_get_IsExternal_mBFBDEF21B96AE11DAF242E5B7E2C3B63693FC8CE_inline (SchemaEntity_t9ED2BB66C74E37F782F6002ED5BED20306D103E7* __this, const RuntimeMethod* method) { { bool L_0 = __this->___isExternal_8; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->___hasValue_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_mB407E755F3B4C51C54D24338D00A352E5B16E7F3_gshared_inline (Enumerator_t44124D16E0B2F7308FF4069BE06369B5A83896EB* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = (RuntimeObject*)__this->____currentValue_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->____size_1; return L_0; } }